:root {
    --color-primary: #1a1a1a;
    --color-secondary: #6b7280;
    --color-accent: #c9a227;
    --color-accent-dark: #a8841f;
    --color-bg: #ffffff;
    --color-surface: #f7f7f8;
    --color-surface-2: #eef0f3;
    --color-border: #e5e7eb;
    --color-success: #16a34a;
    --color-danger: #dc2626;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1200px;
    --header-height: 76px;
    --font: 'Tajawal', system-ui, sans-serif;
    --transition: 200ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--color-primary);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button, input, textarea, select { font: inherit; }

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.section {
    padding-block: clamp(3rem, 6vw, 5.5rem);
}
.section-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}
.section-header.centered {
    margin-inline: auto;
    text-align: center;
}
.eyebrow {
    display: inline-block;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.55rem;
    padding: 0.2rem 0;
    border-bottom: 2px solid rgba(201, 162, 39, 0.45);
}
.section-header h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.25;
}
.section-header p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.btn-primary {
    background: var(--color-accent);
    color: #fff;
}
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-secondary {
    background: var(--color-primary);
    color: #fff;
}
.btn-ghost {
    background: transparent;
    border-color: var(--color-border);
    color: var(--color-primary);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }

.skip-link {
    position: absolute;
    inset-inline-start: 1rem;
    top: -100px;
    z-index: 1000;
    padding: 0.75rem 1.1rem;
    background: var(--color-accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: top var(--transition);
}
.skip-link:focus {
    top: 1rem;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-height);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), color var(--transition);
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    color: var(--color-primary);
}
body.page-home .site-header:not(.is-scrolled),
body.page-service .site-header:not(.is-scrolled),
body.page-project .site-header:not(.is-scrolled),
body.page-article .site-header:not(.is-scrolled),
body.page-services-list .site-header:not(.is-scrolled),
body.page-projects-list .site-header:not(.is-scrolled),
body.page-blog-list .site-header:not(.is-scrolled),
body.page-contact .site-header:not(.is-scrolled) {
    color: #fff;
}
body.page-home .site-header:not(.is-scrolled) .site-nav a,
body.page-service .site-header:not(.is-scrolled) .site-nav a,
body.page-project .site-header:not(.is-scrolled) .site-nav a,
body.page-article .site-header:not(.is-scrolled) .site-nav a,
body.page-services-list .site-header:not(.is-scrolled) .site-nav a,
body.page-projects-list .site-header:not(.is-scrolled) .site-nav a,
body.page-blog-list .site-header:not(.is-scrolled) .site-nav a,
body.page-contact .site-header:not(.is-scrolled) .site-nav a {
    color: rgba(255, 255, 255, 0.82);
}
body.page-home .site-header:not(.is-scrolled) .site-nav a:hover,
body.page-service .site-header:not(.is-scrolled) .site-nav a:hover,
body.page-project .site-header:not(.is-scrolled) .site-nav a:hover,
body.page-article .site-header:not(.is-scrolled) .site-nav a:hover,
body.page-services-list .site-header:not(.is-scrolled) .site-nav a:hover,
body.page-projects-list .site-header:not(.is-scrolled) .site-nav a:hover,
body.page-blog-list .site-header:not(.is-scrolled) .site-nav a:hover,
body.page-contact .site-header:not(.is-scrolled) .site-nav a:hover {
    color: var(--color-accent);
}
body.page-home .site-header:not(.is-scrolled) .brand-text small,
body.page-service .site-header:not(.is-scrolled) .brand-text small,
body.page-project .site-header:not(.is-scrolled) .brand-text small,
body.page-article .site-header:not(.is-scrolled) .brand-text small,
body.page-services-list .site-header:not(.is-scrolled) .brand-text small,
body.page-projects-list .site-header:not(.is-scrolled) .brand-text small,
body.page-blog-list .site-header:not(.is-scrolled) .brand-text small,
body.page-contact .site-header:not(.is-scrolled) .brand-text small {
    color: rgba(255, 255, 255, 0.7);
}
body.page-home .site-header:not(.is-scrolled) .btn-ghost,
body.page-service .site-header:not(.is-scrolled) .btn-ghost,
body.page-project .site-header:not(.is-scrolled) .btn-ghost,
body.page-article .site-header:not(.is-scrolled) .btn-ghost,
body.page-services-list .site-header:not(.is-scrolled) .btn-ghost,
body.page-projects-list .site-header:not(.is-scrolled) .btn-ghost,
body.page-blog-list .site-header:not(.is-scrolled) .btn-ghost,
body.page-contact .site-header:not(.is-scrolled) .btn-ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
body.page-home .site-header:not(.is-scrolled) .nav-toggle,
body.page-service .site-header:not(.is-scrolled) .nav-toggle,
body.page-project .site-header:not(.is-scrolled) .nav-toggle,
body.page-article .site-header:not(.is-scrolled) .nav-toggle,
body.page-services-list .site-header:not(.is-scrolled) .nav-toggle,
body.page-projects-list .site-header:not(.is-scrolled) .nav-toggle,
body.page-blog-list .site-header:not(.is-scrolled) .nav-toggle,
body.page-contact .site-header:not(.is-scrolled) .nav-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}
body.page-home .site-header:not(.is-scrolled) .nav-toggle span,
body.page-service .site-header:not(.is-scrolled) .nav-toggle span,
body.page-project .site-header:not(.is-scrolled) .nav-toggle span,
body.page-article .site-header:not(.is-scrolled) .nav-toggle span,
body.page-services-list .site-header:not(.is-scrolled) .nav-toggle span,
body.page-projects-list .site-header:not(.is-scrolled) .nav-toggle span,
body.page-blog-list .site-header:not(.is-scrolled) .nav-toggle span,
body.page-contact .site-header:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1;
}
.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--color-primary), #333);
    color: var(--color-accent);
    font-weight: 800;
}
.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
}
.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.brand-text strong {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brand-text small {
    color: var(--color-secondary);
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.site-nav {
    display: none;
    gap: 1.25rem;
}
.site-nav a {
    color: var(--color-secondary);
    font-weight: 500;
    transition: color var(--transition);
}
.site-nav a:hover { color: var(--color-accent); }
.header-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}
.header-phone span { display: none; }
.nav-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}
.site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-height) + 0.5rem);
    inset-inline: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow-lg);
    gap: 0.35rem;
    z-index: 120;
    color: var(--color-primary);
}
.site-nav.is-open a {
    color: var(--color-primary) !important;
    padding: 0.7rem 0.35rem;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
}
.site-nav.is-open a:last-child {
    border-bottom: 0;
}
.site-nav.is-open a:hover {
    color: var(--color-accent) !important;
}
body.page-home .site-header:not(.is-scrolled) .site-nav.is-open,
body.page-service .site-header:not(.is-scrolled) .site-nav.is-open,
body.page-project .site-header:not(.is-scrolled) .site-nav.is-open,
body.page-article .site-header:not(.is-scrolled) .site-nav.is-open {
    color: var(--color-primary);
}
body.page-home .site-header:not(.is-scrolled) .site-nav.is-open a,
body.page-service .site-header:not(.is-scrolled) .site-nav.is-open a,
body.page-project .site-header:not(.is-scrolled) .site-nav.is-open a,
body.page-article .site-header:not(.is-scrolled) .site-nav.is-open a {
    color: var(--color-primary);
}
body.page-home .site-header:not(.is-scrolled) .site-nav.is-open a:hover,
body.page-service .site-header:not(.is-scrolled) .site-nav.is-open a:hover,
body.page-project .site-header:not(.is-scrolled) .site-nav.is-open a:hover,
body.page-article .site-header:not(.is-scrolled) .site-nav.is-open a:hover {
    color: var(--color-accent);
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    min-height: min(100vh, 920px);
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 2.25rem);
    padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 55% at 85% 15%, rgba(201, 162, 39, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 162, 39, 0.08), transparent 50%),
        linear-gradient(165deg, #0e0e0e 0%, #171717 58%, #1c1912 100%);
}
.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    transform: scale(1.04);
    filter: saturate(0.85) contrast(1.05);
    transition: opacity 0.25s ease;
}
.hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.78) 42%, rgba(10, 10, 10, 0.45) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 28%, rgba(10, 10, 10, 0.55) 100%);
}
.hero--minimal .hero-veil {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, transparent 40%, rgba(10, 10, 10, 0.35) 100%);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
    width: 100%;
}
.hero-copy {
    max-width: 36rem;
}
.hero-eyebrow {
    margin: 0 0 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(246, 231, 168, 0.85);
    font-size: 0.86rem;
    font-weight: 700;
}
.hero-eyebrow::before {
    content: '';
    width: 1.5rem;
    height: 2px;
    background: var(--color-accent);
}
.hero-brand-line {
    margin: 0 0 0.55rem;
    font-size: clamp(1.45rem, 3.4vw, 2.15rem);
    font-weight: 800;
    line-height: 1.25;
    color: #f6e7a8;
    letter-spacing: -0.01em;
}
.hero-copy h1 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.75rem, 4.2vw, 2.85rem);
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
}
.hero-lead {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.55vw, 1.1rem);
    line-height: 1.7;
    max-width: 34rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.hero-actions .btn {
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.hero-actions .btn-primary svg {
    transform: scaleX(-1);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.15rem;
    margin: 0 0 1.1rem;
    padding: 0;
    list-style: none;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}
.hero-trust svg {
    color: var(--color-accent);
    flex-shrink: 0;
}
.hero-contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}
.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 1.05rem;
    direction: ltr;
    cursor: pointer;
    transition: color var(--transition);
}
.hero-phone:hover {
    color: #f6e7a8;
}
.hero-phone svg {
    color: var(--color-accent);
}
.hero-contact-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.hero-visual {
    min-width: 0;
    perspective: 1200px;
}
.hero-stage {
    position: relative;
    min-height: clamp(300px, 52vw, 520px);
    padding: 0.85rem 0.85rem 1.35rem;
}
.hero-stage-frame {
    position: absolute;
    inset: 0.35rem 0.15rem 0.85rem 1.1rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    pointer-events: none;
    z-index: 1;
}
.hero-stage-frame::before,
.hero-stage-frame::after {
    content: '';
    position: absolute;
    width: 1.65rem;
    height: 1.65rem;
    border-color: var(--color-accent);
    border-style: solid;
}
.hero-stage-frame::before {
    top: -1px;
    inset-inline-start: -1px;
    border-width: 2px 0 0 2px;
}
.hero-stage-frame::after {
    bottom: -1px;
    inset-inline-end: -1px;
    border-width: 0 2px 2px 0;
}
.hero-stage-accent {
    position: absolute;
    inset-inline-start: 0;
    top: 12%;
    bottom: 18%;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
    z-index: 2;
    pointer-events: none;
}
.hero-shot {
    display: block;
    position: relative;
    overflow: hidden;
    background: #161616;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}
.hero-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease-out, filter 0.35s ease, opacity 0.35s ease;
}
.hero-shot img.is-fading {
    opacity: 0.25;
}
.hero-shot:hover img {
    transform: scale(1.045);
    filter: brightness(1.05) contrast(1.04);
}
.hero-shot:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
.hero-shot--hero {
    position: relative;
    z-index: 2;
    width: min(100%, 92%);
    margin-inline-start: auto;
    aspect-ratio: 4 / 5;
    max-height: 520px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero-shot-sheen {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.14) 0%, transparent 28%, transparent 62%, rgba(201, 162, 39, 0.12) 100%);
    mix-blend-mode: soft-light;
}
.hero-shot-stack {
    position: absolute;
    z-index: 3;
    inset-inline-start: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: min(78%, 280px);
}
.hero-shot--stack {
    aspect-ratio: 5 / 4;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 162, 39, 0.28);
    transform-origin: center bottom;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-shot--stack.is-active {
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.5),
        0 0 0 2px var(--color-accent);
}
.hero-shot--s1 { transform: translateY(-10px) rotate(-2.5deg); }
.hero-shot--s2 { transform: translateY(4px) rotate(2deg); }
.hero-shot--s3 { transform: translateY(-6px) rotate(1.5deg); }
.hero-shot--s4 { transform: translateY(8px) rotate(-1.8deg); }
.hero-shot--stack:hover {
    z-index: 4;
}
.hero-shot--s1:hover { transform: translateY(-14px) rotate(-1deg); }
.hero-shot--s2:hover { transform: translateY(0) rotate(1deg); }
.hero-shot--s3:hover { transform: translateY(-10px) rotate(0.5deg); }
.hero-shot--s4:hover { transform: translateY(4px) rotate(-0.5deg); }

.hero-stage-controls {
    position: absolute;
    z-index: 5;
    inset-inline-end: 0.75rem;
    bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}
.hero-ctrl {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.hero-ctrl:hover,
.hero-ctrl:focus-visible {
    background: var(--color-accent);
    color: #111;
    outline: none;
}
.hero-ctrl--play[aria-pressed="true"] .icon-pause { display: none; }
.hero-ctrl--play[aria-pressed="true"] .icon-play { display: block; }
.hero-ctrl--play[aria-pressed="false"] .icon-play { display: none; }
.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding-inline: 0.35rem;
}
.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.is-active {
    background: var(--color-accent);
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .hero {
        min-height: 0;
        align-items: flex-start;
        padding-top: calc(var(--header-height) + 0.85rem);
        padding-bottom: 1.35rem;
    }
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
    }
    .hero-copy {
        order: 1;
        max-width: none;
    }
    .hero-eyebrow {
        margin-bottom: 0.3rem;
        font-size: 0.75rem;
    }
    .hero-eyebrow::before {
        width: 1rem;
    }
    .hero-brand-line {
        margin-bottom: 0.25rem;
        font-size: 1.15rem;
        line-height: 1.3;
    }
    .hero-copy h1 {
        margin-bottom: 0.5rem;
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .hero-lead {
        margin-bottom: 0.9rem;
        font-size: 0.9rem;
        line-height: 1.55;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-actions {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    .hero-actions .btn {
        flex: 1 1 auto;
        min-width: calc(50% - 0.35rem);
        padding: 0.65rem 0.85rem;
        font-size: 0.88rem;
    }
    .hero-trust {
        gap: 0.35rem 0.75rem;
        margin-bottom: 0.65rem;
    }
    .hero-trust li {
        font-size: 0.78rem;
    }
    .hero-trust svg {
        width: 13px;
        height: 13px;
    }
    .hero-contact-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.45rem 0.75rem;
    }
    .hero-phone {
        font-size: 0.95rem;
    }
    .hero-contact-note {
        display: none;
    }
    .hero-visual {
        order: 2;
    }
    .hero-stage {
        position: relative;
        min-height: 0;
        padding: 0.55rem 0.5rem 0.7rem;
        background:
            linear-gradient(145deg, rgba(201, 162, 39, 0.12), transparent 42%),
            rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(201, 162, 39, 0.28);
        border-radius: 16px 6px 16px 6px;
        overflow: hidden;
    }
    .hero-stage-frame {
        display: block;
        inset: 0.4rem;
        border-radius: 12px 4px 12px 4px;
        border-color: rgba(201, 162, 39, 0.45);
    }
    .hero-stage-accent {
        display: block;
        inset-inline-start: 0.3rem;
        top: 10%;
        bottom: 12%;
        width: 2px;
        border-radius: 999px;
    }
    .hero-shot--hero {
        position: relative;
        z-index: 2;
        width: 100%;
        margin: 0;
        aspect-ratio: 16 / 10;
        max-height: 200px;
        clip-path: polygon(0 0, 100% 0, 100% 88%, 90% 100%, 0 100%);
        border-radius: 0;
        box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(246, 231, 168, 0.18);
        transform: rotate(-0.5deg);
    }
    .hero-shot-stack {
        position: relative;
        z-index: 3;
        inset: auto;
        width: auto;
        margin: -0.85rem 0.25rem 0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.3rem;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }
    .hero-shot--stack {
        min-width: 0;
        aspect-ratio: 1 / 1;
        max-height: 58px;
        border-radius: 3px 10px 3px 10px;
        scroll-snap-align: unset;
        box-shadow:
            0 6px 14px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(201, 162, 39, 0.3);
    }
    .hero-shot--s1 { transform: translateY(0) rotate(-2deg); }
    .hero-shot--s2 { transform: translateY(4px) rotate(1.5deg); }
    .hero-shot--s3 { transform: translateY(-2px) rotate(-1deg); }
    .hero-shot--s4 { transform: translateY(3px) rotate(2deg); }
    .hero-shot--s1:hover,
    .hero-shot--s2:hover,
    .hero-shot--s3:hover,
    .hero-shot--s4:hover {
        transform: translateY(-1px) rotate(0deg);
    }
    .hero-shot--stack.is-active {
        transform: translateY(-2px) rotate(0deg) !important;
    }
    .hero-stage-controls {
        position: static;
        margin: 0.65rem auto 0;
        width: fit-content;
        gap: 0.35rem;
        padding: 0.25rem;
        transform: scale(0.9);
        transform-origin: center;
    }
    .hero-proof {
        padding-block: 1.1rem;
    }
    .hero-proof-item strong {
        font-size: 1.25rem;
    }
    .hero-proof-item span {
        font-size: 0.78rem;
    }

    /* List pages hero — compact mobile */
    .page-services-list .services-list-hero,
    .page-projects-list .services-list-hero,
    .page-blog-list .services-list-hero,
    .page-contact .services-list-hero {
        padding-top: calc(var(--header-height) + 0.5rem);
        padding-bottom: 1rem;
    }
    .page-services-list .services-list-hero .breadcrumb ol,
    .page-projects-list .services-list-hero .breadcrumb ol,
    .page-blog-list .services-list-hero .breadcrumb ol,
    .page-contact .services-list-hero .breadcrumb ol {
        margin-bottom: 0.75rem;
        font-size: 0.8rem;
    }
    .services-list-hero-inner {
        gap: 1rem;
    }
    .services-list-hero h1 {
        margin-bottom: 0.4rem;
        font-size: 1.35rem;
        line-height: 1.3;
        max-width: none;
    }
    .services-list-lead {
        margin-bottom: 0.85rem;
        font-size: 0.88rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .services-list-actions {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    .services-list-actions .btn {
        flex: 1 1 auto;
        min-width: calc(50% - 0.35rem);
        padding: 0.65rem 0.85rem;
        font-size: 0.88rem;
    }
    .services-list-trust {
        gap: 0.35rem 0.7rem;
    }
    .services-list-trust li {
        font-size: 0.76rem;
    }
    .services-list-trust svg {
        width: 13px;
        height: 13px;
    }
    .services-list-hero-aside {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
        padding: 0.75rem;
        border-radius: 14px;
    }
    .services-list-stat {
        padding: 0.25rem 0.15rem;
        border-bottom: 0;
        text-align: center;
    }
    .services-list-stat strong {
        font-size: 1.05rem;
    }
    .services-list-stat span {
        font-size: 0.68rem;
    }
    .services-list-aside-cta {
        grid-column: 1 / -1;
        margin-top: 0.15rem;
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

    /* List pages hero — extra compact mobile */
    .page-services-list .services-list-hero .breadcrumb ol,
    .page-projects-list .services-list-hero .breadcrumb ol,
    .page-blog-list .services-list-hero .breadcrumb ol {
        margin-bottom: 0.5rem;
    }
    .page-services-list .services-list-lead,
    .page-projects-list .services-list-lead,
    .page-blog-list .services-list-lead {
        margin-bottom: 0.65rem;
        font-size: 0.82rem;
        -webkit-line-clamp: 1;
    }
    .page-services-list .services-list-trust,
    .page-projects-list .services-list-trust,
    .page-blog-list .services-list-trust {
        display: none;
    }
    .page-services-list .services-list-actions,
    .page-projects-list .services-list-actions,
    .page-blog-list .services-list-actions {
        margin-bottom: 0.65rem;
    }
    .page-services-list .services-list-actions .btn,
    .page-projects-list .services-list-actions .btn,
    .page-blog-list .services-list-actions .btn {
        padding: 0.58rem 0.75rem;
        font-size: 0.84rem;
    }
    .page-services-list .services-list-aside-cta,
    .page-projects-list .services-list-aside-cta,
    .page-blog-list .services-list-aside-cta {
        display: none;
    }
    .page-blog-list .services-list-hero-aside {
        display: none;
    }
    .page-blog-list .blog-hero-actions {
        display: none;
    }
    .page-blog-list .blog-hero-topics {
        margin-bottom: 0.5rem;
    }
    .blog-list-section {
        margin-top: -0.75rem;
    }
    .blog-control-panel {
        padding: 0.9rem;
        border-radius: 18px;
    }
    .blog-search-submit-text {
        display: none;
    }
    .blog-search-submit-icon {
        display: block;
    }
    .blog-search-submit {
        padding-inline: 0.85rem;
    }
    .blog-results-bar {
        padding: 0.6rem 0.75rem;
    }
    .article-jump .service-jump-inner {
        gap: 0.35rem;
    }
    .article-jump .service-jump-link {
        font-size: 0.78rem;
        padding: 0.45rem 0.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-backdrop img { transform: none; }
    .hero-shot img { transition: none; }
    .hero-shot:hover img { transform: none; filter: none; }
    .hero-shot--s1,
    .hero-shot--s2,
    .hero-shot--s3,
    .hero-shot--s4,
    .hero-shot--s1:hover,
    .hero-shot--s2:hover,
    .hero-shot--s3:hover,
    .hero-shot--s4:hover {
        transform: none;
    }
}

.hero-proof {
    background:
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        linear-gradient(180deg, #f4f4f5 0%, #ffffff 100%);
    border-bottom: 1px solid var(--color-border);
    padding-block: 1.75rem;
    position: relative;
}
.hero-proof::before {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}
.hero-proof-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: center;
}
.hero-proof-item {
    position: relative;
    padding: 0.35rem 0.5rem;
}
.hero-proof-item:not(:last-child)::after {
    content: '';
    position: absolute;
    inset-inline-end: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.hero-proof-item strong {
    display: block;
    font-size: clamp(1.65rem, 3.2vw, 2.2rem);
    line-height: 1.1;
    color: #1a1a1a;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}
.hero-proof-item span {
    color: var(--color-secondary);
    font-size: 0.88rem;
    font-weight: 600;
}
@media (max-width: 767px) {
    .hero-proof-item:nth-child(2n)::after {
        display: none;
    }
}

/* Keep legacy mosaic/stat classes for other pages if referenced */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1rem;
}
.stat-card strong {
    display: block;
    font-size: 1.75rem;
    color: var(--color-accent);
}
.stat-card span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}
.hero-mosaic {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, minmax(80px, 1fr));
    min-height: 320px;
}
.hero-mosaic-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 3px solid var(--slide-border, var(--color-accent));
    box-shadow: var(--shadow-md);
    background: #222;
}
.hero-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-mosaic-y1 { grid-column: 1; grid-row: 1; }
.hero-mosaic-main { grid-column: 2 / 4; grid-row: 1 / 3; }
.hero-mosaic-g1 { grid-column: 4; grid-row: 1; }
.hero-mosaic-b1 { grid-column: 1; grid-row: 2 / 4; }
.hero-mosaic-r1 { grid-column: 2 / 5; grid-row: 3; }

/* Cards */
.card-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
.section-services {
    background:
        linear-gradient(180deg, #fff 0%, #f7f7f8 48%, #fff 100%);
}
.service-card, .project-card, .article-card, .review-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover, .project-card:hover, .article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    border-radius: 18px;
    border-color: rgba(26, 26, 26, 0.08);
    background:
        linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
    box-shadow: 0 8px 24px rgba(15, 17, 21, 0.04);
}
.service-card:hover {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 16px 36px rgba(15, 17, 21, 0.1);
}
.service-card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
.service-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.2), transparent 50%),
        #1a1a1a;
}
.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-media img {
    transform: scale(1.06);
}
.service-card-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.55));
    pointer-events: none;
}
.service-card--plain .service-card-media {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
}
.service-card--plain .service-card-media::after {
    display: none;
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(201, 162, 39, 0.14);
    color: #f6e7a8;
    font-weight: 800;
    font-size: 1.4rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
}
.service-card-rating {
    position: absolute;
    z-index: 1;
    inset-inline-start: 0.75rem;
    top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.72);
    color: #f6e7a8;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}
.service-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem 1.1rem 1.15rem;
    flex: 1;
}
.service-card h3,
.service-card h2 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.35;
    color: var(--color-primary);
}
.service-card p {
    margin: 0;
    color: var(--color-secondary);
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap var(--transition), color var(--transition);
}
.service-card-price {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-secondary);
}
.service-card-badge {
    position: absolute;
    z-index: 1;
    inset-inline-end: 0.75rem;
    top: 0.75rem;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: var(--color-accent);
    color: #1a1a1a;
    font-size: 0.72rem;
    font-weight: 800;
}
.service-card--featured {
    border-color: rgba(201, 162, 39, 0.55);
}

/* Services list page */
.page-services-list .services-list-hero,
.page-projects-list .services-list-hero,
.page-blog-list .services-list-hero,
.page-contact .services-list-hero {
    color: #fff;
    background:
        radial-gradient(ellipse 55% 70% at 15% 20%, rgba(201, 162, 39, 0.22), transparent 55%),
        radial-gradient(ellipse 40% 50% at 90% 80%, rgba(201, 162, 39, 0.1), transparent 50%),
        linear-gradient(165deg, #0f0f10 0%, #1a1a1a 55%, #222 100%);
    position: relative;
    overflow: hidden;
}
.page-services-list .services-list-hero,
.page-projects-list .services-list-hero,
.page-blog-list .services-list-hero,
.page-contact .services-list-hero {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 1.5rem;
}
.page-services-list .services-list-hero::after,
.page-projects-list .services-list-hero::after,
.page-blog-list .services-list-hero::after,
.page-contact .services-list-hero::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.45), transparent);
}
.page-services-list .services-list-hero .breadcrumb ol,
.page-projects-list .services-list-hero .breadcrumb ol,
.page-blog-list .services-list-hero .breadcrumb ol,
.page-contact .services-list-hero .breadcrumb ol {
    color: rgba(255, 255, 255, 0.65);
}
.page-services-list .services-list-hero .eyebrow,
.page-projects-list .services-list-hero .eyebrow,
.page-blog-list .services-list-hero .eyebrow,
.page-contact .services-list-hero .eyebrow {
    color: #f6e7a8;
    border-bottom-color: rgba(246, 231, 168, 0.45);
}
.services-list-hero-inner {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}
.services-list-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.25;
    max-width: 18ch;
}
.services-list-lead {
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    max-width: 42ch;
    line-height: 1.7;
}
.services-list-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}
.page-services-list .services-list-hero .btn-ghost,
.page-projects-list .services-list-hero .btn-ghost,
.page-blog-list .services-list-hero .btn-ghost,
.page-contact .services-list-hero .btn-ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.page-services-list .services-list-hero .btn-ghost:hover,
.page-projects-list .services-list-hero .btn-ghost:hover,
.page-blog-list .services-list-hero .btn-ghost:hover,
.page-contact .services-list-hero .btn-ghost:hover {
    border-color: var(--color-accent);
    color: #f6e7a8;
    background: rgba(201, 162, 39, 0.08);
}
.services-list-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.15rem;
    padding: 0;
    margin: 0;
    list-style: none;
}
.services-list-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
}
.services-list-trust svg {
    color: #f6e7a8;
    flex-shrink: 0;
}
.services-list-hero-aside {
    display: grid;
    gap: 0.85rem;
    align-content: start;
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}
.services-list-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.55rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.services-list-stat:last-of-type {
    border-bottom: 0;
}
.services-list-stat strong {
    font-size: 1.55rem;
    line-height: 1.1;
    color: #f6e7a8;
    font-variant-numeric: tabular-nums;
}
.services-list-stat span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 600;
}
.services-list-aside-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: var(--color-accent);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.92rem;
    transition: background var(--transition), transform var(--transition);
}
.services-list-aside-cta:hover {
    background: #f0d56a;
    transform: translateY(-1px);
}
.services-list-section {
    padding-top: clamp(2.5rem, 5vw, 4rem);
}
.services-list-toolbar {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: end;
}
.services-list-intro h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}
.services-list-intro p {
    margin: 0;
    color: var(--color-secondary);
    max-width: 46ch;
}
.services-search {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
    max-width: 360px;
    width: 100%;
    color: var(--color-secondary);
}
.services-search:focus-within {
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.services-search input {
    border: 0;
    outline: 0;
    width: 100%;
    background: transparent;
    color: var(--color-primary);
}
.services-empty {
    text-align: center;
    color: var(--color-secondary);
    padding: 2rem 1rem;
    margin: 0;
}
.service-card[hidden] {
    display: none !important;
}
.services-list-cta {
    padding-block: clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(201, 162, 39, 0.14), transparent 55%),
        linear-gradient(180deg, #151515 0%, #1c1c1c 100%);
    color: #fff;
}
.services-list-cta .eyebrow {
    color: #f6e7a8;
    border-bottom-color: rgba(246, 231, 168, 0.4);
}
.services-list-cta-inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}
.services-list-cta h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
}
.services-list-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    max-width: 42ch;
}
.services-list-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.services-list-cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.services-list-cta .btn-ghost:hover {
    border-color: var(--color-accent);
    color: #f6e7a8;
}
@media (min-width: 900px) {
    .services-list-hero-inner {
        grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.55fr);
        gap: 2.5rem;
    }
    .services-list-toolbar {
        grid-template-columns: 1fr auto;
    }
    .services-list-cta-inner {
        grid-template-columns: 1fr auto;
    }
}

/* List pages — compact hero */
.page-services-list .services-list-hero-inner,
.page-projects-list .services-list-hero-inner,
.page-blog-list .services-list-hero-inner,
.page-contact .services-list-hero-inner {
    gap: 1.25rem;
}
.page-services-list .services-list-hero h1,
.page-projects-list .services-list-hero h1,
.page-blog-list .services-list-hero h1,
.page-contact .services-list-hero h1 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    max-width: 22ch;
}
.page-services-list .services-list-lead,
.page-projects-list .services-list-lead,
.page-blog-list .services-list-lead {
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 38ch;
}
.page-services-list .services-list-actions,
.page-projects-list .services-list-actions,
.page-blog-list .services-list-actions {
    margin-bottom: 0.85rem;
    gap: 0.55rem;
}
.page-services-list .services-list-actions .btn,
.page-projects-list .services-list-actions .btn,
.page-blog-list .services-list-actions .btn {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}
.page-services-list .services-list-trust,
.page-projects-list .services-list-trust,
.page-blog-list .services-list-trust {
    gap: 0.45rem 0.85rem;
}
.page-services-list .services-list-trust li,
.page-projects-list .services-list-trust li,
.page-blog-list .services-list-trust li {
    font-size: 0.82rem;
}
.page-services-list .services-list-hero-aside,
.page-projects-list .services-list-hero-aside,
.page-blog-list .services-list-hero-aside,
.page-contact .services-list-hero-aside {
    gap: 0.55rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
}
.page-services-list .services-list-stat,
.page-projects-list .services-list-stat,
.page-blog-list .services-list-stat {
    padding: 0.35rem 0.2rem;
}
.page-services-list .services-list-stat strong,
.page-projects-list .services-list-stat strong,
.page-blog-list .services-list-stat strong {
    font-size: 1.25rem;
}
.page-services-list .services-list-stat span,
.page-projects-list .services-list-stat span,
.page-blog-list .services-list-stat span {
    font-size: 0.78rem;
}
.page-services-list .services-list-aside-cta,
.page-projects-list .services-list-aside-cta,
.page-blog-list .services-list-aside-cta {
    margin-top: 0.15rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
}
.projects-list-section {
    padding-top: clamp(2.5rem, 5vw, 4rem);
}
.projects-list-toolbar {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: end;
}
.projects-list-intro h2 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}
.projects-list-intro p {
    margin: 0;
    color: var(--color-secondary);
    max-width: 46ch;
}
.projects-list-meta {
    justify-self: start;
}
.projects-page-badge {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.28);
    color: var(--color-accent-dark);
    font-size: 0.85rem;
    font-weight: 800;
}
.projects-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}
.projects-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.projects-filter:hover {
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--color-accent-dark);
    transform: translateY(-1px);
}
.projects-filter.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #1a1a1a;
}
.projects-filter-count {
    display: inline-flex;
    min-width: 1.35rem;
    justify-content: center;
    padding: 0.1rem 0.35rem;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.08);
    font-size: 0.75rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.projects-filter.is-active .projects-filter-count {
    background: rgba(26, 26, 26, 0.15);
}
.projects-empty {
    text-align: center;
    padding: 3rem 1rem;
    border-radius: 20px;
    border: 1px dashed rgba(26, 26, 26, 0.12);
    background: rgba(26, 26, 26, 0.02);
}
.projects-empty p {
    margin: 0 0 1rem;
    color: var(--color-secondary);
}
.projects-showcase--list {
    margin-bottom: 2rem;
}
.projects-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding-top: 0.5rem;
}
.projects-pagination-pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}
.projects-pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.projects-pagination-page:hover {
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--color-accent-dark);
}
.projects-pagination-page.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #1a1a1a;
}
.projects-pagination-ellipsis {
    padding: 0 0.25rem;
    color: var(--color-secondary);
    font-weight: 700;
}
.projects-pagination-btn {
    min-width: 5.5rem;
}
@media (min-width: 900px) {
    .projects-list-toolbar {
        grid-template-columns: 1fr auto;
    }
    .projects-list-meta {
        justify-self: end;
    }
}
@media (min-width: 1100px) {
    .projects-showcase--list {
        grid-template-columns: repeat(4, 1fr);
    }
    .projects-showcase--list .project-card--lead {
        grid-column: span 2;
    }
}

.service-card:hover .service-card-cta {
    gap: 0.55rem;
    color: var(--color-accent);
}
.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-secondary);
}
.link-arrow {
    color: var(--color-accent);
    font-weight: 700;
}
.card-grid.services-grid {
    gap: 1.35rem;
}
@media (prefers-reduced-motion: reduce) {
    .service-card:hover { transform: none; }
    .service-card:hover .service-card-media img { transform: none; }
    .service-card:hover .service-card-cta { gap: 0.35rem; }
}

.project-card .project-media,
.article-card .article-media {
    aspect-ratio: 16 / 10;
    background: var(--color-surface-2);
    position: relative;
    overflow: hidden;
}
.project-card img, .article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover img,
.article-card:hover img {
    transform: scale(1.05);
}
.project-card,
.article-card {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    border-radius: 18px;
    border-color: rgba(26, 26, 26, 0.08);
    box-shadow: 0 8px 24px rgba(15, 17, 21, 0.04);
}
.project-card:hover,
.article-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
}
.project-card .project-body,
.article-card .article-body {
    padding: 1.1rem 1.2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}
.project-card h3, .article-card h3,
.project-card h2, .article-card h2 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
}
.project-card p, .article-card p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.project-card-cta {
    margin-top: 0.45rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--color-accent-dark);
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap var(--transition), color var(--transition);
}
.project-card:hover .project-card-cta {
    gap: 0.5rem;
    color: var(--color-accent);
}

/* Homepage projects showcase */
.section-projects {
    background:
        radial-gradient(ellipse 55% 50% at 100% 0%, rgba(201, 162, 39, 0.06), transparent 55%),
        linear-gradient(180deg, #f6f6f7 0%, #fff 72%);
}
.projects-section-top {
    display: grid;
    gap: 1.25rem;
    align-items: end;
    margin-bottom: 1.75rem;
}
.projects-section-aside {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}
.projects-stat,
.areas-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    min-width: 6.75rem;
    min-height: 3rem;
    padding: 0.55rem 0.9rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
}
.projects-stat strong,
.areas-stat strong {
    font-size: 1.25rem;
    line-height: 1.1;
    color: var(--color-accent-dark);
    font-variant-numeric: tabular-nums;
}
.projects-stat span,
.areas-stat span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.projects-section-cta,
.areas-section-cta {
    align-self: center;
    min-height: 3rem;
    padding: 0.55rem 1rem;
    font-size: 0.86rem;
    white-space: nowrap;
    border-radius: 12px;
}
.projects-section-cta svg,
.areas-section-cta svg {
    transform: scaleX(-1);
}
.projects-showcase {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.project-card--showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 20px rgba(15, 17, 21, 0.04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.project-card--showcase:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 16px 36px rgba(15, 17, 21, 0.09);
}
.project-card--showcase:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
.project-card--showcase .project-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ececec;
}
.project-card--lead .project-media {
    aspect-ratio: 16 / 10;
}
.project-card--showcase .project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card--showcase:hover .project-media img {
    transform: scale(1.04);
}
.project-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.22), transparent 55%),
        #1f1f1f;
    font-size: 2.25rem;
    font-weight: 800;
    color: #f6e7a8;
}
.project-card-badge {
    position: absolute;
    inset-inline-start: 0.75rem;
    top: 0.75rem;
    z-index: 2;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 800;
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: 0 4px 12px rgba(15, 17, 21, 0.08);
}
.project-body--showcase {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.35rem;
    padding: 1rem 1.1rem 1.15rem;
}
.project-body--showcase .project-card-date {
    position: static;
    inset: auto;
    display: inline-block;
    width: fit-content;
    padding: 0;
    border-radius: 0;
    background: none;
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: none;
}
.project-body--showcase h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--color-primary);
}
.project-card--lead .project-body--showcase h3 {
    font-size: 1.2rem;
}
.project-body--showcase p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.project-card--showcase .project-card-cta {
    margin-top: auto;
    padding-top: 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-accent-dark);
    font-size: 0.88rem;
    font-weight: 700;
    transition: gap var(--transition), color var(--transition);
}
.project-card--showcase .project-card-cta svg {
    transform: scaleX(-1);
}
.project-card--showcase:hover .project-card-cta {
    gap: 0.5rem;
    color: var(--color-accent);
}
/* Legacy overlay helpers (unused on new cards) */
.project-media-overlay,
.project-overlay-copy {
    display: none;
}
@media (min-width: 768px) {
    .projects-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }
}
@media (min-width: 900px) {
    .projects-section-top {
        grid-template-columns: 1fr auto;
        gap: 2rem;
    }
    .projects-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    .project-card--lead {
        grid-column: span 2;
    }
    .projects-showcase > .project-card--showcase:only-child {
        grid-column: 1 / -1;
        max-width: 760px;
        margin-inline: auto;
        width: 100%;
    }
    .project-card--lead .project-media {
        aspect-ratio: 21 / 11;
    }
    .project-card--lead .project-body--showcase {
        padding: 1.2rem 1.35rem 1.35rem;
    }
    .project-card--lead .project-body--showcase p {
        -webkit-line-clamp: 3;
    }
}
@media (max-width: 767px) {
    .projects-section-aside,
    .areas-section-aside {
        width: 100%;
        align-items: center;
    }
    .projects-section-cta,
    .areas-section-cta {
        flex: 0 1 auto;
    }
}
@media (prefers-reduced-motion: reduce) {
    .project-card--showcase:hover {
        transform: none;
    }
    .project-card--showcase:hover .project-media img {
        transform: none;
    }
}

/* Homepage gallery */
.section-gallery {
    background: #fff;
}
.section-gallery .section-header {
    margin-bottom: 1.75rem;
}
.gallery-grid--home {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}
.gallery-grid--home .gallery-item {
    border-radius: 16px;
}
.gallery-grid--home .gallery-item img {
    aspect-ratio: 4 / 3;
}
.gallery-grid--home .gallery-item figcaption {
    display: none;
}
@media (min-width: 768px) {
    .gallery-grid--home {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .gallery-grid--home .gallery-item:first-child {
        grid-column: span 2;
    }
    .gallery-grid--home .gallery-item:first-child img {
        aspect-ratio: 16 / 10;
    }
}
@media (min-width: 1100px) {
    .gallery-grid--home {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Why us / Process / Areas */
.section-why {
    background:
        radial-gradient(ellipse 50% 45% at 0% 0%, rgba(201, 162, 39, 0.05), transparent 55%),
        #fff;
}
.why-section-top,
.areas-section-top {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: end;
}
.why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}
.why-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.8rem 0.85rem;
    border-radius: 14px;
    background: #f7f7f8;
    border: 1px solid rgba(26, 26, 26, 0.06);
    text-align: center;
}
.why-stat strong {
    font-size: 1.4rem;
    line-height: 1.1;
    color: var(--color-accent-dark);
    font-variant-numeric: tabular-nums;
}
.why-stat span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.why-feature-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 1fr;
}
.why-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 18px;
    padding: 1.25rem 1.2rem;
    box-shadow: 0 6px 18px rgba(15, 17, 21, 0.035);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 12px 28px rgba(15, 17, 21, 0.07);
}
.why-feature-card--lead {
    background:
        radial-gradient(ellipse 90% 70% at 100% 0%, rgba(201, 162, 39, 0.09), transparent 55%),
        #fff;
    border-color: rgba(201, 162, 39, 0.2);
}
.why-feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.85rem;
    border-radius: 12px;
    background: #1a1a1a;
    color: #f6e7a8;
}
.section-process {
    background:
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(201, 162, 39, 0.05), transparent 55%),
        var(--color-surface);
}
.process-timeline {
    display: grid;
    gap: 0.85rem;
    position: relative;
}
.process-timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: start;
    padding: 1.1rem 1.05rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.process-timeline-step:hover {
    border-color: rgba(201, 162, 39, 0.32);
    box-shadow: 0 10px 24px rgba(15, 17, 21, 0.06);
}
.process-timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.process-timeline-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--color-accent-dark);
}
.process-timeline-body h3 {
    margin: 0 0 0.3rem;
    font-size: 1.02rem;
}
.process-timeline-body p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
}
.section-areas {
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.areas-section-aside {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
}
.areas-panel {
    background:
        radial-gradient(ellipse 70% 70% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 20px;
    padding: 1.25rem 1.15rem 1.35rem;
}
.areas-panel-intro {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.07);
}
.areas-panel-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 11px;
    background: rgba(201, 162, 39, 0.14);
    color: var(--color-accent-dark);
}
.areas-panel-intro p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}
.feature-grid, .process-grid {
    display: grid;
    gap: 1.1rem;
}
.feature-card, .process-step {
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 18px;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover, .process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 14px 30px rgba(15, 17, 21, 0.08);
}
.feature-mark {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-accent-dark);
    margin-bottom: 0.55rem;
    font-variant-numeric: tabular-nums;
}
.feature-card h3, .process-step h3,
.why-feature-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}
.feature-card p, .process-step p,
.why-feature-card p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}
.section-process .process-grid {
    position: relative;
}
.process-step {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: #1a1a1a;
    color: #f6e7a8;
    font-weight: 800;
    margin-bottom: 0;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Areas */
.areas-wrap {
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #f7f7f8;
    border: 1px solid rgba(26, 26, 26, 0.08);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.88rem;
    transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.area-chip svg {
    color: var(--color-accent-dark);
    flex-shrink: 0;
    opacity: 0.85;
}
.area-chip:hover {
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--color-accent-dark);
    background: rgba(201, 162, 39, 0.08);
    transform: translateY(-1px);
}
.area-chip--home {
    padding: 0.52rem 0.85rem;
}
.areas-grid-full {
    justify-content: flex-start;
}
.area-chip-lg {
    font-size: 1rem;
    padding: 0.75rem 1.15rem;
}
.section-cta {
    margin-top: 1rem;
}

/* Reviews */
.section-reviews .section-header {
    margin-bottom: 1.75rem;
}
.section-reviews .reviews-grid {
    gap: 0.9rem;
}
.section-reviews .review-card {
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
    padding: 1.25rem 1.2rem 1.2rem;
}
.section-reviews .review-card::before {
    color: rgba(201, 162, 39, 0.22);
    font-size: 2.4rem;
    top: 0.45rem;
}

@media (min-width: 640px) {
    .why-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-feature-card--lead {
        grid-column: auto;
    }
}
@media (min-width: 900px) {
    .why-section-top,
    .areas-section-top {
        grid-template-columns: minmax(0, 1.4fr) auto;
        gap: 2rem;
    }
    .why-stats {
        min-width: 280px;
    }
    .why-feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    .why-feature-card--lead {
        grid-column: auto;
    }
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    .process-timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.3rem 1rem;
    }
    .process-timeline-node {
        margin: 0 auto;
        flex-direction: row;
        gap: 0.5rem;
    }
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 2.15rem;
        inset-inline: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
        pointer-events: none;
        z-index: 0;
    }
    .process-timeline-step {
        position: relative;
        z-index: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
    .why-feature-card:hover,
    .process-timeline-step:hover,
    .area-chip:hover,
    .feature-card:hover,
    .process-step:hover,
    .gallery-item:hover {
        transform: none;
    }
}

/* CMS / TinyMCE editor content (frontend) */
.rich-content,
.cms-content {
    line-height: 1.85;
    color: var(--color-primary);
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.rich-content > :first-child,
.cms-content > :first-child {
    margin-top: 0;
}
.rich-content > :last-child,
.cms-content > :last-child {
    margin-bottom: 0;
}
.rich-content p,
.cms-content p {
    margin: 0 0 1rem;
    color: var(--color-secondary);
}
.rich-content h1,
.cms-content h1,
.rich-content h2,
.cms-content h2,
.rich-content h3,
.cms-content h3,
.rich-content h4,
.cms-content h4,
.rich-content h5,
.cms-content h5,
.rich-content h6,
.cms-content h6 {
    color: var(--color-primary);
    line-height: 1.35;
    font-weight: 800;
}
.rich-content h2,
.cms-content h2 {
    margin: 1.75rem 0 0.75rem;
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
}
.rich-content h3,
.cms-content h3 {
    margin: 1.5rem 0 0.65rem;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
}
.rich-content h4,
.cms-content h4 {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.05rem;
}
.rich-content h5,
.cms-content h5,
.rich-content h6,
.cms-content h6 {
    margin: 1rem 0 0.45rem;
    font-size: 1rem;
}
.rich-content a,
.cms-content a {
    color: var(--color-accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}
.rich-content a:hover,
.cms-content a:hover {
    color: var(--color-accent);
}
.rich-content strong,
.cms-content strong,
.rich-content b,
.cms-content b {
    color: var(--color-primary);
    font-weight: 800;
}
.rich-content em,
.cms-content em,
.rich-content i,
.cms-content i {
    font-style: italic;
}
.rich-content u,
.cms-content u {
    text-underline-offset: 2px;
}
.rich-content s,
.cms-content s,
.rich-content del,
.cms-content del {
    opacity: 0.75;
}
.rich-content ul,
.cms-content ul,
.rich-content ol,
.cms-content ol {
    margin: 0 0 1rem;
    padding-inline-start: 1.35rem;
    color: var(--color-secondary);
}
.rich-content li,
.cms-content li {
    margin-bottom: 0.35rem;
}
.rich-content li > ul,
.cms-content li > ul,
.rich-content li > ol,
.cms-content li > ol {
    margin-top: 0.35rem;
    margin-bottom: 0;
}
.rich-content blockquote,
.cms-content blockquote {
    margin: 1.25rem 0;
    padding: 1rem 1.15rem;
    border-inline-start: 4px solid var(--color-accent);
    border-radius: 0 14px 14px 0;
    background: rgba(201, 162, 39, 0.08);
    color: var(--color-primary);
    font-size: 1.02rem;
    line-height: 1.75;
}
.rich-content blockquote p,
.cms-content blockquote p {
    margin-bottom: 0.5rem;
    color: inherit;
}
.rich-content blockquote p:last-child,
.cms-content blockquote p:last-child {
    margin-bottom: 0;
}
.rich-content img,
.cms-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 1rem 0;
    display: block;
}
.rich-content figure,
.cms-content figure {
    margin: 1.25rem 0;
}
.rich-content figure img,
.cms-content figure img {
    margin: 0;
}
.rich-content figcaption,
.cms-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: var(--color-secondary);
    text-align: center;
}
.rich-content iframe,
.cms-content iframe,
.rich-content video,
.cms-content video,
.rich-content embed,
.cms-content embed {
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 1.25rem 0;
    border: 0;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
}
.rich-content table,
.cms-content table {
    width: 100%;
    margin: 1.25rem 0;
    border-collapse: collapse;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.92rem;
}
.rich-content th,
.cms-content th,
.rich-content td,
.cms-content td {
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    text-align: start;
    vertical-align: top;
}
.rich-content th,
.cms-content th {
    background: rgba(26, 26, 26, 0.04);
    color: var(--color-primary);
    font-weight: 800;
}
.rich-content td,
.cms-content td {
    color: var(--color-secondary);
}
.rich-content thead th,
.cms-content thead th {
    border-bottom-width: 2px;
}
.rich-content pre,
.cms-content pre,
.rich-content code,
.cms-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.88em;
}
.rich-content pre,
.cms-content pre {
    margin: 1rem 0;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.04);
    border: 1px solid rgba(26, 26, 26, 0.08);
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}
.rich-content code,
.cms-content code {
    padding: 0.12rem 0.35rem;
    border-radius: 6px;
    background: rgba(26, 26, 26, 0.05);
}
.rich-content pre code,
.cms-content pre code {
    padding: 0;
    background: transparent;
}
.rich-content hr,
.cms-content hr {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.rich-content .alignleft,
.cms-content .alignleft {
    float: inline-start;
    margin-inline-end: 1rem;
    margin-bottom: 0.75rem;
}
.rich-content .alignright,
.cms-content .alignright {
    float: inline-end;
    margin-inline-start: 1rem;
    margin-bottom: 0.75rem;
}
.rich-content .aligncenter,
.cms-content .aligncenter {
    display: block;
    margin-inline: auto;
    text-align: center;
}
.rich-content::after,
.cms-content::after {
    content: '';
    display: table;
    clear: both;
}
@media (max-width: 767px) {
    .rich-content table,
    .cms-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    .rich-content th,
    .cms-content th,
    .rich-content td,
    .cms-content td {
        white-space: normal;
    }
}

/* Reviews */
.review-card {
    padding: 1.4rem 1.3rem 1.35rem;
    position: relative;
    border-radius: 18px;
    background:
        linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
}
.review-card::before {
    content: '“';
    position: absolute;
    inset-inline-start: 1rem;
    top: 0.55rem;
    font-size: 2.8rem;
    line-height: 1;
    color: rgba(201, 162, 39, 0.28);
    font-family: Georgia, serif;
    pointer-events: none;
}
.stars {
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.review-card blockquote {
    margin: 0 0 1rem;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    line-height: 1.7;
}
.review-card cite {
    font-style: normal;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ */
.section-faq {
    background:
        radial-gradient(ellipse 50% 45% at 50% 0%, rgba(201, 162, 39, 0.05), transparent 55%),
        #fff;
}
.section-faq .section-header {
    margin-bottom: 1.75rem;
}
.faq-list {
    display: grid;
    gap: 0.7rem;
    max-width: 820px;
    margin-inline: auto;
}
.faq-item {
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.28);
}
.faq-item.is-open {
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 10px 28px rgba(15, 17, 21, 0.05);
}
.faq-question {
    width: 100%;
    text-align: start;
    padding: 1.05rem 1.15rem;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.45;
    color: var(--color-primary);
}
.faq-question:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}
.faq-toggle {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #f4f4f5;
    color: var(--color-primary);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.faq-item.is-open .faq-toggle {
    background: #1a1a1a;
    color: #f6e7a8;
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    padding: 0 1.15rem 1.15rem;
    color: var(--color-secondary);
}
.faq-answer p {
    margin: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
    padding-top: 0.85rem;
    font-size: 0.94rem;
    line-height: 1.7;
}
.faq-item.is-open .faq-answer {
    display: block;
}
@media (prefers-reduced-motion: reduce) {
    .faq-toggle {
        transition: none;
    }
}

/* Contact (homepage) */
.contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 60% at 100% 0%, rgba(201, 162, 39, 0.16), transparent 55%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(201, 162, 39, 0.08), transparent 50%),
        linear-gradient(165deg, #141414 0%, #1a1a1a 55%, #1f1c14 100%);
    color: #fff;
}
.contact-section .eyebrow {
    color: #f6e7a8;
}
.contact-section h2 {
    color: #fff;
    margin: 0.35rem 0 0.65rem;
}
.contact-home-intro p {
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 36rem;
    line-height: 1.65;
}
.contact-grid {
    display: grid;
    gap: 1.75rem;
}
.contact-cards {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: 1fr;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    color: inherit;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.contact-card--link:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-1px);
}
.contact-card--link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.contact-card--wa {
    border-color: rgba(37, 211, 102, 0.28);
}
.contact-card--wa:hover {
    border-color: rgba(37, 211, 102, 0.5);
}
.contact-card-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 11px;
    background: rgba(201, 162, 39, 0.14);
    color: #f6e7a8;
}
.contact-card--wa .contact-card-icon {
    background: rgba(37, 211, 102, 0.16);
    color: #5dff9a;
}
.contact-card-body {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}
.contact-card-body strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
}
.contact-card-body span {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    word-break: break-word;
}
.contact-home-form {
    position: relative;
}
.contact-section .contact-form {
    background: #fff;
    color: var(--color-primary);
    border-radius: 20px;
    padding: 1.35rem 1.25rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.contact-section .contact-form > h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
}
.contact-section .form-grid {
    display: grid;
    gap: 0.85rem;
}
.contact-section .form-grid label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.contact-section .form-grid input,
.contact-section .form-grid textarea,
.contact-section .form-grid select {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 12px;
    background: #fafafa;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.contact-section .form-grid input:hover,
.contact-section .form-grid textarea:hover,
.contact-section .form-grid select:hover {
    border-color: rgba(201, 162, 39, 0.4);
}
.contact-section .form-grid input:focus,
.contact-section .form-grid textarea:focus,
.contact-section .form-grid select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.contact-section .form-grid > button.btn {
    width: 100%;
    justify-content: center;
    min-height: 3rem;
    margin-top: 0.15rem;
}
.contact-section .form-note {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
}
.contact-section .contact-map {
    margin-top: 1.15rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.04);
}
.contact-section .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.02);
}
@media (min-width: 640px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 2.25rem;
        align-items: start;
    }
    .contact-home-form {
        position: sticky;
        top: 5.5rem;
    }
    .contact-section .contact-form {
        padding: 1.55rem 1.45rem 1.6rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .contact-card--link:hover {
        transform: none;
    }
}

.contact-form {
    background: #fff;
    color: var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
}
.form-grid {
    display: grid;
    gap: 0.9rem;
}
.form-grid label {
    display: grid;
    gap: 0.35rem;
    font-weight: 500;
}
.form-grid input,
.form-grid textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
}
.form-grid input:focus,
.form-grid textarea:focus {
    outline: 2px solid rgba(201, 162, 39, 0.35);
    border-color: var(--color-accent);
}

/* Promo banner — urgency strip (brand gold / charcoal) */
.promo-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(105deg, #111111 0%, #1c1c1c 48%, #2a2416 100%);
    border-bottom: 1px solid rgba(201, 162, 39, 0.45);
}
.promo-banner-glow {
    position: absolute;
    inset-inline-end: -10%;
    top: -80%;
    width: min(420px, 55vw);
    height: 220%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.22) 0%, transparent 68%);
    pointer-events: none;
}
.promo-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding-block: 0.95rem;
}
.promo-banner-main {
    display: grid;
    gap: 0.45rem;
    min-width: min(100%, 280px);
    flex: 1 1 320px;
}
.promo-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.85rem;
}
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-accent);
    color: #111;
    font-weight: 800;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.promo-badge--soft {
    background: rgba(201, 162, 39, 0.16);
    color: #f6e7a8;
    box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.35);
}
.promo-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}
.promo-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    animation: promo-pulse 1.8s ease-out infinite;
}
.promo-copy {
    display: grid;
    gap: 0.2rem;
}
.promo-title {
    display: block;
    font-size: clamp(1.05rem, 2.2vw, 1.28rem);
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
}
.promo-desc {
    margin: 0;
    max-width: 42rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}
.promo-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1rem;
    flex: 0 1 auto;
}
.promo-countdown {
    display: inline-flex;
    align-items: stretch;
    gap: 0.35rem;
    direction: ltr;
}
.promo-countdown-unit {
    min-width: 3.1rem;
    padding: 0.35rem 0.45rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.promo-countdown-value {
    display: block;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.2;
    color: #f6e7a8;
}
.promo-countdown-label {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}
.promo-countdown-sep {
    align-self: center;
    color: rgba(246, 231, 168, 0.55);
    font-weight: 700;
    padding-inline: 0.05rem;
}
.promo-countdown.is-ended .promo-countdown-unit {
    opacity: 0.55;
}
.btn-promo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--color-accent);
    color: #111;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.28);
}
.btn-promo:hover {
    background: var(--color-accent-dark);
    color: #fff;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}
.btn-promo:focus-visible {
    outline: 2px solid #f6e7a8;
    outline-offset: 3px;
}
.btn-promo svg {
    transform: scaleX(-1);
}
@keyframes promo-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .promo-live-dot { animation: none; }
    .btn-promo { transition: none; }
}
@media (max-width: 640px) {
    .promo-banner-inner {
        padding-block: 1rem;
    }
    .promo-banner-actions {
        width: 100%;
        justify-content: space-between;
    }
    .btn-promo {
        flex: 1 1 auto;
    }
}
.btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.88rem;
}

/* Footer ticker */
.footer-ticker {
    background: #0c0c0c;
    border-top: 1px solid rgba(201, 162, 39, 0.18);
    padding: 0.7rem 0;
}
.footer-ticker-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.55rem;
    justify-content: center;
}
.footer-ticker a,
.footer-ticker span {
    display: inline-block;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.footer-ticker a:hover {
    color: #f6e7a8;
    background: rgba(201, 162, 39, 0.12);
    border-color: rgba(201, 162, 39, 0.28);
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 50% 55% at 0% 0%, rgba(201, 162, 39, 0.1), transparent 55%),
        linear-gradient(180deg, #141414 0%, #0f0f0f 100%);
    color: rgba(255, 255, 255, 0.78);
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: 0;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color var(--transition);
}
.site-footer a:hover {
    color: #f6e7a8;
}
.footer-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #fff !important;
}
.footer-logo,
.footer-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    object-fit: cover;
}
.footer-brand-mark {
    display: grid;
    place-items: center;
    background: #1a1a1a;
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: #f6e7a8;
    font-weight: 800;
    font-size: 0.95rem;
}
.footer-brand-text {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}
.footer-brand-text strong {
    font-size: 1.05rem;
    line-height: 1.35;
    color: #fff;
}
.footer-brand-text span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0 0 1.15rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}
.footer-address svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #f6e7a8;
}
.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.footer-cta,
.footer-cta-ghost {
    min-height: 2.55rem;
    padding-inline: 1.05rem;
    font-size: 0.88rem;
    border-radius: 12px;
}
.footer-cta-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff !important;
}
.footer-cta-ghost:hover {
    border-color: rgba(201, 162, 39, 0.45);
    color: #f6e7a8 !important;
    background: rgba(201, 162, 39, 0.08);
}
.footer-col h3 {
    margin: 0 0 0.95rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li + li {
    margin-top: 0.45rem;
}
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.92rem;
    font-weight: 600;
}
.footer-links a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.45);
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}
.footer-links a:hover::before {
    background: var(--color-accent);
    transform: scale(1.2);
}
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    font-weight: 600;
    word-break: break-word;
}
.footer-contact-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(201, 162, 39, 0.12);
    color: #f6e7a8;
}
.footer-contact-icon--wa {
    background: rgba(37, 211, 102, 0.14);
    color: #5dff9a;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 1.1rem 0 0;
    list-style: none;
    padding: 0;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}
.footer-social a:hover {
    color: #f6e7a8;
    border-color: rgba(201, 162, 39, 0.35);
    background: rgba(201, 162, 39, 0.1);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-block: 1.05rem 1.25rem;
    font-size: 0.84rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p {
    margin: 0;
}
.footer-credit {
    margin: 0;
}
.footer-credit a {
    color: #f6e7a8;
    font-weight: 700;
}
.footer-credit a:hover {
    text-decoration: underline;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr) minmax(0, 1fr);
        gap: 2.5rem;
        padding-bottom: 2.5rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .footer-links a::before,
    .footer-ticker a,
    .footer-social a {
        transition: none;
    }
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.specs-table th,
.specs-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: right;
}
.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: 0;
}
.specs-table th {
    width: 38%;
    font-weight: 700;
    color: var(--color-secondary);
    background: rgba(247, 247, 248, 0.7);
}

/* Floating buttons */
.floating-actions {
    position: fixed;
    inset-inline-end: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.75rem;
    z-index: 90;
}
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}
.float-btn:hover { transform: scale(1.05); }

.back-to-top {
    position: fixed;
    /* Opposite side from WhatsApp / phone floats to avoid overlap */
    inset-inline-start: 1rem;
    inset-inline-end: auto;
    bottom: 1.15rem;
    z-index: 91;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--color-accent); }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.article-detail-section,
.service-detail-section,
.contact-section {
    opacity: 1;
    transform: none;
}
.float-whatsapp { background: #25d366; color: #fff; }
.float-phone { background: var(--color-accent); color: #fff; }

/* Utilities */
.surface-section { background: var(--color-surface); }
.text-muted { color: var(--color-secondary); }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (min-width: 768px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(4, 1fr); }
    .hero-proof-inner { grid-template-columns: repeat(4, 1fr); }
    .header-phone span { display: inline; }
}

@media (min-width: 992px) {
    .nav-toggle { display: none; }
    .site-nav {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }
    .header-actions { display: flex; }
    .brand { flex: 0 1 auto; }
    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem;
    }
    .hero-stage {
        min-height: 540px;
        padding: 1rem 0.5rem 1.5rem 0;
    }
    .hero-shot--hero {
        aspect-ratio: 3 / 4;
        max-height: 560px;
    }
    .hero-shot-stack {
        width: min(70%, 260px);
    }
    .hero-mosaic {
        min-height: 420px;
    }
    .card-grid.services-grid { grid-template-columns: repeat(4, 1fr); }
    .card-grid.projects-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-grid, .process-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Service page */
.service-hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2.5rem;
    background: linear-gradient(180deg, #111 0%, #1a1a1a 70%, var(--color-bg) 70%);
    color: #fff;
}
.page-service .service-detail-hero,
.page-project .service-detail-hero,
.page-article .service-detail-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 2.5rem;
    background:
        radial-gradient(ellipse 55% 65% at 12% 18%, rgba(201, 162, 39, 0.18), transparent 55%),
        linear-gradient(165deg, #0e0e0e 0%, #171717 55%, #1c1c1c 100%);
}
.page-service .service-hero-bg,
.page-project .service-hero-bg,
.page-article .service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-service .service-hero-bg img,
.page-project .service-hero-bg img,
.page-article .service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: saturate(0.85) contrast(1.05);
}
.page-service .service-hero-veil,
.page-project .service-hero-veil,
.page-article .service-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.72) 48%, rgba(10, 10, 10, 0.55) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, transparent 35%, rgba(10, 10, 10, 0.45) 100%);
}
.page-service .service-detail-hero::after,
.page-project .service-detail-hero::after,
.page-article .service-detail-hero::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.45), transparent);
}
.page-service .service-detail-hero .eyebrow,
.page-project .service-detail-hero .eyebrow,
.page-article .service-detail-hero .eyebrow {
    color: #f6e7a8;
    border-bottom-color: rgba(246, 231, 168, 0.4);
}
.page-service .service-detail-hero .service-hero-grid,
.page-project .service-detail-hero .service-hero-grid,
.page-article .service-detail-hero .service-hero-grid {
    position: relative;
    z-index: 3;
}
.page-service .service-hero-copy .breadcrumb ol,
.page-project .service-hero-copy .breadcrumb ol,
.page-article .service-hero-copy .breadcrumb ol {
    margin-bottom: 0.85rem;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0 0 1.25rem;
    list-style: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-inline-start: 0.5rem;
    opacity: 0.6;
}
.breadcrumb a:hover { color: var(--color-accent); }
.service-hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}
.service-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    line-height: 1.25;
}
.service-lead {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 40ch;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.service-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.service-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    font-weight: 600;
}
.service-meta-pill--rating {
    color: #f6e7a8;
    border-color: rgba(201, 162, 39, 0.35);
    background: rgba(201, 162, 39, 0.12);
}
.service-meta-pill--price {
    color: #f6e7a8;
}
.service-hero-actions {
    margin-bottom: 0;
}
.page-service .service-detail-hero .btn-ghost,
.page-project .service-detail-hero .btn-ghost,
.page-article .service-detail-hero .btn-ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.page-service .service-detail-hero .btn-ghost:hover,
.page-project .service-detail-hero .btn-ghost:hover,
.page-article .service-detail-hero .btn-ghost:hover {
    border-color: var(--color-accent);
    color: #f6e7a8;
    background: rgba(201, 162, 39, 0.08);
}
.service-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
}
.service-hero-trust li {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
}
.service-hero-trust li::before {
    content: '';
    width: 6px;
    height: 6px;
    margin-inline-end: 0.4rem;
    border-radius: 50%;
    background: var(--color-accent);
}
.service-hero-media {
    min-width: 0;
}
.service-hero-frame {
    position: relative;
    border-radius: 22px 8px 22px 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.03);
}
.service-hero-frame::before {
    content: '';
    position: absolute;
    inset: 0.55rem;
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 16px 4px 16px 4px;
    pointer-events: none;
    z-index: 1;
}
.service-hero-media img,
.service-hero-placeholder {
    width: 100%;
    border-radius: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.service-hero-placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.25), transparent 55%),
        rgba(255, 255, 255, 0.06);
    border: 0;
    font-size: 4rem;
    color: var(--color-accent);
    font-weight: 800;
}

.service-process-strip {
    background: #f7f7f8;
    border-bottom: 1px solid var(--color-border);
    padding-block: 0.85rem;
}
.service-process-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.service-process-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.service-process-step span {
    display: grid;
    place-items: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 8px;
    background: #1a1a1a;
    color: #f6e7a8;
    font-size: 0.75rem;
    font-weight: 800;
}

.service-jump {
    position: sticky;
    top: var(--header-height);
    z-index: 40;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}
.service-jump-inner {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-block: 0.55rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.service-jump-inner::-webkit-scrollbar { display: none; }
.service-jump-link {
    flex: 0 0 auto;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-secondary);
    white-space: nowrap;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.service-jump-link:hover {
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--color-accent-dark);
    background: rgba(201, 162, 39, 0.06);
}

.service-detail-section {
    padding-top: clamp(2rem, 4vw, 3.25rem);
}
.service-content-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}
.service-content h2,
.service-block-head h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.3rem, 2.4vw, 1.55rem);
    line-height: 1.3;
}
.service-block {
    margin-bottom: 2.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    scroll-margin-top: calc(var(--header-height) + 3.5rem);
}
.service-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.service-block-head {
    margin-bottom: 1rem;
}
.service-block-head .eyebrow {
    margin-bottom: 0.35rem;
}
.service-feature-grid {
    gap: 1rem;
}
.service-price-note {
    margin: 0.75rem 0 0;
    color: var(--color-secondary);
    font-size: 0.9rem;
}
.specs-table-wrap {
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
}
.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.color-swatch-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0.75rem 0 1.25rem;
}
.color-swatch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    font-size: 0.9rem;
    background: #fff;
}
.color-swatch-dot,
.color-swatch-sm {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: inline-block;
    flex-shrink: 0;
}
.color-swatch-sm {
    width: 0.85rem;
    height: 0.85rem;
    margin-inline-end: 0.25rem;
    vertical-align: middle;
}
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery-item {
    margin: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    cursor: zoom-in;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 17, 21, 0.1);
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item figcaption {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
}
.pricing-table-wrap { overflow-x: auto; border-radius: 16px; }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
}
.pricing-table th,
.pricing-table td {
    padding: 0.85rem 1rem;
    text-align: start;
    border-bottom: 1px solid var(--color-border);
}
.pricing-table th {
    background: var(--color-surface);
    font-weight: 700;
}
.pricing-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}
.pricing-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}
.price-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.9rem 1.15rem;
    border-radius: 14px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.28);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-accent-dark);
}
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 56px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 16px rgba(15, 17, 21, 0.04);
}
.brand-card img {
    max-width: 120px;
    max-height: 48px;
    object-fit: contain;
}
.service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 4rem);
    scroll-margin-top: calc(var(--header-height) + 3.5rem);
}
.service-quote-card {
    padding: 1.25rem 1.15rem 1.3rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 14px 36px rgba(15, 17, 21, 0.07);
}
.service-quote-head {
    margin-bottom: 1.1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.service-quote-head .eyebrow {
    margin-bottom: 0.3rem;
}
.service-quote-head h2 {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    line-height: 1.3;
}
.service-quote-head p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.86rem;
    line-height: 1.55;
}
.service-quote-card .contact-form {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}
.service-quote-card .contact-form > h3,
.service-quote-card .contact-form > p.text-muted,
.service-quote-card .contact-form > .text-muted {
    display: none !important;
}
.service-quote-card .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 0.65rem;
    align-items: start;
}
.service-quote-card .form-grid > label:first-of-type,
.service-quote-card .form-grid > label:has(textarea),
.service-quote-card .form-grid > label:has(select),
.service-quote-card .form-grid > button,
.service-quote-card .form-grid > p,
.service-quote-card .form-grid > fieldset,
.service-quote-card .form-grid > .checkbox-label {
    grid-column: 1 / -1;
}
.service-quote-card .form-grid label {
    display: grid;
    gap: 0.28rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
}
.service-quote-card .form-grid input,
.service-quote-card .form-grid textarea,
.service-quote-card .form-grid select {
    width: 100%;
    margin: 0;
    padding: 0.72rem 0.85rem;
    border: 1px solid #d8dbe0;
    border-radius: 10px;
    background: #fff;
    color: var(--color-primary);
    font-size: 0.92rem;
    line-height: 1.4;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.service-quote-card .form-grid input::placeholder,
.service-quote-card .form-grid textarea::placeholder {
    color: #9ca3af;
}
.service-quote-card .form-grid input:hover,
.service-quote-card .form-grid textarea:hover,
.service-quote-card .form-grid select:hover {
    border-color: #b8bec6;
}
.service-quote-card .form-grid input:focus,
.service-quote-card .form-grid textarea:focus,
.service-quote-card .form-grid select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.service-quote-card .form-grid input[type="tel"],
.service-quote-card .form-grid input[name="phone_number"],
.service-quote-card .form-grid input[name="phone"] {
    direction: ltr;
    text-align: left;
}
.service-quote-card .form-grid textarea {
    min-height: 86px;
    resize: vertical;
}
.service-quote-card .form-grid > button.btn {
    width: 100%;
    margin-top: 0.2rem;
    padding: 0.88rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #1a1a1a;
}
.service-quote-card .form-grid > button.btn:hover {
    background: #d4b03a;
    border-color: #d4b03a;
    color: #1a1a1a;
    transform: translateY(-1px);
}
.service-quote-card .form-note {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--color-secondary);
    text-align: center;
}
.service-quote-card .form-success {
    margin: 0;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    background: rgba(22, 163, 74, 0.08);
    font-size: 0.85rem;
}
.service-quote-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.95rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
    text-align: center;
    font-weight: 800;
    color: var(--color-accent-dark);
    font-size: 0.92rem;
}
.service-quote-phone:hover {
    color: var(--color-accent);
}
.page-service .floating-actions {
    display: none;
}
.form-note {
    margin: 0;
    font-size: 0.85rem;
}
.form-success {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-success, #15803d);
    font-weight: 600;
}
.form-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}
.form-fieldset legend {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.page-service .sticky-mobile-cta,
.page-project .sticky-mobile-cta,
.page-article .sticky-mobile-cta,
.page-location .sticky-mobile-cta {
    display: none;
}
.sticky-service-cta {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}
.sticky-mobile-cta {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}
.sticky-service-cta .btn,
.sticky-mobile-cta .btn {
    flex: 1;
    padding-block: 0.75rem;
    font-size: 0.9rem;
}
.page-service .floating-actions,
.page-project .floating-actions,
.page-article .floating-actions,
body:not(.page-service):not(.page-project):not(.page-article) .floating-actions {
    bottom: 5rem;
}
.back-to-top {
    bottom: 5.15rem;
}

@media (max-width: 767px) {
    .page-service .service-detail-hero,
    .page-project .service-detail-hero,
.page-article .service-detail-hero {
        padding-top: calc(var(--header-height) + 0.55rem);
        padding-bottom: 1.15rem;
    }
    .page-service .service-detail-hero .service-hero-grid,
    .page-project .service-detail-hero .service-hero-grid,
.page-article .service-detail-hero .service-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }
    .page-service .service-hero-copy,
    .page-project .service-hero-copy,
    .page-article .service-hero-copy {
        order: 1;
        min-width: 0;
        width: 100%;
        align-self: stretch;
    }
    .page-service .service-hero-media,
    .page-project .service-hero-media {
        order: 2;
    }
    .page-service .service-hero-copy .breadcrumb ol,
    .page-project .service-hero-copy .breadcrumb ol,
.page-article .service-hero-copy .breadcrumb ol {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
        gap: 0.25rem;
    }
    .page-service .service-hero h1,
    .page-project .service-hero h1,
    .page-article .service-hero h1 {
        margin-bottom: 0.35rem;
        font-size: 1.45rem;
        line-height: 1.25;
    }
    .page-service .service-lead,
    .page-project .service-lead,
    .page-article .service-lead {
        margin-bottom: 0.55rem;
        font-size: 0.88rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 100%;
        width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .page-service .service-hero-meta,
    .page-project .service-hero-meta,
    .page-article .service-hero-meta {
        gap: 0.35rem;
        margin-bottom: 0.7rem;
    }
    .page-service .service-meta-pill,
    .page-project .service-meta-pill,
    .page-article .service-meta-pill {
        padding: 0.22rem 0.5rem;
        font-size: 0.74rem;
    }
    .page-service .service-hero-actions,
    .page-project .service-hero-actions,
    .page-article .service-hero-actions {
        gap: 0.45rem;
    }
    .page-service .service-hero-actions .btn,
    .page-project .service-hero-actions .btn,
    .page-article .service-hero-actions .btn {
        flex: 1 1 auto;
        padding: 0.7rem 0.85rem;
        font-size: 0.9rem;
    }
    .page-service .service-hero-wa,
    .page-project .service-hero-wa {
        display: none;
    }
    .page-service .service-hero-media,
    .page-project .service-hero-media {
        display: none;
    }
    .page-service .service-hero-frame {
        border-radius: 14px 5px 14px 5px;
    }
    .page-service .service-hero-frame::before {
        inset: 0.35rem;
        border-radius: 10px 3px 10px 3px;
    }
    .page-service .service-hero-media img,
    .page-service .service-hero-placeholder {
        aspect-ratio: 16 / 9;
        max-height: 168px;
    }
    .page-service .service-hero-trust {
        margin-top: 0.55rem;
        gap: 0.3rem;
    }
    .page-service .service-hero-trust li {
        padding: 0.22rem 0.5rem;
        font-size: 0.7rem;
    }
    .page-service .service-process-inner {
        gap: 0.25rem;
    }
    .page-service .service-process-step {
        flex-direction: column;
        gap: 0.2rem;
        font-size: 0.68rem;
        text-align: center;
    }
    .page-service .service-jump-link {
        padding: 0.32rem 0.6rem;
        font-size: 0.76rem;
    }
    .page-service .service-block,
    .page-project .service-block {
        margin-bottom: 1.4rem;
        padding-bottom: 1.25rem;
        scroll-margin-top: calc(var(--header-height) + 2.75rem);
    }
    .page-service .service-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }
    .page-service .service-feature-grid .feature-card {
        padding: 0.9rem 0.8rem;
    }
    .page-service .service-feature-grid .feature-card h3 {
        font-size: 0.92rem;
    }
    .page-service .service-feature-grid .feature-card p {
        font-size: 0.8rem;
        line-height: 1.45;
    }
    .page-service .service-quote-card,
    .page-project .service-quote-card {
        padding: 1.05rem 0.95rem 1.15rem;
        border-radius: 16px;
    }
    .page-service .service-quote-head,
    .page-project .service-quote-head {
        margin-bottom: 0.9rem;
        padding-bottom: 0.8rem;
    }
    .page-service .service-quote-head h2,
    .page-project .service-quote-head h2 {
        font-size: 1.1rem;
    }
    .page-service .service-quote-card .form-grid,
    .page-project .service-quote-card .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem 0.55rem;
    }
    .page-service .service-quote-card .form-grid input,
    .page-service .service-quote-card .form-grid textarea,
    .page-service .service-quote-card .form-grid select,
    .page-project .service-quote-card .form-grid input,
    .page-project .service-quote-card .form-grid textarea,
    .page-project .service-quote-card .form-grid select {
        padding: 0.7rem 0.75rem;
        font-size: 0.9rem;
    }
    .page-service .service-quote-card .form-grid textarea,
    .page-project .service-quote-card .form-grid textarea {
        min-height: 80px;
    }
    .page-service .service-quote-card .form-grid > button.btn,
    .page-project .service-quote-card .form-grid > button.btn {
        padding: 0.8rem 1rem;
    }
    .page-service .gallery-grid,
    .page-project .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }
    .page-service .gallery-item:first-child,
    .page-project .gallery-item:first-child {
        grid-column: 1 / -1;
    }
    .page-service .gallery-item:first-child img,
    .page-project .gallery-item:first-child img {
        aspect-ratio: 16 / 10;
    }
    .page-service .sticky-service-cta,
    .page-project .sticky-service-cta {
        padding: 0.55rem 0.75rem;
        gap: 0.4rem;
    }
    .page-service .sticky-service-cta .btn,
    .page-project .sticky-service-cta .btn {
        padding-block: 0.7rem;
        font-size: 0.85rem;
    }
}

.contact-map {
    margin-top: 1.25rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    aspect-ratio: 16 / 10;
    background: var(--color-surface);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.lightbox {
    border: none;
    padding: 0;
    max-width: min(96vw, 1100px);
    max-height: 92vh;
    background: transparent;
}
.lightbox::backdrop {
    background: rgba(10, 10, 12, 0.82);
    backdrop-filter: blur(4px);
}
.lightbox[open] {
    display: grid;
    place-items: center;
}
.lightbox img {
    max-width: 96vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}
.lightbox-close,
.lightbox-nav {
    position: fixed;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--color-accent);
}
.lightbox-close {
    top: 1rem;
    inset-inline-end: 1rem;
}
.lightbox-prev { inset-inline-start: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { inset-inline-end: 1rem; top: 50%; transform: translateY(-50%); }

.project-card .project-media {
    overflow: hidden;
}
.project-card .project-media img {
    transition: transform 0.45s ease;
}
.project-card:hover .project-media img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    body {
        padding-bottom: 4.75rem;
    }
}

@media (min-width: 992px) {
    .service-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
    .service-content-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
    }
    .sticky-service-cta,
    .sticky-mobile-cta { display: none; }
    .page-service .floating-actions,
    .page-project .floating-actions,
    .page-article .floating-actions,
    body:not(.page-service):not(.page-project):not(.page-article) .floating-actions { bottom: 1rem; }
    .back-to-top {
        inset-inline-start: 1rem;
        inset-inline-end: auto;
        bottom: 1.15rem;
    }
    body { padding-bottom: 0; }
}

/* Project page */
.project-service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}
.project-service-link {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.project-service-link:hover {
    border-color: rgba(201, 162, 39, 0.5);
    color: #f6e7a8;
    background: rgba(201, 162, 39, 0.1);
}
.project-empty-copy {
    margin: 0;
    color: var(--color-secondary);
    line-height: 1.7;
}
.before-after-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.before-after-card {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 17, 21, 0.05);
}
.before-after-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}
.before-after-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.before-after-card:hover .before-after-media img {
    transform: scale(1.04);
}
.before-after-label {
    display: inline-flex;
    margin: 0.75rem 0.85rem 0.85rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}
.before-after-label--before {
    background: rgba(26, 26, 26, 0.08);
    color: var(--color-primary);
}
.before-after-label--after {
    background: rgba(201, 162, 39, 0.18);
    color: var(--color-accent-dark);
}
.projects-showcase--related {
    grid-template-columns: repeat(2, 1fr);
}
.page-project .service-quote-card .contact-form > h3,
.page-project .service-quote-card .contact-form > p.text-muted,
.page-project .service-quote-card .contact-form > .text-muted,
.page-article .service-quote-card .contact-form > h3,
.page-article .service-quote-card .contact-form > p.text-muted,
.page-article .service-quote-card .contact-form > .text-muted {
    display: none !important;
}
@media (min-width: 768px) {
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-showcase--related {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .projects-showcase--related {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Location page */
.location-map-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.location-map-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

/* Article page */
.article-detail-hero .reading-progress {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 4;
    height: 3px;
    background: var(--color-accent);
    transform-origin: right center;
    transform: scaleX(0);
}
.article-category-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
.article-category-link:hover {
    color: #fff;
}
.article-excerpt,
.page-article .service-lead {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.page-article .service-hero-copy,
.page-article .article-hero-copy {
    min-width: 0;
}
.article-hero-grid:not(:has(.article-hero-media)) {
    grid-template-columns: 1fr;
}
.article-detail-section {
    padding-top: clamp(2rem, 4vw, 3.25rem);
    background:
        linear-gradient(180deg, #f7f7f8 0%, #fafafa 12%, #fff 100%);
}
.article-body-block {
    position: relative;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 22px;
    padding: clamp(1.35rem, 3.5vw, 2.25rem);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 14px 36px rgba(15, 17, 21, 0.06);
    overflow-x: auto;
}
.article-body-block::before {
    content: '';
    position: absolute;
    inset-inline: clamp(1.35rem, 3.5vw, 2.25rem);
    top: 0;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, #e8c96a 55%, rgba(201, 162, 39, 0.2) 100%);
}
.article-rich-content {
    min-width: 0;
    max-width: 68ch;
    margin-inline: auto;
    font-size: 1.02rem;
}
/* Article editor content — editorial polish */
.article-rich-content > h1:first-child {
    margin-top: 0.15rem;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    line-height: 1.4;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.article-rich-content > h1:first-child + p,
.article-rich-content > p:first-child {
    font-size: 1.08rem;
    line-height: 1.95;
    color: var(--color-primary);
}
.article-rich-content h2 {
    margin-top: 2.35rem;
    margin-bottom: 0.85rem;
    padding-top: 0.35rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}
.article-rich-content h2::before {
    content: '';
    display: block;
    width: 2.75rem;
    height: 3px;
    margin-bottom: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), #e8c96a);
}
.article-rich-content h3 {
    position: relative;
    margin-top: 1.65rem;
    padding-inline-start: 0.85rem;
}
.article-rich-content h3::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.35em;
    width: 3px;
    height: 1.1em;
    border-radius: 999px;
    background: var(--color-accent);
}
.article-rich-content p {
    margin-bottom: 1.1rem;
    line-height: 1.9;
}
.article-rich-content ul {
    list-style: none;
    padding-inline-start: 0;
    margin-bottom: 1.15rem;
}
.article-rich-content ul > li {
    position: relative;
    padding-inline-start: 1.2rem;
    margin-bottom: 0.45rem;
    line-height: 1.85;
}
.article-rich-content ul > li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14);
}
.article-rich-content ol {
    counter-reset: article-ol;
    list-style: none;
    padding-inline-start: 0;
    margin-bottom: 1.15rem;
}
.article-rich-content ol > li {
    counter-increment: article-ol;
    position: relative;
    padding-inline-start: 2rem;
    margin-bottom: 0.45rem;
    line-height: 1.85;
}
.article-rich-content ol > li::before {
    content: counter(article-ol);
    position: absolute;
    inset-inline-start: 0;
    top: 0.15em;
    min-width: 1.45rem;
    height: 1.45rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(201, 162, 39, 0.14);
    color: var(--color-accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
}
.article-rich-content blockquote {
    margin: 1.5rem 0;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    border-inline-start-width: 4px;
    background:
        linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.04) 100%);
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.08);
}
.article-rich-content img {
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: 0 10px 28px rgba(15, 17, 21, 0.08);
}
.article-rich-content table {
    box-shadow: 0 6px 20px rgba(15, 17, 21, 0.04);
}
.article-rich-content thead th {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.06) 0%, rgba(26, 26, 26, 0.03) 100%);
}
.article-rich-content tbody tr:nth-child(even) td {
    background: rgba(247, 247, 248, 0.65);
}
.article-rich-content hr {
    margin: 2rem 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.45), transparent);
}
.article-rich-content a {
    font-weight: 600;
    text-decoration-thickness: 1px;
}
.article-rich-content a:hover {
    text-decoration-thickness: 2px;
}
.article-cta-box {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
    padding: 1.35rem 1.25rem;
    border-radius: 18px;
    background:
        radial-gradient(ellipse 80% 80% at 100% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
        #1a1a1a;
    color: #fff;
    border: 1px solid rgba(201, 162, 39, 0.22);
}
.article-cta-box .eyebrow {
    color: #f6e7a8;
    border-bottom-color: rgba(246, 231, 168, 0.4);
}
.article-cta-box h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
.article-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}
.article-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.article-cta-box .btn-ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.article-cta-box .btn-ghost:hover {
    border-color: var(--color-accent);
    color: #f6e7a8;
}
.article-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}
.article-content {
    min-width: 0;
}
.article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    display: grid;
    gap: 1rem;
}
.article-share-card .share-links {
    display: grid;
    gap: 0.55rem;
}
.share-btn {
    justify-content: center;
}
.share-btn--wa {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}
.share-btn--wa:hover {
    background: #1ebe57;
    border-color: #1ebe57;
}
.author-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.75rem;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
}
.author-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.author-box strong {
    display: block;
    margin-bottom: 0.35rem;
}
.author-box p {
    margin: 0 0 0.5rem;
    color: var(--color-secondary);
}
.sidebar-card {
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 18px;
    padding: 1.15rem 1.2rem;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
}
.sidebar-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.related-articles-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.related-articles-list li + li {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}
.related-articles-list a {
    display: grid;
    gap: 0.2rem;
    text-decoration: none;
    color: inherit;
}
.related-articles-list a:hover strong {
    color: var(--color-accent-dark);
}
.related-articles-list strong {
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color var(--transition);
}
.related-articles-list span {
    color: var(--color-secondary);
    font-size: 0.82rem;
}
.section-related-articles {
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.blog-showcase--related .article-overlay-copy h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: #fff;
}
@media (min-width: 992px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
    .article-cta-box {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .page-article .service-hero-copy,
    .page-article .article-hero-copy {
        order: 1;
    }
    .page-article .service-hero-media,
    .page-article .article-hero-media {
        order: 2;
        display: block;
    }
    .page-article .service-hero-media img,
    .page-article .service-hero-placeholder {
        aspect-ratio: 16 / 9;
        max-height: 200px;
    }
    .page-article .service-lead,
    .page-article .article-excerpt {
        -webkit-line-clamp: 3;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .article-body-block {
        padding: 1rem;
        border-radius: 16px;
    }
    .article-cta-actions .btn {
        flex: 1 1 auto;
    }
    .page-article .sticky-service-cta {
        padding: 0.55rem 0.75rem;
        gap: 0.4rem;
    }
    .page-article .sticky-service-cta .btn {
        padding-block: 0.7rem;
        font-size: 0.84rem;
    }
}

/* Blog listing */
.internal-links-block {
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 16px;
    padding: 1.1rem 1.15rem;
    margin-top: 1rem;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
}
.internal-links-block h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}
.internal-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.internal-links-list a {
    color: var(--color-accent-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
}
.internal-links-list a:hover {
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .before-after-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Blog listing */
.section-blog {
    background:
        radial-gradient(ellipse 50% 60% at 0% 0%, rgba(201, 162, 39, 0.05), transparent 55%),
        linear-gradient(180deg, #fff 0%, #f9f9fa 100%);
}
.blog-list-section {
    padding-top: 0;
    margin-top: -1.25rem;
    position: relative;
    z-index: 2;
}
.blog-hero-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}
.blog-hero-topic {
    display: inline-flex;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
    cursor: pointer;
}
.blog-hero-topic:hover {
    border-color: rgba(201, 162, 39, 0.55);
    background: rgba(201, 162, 39, 0.15);
    color: #f6e7a8;
}
.blog-control-panel {
    margin-bottom: 1.75rem;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    border-radius: 22px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 18px 40px rgba(15, 17, 21, 0.07),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(10px);
}
.blog-control-head {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}
.blog-search-form {
    display: flex;
    gap: 0.55rem;
    align-items: stretch;
}
.blog-search {
    flex: 1;
    min-width: 0;
}
.blog-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1rem;
    min-width: 2.75rem;
}
.blog-search-submit-icon {
    display: none;
}
.blog-results-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(26, 26, 26, 0.03);
    border: 1px solid rgba(26, 26, 26, 0.06);
}
.blog-results-count {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.9rem;
}
.blog-results-count strong {
    color: var(--color-primary);
    font-size: 1.05rem;
}
.blog-results-page {
    color: var(--color-secondary);
    font-size: 0.84rem;
}
.blog-filter-tabs {
    display: grid;
    gap: 1rem;
}
.blog-filters-scroll {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
}
.blog-filters-scroll::-webkit-scrollbar {
    display: none;
}
.blog-filters-scroll .blog-filters {
    flex-wrap: nowrap;
    margin-bottom: 0;
    width: max-content;
    min-width: 100%;
}
.blog-list-toolbar {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: end;
}
.blog-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}
.blog-search-submit {
    padding-inline: 1.25rem;
}
.blog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.25rem;
}
.blog-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--color-accent-dark);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}
.blog-active-filter span {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.7;
}
.blog-clear-filters {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
}
.blog-clear-filters:hover {
    color: var(--color-accent-dark);
}
.blog-filter-group {
    margin-bottom: 1.25rem;
}
.blog-filter-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: 0.02em;
}
.blog-filter-label svg {
    color: var(--color-accent-dark);
}
.blog-category-intro {
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
}
.blog-client-empty {
    text-align: center;
    color: var(--color-secondary);
    padding: 1.5rem 1rem;
}
.article-card-service {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.72rem;
    font-weight: 700;
    color: #f6e7a8;
}
.blog-taxonomy-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: rgba(26, 26, 26, 0.02);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
    cursor: pointer;
}
.blog-taxonomy-link:hover {
    border-color: rgba(201, 162, 39, 0.45);
    background: rgba(201, 162, 39, 0.08);
    color: var(--color-accent-dark);
}
.article-taxonomy-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.article-taxonomy-head h3 {
    margin: 0;
    font-size: 0.95rem;
}
.article-taxonomy-head svg {
    color: var(--color-accent-dark);
}
.article-jump {
    position: sticky;
    top: var(--header-height);
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(15, 17, 21, 0.04);
}
.article-jump .service-jump-link.is-active,
.article-jump .service-jump-link:target {
    border-color: rgba(201, 162, 39, 0.55);
    color: var(--color-accent-dark);
    background: rgba(201, 162, 39, 0.1);
}
.article-related-services,
.article-related-projects {
    padding-top: clamp(2rem, 4vw, 3rem);
}
.article-related-projects {
    background: linear-gradient(180deg, #fff 0%, #f7f7f8 100%);
}
.blog-filters-scroll.is-scrollable:not(.is-at-start)::before,
.blog-filters-scroll.is-scrollable:not(.is-at-end)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.5rem;
    pointer-events: none;
    z-index: 1;
}
.blog-filters-scroll.is-scrollable:not(.is-at-start)::before {
    inset-inline-start: 0;
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.95));
}
.blog-filters-scroll.is-scrollable:not(.is-at-end)::after {
    inset-inline-end: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.95));
}
.blog-list-intro h2 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}
.blog-list-intro p {
    margin: 0;
    color: var(--color-secondary);
    max-width: 46ch;
}
.blog-list-meta {
    justify-self: start;
}
.blog-page-badge {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.28);
    color: var(--color-accent-dark);
    font-size: 0.85rem;
    font-weight: 800;
}
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}
.blog-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
    cursor: pointer;
}
.blog-filter:hover {
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--color-accent-dark);
}
.blog-filter:focus-visible {
    outline: 2px solid rgba(201, 162, 39, 0.55);
    outline-offset: 2px;
}
.blog-filter.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #1a1a1a;
}
.blog-filter-count {
    display: inline-flex;
    min-width: 1.35rem;
    justify-content: center;
    padding: 0.1rem 0.35rem;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.08);
    font-size: 0.75rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.blog-filter.is-active .blog-filter-count {
    background: rgba(26, 26, 26, 0.15);
}
.blog-empty {
    text-align: center;
    padding: 3rem 1.25rem;
    border-radius: 22px;
    border: 1px dashed rgba(26, 26, 26, 0.12);
    background: rgba(255, 255, 255, 0.85);
}
.blog-empty-icon {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    color: var(--color-accent-dark);
}
.blog-empty h3 {
    margin: 0 0 0.45rem;
    font-size: 1.2rem;
}
.blog-empty p {
    margin: 0 0 1.25rem;
    color: var(--color-secondary);
    max-width: 38ch;
    margin-inline: auto;
}
.blog-empty-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.blog-empty-suggestions > span {
    width: 100%;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.blog-showcase {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}
.page-blog-list .article-card--blog {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 10px 28px rgba(15, 17, 21, 0.06);
    background: #fff;
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.page-blog-list .article-card--blog:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
.page-blog-list .article-card--blog:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 18px 40px rgba(15, 17, 21, 0.1);
}
.page-blog-list .article-card--blog .article-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}
.page-blog-list .article-card--lead .article-media {
    aspect-ratio: 16 / 9;
}
.page-blog-list .article-card--blog .article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.page-blog-list .article-card--blog:hover .article-media img {
    transform: scale(1.05);
}
.page-blog-list .article-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.25), transparent 55%),
        linear-gradient(165deg, #1a1a1a 0%, #252525 100%);
    font-size: 2.25rem;
    font-weight: 800;
    color: #f6e7a8;
}
.page-blog-list .article-card-badges {
    position: absolute;
    inset-inline: 0.75rem;
    top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    z-index: 2;
}
.page-blog-list .article-card-badge {
    display: inline-flex;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.95);
    color: #1a1a1a;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-blog-list .article-card-service {
    display: inline-flex;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
    font-weight: 700;
    color: #f6e7a8;
    backdrop-filter: blur(6px);
}
.page-blog-list .article-card--blog .article-body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    padding: 1rem 1.1rem 1.15rem;
}
.page-blog-list .article-body-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.1rem;
}
.page-blog-list .article-card-date {
    position: static;
    display: inline-flex;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: none;
}
.page-blog-list .article-card-reading {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 700;
}
.page-blog-list .article-card-reading svg {
    color: var(--color-accent-dark);
}
.page-blog-list .article-card--blog h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--color-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.page-blog-list .article-card--lead h2 {
    font-size: 1.2rem;
}
.page-blog-list .article-card--blog p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    flex: 1;
}
.page-blog-list .article-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.25rem;
    color: var(--color-accent-dark);
    font-size: 0.88rem;
    font-weight: 700;
    transition: gap var(--transition), color var(--transition);
}
.page-blog-list .article-card--blog:hover .article-card-cta {
    color: var(--color-accent);
    gap: 0.5rem;
}
.page-blog-list .article-card-cta svg {
    transform: scaleX(-1);
}
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding-top: 0.5rem;
}
.blog-pagination-pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}
.blog-pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.blog-pagination-page:hover {
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--color-accent-dark);
}
.blog-pagination-page.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #1a1a1a;
}
.blog-pagination-ellipsis {
    padding: 0 0.25rem;
    color: var(--color-secondary);
    font-weight: 700;
}
.blog-pagination-btn {
    min-width: 5.5rem;
}
@media (min-width: 640px) {
    .blog-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .blog-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(0, auto);
        gap: 1.25rem;
    }
    .page-blog-list .article-card--lead {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
    }
    .page-blog-list .article-card--lead .article-media {
        aspect-ratio: auto;
        min-height: 100%;
    }
    .page-blog-list .article-card--lead .article-body {
        justify-content: center;
        padding: 1.35rem 1.5rem;
    }
    .page-blog-list .article-card--lead h2 {
        font-size: 1.35rem;
        -webkit-line-clamp: 3;
    }
    .page-blog-list .article-card--lead p {
        -webkit-line-clamp: 3;
    }
}
@media (min-width: 900px) {
    .blog-control-head {
        grid-template-columns: 1fr minmax(280px, 360px);
        align-items: end;
    }
    .blog-list-toolbar {
        grid-template-columns: 1fr auto auto;
    }
    .blog-search-form {
        justify-self: end;
    }
    .blog-list-meta {
        justify-self: end;
    }
    .blog-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    .page-blog-list .article-card--lead {
        grid-column: span 2;
    }
}
@media (prefers-reduced-motion: reduce) {
    .page-blog-list .article-card--blog:hover {
        transform: none;
    }
    .page-blog-list .article-card--blog:hover .article-media img {
        transform: none;
    }
    .blog-filter:hover {
        transform: none;
    }
}

.section-header .btn { margin-top: 0.75rem; }


/* ========== Contact page ========== */
.page-contact .contact-page-main {
    opacity: 1;
    transform: none;
    background:
        linear-gradient(180deg, #f7f7f8 0%, #fafafa 40%, #fff 100%);
    padding-top: clamp(1.75rem, 4vw, 3rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.contact-page-layout {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}
.contact-page-intro {
    margin-bottom: 1.25rem;
}
.contact-page-intro h2 {
    margin: 0 0 0.4rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.contact-page-intro p {
    margin: 0;
    color: var(--color-secondary);
    max-width: 42ch;
}
.contact-page-cms {
    margin-bottom: 1.25rem;
}
.contact-method-grid {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}
.contact-method {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 17, 21, 0.04);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.contact-method:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 14px 32px rgba(15, 17, 21, 0.08);
}
.contact-method:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
.contact-method--static {
    cursor: default;
}
.contact-method--static:hover {
    transform: none;
}
.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(201, 162, 39, 0.12);
    color: var(--color-accent-dark);
    flex-shrink: 0;
}
.contact-method--wa .contact-method-icon {
    background: rgba(37, 211, 102, 0.14);
    color: #1ebe57;
}
.contact-method-body {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}
.contact-method-body strong {
    font-size: 0.95rem;
}
.contact-method-body span {
    color: var(--color-secondary);
    font-size: 0.88rem;
    overflow-wrap: anywhere;
}
.contact-method-cta {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-accent-dark);
    white-space: nowrap;
}
.contact-process {
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        #fff;
}
.contact-process-head h3 {
    margin: 0;
    font-size: 1.1rem;
}
.contact-process-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}
.contact-process-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}
.contact-process-num {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(201, 162, 39, 0.14);
    color: var(--color-accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
}
.contact-process-list strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}
.contact-process-list p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
}
.contact-form-card {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    padding: 1.35rem 1.25rem 1.25rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 18px 40px rgba(15, 17, 21, 0.08);
}
.contact-form-card::before {
    content: '';
    display: block;
    height: 3px;
    margin: -1.35rem -1.25rem 1.1rem;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, var(--color-accent) 0%, #e8c96a 55%, rgba(201, 162, 39, 0.25) 100%);
}
.contact-form-card-head {
    margin-bottom: 1rem;
}
.contact-form-card-head h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}
.contact-form-card-head p {
    margin: 0;
    color: var(--color-secondary);
    font-size: 0.92rem;
}
.page-contact .contact-form-card .contact-form {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}
.page-contact .contact-form-card .contact-form > h3,
.page-contact .contact-form-card .contact-form > p.text-muted {
    display: none;
}
.page-contact .contact-form-card .form-grid input,
.page-contact .contact-form-card .form-grid textarea {
    background: #fafafa;
    border-color: rgba(26, 26, 26, 0.1);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.page-contact .contact-form-card .form-grid input:focus,
.page-contact .contact-form-card .form-grid textarea:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.page-contact .contact-form-card .btn-primary {
    width: 100%;
    cursor: pointer;
}
.contact-form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin: 1rem 0 0;
    padding: 0.85rem 0 0;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
    list-style: none;
}
.contact-form-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-secondary);
}
.contact-form-trust svg {
    color: var(--color-accent-dark);
}
.contact-page-map-section {
    background: #fff;
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-page-map-head {
    margin-bottom: 1rem;
}
.contact-page-map-head h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}
.contact-page-map-head p {
    margin: 0;
    color: var(--color-secondary);
}
.contact-page-map {
    margin-top: 0;
    border-radius: 18px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 12px 32px rgba(15, 17, 21, 0.06);
    aspect-ratio: 21 / 9;
    min-height: 240px;
}
.contact-page-cta {
    margin-top: 0;
}
@media (min-width: 640px) {
    .contact-method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .contact-page-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
        gap: 2rem;
    }
}
@media (max-width: 767px) {
    .page-contact .contact-hero-aside {
        display: none;
    }
    .contact-form-card {
        position: static;
    }
    .contact-page-map {
        aspect-ratio: 16 / 10;
    }
    .contact-method {
        grid-template-columns: auto 1fr;
    }
    .contact-method-cta {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .contact-method:hover {
        transform: none;
    }
}
