/* ══════════════════════════════════════
   RESET & VARIABLES
══════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #1A1917;
    --dark-alt: #22211F;
    --dark-deep: #141412;
    --cream: #F2EDE8;
    --cream-warm: #EBE4DD;
    --copper: #C4956A;
    --copper-light: #D4AA82;
    --copper-dark: #A67C55;
    --muted: #7A7672;
    --muted-light: #9A9692;
    --heading: 'IBM Plex Sans Condensed', 'Arial Narrow', sans-serif;
    --serif: 'IBM Plex Serif', Georgia, serif;
    --sans: 'IBM Plex Sans', system-ui, sans-serif;
    --section-pad: 7rem;
    --gutter: 3.5rem;
    --max-w: 1280px;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--cream);
    font-family: var(--sans);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

section[id] { scroll-margin-top: 80px; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

/* ══════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════ */
.section-label {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.section-light {
    background: var(--cream);
    color: var(--dark);
}

.section-light .section-title { color: var(--dark); }
.section-light .section-label { color: var(--copper-dark); }

/* ══════════════════════════════════════
   CTA BUTTONS
══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.925rem 2rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--copper);
    color: var(--dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { gap: 1.1rem; }

.btn span, .btn svg { position: relative; z-index: 1; }

.btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover svg { transform: translateX(3px); }

.btn-outline {
    background: transparent;
    color: var(--copper);
    border: 1px solid var(--copper);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--copper);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover::before { transform: translateX(0); }
.btn-outline:hover { color: var(--dark); gap: 1.1rem; }

.btn-dark {
    background: var(--dark);
    color: var(--cream);
}

.btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--copper);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-dark:hover::before { transform: translateX(0); }
.btn-dark:hover { color: var(--dark); gap: 1.1rem; }

.arrow-icon { width: 14px; height: 14px; }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem var(--gutter);
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeIn 1s ease 0.2s forwards;
}

.nav.scrolled {
    background: rgba(26, 25, 23, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav-logo { display: flex; align-items: center; }

.nav-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: height 0.4s ease;
}

.nav.scrolled .nav-logo img { height: 36px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.75rem;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(242, 237, 232, 0.65);
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--cream); }

.nav-contact {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(242, 237, 232, 0.2);
    color: var(--cream);
    transition: all 0.3s ease;
}

.nav-contact:hover {
    background: rgba(242, 237, 232, 0.08);
    border-color: rgba(242, 237, 232, 0.4);
}

.nav-burger {
    display: none;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(26, 25, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--copper); }

/* ══════════════════════════════════════
   HERO (full viewport — homepage)
══════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.06);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(26, 25, 23, 0.3) 0%,
        rgba(26, 25, 23, 0.05) 25%,
        rgba(26, 25, 23, 0.15) 45%,
        rgba(26, 25, 23, 0.6) 72%,
        rgba(26, 25, 23, 0.93) 100%
    );
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem var(--gutter) 4.5rem;
}

.hero-heading {
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(3.2rem, 8.5vw, 8.5rem);
    line-height: 0.93;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 2.5rem;
}

.hero-heading .line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}

.hero-heading .line span {
    display: inline-block;
    transform: translateY(115%);
    animation: textReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-heading .line:nth-child(1) span { animation-delay: 0.5s; }
.hero-heading .line:nth-child(2) span { animation-delay: 0.65s; }
.hero-heading .line:nth-child(3) span { animation-delay: 0.8s; }

@keyframes textReveal { to { transform: translateY(0); } }

.hero-rule {
    height: 1px;
    background: linear-gradient(90deg, var(--copper) 0%, transparent 50%);
    margin-bottom: 2rem;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}

@keyframes lineGrow { to { transform: scaleX(1); } }

.hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: contentUp 0.9s ease 1.3s forwards;
}

@keyframes contentUp { to { opacity: 1; transform: translateY(0); } }

.hero-body { max-width: 500px; }

.hero-body p {
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(242, 237, 232, 0.72);
    margin-bottom: 2rem;
}

.hero-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
    flex-shrink: 0;
    max-width: 300px;
}

.hero-states {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-states span {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--copper);
    padding: 0.225rem 0.475rem;
    border: 1px solid rgba(196, 149, 106, 0.28);
}

.hero-label {
    font-size: 0.6875rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-hint {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeIn 1s ease 2.2s forwards;
}

.scroll-hint span {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-bar {
    width: 1px;
    height: 32px;
    background: rgba(122, 118, 114, 0.25);
    position: relative;
    overflow: hidden;
}

.scroll-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 40%;
    background: var(--copper);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { transform: translateY(-120%); }
    55%  { transform: translateY(320%); }
    100% { transform: translateY(320%); }
}

@keyframes fadeIn { to { opacity: 1; } }

/* ══════════════════════════════════════
   PAGE HEADER (subpages)
══════════════════════════════════════ */
.page-header {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--dark-alt);
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(26, 25, 23, 0.5) 0%,
        rgba(26, 25, 23, 0.85) 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 10;
    padding: 8rem var(--gutter) 3.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.page-header-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1rem;
}

.page-header-title {
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--cream);
}

.page-header-sub {
    margin-top: 1.25rem;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(242, 237, 232, 0.65);
    max-width: 560px;
}

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats {
    background: var(--dark-alt);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 2.75rem var(--gutter);
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.06);
}

.stat-number {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--muted-light);
    text-transform: uppercase;
}

.stats-inner-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
    padding: var(--section-pad) var(--gutter);
}

.services-header {
    max-width: var(--max-w);
    margin: 0 auto 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.services-header-text { max-width: 640px; }

.services-header p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--muted);
    margin-top: 1.25rem;
}

.services-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.services-column { min-width: 0; }

.services-column-title {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--dark);
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--copper);
    margin-bottom: 0.5rem;
}

.service-item {
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(26, 25, 23, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding-left 0.3s ease;
}

.service-item:hover { padding-left: 0.5rem; }

.service-item-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--dark);
    transition: color 0.3s ease;
}

.service-item:hover .service-item-name { color: var(--copper-dark); }

.service-item-icon {
    width: 20px;
    height: 20px;
    color: var(--copper);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════
   BRAND STATEMENT
══════════════════════════════════════ */
.statement {
    padding: var(--section-pad) var(--gutter);
    position: relative;
    overflow: hidden;
}

.statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.statement-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.statement-quote {
    font-family: var(--serif);
    font-weight: 400;
    font-optical-sizing: auto;
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    line-height: 1.45;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.statement-quote .copper { color: var(--copper-light); }

.statement-attribution {
    margin-top: 2rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process {
    padding: var(--section-pad) var(--gutter);
    background: var(--cream-warm);
    color: var(--dark);
}

.process-header {
    max-width: var(--max-w);
    margin: 0 auto 4rem;
}

.process .section-title { color: var(--dark); }
.process .section-label { color: var(--copper-dark); }

.process-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    position: relative;
    padding: 0 2rem;
    border-left: 1px solid rgba(196, 149, 106, 0.25);
}

.process-step:first-child {
    padding-left: 0;
    border-left: none;
}

.process-number {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 2.75rem;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.process-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--copper);
}

.process-name {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--muted);
}

/* ══════════════════════════════════════
   WORK / PROJECTS
══════════════════════════════════════ */
.work {
    padding: var(--section-pad) var(--gutter);
}

.work-header {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1rem;
    position: sticky;
    top: 120px;
    z-index: 2;
    background: inherit;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.work-header.hide {
    transform: translateY(calc(-100% - 3rem));
    opacity: 0;
    pointer-events: none;
}

.work-title {
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.work-list {
    max-width: var(--max-w);
    margin: 0 auto -75vh;
    display: flow-root;
}

/* --- Horizontal Project Card --- */
.work-card {
    display: grid;
    grid-template-columns: 1fr 0.55fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 0;
    border: 1px solid rgba(26, 25, 23, 0.15);
    align-items: stretch;
    position: sticky;
    top: calc(120px + 7.5rem);
    background: var(--cream);
    box-shadow: none;
    margin-bottom: 90vh;
}

.work-card:last-child {
    margin-bottom: 90vh;
}

/* Text column */
.work-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2.75rem 2.5rem 1.5rem;
    border-right: 1px solid rgba(26, 25, 23, 0.1);
}

.work-card-name {
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.work-card-desc {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.625rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark);
    opacity: 0.7;
}

.work-card-link {
    grid-column: 1 / 3;
    grid-row: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 2.75rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(26, 25, 23, 0.1);
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--copper-dark);
    transition: gap 0.3s ease;
}

.work-card-link:hover { gap: 0.85rem; }

.work-card-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.3s ease;
}

.work-card-link:hover svg { transform: translateX(2px); }

/* Meta column */
.work-card-meta {
    padding: 2.5rem 2.5rem;
}

.work-card-meta > div {
    margin-bottom: 2rem;
}

.work-card-meta > div:last-child { margin-bottom: 0; }

.work-card-meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: 0.5rem;
}

.work-card-meta-value {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark);
}

/* Image column — spans both rows, flush with card border */
.work-card-image {
    grid-column: 3;
    grid-row: 1 / -1;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-left: 1px solid rgba(26, 25, 23, 0.1);
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards should not have reveal animation — they slide up via sticky scroll */
.work-card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

/* Dark variant */
.work-dark { background: var(--dark); color: var(--cream); }
.work-dark .work-header { background: var(--dark); }
.work-dark .work-card {
    border-color: rgba(255,255,255,0.07);
    background: var(--dark);
}
.work-dark .work-card-text { border-right-color: rgba(255,255,255,0.06); }
.work-dark .work-card-link { border-top-color: rgba(255,255,255,0.06); color: var(--copper); }
.work-dark .work-card-image { border-left-color: rgba(255,255,255,0.06); }
.work-dark .work-card-name { color: var(--cream); }
.work-dark .work-card-desc { color: rgba(242, 237, 232, 0.65); opacity: 1; }
.work-dark .work-card-meta-label { color: var(--muted); }
.work-dark .work-card-meta-value { color: rgba(242, 237, 232, 0.85); }
.work-dark .work-title { color: var(--cream); }
.work-dark .section-title { color: var(--cream); }

/* ══════════════════════════════════════
   REVIEWS / TESTIMONIALS
══════════════════════════════════════ */
.reviews {
    padding: var(--section-pad) var(--gutter);
    overflow: hidden;
}

.reviews-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reviews-text .section-title {
    margin-top: 1rem;
}

/* --- Reviews Grid --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-top: 3.5rem;
}

/* --- Tilted Card --- */
.tilt-card {
    position: relative;
    perspective: 800px;
    cursor: default;
}

.tilt-card-inner {
    transform-style: preserve-3d;
    will-change: transform;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.tilt-card:hover .tilt-card-inner {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tilt-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2.25rem 2rem;
    background: var(--dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    min-height: 260px;
    text-align: left;
}

.tilt-card-quote {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(242, 237, 232, 0.75);
}

.tilt-card-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}

.tilt-card-name {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cream);
}

.tilt-card-role {
    font-family: var(--sans);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--copper);
}

/* ══════════════════════════════════════
   CLIENT MARQUEE
══════════════════════════════════════ */
.client-marquee {
    overflow: hidden;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.client-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.client-marquee-item {
    font-family: var(--heading);
    font-weight: 600;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(242, 237, 232, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.client-marquee-sep {
    color: rgba(196, 149, 106, 0.25);
    padding: 0 1.5rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   CONTACT / CTA
══════════════════════════════════════ */
.contact {
    padding: var(--section-pad) var(--gutter);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.contact-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-text { min-width: 0; }
.contact-text .section-title { margin-bottom: 1.5rem; }

.contact-text > p {
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(242, 237, 232, 0.68);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(196, 149, 106, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--copper);
}

.contact-method-icon svg { width: 18px; height: 18px; }

.contact-method-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.contact-method-value {
    font-size: 1rem;
    font-weight: 400;
    color: var(--cream);
}

.contact-method-value a { transition: color 0.3s ease; }
.contact-method-value a:hover { color: var(--copper); }

/* Contact form */
.contact-form {
    background: var(--dark-alt);
    padding: 2.75rem;
    border: 1px solid rgba(255,255,255,0.04);
}

.contact-form-title {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.contact-form-sub {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--copper); }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(242, 237, 232, 0.25); }

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A7672' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option { background: var(--dark-alt); color: var(--cream); }

.form-textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 1.5rem;
}

.form-submit { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: var(--dark-deep);
    border-top: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

/* --- Footer Nav Grid --- */
.footer-nav {
    padding: 5rem var(--gutter) 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 4rem;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
}

.footer-link {
    display: block;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--muted);
    transition: color 0.3s ease;
}

.footer-link:hover { color: var(--cream); }

.footer-link:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* --- Footer Wordmark --- */
.footer-wordmark {
    padding: 5rem var(--gutter) 0;
    overflow: hidden;
    user-select: none;
}

.footer-wordmark-img {
    height: clamp(4rem, 9vw, 7.5rem);
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* --- Footer Bottom --- */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem var(--gutter) 3rem;
}

.footer-bottom-col {
    font-size: 0.8125rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(122, 118, 114, 0.55);
}

.footer-bottom-col strong {
    font-weight: 400;
    color: var(--muted);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --section-pad: 5.5rem;
        --gutter: 2.5rem;
    }

    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { padding: 0 1.5rem 2rem; }
    .process-step:nth-child(1), .process-step:nth-child(2) { margin-bottom: 1rem; }
    .process-step:nth-child(odd) { padding-left: 0; border-left: none; }
    .contact-inner { gap: 3rem; }
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 0 3rem; }
    .work-card { grid-template-columns: 1fr 0.5fr 0.9fr; top: calc(120px + 6.5rem); }
    .work-card-text { padding: 2rem 2rem 2rem 1.25rem; }
    .work-card-meta { padding: 2rem 1.75rem; }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 4rem;
        --gutter: 1.5rem;
    }

    .nav-links, .nav-contact { display: none; }
    .nav-burger { display: block; }

    .hero-heading { margin-bottom: 2rem; }
    .hero-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .hero-aside {
        flex-direction: row;
        align-items: center;
        max-width: 100%;
        gap: 1.5rem;
        width: 100%;
        justify-content: space-between;
    }
    .scroll-hint { display: none; }

    .page-header-content { padding: 7rem var(--gutter) 2.5rem; }

    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-inner-6 { grid-template-columns: repeat(3, 1fr); }
    .stat-item { padding: 2rem var(--gutter); }
    .stat-item:nth-child(2)::after { display: none; }

    .services-header { flex-direction: column; align-items: flex-start; }
    .services-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .process-grid { grid-template-columns: 1fr; }
    .process-step { padding: 0 0 1.5rem; border-left: none; border-bottom: 1px solid rgba(196,149,106,0.2); }
    .process-step:last-child { border-bottom: none; padding-bottom: 0; }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
        top: auto;
        padding-bottom: 2rem;
    }
    .work-title { font-size: clamp(2.25rem, 8vw, 3.5rem); }
    .work-list { padding-bottom: 0; }
    .work-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        border: none;
        border-top: 1px solid rgba(26, 25, 23, 0.15);
        padding: 2rem 0;
        position: relative;
        top: auto;
        box-shadow: none;
        margin-bottom: 0;
    }
    .work-card.reveal {
        opacity: 0;
        transform: translateY(36px);
        transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .work-card.reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .work-card-text {
        padding: 0;
        border-right: none;
    }
    .work-card-link {
        grid-column: auto;
        grid-row: auto;
        border-top: none;
        padding: 0;
        margin-top: 1.25rem;
    }
    .work-card-meta {
        padding: 0;
        display: flex;
        gap: 2.5rem;
    }
    .work-card-meta > div { margin-bottom: 0; }
    .work-card-image { aspect-ratio: 16 / 10; grid-column: auto; grid-row: auto; border-left: none; }

    .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .tilt-card-content { min-height: auto; }

    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

    .footer-nav { grid-template-columns: 1fr 1fr; gap: 0 2rem; padding-top: 3.5rem; }
    .footer-wordmark { padding-top: 3.5rem; }
    .footer-bottom { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: clamp(2.4rem, 11vw, 3.8rem);
        line-height: 0.95;
    }

    .hero-body p { font-size: 0.95rem; }
    .hero-states span { font-size: 0.6rem; padding: 0.2rem 0.35rem; }

    .stat-number { font-size: 1.5rem; }
    .stats-inner-6 { grid-template-columns: repeat(2, 1fr); }

    .form-row { grid-template-columns: 1fr; }

    .footer-nav { grid-template-columns: 1fr; }
    .footer-wordmark { padding-top: 2.5rem; }
}
