:root {
    --bg: #080604;
    --panel: #12100d;
    --panel-soft: #1b1712;
    --ink: #f8efe1;
    --muted: #c8b79d;
    --soft: #8f826f;
    --gold: #d8a44d;
    --gold-light: #f4d28b;
    --line: rgba(244, 210, 139, .18);
    --shadow: 0 24px 80px rgba(0, 0, 0, .42);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(216, 164, 77, .05), transparent 36%, rgba(216, 164, 77, .04)),
        radial-gradient(circle at 50% 0%, rgba(244, 210, 139, .13), transparent 26%);
    opacity: .9;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .36;
    background:
        radial-gradient(circle at 14% 18%, rgba(244, 210, 139, .16) 0 1px, transparent 2px),
        radial-gradient(circle at 78% 14%, rgba(216, 164, 77, .13) 0 1px, transparent 2px),
        radial-gradient(circle at 28% 72%, rgba(244, 210, 139, .1) 0 1px, transparent 2px),
        radial-gradient(circle at 86% 68%, rgba(216, 164, 77, .12) 0 1px, transparent 2px);
    background-size: 420px 420px, 520px 520px, 460px 460px, 560px 560px;
    animation: ra-star-drift 28s linear infinite;
}

.ra-icon {
    display: block;
    width: 34px;
    height: 34px;
    margin-bottom: 1.1rem;
    color: var(--gold-light);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .9;
    filter: drop-shadow(0 0 16px rgba(216, 164, 77, .16));
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.05;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6.6rem);
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.55rem);
}

h3 {
    font-size: clamp(1.45rem, 2vw, 2.05rem);
}

.site-shell {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 99;
    top: 1rem;
    left: 1rem;
    padding: .75rem 1rem;
    background: var(--gold);
    color: #160f07;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(244, 210, 139, .1);
    background: rgba(8, 6, 4, .78);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 24px;
}

.brand img {
    width: 150px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.55vw, 22px);
    color: var(--muted);
    font-size: .86rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.primary-nav > a,
.nav-parent {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 28px 0;
    transition: color .2s ease, text-shadow .2s ease;
}

.primary-nav > a::after,
.nav-parent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.has-dropdown:hover .nav-parent,
.has-dropdown:focus-within .nav-parent {
    color: var(--gold-light);
    text-shadow: 0 0 18px rgba(244, 210, 139, .28);
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.has-dropdown:hover .nav-parent::after,
.has-dropdown:focus-within .nav-parent::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-chevron {
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}

.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron,
.has-dropdown.is-open .nav-chevron {
    transform: translateY(2px) rotate(225deg);
}

.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    width: min(360px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid rgba(244, 210, 139, .18);
    background:
        linear-gradient(180deg, rgba(27, 23, 18, .98), rgba(10, 8, 6, .98)),
        repeating-linear-gradient(90deg, rgba(244, 210, 139, .08) 0 1px, transparent 1px 18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(244, 210, 139, .12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: .72;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown a {
    display: grid;
    gap: 3px;
    padding: 14px;
    border: 1px solid transparent;
    letter-spacing: 0;
    text-transform: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.nav-dropdown a + a {
    border-top-color: rgba(244, 210, 139, .1);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    border-color: rgba(244, 210, 139, .22);
    background: rgba(216, 164, 77, .08);
}

.nav-dropdown span {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.nav-dropdown small {
    color: var(--soft);
    font-size: .8rem;
    line-height: 1.4;
}

.nav-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 182px;
    max-width: 182px;
    min-width: 182px;
    min-height: 52px;
    padding: .62rem .82rem .54rem;
    border: 1px solid rgba(244, 210, 139, .45);
    background: linear-gradient(135deg, rgba(244, 210, 139, .98), rgba(216, 164, 77, .9));
    color: #130d06;
    box-shadow: 0 12px 34px rgba(216, 164, 77, .14), inset 0 1px 0 rgba(255, 241, 199, .42);
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta {
    white-space: nowrap;
}

.nav-cta-label,
.nav-cta-wave {
    position: relative;
    z-index: 1;
}

.nav-cta-label {
    font-size: .72rem;
    line-height: 1;
    letter-spacing: .09em;
}

.nav-cta-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 86px;
    height: 11px;
}

.nav-cta-wave::before,
.nav-cta-wave::after {
    content: "";
    width: 14px;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor);
    opacity: .62;
}

.nav-cta-wave::after {
    background: linear-gradient(90deg, currentColor, transparent);
}

.nav-cta-wave i {
    display: block;
    width: 2px;
    height: 6px;
    border-radius: 99px;
    background: currentColor;
    opacity: .75;
    animation: ra-quick-wave 1.05s ease-in-out infinite;
}

.nav-cta-wave i:nth-child(2) { height: 10px; animation-delay: .05s; }
.nav-cta-wave i:nth-child(3) { height: 5px; animation-delay: .1s; }
.nav-cta-wave i:nth-child(4) { height: 12px; animation-delay: .15s; }
.nav-cta-wave i:nth-child(5) { height: 7px; animation-delay: .2s; }
.nav-cta-wave i:nth-child(6) { height: 11px; animation-delay: .25s; }
.nav-cta-wave i:nth-child(7) { height: 5px; animation-delay: .3s; }
.nav-cta-wave i:nth-child(8) { height: 9px; animation-delay: .35s; }
.nav-cta-wave i:nth-child(9) { height: 4px; animation-delay: .4s; }

.nav-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .35) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .42s ease;
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before {
    transform: translateX(120%);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 42px rgba(216, 164, 77, .24), inset 0 1px 0 rgba(255, 241, 199, .5);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    padding: 10px;
}

.hero,
.trust-band,
.section,
.page-hero,
.final-cta {
    position: relative;
}

.hero::before,
.section::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .26;
    background:
        radial-gradient(circle at 16% 32%, rgba(244, 210, 139, .18) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 22%, rgba(216, 164, 77, .12) 0 1px, transparent 2px),
        radial-gradient(circle at 84% 78%, rgba(244, 210, 139, .1) 0 1px, transparent 2px),
        linear-gradient(115deg, transparent 0 44%, rgba(244, 210, 139, .05) 45%, transparent 47%);
    background-size: 360px 360px, 480px 480px, 420px 420px, 100% 100%;
    animation: ra-burst-float 18s ease-in-out infinite alternate;
}

.section:nth-of-type(even)::before,
.page-hero::before {
    animation-delay: -7s;
}

.site-shell,
.hero-content {
    position: relative;
    z-index: 1;
}

.audio-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.audio-backdrop-icon {
    position: absolute;
    display: block;
    width: clamp(72px, 10vw, 156px);
    aspect-ratio: 1;
    color: var(--gold-light);
    opacity: .07;
    filter: blur(1.2px) drop-shadow(0 0 32px rgba(216, 164, 77, .25));
    transform: translate3d(0, 0, 0) rotate(var(--icon-rotate, 0deg));
    animation: ra-audio-icon-drift var(--icon-speed, 22s) ease-in-out infinite alternate;
}

.audio-backdrop .ra-icon {
    width: 100%;
    height: 100%;
    margin: 0;
    stroke-width: 1.05;
    opacity: 1;
}

.audio-backdrop-icon-1 {
    --icon-rotate: -12deg;
    --icon-speed: 24s;
    top: 12%;
    left: clamp(18px, 6vw, 88px);
}

.audio-backdrop-icon-2 {
    --icon-rotate: 11deg;
    --icon-speed: 19s;
    top: 18%;
    right: clamp(18px, 8vw, 118px);
    width: clamp(60px, 8vw, 132px);
    animation-delay: -6s;
}

.audio-backdrop-icon-3 {
    --icon-rotate: -4deg;
    --icon-speed: 27s;
    right: 22%;
    bottom: 10%;
    width: clamp(86px, 12vw, 180px);
    animation-delay: -12s;
}

.audio-backdrop-icon-4 {
    --icon-rotate: 18deg;
    --icon-speed: 21s;
    left: 34%;
    bottom: 18%;
    width: clamp(58px, 7vw, 118px);
    animation-delay: -9s;
}

.hero .audio-backdrop,
.final-cta .audio-backdrop {
    z-index: 1;
}

.hero-content,
.final-cta .site-shell {
    z-index: 2;
}

.section .audio-backdrop-icon,
.page-hero .audio-backdrop-icon {
    opacity: .055;
}

.warm .audio-backdrop-icon,
.trust-band .audio-backdrop-icon {
    opacity: .075;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    height: 1px;
    margin: 6px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: min(760px, calc(100svh - 82px));
    display: flex;
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .52;
    filter: saturate(.9) contrast(1.06);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 6, 4, .94) 0%, rgba(8, 6, 4, .66) 44%, rgba(8, 6, 4, .1) 100%),
        linear-gradient(0deg, var(--bg) 0%, transparent 42%);
}

.hero-content {
    position: relative;
    padding: clamp(72px, 11vh, 120px) 0 clamp(56px, 9vh, 96px);
}

.eyebrow {
    margin-bottom: .9rem;
    color: var(--gold-light);
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero-subtitle {
    margin: 1.1rem 0 0;
    color: var(--gold-light);
    font-size: clamp(1.25rem, 2.1vw, 2rem);
    letter-spacing: .04em;
}

.hero-copy {
    max-width: 720px;
    margin: 1.3rem 0 0;
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.hero-actions,
.section .button,
.final-cta .button {
    margin-top: 2rem;
}

.audio-signature {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    margin-top: 2rem;
    padding: 4px 0;
}

.sonic-hover {
    cursor: pointer;
    outline: none;
}

.sonic-hover:focus-visible {
    filter: drop-shadow(0 0 18px rgba(244, 210, 139, .32));
}

.audio-signature::before,
.audio-signature::after {
    content: "";
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light));
    opacity: .72;
}

.audio-signature::after {
    background: linear-gradient(90deg, var(--gold-light), transparent);
}

.audio-signature span {
    width: 3px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    box-shadow: 0 0 18px rgba(216, 164, 77, .22);
    animation: ra-wave 2.4s ease-in-out infinite;
}

.audio-signature span:nth-child(2) { height: 28px; animation-delay: .14s; }
.audio-signature span:nth-child(3) { height: 42px; animation-delay: .28s; }
.audio-signature span:nth-child(4) { height: 54px; animation-delay: .42s; }
.audio-signature span:nth-child(5) { height: 38px; animation-delay: .56s; }
.audio-signature span:nth-child(6) { height: 26px; animation-delay: .7s; }
.audio-signature span:nth-child(7) { height: 18px; animation-delay: .84s; }

.compact-wave {
    margin-top: 1.6rem;
    transform: scale(.86);
    transform-origin: left center;
}

@keyframes ra-wave {
    0%, 100% {
        transform: scaleY(.56);
        opacity: .62;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes ra-quick-wave {
    0%, 100% {
        transform: scaleY(.45);
        opacity: .48;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes ra-star-drift {
    from {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    to {
        background-position: 120px -180px, -160px 120px, 140px 160px, -120px -140px;
    }
}

@keyframes ra-burst-float {
    0% {
        opacity: .16;
        transform: translate3d(0, 0, 0);
    }
    50% {
        opacity: .34;
    }
    100% {
        opacity: .22;
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes ra-audio-icon-drift {
    0% {
        opacity: .035;
        transform: translate3d(-10px, -6px, 0) rotate(var(--icon-rotate, 0deg)) scale(.98);
    }
    48% {
        opacity: .09;
    }
    100% {
        opacity: .06;
        transform: translate3d(14px, 10px, 0) rotate(calc(var(--icon-rotate, 0deg) + 4deg)) scale(1.04);
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.15rem;
    border: 1px solid transparent;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #160f07;
}

.button.secondary {
    margin-left: .75rem;
    border-color: var(--line);
    color: var(--gold-light);
    background: rgba(8, 6, 4, .38);
}

.trust-band,
.section,
.page-hero,
.final-cta,
.seo-strip {
    border-bottom: 1px solid var(--line);
}

.trust-band {
    padding: 54px 0;
    background: #0d0a07;
}

.trust-grid,
.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

.trust-grid h2 {
    max-width: 640px;
    font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.trust-grid p {
    max-width: 620px;
    margin-top: 1rem;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--line);
}

.trust-list li,
.work-grid article,
.process-grid article,
.value-grid article,
.service-panel,
.service-aside,
.contact-aside,
blockquote {
    background: rgba(18, 16, 13, .78);
    border: 1px solid var(--line);
}

.work-grid article,
.process-grid article,
.value-grid article,
.service-panel,
.service-aside,
.contact-aside {
    position: relative;
}

.trust-list li {
    min-height: 145px;
    padding: 24px;
}

.trust-list strong,
.process-grid span,
.work-grid span,
.service-index {
    display: block;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.trust-list span {
    display: block;
    margin-top: .3rem;
    color: var(--muted);
}

.section {
    padding: clamp(72px, 10vw, 132px) 0;
}

.section-intro {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-intro p:last-child {
    max-width: 680px;
    margin-top: 1.1rem;
    font-size: 1.08rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 3vw, 36px);
    min-height: 100%;
}

.service-panel .ra-icon,
.service-aside .ra-icon,
.contact-aside .ra-icon {
    width: 38px;
    height: 38px;
}

.service-panel::before {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 118px;
    height: 28px;
    opacity: .2;
    background:
        linear-gradient(90deg, transparent, rgba(244, 210, 139, .68), transparent),
        repeating-linear-gradient(90deg, transparent 0 7px, rgba(244, 210, 139, .72) 7px 8px, transparent 8px 14px);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 84%, transparent);
}

.service-panel p {
    margin-top: 1rem;
}

.service-panel ul,
.service-aside ul,
.contact-aside ul {
    padding: 0;
    margin: 1.4rem 0 0;
    list-style: none;
}

.service-panel li,
.service-aside li,
.contact-aside li {
    padding: .55rem 0 .55rem 1.3rem;
    color: var(--muted);
    border-top: 1px solid rgba(244, 210, 139, .1);
    position: relative;
}

.service-panel li::before,
.service-aside li::before,
.contact-aside li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.15rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.text-link {
    display: inline-flex;
    margin-top: 1.5rem;
    color: var(--gold-light);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.text-link::after {
    content: " ->";
    padding-left: .35rem;
}

.warm {
    background: linear-gradient(180deg, #120f0b, #0b0806);
}

.copy-stack {
    max-width: 720px;
}

.copy-stack p {
    font-size: clamp(1.02rem, 1.3vw, 1.2rem);
}

.work-grid,
.process-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.work-grid article,
.process-grid article,
.value-grid article {
    padding: 28px;
}

.work-grid article::after,
.process-grid article::after,
.value-grid article::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 72px;
    height: 26px;
    opacity: .18;
    background:
        linear-gradient(90deg, transparent, rgba(244, 210, 139, .75), transparent),
        repeating-linear-gradient(90deg, transparent 0 9px, rgba(244, 210, 139, .7) 9px 10px, transparent 10px 18px);
    mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.portfolio-card {
    grid-column: span 4;
    min-height: 520px;
    overflow: hidden;
    background: rgba(18, 16, 13, .78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.portfolio-card:nth-child(5n + 1),
.portfolio-card:nth-child(5n + 4) {
    grid-column: span 8;
}

.portfolio-card a {
    position: relative;
    display: grid;
    min-height: 100%;
}

.portfolio-card figure,
.portfolio-feature-image {
    margin: 0;
}

.portfolio-card figure {
    position: absolute;
    inset: 0;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, opacity .45s ease;
}

.portfolio-card a::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 6, 4, .08), rgba(8, 6, 4, .86)),
        linear-gradient(90deg, rgba(8, 6, 4, .68), transparent 58%);
}

.portfolio-card:hover img {
    transform: scale(1.035);
    opacity: .92;
}

.portfolio-card-content {
    position: relative;
    z-index: 1;
    align-self: end;
    padding: clamp(24px, 4vw, 42px);
}

.portfolio-card-content span,
.portfolio-card-content em {
    display: block;
    color: var(--gold-light);
    font-size: .78rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.portfolio-card-content h2 {
    margin-top: .8rem;
    font-size: clamp(1.9rem, 3vw, 3.6rem);
}

.portfolio-card-content p {
    max-width: 520px;
    margin-top: 1rem;
}

.portfolio-card-content em {
    margin-top: 1.2rem;
    color: var(--muted);
}

.portfolio-empty {
    max-width: 760px;
    padding: clamp(32px, 5vw, 56px);
    background: rgba(18, 16, 13, .78);
    border: 1px solid var(--line);
}

.portfolio-empty h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.portfolio-single-hero .split-grid {
    align-items: center;
}

.portfolio-feature-image {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.portfolio-feature-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.project-layout {
    display: grid;
    grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: start;
}

.project-details {
    position: sticky;
    top: 112px;
    padding: 28px;
    background: rgba(18, 16, 13, .78);
    border: 1px solid var(--line);
}

.project-details h2 {
    margin-bottom: 1rem;
    font-size: 1.65rem;
}

.project-details dl {
    margin: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(244, 210, 139, .12);
}

.project-details dt {
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.project-details dd {
    margin: .25rem 0 0;
    color: var(--muted);
}

.project-content {
    max-width: 880px;
}

.project-content > * {
    margin-top: 1.4rem;
}

.project-content > *:first-child {
    margin-top: 0;
}

.project-content h2,
.project-content h3 {
    margin-top: 2.4rem;
}

.project-content img,
.project-content iframe,
.project-content video {
    width: 100%;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.project-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.project-content .wp-block-gallery figure {
    margin: 0;
}

.work-grid span {
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.process-grid span {
    margin-bottom: 2.2rem;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: clamp(32px, 6vw, 78px);
    align-items: center;
}

.testimonial-slider {
    min-width: 0;
}

.testimonial-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 min(520px, 86vw);
    scroll-snap-align: start;
    padding: clamp(28px, 4vw, 44px);
    background: rgba(18, 16, 13, .78);
    border: 1px solid var(--line);
}

.testimonial-card blockquote {
    margin: 0;
}

.testimonial-card blockquote p {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 1.75vw, 1.65rem);
    line-height: 1.25;
}

.testimonial-card cite {
    display: block;
    margin-top: 1.4rem;
    color: var(--gold-light);
    font-style: normal;
}

.testimonial-card cite span {
    display: block;
    margin-top: .3rem;
    color: var(--muted);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: .9rem;
}

.testimonial-controls {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.testimonial-controls button {
    border: 1px solid var(--line);
    background: rgba(18, 16, 13, .78);
    color: var(--gold-light);
    padding: .78rem .95rem;
    font: inherit;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 10vw, 136px) 0;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(8, 6, 4, .88), rgba(8, 6, 4, .96)),
        url("/wp-content/uploads/2026/05/Logo.jpg") center / cover no-repeat;
}

.final-cta .site-shell {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 4, .72);
    backdrop-filter: blur(1px);
}

.final-cta::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(760px, 82vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 210, 139, .55), transparent);
    transform: translate(-50%, -50%);
    opacity: .45;
}

.final-cta p:not(.eyebrow) {
    margin: 1.2rem auto 0;
    max-width: 680px;
    font-size: 1.1rem;
}

.page-hero {
    min-height: min(620px, calc(100svh - 82px));
    display: flex;
    align-items: center;
    padding: clamp(56px, 8vh, 96px) 0;
    background:
        linear-gradient(180deg, rgba(8, 6, 4, .5), var(--bg)),
        radial-gradient(circle at 78% 18%, rgba(216, 164, 77, .18), transparent 30%);
}

.page-hero.compact .site-shell {
    max-width: 900px;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 1.2rem;
    font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.page-hero h1 {
    font-size: clamp(2.7rem, 5.8vw, 5.4rem);
}

.about-hero {
    min-height: min(560px, calc(100svh - 82px));
    padding: clamp(42px, 6vh, 72px) 0;
}

.about-hero .split-grid {
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
}

.about-hero h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 4.6vw, 4.45rem);
}

.about-hero p:not(.eyebrow) {
    max-width: 600px;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.about-hero img {
    width: 100%;
    max-height: min(430px, 48svh);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.not-found-hero {
    min-height: min(680px, calc(100svh - 82px));
}

.not-found-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
    gap: clamp(32px, 6vw, 78px);
    align-items: center;
}

.not-found-layout h1 {
    max-width: 820px;
    font-size: clamp(2.7rem, 5.4vw, 5.7rem);
}

.not-found-layout p:not(.eyebrow) {
    max-width: 640px;
}

.not-found-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 44px);
    background: rgba(18, 16, 13, .8);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.not-found-panel::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 24px;
    width: 118px;
    height: 28px;
    opacity: .22;
    background:
        linear-gradient(90deg, transparent, rgba(244, 210, 139, .78), transparent),
        repeating-linear-gradient(90deg, transparent 0 8px, rgba(244, 210, 139, .76) 8px 10px, transparent 10px 18px);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 84%, transparent);
}

.not-found-panel h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.45rem);
}

.not-found-panel nav {
    display: grid;
    gap: 1px;
    margin-top: 1.5rem;
    background: var(--line);
}

.not-found-panel nav a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: .95rem 1rem;
    color: var(--muted);
    background: rgba(8, 6, 4, .72);
    transition: color .2s ease, background .2s ease;
}

.not-found-panel nav a::after {
    content: "->";
    color: var(--gold-light);
}

.not-found-panel nav a:hover,
.not-found-panel nav a:focus-visible {
    color: var(--gold-light);
    background: rgba(216, 164, 77, .08);
}

.service-aside,
.contact-aside {
    padding: clamp(24px, 3vw, 38px);
}

.service-aside h2,
.contact-aside h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.seo-strip {
    padding: 28px 0;
    background: #100d09;
}

.seo-strip p {
    margin: 0;
    color: var(--soft);
    font-size: .9rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form .full {
    grid-column: 1 / -1;
}

.contact-form span {
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form em {
    color: var(--soft);
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(244, 210, 139, .18);
    border-radius: 0;
    background: rgba(18, 16, 13, .78);
    color: var(--ink);
    padding: 1rem;
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(216, 164, 77, .45);
    outline-offset: 2px;
}

.form-notice {
    grid-column: 1 / -1;
    padding: 1rem;
    border: 1px solid var(--line);
}

.form-notice.success {
    color: #dff1cf;
    background: rgba(68, 104, 49, .18);
}

.form-notice.error {
    color: #ffd7c9;
    background: rgba(130, 54, 28, .18);
}

.legal-copy {
    max-width: 860px;
}

.legal-copy h2 {
    margin-top: 2.2rem;
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.legal-copy p {
    margin-top: .8rem;
}

.site-footer {
    padding: 58px 0 28px;
    background: #050403;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 42px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 1.2rem;
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: var(--gold-light);
    font-family: inherit;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: .55rem 0;
    color: var(--muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(244, 210, 139, .12);
    color: var(--soft);
    font-size: .88rem;
}

.footer-bottom a {
    display: inline;
    margin: 0;
    color: var(--gold-light);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 24px;
        background: rgba(8, 6, 4, .96);
        border-bottom: 1px solid var(--line);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav > a,
    .nav-parent {
        padding: 14px 0;
        border-bottom: 1px solid rgba(244, 210, 139, .1);
    }

    .primary-nav > a::after,
    .nav-parent::after {
        bottom: 8px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-parent {
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        display: none;
        width: 100%;
        margin: 0 0 10px;
        padding: 6px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .has-dropdown.is-open .nav-dropdown,
    .has-dropdown:focus-within .nav-dropdown {
        display: block;
    }

    .has-dropdown:hover .nav-dropdown {
        transform: none;
    }

    .nav-cta {
        margin-top: 10px;
        text-align: center;
        min-width: 0;
        min-height: 58px;
        max-width: none;
        width: 100%;
    }

    .hero {
        min-height: 760px;
    }

    .about-hero {
        min-height: auto;
        padding: 46px 0 54px;
    }

    .about-hero h1 {
        font-size: clamp(2.35rem, 8vw, 3.7rem);
    }

    .about-hero img {
        max-height: 280px;
    }

    .not-found-hero {
        min-height: auto;
    }

    .hero-media img {
        object-position: 62% center;
        opacity: .42;
    }

    .hero-media::after {
        background:
            linear-gradient(90deg, rgba(8, 6, 4, .92), rgba(8, 6, 4, .68)),
            linear-gradient(0deg, var(--bg) 0%, transparent 45%);
    }

    .trust-grid,
    .split-grid,
    .not-found-layout,
    .contact-grid,
    .service-grid,
    .work-grid,
    .process-grid,
    .value-grid,
    .testimonials-layout,
    .project-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card,
    .portfolio-card:nth-child(5n + 1),
    .portfolio-card:nth-child(5n + 4) {
        grid-column: span 6;
    }

    .project-details {
        position: static;
    }

    .trust-list {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(var(--max), calc(100% - 28px));
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 136px;
    }

    .primary-nav {
        top: 72px;
    }

    h1 {
        font-size: clamp(2.8rem, 13vw, 4.6rem);
    }

    .hero {
        min-height: calc(100svh - 72px);
    }

    .hero-content {
        padding-top: 64px;
        padding-bottom: 54px;
    }

    .hero-subtitle {
        font-size: 1.12rem;
    }

    .button {
        width: 100%;
        min-height: 50px;
    }

    .button.secondary {
        margin-left: 0;
        margin-top: .75rem;
    }

    .audio-signature {
        max-width: 100%;
        gap: 6px;
        padding: 4px 0;
    }

    .audio-signature::before,
    .audio-signature::after {
        width: 36px;
    }

    .trust-list,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .portfolio-grid,
    .project-content .wp-block-gallery {
        grid-template-columns: 1fr;
    }

    .portfolio-card,
    .portfolio-card:nth-child(5n + 1),
    .portfolio-card:nth-child(5n + 4) {
        grid-column: 1;
        min-height: 440px;
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.8rem);
    }

    .section {
        padding: 64px 0;
    }

    .page-hero {
        min-height: calc(100svh - 72px);
        padding: 52px 0;
    }

    .about-hero {
        min-height: auto;
        padding: 42px 0 46px;
    }

    .about-hero h1 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .about-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .about-hero img {
        max-height: 220px;
    }

    .not-found-layout h1 {
        font-size: clamp(2.25rem, 10vw, 3.6rem);
    }

    .audio-backdrop-icon {
        width: clamp(54px, 18vw, 96px);
        opacity: .045;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::after,
    .hero::before,
    .section::before,
    .page-hero::before,
    .audio-backdrop-icon,
    .audio-signature span,
    .nav-cta-wave i {
        animation: none !important;
    }
}
