/* ============================================================
   KERNEL PRINTS — PREMIUM BRAND EXPERIENCE DESIGN SYSTEM
   Primary: Deep Teal #0D6B63
   Secondary: White
   Accent: Warm Beige / Light Sand #F1E9DD
   Ink: #0A1F1D
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
    --teal: #0D6B63;
    --teal-700: #0a5750;
    --teal-900: #063833;
    --ink: #0A1F1D;
    --ink-soft: #1c2b29;
    --sand: #F1E9DD;
    --sand-200: #E8DECC;
    --sand-100: #F7F2EA;
    --white: #ffffff;
    --off-white: #FBFAF8;
    --gray-50: #F6F6F4;
    --gray-200: #E4E4E0;
    --gray-400: #9A9A93;
    --gray-600: #5C5C56;

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

    --container: 1200px;
    --container-narrow: 880px;
    --radius-sm: 6px;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(10, 31, 29, .04), 0 2px 8px rgba(10, 31, 29, .04);
    --shadow: 0 12px 40px rgba(10, 31, 29, .08);
    --shadow-lg: 0 24px 70px rgba(10, 31, 29, .14);
    --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- BASE RESET / TYPOGRAPHY ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv01';
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
}

p { margin: 0; }

::selection { background: var(--teal); color: var(--white); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 140px 0; }

@media (max-width: 768px) {
    body { font-size: 16px; }
    .section { padding: 64px 0; }
    .section-lg { padding: 88px 0; }
}

/* ---------- EYEBROW LABELS ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}
.eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--teal);
    opacity: .6;
}
.eyebrow.eyebrow-light { color: var(--sand); }
.eyebrow.eyebrow-light::before { background: var(--sand); opacity: .8; }
.eyebrow.eyebrow-center { justify-content: center; }

/* ---------- HEADLINE SCALE ---------- */
.display { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 500; line-height: 1.02; letter-spacing: -0.035em; }
.h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.01em; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--gray-600); font-weight: 400; max-width: 620px; }
.text-muted { color: var(--gray-600); }
.text-sand { color: var(--sand); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
    padding: 22px 0;
    background: transparent;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    box-shadow: 0 1px 0 rgba(10,31,29,.06);
    padding: 14px 0;
}
/* transparent header over dark hero */
.site-header.header-dark .nav-link,
.site-header.header-dark .header-logo { color: var(--white); }
.site-header.header-dark.scrolled .nav-link,
.site-header.header-dark.scrolled .header-logo { color: var(--ink); }

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
@media (max-width: 768px) { .header-container { padding: 0 20px; } }

.header-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .3s var(--ease);
}
.header-logo .logo-mark {
    width: 32px; height: 32px;
    background: var(--teal);
    border-radius: 8px;
    display: grid; place-items: center;
    color: var(--white);
    font-size: .9rem; font-weight: 700;
    font-family: var(--font-sans);
}
.header-logo .logo-text { line-height: 1; }
.header-logo .logo-text small {
    display: block;
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: .6;
    margin-top: 2px;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 30px;
}
@media (min-width: 900px) { .header-nav { display: flex; } }

.nav-link {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    opacity: .82;
    transition: opacity .25s var(--ease), color .3s var(--ease);
    background: none; border: none; cursor: pointer;
    padding: 0;
    font-family: var(--font-sans);
}
.nav-link:hover, .nav-link.active { opacity: 1; }
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    height: 1.5px; width: 0;
    background: currentColor;
    transition: width .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.dropdown-arrow { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    min-width: 300px;
    opacity: 0; visibility: hidden;
    transition: all .3s var(--ease);
    border: 1px solid var(--gray-200);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink);
    transition: background .2s var(--ease);
}
.nav-dropdown-item:hover { background: var(--sand-100); }
.nav-dropdown-item small {
    font-size: .78rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* CTA button in header */
.header-cta {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    transition: transform .25s var(--ease), background .25s var(--ease);
    white-space: nowrap;
}
@media (min-width: 900px) { .header-cta { display: inline-flex; } }
.header-cta:hover { background: var(--teal-700); transform: translateY(-1px); }

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
    z-index: 1100;
}
.mobile-menu-btn span {
    display: block; width: 22px; height: 2px;
    background: var(--ink);
    margin: 0 auto;
    transition: all .3s var(--ease);
}
.site-header.header-dark:not(.scrolled) .mobile-menu-btn span { background: var(--white); }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .mobile-menu-btn { display: none; } }

/* Mobile nav panel */
.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: 100%; max-width: 400px;
    height: 100vh;
    background: var(--white);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 1050;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-nav.active { transform: translateX(0); box-shadow: var(--shadow-lg); }
body.menu-open { overflow: hidden; }
body.menu-open::after {
    content: ''; position: fixed; inset: 0;
    background: rgba(10,31,29,.4);
    z-index: 1040;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--gray-200);
    font-family: var(--font-sans);
}
.mobile-dropdown-toggle { width: 100%; justify-content: space-between; text-align: left; }
.mobile-dropdown-menu {
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ease);
    padding-left: 16px;
}
.mobile-nav-dropdown.open .mobile-dropdown-menu { max-height: 500px; padding-bottom: 8px; }
.mobile-dropdown-item {
    display: block;
    padding: 12px 0;
    font-size: .95rem;
    color: var(--gray-600);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: .95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: -0.005em;
    cursor: pointer;
    border: none;
    transition: all .3s var(--ease);
    text-align: center;
    justify-content: center;
    line-height: 1;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,107,99,.3); }
.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.25);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
    padding: 140px 0 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .42;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(6,56,51,.92) 0%, rgba(10,31,29,.75) 45%, rgba(10,31,29,.55) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 820px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--sand);
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(241,233,221,.25);
    border-radius: 100px;
    background: rgba(241,233,221,.06);
    backdrop-filter: blur(4px);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sand); }
.hero h1 {
    color: var(--white);
    font-size: clamp(2.6rem, 6.5vw, 5.4rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    font-weight: 500;
}
.hero h1 em {
    font-style: italic;
    color: var(--sand);
    font-weight: 400;
}
.hero-sub {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.5;
    color: rgba(255,255,255,.78);
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
    position: relative; z-index: 2;
    margin-top: 72px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(241,233,221,.18);
}
.hero-stat .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}
.hero-stat .label {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-top: 6px;
}

/* scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.5);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .line { width: 1px; height: 40px; background: rgba(255,255,255,.3); animation: scrollPulse 2s var(--ease) infinite; }
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: .3; }
    50% { transform: scaleY(1.4); opacity: .8; }
}

/* ============================================================
   MARQUEE (trusted strip)
   ============================================================ */
.marquee {
    background: var(--sand-100);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--sand-200);
    border-bottom: 1px solid var(--sand-200);
}
.marquee-track {
    display: flex;
    gap: 64px;
    align-items: center;
    white-space: nowrap;
    animation: marquee 32s linear infinite;
    width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--teal);
    opacity: .7;
    display: flex; align-items: center; gap: 64px;
}
.marquee-item::after {
    content: '✦';
    font-size: .8rem;
    color: var(--teal);
    opacity: .5;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION: WHY BRAND EXPERIENCES MATTER
   ============================================================ */
.why {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

.why-list {
    margin-top: 36px;
    display: flex; flex-direction: column;
    gap: 4px;
}
.why-list-item {
    display: flex; gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-200);
}
.why-list-item:last-child { border-bottom: none; }
.why-list-num {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--teal);
    font-weight: 600;
    min-width: 28px;
}
.why-list-text h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-list-text p { font-size: .95rem; color: var(--gray-600); }

.why-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-visual-card {
    position: absolute;
    bottom: 28px; left: 28px;
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 280px;
}
.why-visual-card .quote-mark {
    font-family: var(--font-display);
    font-size: 2.5rem; line-height: 0.5;
    color: var(--teal);
    margin-bottom: 12px;
}
.why-visual-card p { font-size: .95rem; line-height: 1.45; color: var(--ink-soft); }
.why-visual-card .source { font-size: .8rem; color: var(--gray-400); margin-top: 12px; }

/* ============================================================
   SECTION: SERVICES (editorial rows)
   ============================================================ */
.services {
    background: var(--off-white);
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.section-head .section-head-left { max-width: 620px; }
.section-head .section-head-right { max-width: 380px; }

.service-rows {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-200);
}
.service-row {
    display: grid;
    grid-template-columns: 90px 1.4fr 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: padding .4s var(--ease);
    cursor: pointer;
    position: relative;
}
.service-row:hover { padding-left: 20px; }
.service-row .service-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gray-400);
    font-weight: 500;
}
.service-row .service-title {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    transition: color .3s var(--ease);
}
.service-row:hover .service-title { color: var(--teal); }
.service-row .service-desc {
    font-size: .98rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.service-row .service-arrow {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    display: grid; place-items: center;
    transition: all .3s var(--ease);
    color: var(--ink);
}
.service-row:hover .service-arrow {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    transform: rotate(-45deg);
}
.service-row .service-arrow svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 28px 0;
    }
    .service-row:hover { padding-left: 0; }
    .service-row .service-num { font-size: .9rem; }
    .service-row .service-arrow { display: none; }
}

/* ============================================================
   FEATURED WORK / CASE STUDIES
   ============================================================ */
.work {
    background: var(--white);
}
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-200);
    display: block;
    transition: transform .5s var(--ease);
}
.work-card.tall { aspect-ratio: 4/5; }
.work-card.wide { grid-column: span 2; aspect-ratio: 16/9; }
@media (max-width: 768px) { .work-card.wide { grid-column: span 1; aspect-ratio: 4/3; } }
.work-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.work-card:hover img { transform: scale(1.05); }
.work-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,56,51,.88) 0%, rgba(6,56,51,.1) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px;
    color: var(--white);
}
.work-card-tag {
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 8px;
    opacity: .9;
}
.work-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.work-card-desc {
    font-size: .92rem;
    color: rgba(255,255,255,.75);
    margin-top: 6px;
    max-width: 420px;
    opacity: 0; max-height: 0;
    transition: all .4s var(--ease);
}
.work-card:hover .work-card-desc { opacity: 1; max-height: 60px; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process {
    background: var(--ink);
    color: var(--white);
}
.process .eyebrow { color: var(--sand); }
.process .eyebrow::before { background: var(--sand); opacity: .8; }
.process h2, .process .h2 { color: var(--white); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    counter-reset: step;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
    position: relative;
    padding-right: 32px;
    counter-increment: step;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px; right: 0;
    width: 100%; height: 1px;
    background: linear-gradient(to right, rgba(241,233,221,.25), transparent);
}
.process-step-num {
    display: inline-grid; place-items: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(241,233,221,.3);
    font-family: var(--font-sans);
    font-size: .9rem; font-weight: 600;
    color: var(--sand);
    margin-bottom: 24px;
}
.process-step h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.process-step p {
    color: rgba(255,255,255,.6);
    font-size: .92rem;
    line-height: 1.55;
}

/* ============================================================
   CLIENTS / TRUSTED BY
   ============================================================ */
.clients {
    background: var(--sand-100);
    border-top: 1px solid var(--sand-200);
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

.client-logo {
    aspect-ratio: 5/3;
    background: var(--white);
    border-radius: var(--radius);
    display: grid; place-items: center;
    padding: 24px;
    border: 1px solid var(--sand-200);
    transition: all .3s var(--ease);
}
.client-logo:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.client-logo img {
    max-width: 70%;
    max-height: 56px;
    object-fit: contain;
    filter: grayscale(1) opacity(.6);
    transition: filter .3s var(--ease);
}
.client-logo:hover img { filter: grayscale(0) opacity(1); }
.client-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    opacity: .6;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    background: var(--teal);
    color: var(--white);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '✦';
    position: absolute;
    top: 40px; left: 12%;
    font-size: 1.5rem; color: rgba(241,233,221,.3);
}
.cta-band::after {
    content: '✦';
    position: absolute;
    bottom: 50px; right: 14%;
    font-size: 2rem; color: rgba(241,233,221,.2);
}
.cta-band-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-band .eyebrow { color: var(--sand); justify-content: center; }
.cta-band .eyebrow::before { background: var(--sand); opacity: .8; }
.cta-band h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.05;
}
.cta-band p {
    color: rgba(255,255,255,.8);
    font-size: 1.15rem;
    margin-bottom: 40px;
}
.cta-band .btn-light { background: var(--sand); color: var(--ink); }
.cta-band .btn-light:hover { background: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.global-footer {
    background: var(--ink);
    color: rgba(255,255,255,.7);
    padding: 80px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .header-logo { color: var(--white); margin-bottom: 20px; }
.footer-brand .header-logo .logo-mark { background: var(--sand); color: var(--ink); }
.footer-tagline {
    font-size: .98rem;
    line-height: 1.55;
    max-width: 320px;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: grid; place-items: center;
    font-size: .85rem;
    font-weight: 600;
    transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

.footer-col-title {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-sans);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .95rem; transition: color .25s var(--ease); }
.footer-links a:hover { color: var(--sand); }
.footer-contact-item { margin-bottom: 14px; }
.footer-contact-label { display: block; font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.footer-contact-value { font-size: .95rem; color: rgba(255,255,255,.85); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--sand); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero {
    background: var(--ink);
    color: var(--white);
    padding: 180px 0 96px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at 80% 40%, rgba(13,107,99,.4), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--sand); }
.page-hero .eyebrow::before { background: var(--sand); opacity: .8; }
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 20px;
    max-width: 800px;
}
.page-hero p {
    color: rgba(255,255,255,.75);
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.5;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 900px) { .about-intro-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-intro-grid .lead { font-size: 1.3rem; line-height: 1.5; color: var(--ink); font-weight: 400; }
.about-intro-grid .lead em { color: var(--teal); font-style: normal; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all .4s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.value-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--sand-100);
    display: grid; place-items: center;
    color: var(--teal);
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 600;
}
.value-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.value-card p { font-size: .98rem; color: var(--gray-600); line-height: 1.55; }

.stats-band {
    background: var(--teal);
    color: var(--white);
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.stat-item .num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    font-weight: 500;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.03em;
}
.stat-item .num span { color: var(--sand); }
.stat-item .label {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    margin-top: 10px;
}

/* split image/text */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split.reverse .split-img { order: 2; }
@media (max-width: 900px) { .split.reverse .split-img { order: 0; } }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--gray-600); margin-bottom: 16px; }

/* feature list */
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--teal); color: var(--white);
    display: grid; place-items: center; flex-shrink: 0;
    font-size: .75rem; margin-top: 2px;
}
.feature-item p { margin: 0; color: var(--ink); font-weight: 500; font-size: .98rem; }

/* ============================================================
   PORTFOLIO / WORK PAGE
   ============================================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 10px 22px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid var(--gray-200);
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .25s var(--ease);
    font-family: var(--font-sans);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.portfolio-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 768px) { .portfolio-gallery { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color .25s var(--ease);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #c4453d; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
}
.contact-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--sand-100);
    color: var(--teal);
    display: grid; place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-card-label { font-size: .8rem; color: var(--gray-600); margin-bottom: 2px; }
.contact-card-value { font-size: 1rem; font-weight: 500; color: var(--ink); }

.form-success {
    text-align: center;
    padding: 48px 24px;
    background: var(--sand-100);
    border-radius: var(--radius-lg);
}
.form-success .success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: grid; place-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-600); }

/* ============================================================
   SERVICE PAGE TEMPLATE
   ============================================================ */
.service-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.service-hero-meta-item .label {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 4px;
}
.service-hero-meta-item .value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
}

.service-include-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--gray-200);
}
@media (max-width: 768px) { .service-include-grid { grid-template-columns: 1fr; } }
.include-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    border-bottom: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
}
@media (max-width: 768px) { .include-item { border-right: none; } }
.include-item:nth-child(2n) { border-right: none; }
.include-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: 500;
    min-width: 40px;
}
.include-item h4 { margin-bottom: 6px; font-size: 1.15rem; }
.include-item p { font-size: .95rem; color: var(--gray-600); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
    .hero-scroll .line { animation: none; }
    * { scroll-behavior: auto !important; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.bg-sand { background: var(--sand-100); }
.bg-ink { background: var(--ink); }
.bg-teal { background: var(--teal); }
.bg-offwhite { background: var(--off-white); }
.mt-0 { margin-top: 0; }