@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap');

:root {
    --green: #0F2318;
    --green-mid: #1A3828;
    --green-light: #275C3E;
    --cream: #F5F0E8;
    --sand: #E8DFD0;
    --off-white: #FAFAF7;
    --ink: #0F1A14;
    --ink-60: rgba(15,26,20,0.6);
    --ink-30: rgba(15,26,20,0.3);
    --accent: #E8724A;
    --accent-dark: #C45A35;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    background: var(--off-white);
    color: var(--ink);
    line-height: 1.6;
}

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

/* ─── NAV ─── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(250,250,247,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand);
}

.nav-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    letter-spacing: -0.04em; color: var(--ink);
    text-transform: lowercase;
}

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

.nav-links a {
    font-size: 0.875rem; font-weight: 400;
    color: var(--ink-60); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
    font-size: 0.875rem; font-weight: 500;
    padding: 0.6rem 1.4rem;
    background: var(--accent); color: #fff !important;
    border-radius: 100px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--off-white) !important; }

/* hamburger */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 20px; position: relative; z-index: 110;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--ink); border-radius: 2px;
    position: absolute; left: 0; transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh; background: var(--green);
    display: grid; grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
    padding: 9rem 3rem 6rem;
}

.hero-eyebrow {
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(245,240,232,0.5); margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 400; line-height: 1.0;
    letter-spacing: -0.03em; color: var(--cream);
    max-width: 14ch; margin-bottom: 2.5rem;
}
.hero h1 em { font-style: italic; color: rgba(245,240,232,0.6); }

.hero-sub {
    font-size: 1.1rem; font-weight: 300;
    color: rgba(245,240,232,0.7);
    max-width: 42ch; margin-bottom: 3rem; line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Hero stats card (right column) */
.hero-stats-col {
    display: flex; align-items: center;
}

.hero-stats-card {
    background: var(--green-mid);
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    width: 300px;
    flex-shrink: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(245,240,232,0.05);
}

.hsc-header {
    display: flex; align-items: center; gap: 0.5rem;
    padding-bottom: 0.9rem; margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(245,240,232,0.08);
    font-size: 0.68rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(245,240,232,0.4); font-weight: 500;
}

.hsc-dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 6px var(--accent);
}

.hsc-row {
    display: flex; align-items: center; gap: 1rem; padding: 0.7rem 0;
    border-bottom: 1px solid rgba(245,240,232,0.05);
}
.hsc-row:last-child { border-bottom: none; padding-bottom: 0; }

.hsc-metric {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem; color: var(--accent);
    min-width: 3.5rem; line-height: 1;
}

.hsc-client { font-size: 0.825rem; font-weight: 500; color: var(--cream); line-height: 1.3; }
.hsc-platform { font-size: 0.7rem; color: rgba(245,240,232,0.35); margin-top: 0.15rem; }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
    background: var(--green);
    padding: 10rem 3rem 5rem;
}
.page-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400; color: var(--cream);
    letter-spacing: -0.03em; line-height: 1.1;
    max-width: 18ch;
}
.page-header h1 em { font-style: italic; color: rgba(245,240,232,0.6); }
.page-header p {
    font-size: 1.1rem; color: rgba(245,240,232,0.6);
    max-width: 48ch; margin-top: 1.5rem; line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; background: var(--cream); color: var(--green);
    font-size: 0.95rem; font-weight: 500; border-radius: 100px;
    transition: all 0.2s; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--off-white); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; color: rgba(245,240,232,0.7);
    font-size: 0.95rem; font-weight: 400; border-radius: 100px;
    border: 1px solid rgba(245,240,232,0.2); transition: all 0.2s;
}
.btn-ghost:hover { color: var(--cream); border-color: rgba(245,240,232,0.5); }

.btn-accent {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; background: var(--accent); color: #fff;
    font-size: 0.95rem; font-weight: 500; border-radius: 100px;
    transition: all 0.2s; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}
.btn-accent:hover { background: var(--accent-dark); color: var(--off-white); transform: translateY(-1px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; color: var(--ink);
    font-size: 0.95rem; font-weight: 500; border-radius: 100px;
    border: 1.5px solid var(--sand); transition: all 0.2s;
    background: transparent; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }

/* ─── MARQUEE ─── */
.marquee-strip {
    background: var(--sand); padding: 1rem 0; overflow: hidden;
    border-top: 1px solid rgba(15,26,20,0.08);
}
.marquee-inner {
    display: flex; gap: 3rem; white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-inner span {
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-60); flex-shrink: 0;
}
.marquee-inner span.dot { color: var(--ink-30); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── RESULTS STRIP ─── */
.results {
    background: var(--ink); padding: 4rem 3rem;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.result-item { border-left: 1px solid rgba(245,240,232,0.15); padding-left: 1.5rem; }
.result-item:first-child { border-left: none; padding-left: 0; }
.result-num {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--cream); line-height: 1; margin-bottom: 0.4rem;
}
.result-label { font-size: 0.8rem; font-weight: 400; color: rgba(245,240,232,0.5); letter-spacing: 0.05em; }
.result-client { font-size: 0.75rem; color: rgba(245,240,232,0.35); margin-top: 0.25rem; }

/* ─── SECTIONS ─── */
.section { padding: 7rem 3rem; }
.section-cream { background: var(--cream); }
.section-white { background: var(--off-white); }
.section-green { background: var(--green); }
.section-sand { background: var(--sand); }

.label {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-30); margin-bottom: 1.5rem; display: block;
}
.label-light { color: rgba(245,240,232,0.4); }

h2.display {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400; letter-spacing: -0.03em; line-height: 1.1;
}
h2.display em { font-style: italic; }
.text-cream { color: var(--cream); }
.text-cream-60 { color: rgba(245,240,232,0.6); }

/* ─── WORK GRID ─── */
.work-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5px; margin-top: 4rem;
}
.work-card {
    aspect-ratio: 4/5; position: relative; overflow: hidden; cursor: pointer;
    background: var(--green-mid);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay {
    position: absolute; inset: 0; background: rgba(15,35,24,0.85);
    opacity: 0; transition: opacity 0.3s;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.work-card-label {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(245,240,232,0.5); margin-bottom: 0.5rem;
}
.work-card-name { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--cream); }
.work-card-stat { font-size: 0.85rem; color: rgba(245,240,232,0.6); margin-top: 0.35rem; }
.work-card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.work-card:hover .work-card-img { transform: scale(1.05); }
.work-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: rgba(245,240,232,0.3); letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--green-mid), var(--green));
}

/* ─── REEL VIDEOS ─── */
.reels-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 4rem;
}
.reel-card {
    aspect-ratio: 9/16; border-radius: 12px; overflow: hidden;
    background: #1a1a1a; position: relative; cursor: pointer;
}
/* Poster image — visible by default, hidden when playing */
.reel-poster {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(0.85) saturate(0.4);
    transition: opacity 0.3s ease;
    position: relative; z-index: 0;
}
.reel-card.playing .reel-poster {
    opacity: 0;
}
/* Video sits behind poster, revealed when playing */
.reel-card video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    position: absolute; top: 0; left: 0;
}
/* Cream wash overlay — NO backdrop-filter (triggers Chrome background-media blocking) */
.reel-card::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(250, 248, 244, 0.5);
    transition: opacity 0.25s ease;
    pointer-events: none; z-index: 1;
}
.reel-card.playing::after,
.reel-card:hover::after {
    opacity: 0;
}
.reel-card .reel-info {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    pointer-events: none; z-index: 2;
}
.reel-info-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #fff;
    transition: opacity 0.5s ease;
}
.reel-card:hover .reel-info-name,
.reel-card.playing .reel-info-name {
    opacity: 0;
}
.reel-info-stat { display: none; }

@media (max-width: 900px) {
    .reels-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .reels-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── CASE STUDY CARDS ─── */
.case-links {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 3rem;
}
.case-link {
    padding: 1.5rem; background: var(--off-white);
    border-radius: 8px; transition: all 0.2s;
    font-size: 0.95rem; font-weight: 400; color: var(--ink);
}
.case-link:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

/* ─── PROCESS / HOW IT WORKS ─── */
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 3rem; margin-top: 4rem;
}
.step-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem; color: var(--sand); line-height: 1; margin-bottom: 1.25rem;
}
.step-title { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--cream); }
.step-desc { font-size: 0.9rem; font-weight: 300; color: rgba(245,240,232,0.6); line-height: 1.7; }

/* ─── SERVICES GRID ─── */
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5px; margin-top: 4rem; border: 1.5px solid var(--sand);
}
.service-card {
    padding: 3rem; background: var(--off-white);
    border: 1.5px solid var(--sand); transition: background 0.2s;
}
.service-card:hover { background: var(--cream); }
.service-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-desc { font-size: 0.9rem; font-weight: 300; color: var(--ink-60); line-height: 1.7; }
.service-tag {
    display: inline-block; margin-top: 1.25rem;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.3rem 0.75rem; border-radius: 100px;
    background: var(--sand); color: var(--ink-60);
}

/* ─── PRICING ─── */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 4rem;
}
.price-card {
    background: var(--off-white); border: 1.5px solid var(--sand);
    border-radius: 12px; padding: 3rem 2.5rem;
    display: flex; flex-direction: column;
    transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.price-card.featured {
    background: var(--green); border-color: var(--green);
}
.price-card.featured .price-name,
.price-card.featured .price-amount,
.price-card.featured .price-period { color: var(--cream); }
.price-card.featured .price-desc { color: rgba(245,240,232,0.6); }
.price-card.featured .price-feature { color: rgba(245,240,232,0.7); border-color: rgba(245,240,232,0.12); }
.price-card.featured .price-feature::before { color: var(--accent); }
.price-badge {
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent);
    background: rgba(232,114,74,0.1); padding: 0.3rem 0.8rem;
    border-radius: 100px; display: inline-block; margin-bottom: 1.5rem; width: fit-content;
}
.price-card.featured .price-badge { background: rgba(232,114,74,0.2); }
.price-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.price-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem; line-height: 1; margin-bottom: 0.25rem;
}
.price-period { font-size: 0.85rem; color: var(--ink-60); margin-bottom: 1rem; }
.price-desc { font-size: 0.9rem; color: var(--ink-60); line-height: 1.6; margin-bottom: 2rem; }
.price-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; }
.price-feature {
    font-size: 0.9rem; color: var(--ink-60); padding: 0.75rem 0;
    border-bottom: 1px solid var(--sand); display: flex; align-items: flex-start; gap: 0.6rem;
}
.price-feature::before { content: "✓"; color: var(--green-light); font-weight: 700; flex-shrink: 0; }

/* ─── TESTIMONIAL ─── */
.testimonial-block {
    max-width: 700px; margin: 0 auto; text-align: center;
}
.testimonial-quote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.5; color: var(--ink);
    margin-bottom: 2rem;
}
.testimonial-quote em { font-style: italic; }
.testimonial-attr {
    font-size: 0.85rem; font-weight: 500; color: var(--ink-60);
}
.testimonial-attr span { display: block; font-weight: 300; margin-top: 0.25rem; }

/* ─── FAQ ─── */
.faq-list { max-width: 700px; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    text-align: left; padding: 1.5rem 0; font-size: 1rem;
    font-weight: 500; color: var(--ink);
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'DM Sans', sans-serif;
}
.faq-q::after {
    content: "+"; font-size: 1.4rem; font-weight: 300;
    color: var(--ink-30); transition: transform 0.3s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    font-size: 0.95rem; color: var(--ink-60); line-height: 1.7;
}
.faq-a-inner { padding-bottom: 1.5rem; }
.faq-item.open .faq-a { max-height: 300px; }

/* ─── ABOUT SPLIT ─── */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
}
.split-text p {
    font-size: 1rem; font-weight: 300;
    color: var(--ink-60); line-height: 1.8; margin-top: 1.5rem;
}
.about-photo {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--green-mid), var(--green));
    border-radius: 8px; overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ─── CLIENT LIST ─── */
.client-list { display: flex; flex-direction: column; }
.client-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0; border-bottom: 1px solid var(--sand); font-size: 0.95rem;
    color: inherit; text-decoration: none; transition: opacity 0.2s;
}
.client-row:hover { opacity: 0.65; }
.client-row:hover .client-arrow { color: var(--ink); }
.client-row:first-child { border-top: 1px solid var(--sand); }
.client-name { font-weight: 400; }
.client-type { font-size: 0.8rem; color: var(--ink-60); }
.client-arrow { color: var(--ink-30); font-size: 0.9rem; transition: color 0.2s; }

/* ─── ABOUT PHOTO ROTATOR ─── */
.about-photo-rotator {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 580px;
    flex-shrink: 0;
    width: 100%;
}

.rotator-track { position: relative; width: 100%; height: 100%; }

.rotator-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.9s ease;
}
.rotator-slide.active { opacity: 1; }
.rotator-slide img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

.rotator-dots {
    position: absolute; bottom: 1rem; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 0.4rem; z-index: 5;
}
.rdot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.rdot.active { background: #fff; transform: scale(1.25); }

/* ─── CONTACT FORM ─── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; margin-top: 4rem; align-items: start;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ink-60); margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 0.9rem 1rem;
    border: 1.5px solid var(--sand); border-radius: 8px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    color: var(--ink); background: #fff;
    transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--green-light);
}
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info { padding-top: 1rem; }
.contact-info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem; font-weight: 400; margin-bottom: 1.5rem;
}
.contact-detail {
    font-size: 0.95rem; color: var(--ink-60);
    margin-bottom: 1rem; line-height: 1.7;
}
.contact-detail strong { font-weight: 500; color: var(--ink); display: block; margin-bottom: 0.25rem; }

/* ─── CASE STUDY PAGE ─── */
.case-hero {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.case-stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 3rem;
}
.case-stat-card {
    background: var(--off-white); border-radius: 8px; padding: 1.5rem;
}
.case-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem; color: var(--ink); line-height: 1;
}
.case-stat-label { font-size: 0.8rem; color: var(--ink-60); margin-top: 0.35rem; }
.case-body { max-width: 680px; }
.case-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem; margin-bottom: 1rem; margin-top: 3rem;
}
.case-body p { font-size: 1rem; color: var(--ink-60); line-height: 1.8; margin-bottom: 1.25rem; }

/* ─── CTA SECTION ─── */
.cta-section {
    background: var(--green); padding: 8rem 3rem;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--cream); letter-spacing: -0.03em;
    line-height: 1.05; margin-bottom: 1.5rem; max-width: 16ch;
}
.cta-section p { font-size: 1.1rem; color: rgba(245,240,232,0.6); max-width: 44ch; margin-bottom: 2.5rem; }

/* ─── FOOTER ─── */
footer {
    background: var(--ink); padding: 3rem;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    letter-spacing: -0.04em; color: var(--cream); text-transform: lowercase;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.8rem; color: rgba(245,240,232,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: 0.75rem; color: rgba(245,240,232,0.3); }

/* ─── FADE ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--off-white); flex-direction: column;
        padding: 6rem 2rem 2rem; gap: 1.5rem;
        transition: right 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.1rem; }
    .nav-toggle { display: block; }
    .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; }
    .hero-stats-col { display: none; }
    .page-header { padding: 8rem 1.5rem 4rem; }
    .results { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
    .section { padding: 5rem 1.5rem; }
    .work-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .split { grid-template-columns: 1fr; gap: 3rem; }
    .case-links { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .case-hero { grid-template-columns: 1fr; }
    footer { flex-direction: column; padding: 2rem 1.5rem; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .results { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2.5rem 1.25rem; }
    .process-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .case-stats { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
}
