/* ═══════════════════════════════════════════════════════
   Canter Digital v2 — Stylesheet
   Palette: Forest, Sage, Amber, Bone, Charcoal
   Fonts: Fraunces (headings), Inter (body)
   ═══════════════════════════════════════════════════════ */

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

:root {
    --forest: #1B3A2D;
    --sage: #2D5E44;
    --amber: #D4A853;
    --bone: #FAF8F5;
    --charcoal: #1E1E1E;

    --text-primary: #1E1E1E;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;
    --text-on-dark: #FAF8F5;
    --text-on-dark-muted: rgba(250, 248, 245, 0.65);

    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-max: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bone);
    overflow-x: hidden;
}

/* Grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    filter: url(#grain);
    opacity: 0.04;
    pointer-events: none;
    z-index: 10000;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.text-amber { color: var(--amber); }

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-on-dark);
    margin-bottom: 24px;
}


/* ─── Custom Cursor ─── */
@media (pointer: fine) {
    body { cursor: none; }
    a, button { cursor: none; }
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
    opacity: 0.5;
}

.cursor-dot.hovering { width: 12px; height: 12px; }
.cursor-ring.hovering { width: 56px; height: 56px; opacity: 0.3; }
.cursor-dot.on-dark { background: var(--bone); }
.cursor-ring.on-dark { border-color: var(--bone); }

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}


/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.btn-primary {
    background: var(--amber);
    color: var(--forest);
}

.btn-primary:hover {
    background: #c49a45;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn-forest {
    background: var(--forest);
    color: var(--bone);
}

.btn-forest:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 58, 45, 0.3);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
    border-radius: 12px;
}


/* ─── Reveal Animation ─── */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-smooth);
    position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--charcoal); }

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width var(--transition-smooth);
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--forest);
    color: var(--bone) !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all var(--transition-smooth) !important;
}

.nav-cta:hover { background: var(--sage); transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-smooth);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 var(--container-padding) 20px;
    gap: 16px;
}

.nav-mobile a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
}


/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    text-align: left;
    padding: 140px var(--container-padding) 60px;
    position: relative;
    background: var(--bone);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sage);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 1;
    color: var(--charcoal);
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
    white-space: nowrap;
}

.hero-rotate-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    height: 1.1em;
}

.hero-rotate {
    display: inline-block;
    color: var(--amber);
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

.hero-divider {
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    margin: 40px 0;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-bottom-left {
    flex-shrink: 0;
}

.hero-bottom-right {
    max-width: 480px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

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


/* ═══════════════════════════════════════════════════════
   PROJECT SHOWCASE — three rows of scrolling screenshots
   ═══════════════════════════════════════════════════════ */
.showcase {
    position: relative;
    background: #111;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

/* Screenshot rows sit behind everything */
.showcase-rows {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    padding: 40px 0;
}

.showcase-row {
    overflow: hidden;
    white-space: nowrap;
}

.showcase-track {
    display: inline-flex;
    gap: 28px;
}

.showcase-img {
    width: 700px;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Row 1: slow scroll left */
.track-left {
    animation: scrollLeft 50s linear infinite;
}

/* Row 2: slow scroll right */
.track-right {
    animation: scrollRight 55s linear infinite;
}

/* Row 3: slow scroll left, slightly different speed */
.track-left-slow {
    animation: scrollLeft 60s linear infinite;
}

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

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

/* Dark gradient overlay so text reads clearly */
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.5) 100%);
    z-index: 1;
}

/* Statement on top of everything */
.showcase-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 var(--container-padding);
}

.showcase-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-on-dark);
    line-height: 1.3;
    margin-bottom: 28px;
    font-weight: 700;
}

.showcase-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--amber);
    transition: color 0.3s ease;
}

.showcase-link:hover {
    color: #e8be6a;
}


/* ═══════════════════════════════════════════════════════
   PHILOSOPHY — Scroll-driven text reveal
   ═══════════════════════════════════════════════════════ */
.philosophy {
    position: relative;
    background: var(--forest);
}

.philosophy-scroll {
    height: 250vh;
    position: relative;
}

.philosophy-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--container-padding);
}

.philosophy-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 3rem);
    line-height: 1.5;
    color: var(--text-on-dark);
    text-align: center;
    max-width: 850px;
}

.philosophy-text .word {
    display: inline-block;
    opacity: 0.1;
    transition: opacity 0.2s ease;
    margin-right: 0.2em;
}

.philosophy-text .word.revealed {
    opacity: 1;
}


/* ═══════════════════════════════════════════════════════
   SHOUT SECTIONS — Full-viewport single words
   The heartbeat of the site. listen. diagnose. build.
   ═══════════════════════════════════════════════════════ */
.shout {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px var(--container-padding);
    overflow: hidden;
}

.shout-inner {
    max-width: 1000px;
}

.shout-text {
    font-size: clamp(5rem, 18vw, 16rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.shout-word {
    display: inline-block;
}

.shout-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Bone shout — charcoal text */
.shout-bone {
    background: var(--bone);
}

.shout-bone .shout-text {
    color: var(--charcoal);
}

/* Amber shout — forest text on amber bg */
.shout-amber {
    background: var(--amber);
}

.shout-amber .shout-text {
    color: var(--forest);
}

.shout-amber .shout-sub {
    color: rgba(27, 58, 45, 0.7);
}

/* Forest shout — bone text on forest bg */
.shout-forest {
    background: var(--forest);
}

.shout-forest .shout-text {
    color: var(--bone);
}

.shout-sub-light {
    color: var(--text-on-dark-muted) !important;
}

/* Floating decorative SVG elements */
.floaters {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floater {
    position: absolute;
    will-change: transform;
}

/* Each floater gets a unique position and animation — deliberately large */
.floater-1 { width: 200px; top: 5%; left: 3%; animation: float1 8s ease-in-out infinite; }
.floater-2 { width: 140px; top: 8%; right: 5%; animation: float2 6s ease-in-out infinite; }
.floater-3 { width: 280px; bottom: 8%; left: 5%; animation: float3 10s ease-in-out infinite; }
.floater-4 { width: 120px; bottom: 15%; right: 8%; animation: float1 7s ease-in-out infinite reverse; }
.floater-5 { width: 220px; top: 5%; right: 3%; animation: float2 9s ease-in-out infinite; }
.floater-6 { width: 200px; bottom: 10%; left: 4%; animation: float3 7s ease-in-out infinite; }
.floater-7 { width: 100px; top: 60%; left: 8%; animation: float1 8s ease-in-out infinite; }
.floater-8 { width: 180px; top: 8%; left: 5%; animation: float2 8s ease-in-out infinite; }
.floater-9 { width: 250px; bottom: 5%; right: 2%; animation: float1 9s ease-in-out infinite; }
.floater-10 { width: 150px; top: 55%; right: 6%; animation: float3 6s ease-in-out infinite reverse; }

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(-4deg); }
    66% { transform: translateY(10px) rotate(3deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(15px) translateY(-12px); }
}

/* Shout sections need relative + overflow hidden for floaters */
.shout {
    position: relative;
    overflow: hidden;
}


/* ═══════════════════════════════════════════════════════
   SERVICES — Stacked card deck
   Cards stack on top of each other. As you scroll,
   the top card rotates and flies off, revealing the
   next card underneath.
   ═══════════════════════════════════════════════════════ */
.services {
    background: var(--forest);
    padding-top: 120px;
}

.services-header {
    text-align: center;
    padding: 0 var(--container-padding);
    margin-bottom: 40px;
}

.card-deck-scroll {
    height: 250vh;
    position: relative;
}

.card-deck-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    place-items: center;
}

/* All cards stack in the same grid cell */
.deck-card {
    grid-area: 1 / 1;
    width: min(480px, 85vw);
    background: var(--bone);
    color: var(--text-primary);
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0,0,0,0.05);
    will-change: transform;
    transform-origin: center center;
}

/* Stacked card visual cue — cards peek out behind the front card */
.deck-card[data-card="1"] {
    transform: translateY(8px) scale(0.97);
}

.deck-card[data-card="2"] {
    transform: translateY(16px) scale(0.94);
}

/* Scroll hint below the cards */
.card-deck-sticky::after {
    content: 'Scroll to explore';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 248, 245, 0.4);
    animation: scrollHintPulse 2s ease-in-out infinite;
}

@keyframes scrollHintPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(4px); }
}

.card-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sage);
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.card-list {
    list-style: none;
}

.card-list li {
    font-size: 0.92rem;
    color: var(--text-muted);
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    transform: translateY(-50%);
}


/* ═══════════════════════════════════════════════════════
   APPROACH — Three steps
   ═══════════════════════════════════════════════════════ */
.approach {
    padding: 140px 0;
    background: var(--bone);
    position: relative;
    overflow: hidden;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.approach-step {
    padding: 40px 0;
    border-top: 3px solid var(--forest);
}

.approach-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--amber);
    display: block;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.approach-step p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about {
    padding: 140px 0 80px;
    background: var(--bone);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 100px);
    align-items: start;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.about-big-text {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--charcoal);
    letter-spacing: -0.03em;
    margin-bottom: 64px;
}

.about-big-text span {
    display: inline;
}


.about-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    margin-bottom: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-photo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-bold {
    font-weight: 600;
    color: var(--text-primary) !important;
    font-size: 1.15rem !important;
}

/* Playful doodle overlays scattered around headshot */
.photo-doodles {
    position: absolute;
    inset: -60px;
    z-index: 5;
    pointer-events: none;
}

.doodle {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}

.doodle-speech {
    width: 140px;
    top: -30px;
    right: -50px;
    transform: translateY(-15px) scale(0.85);
}

.doodle-star {
    width: 50px;
    top: -20px;
    left: -20px;
    transform: rotate(-20deg) scale(0.5);
}

.doodle-squiggle {
    width: 90px;
    bottom: 20px;
    right: -30px;
    transform: translateX(15px);
}

.doodle-circle {
    width: 55px;
    bottom: 40px;
    left: -25px;
    transform: scale(0.5) rotate(0deg);
}

/* Doodles appear when photo wrapper has .doodled class */
.about-photo-wrapper.doodled .doodle { opacity: 1; }

.about-photo-wrapper.doodled .doodle-speech {
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.about-photo-wrapper.doodled .doodle-star {
    transform: rotate(0deg) scale(1);
    transition-delay: 0s;
}

.about-photo-wrapper.doodled .doodle-squiggle {
    transform: translateX(0);
    transition-delay: 0.15s;
}

.about-photo-wrapper.doodled .doodle-circle {
    transform: scale(1) rotate(360deg);
    transition-delay: 0.1s;
}

.accent-line {
    width: 200px;
    height: auto;
    margin-top: 40px;
    display: block;
    overflow: visible;
}

.accent-line path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    transition: stroke-dashoffset 2s var(--ease-out);
}

.accent-line.drawn path {
    stroke-dashoffset: 0;
}


/* ═══════════════════════════════════════════════════════
   CASE STUDIES / WORK
   ═══════════════════════════════════════════════════════ */
.work {
    padding: 140px 0;
    background: var(--bone);
}

.work-header {
    margin-bottom: 64px;
}

.section-label-dark {
    color: var(--sage);
}

.work-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--charcoal);
    line-height: 1.15;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.work-card {
    background: var(--charcoal);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.work-card-feature {
    grid-column: 1 / -1;
    background: var(--forest);
}

.work-card-inner {
    padding: 48px 40px;
}

.work-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}

.work-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    background: rgba(212, 168, 83, 0.12);
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
}

.work-logo {
    height: 32px;
    width: auto;
    max-width: 140px;
    opacity: 0.9;
    flex-shrink: 0;
    object-fit: contain;
}

.work-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-on-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.work-card-feature h3 {
    font-size: 1.6rem;
}

.work-card p {
    font-size: 0.95rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
}

.work-card-wide {
    grid-column: 1 / -1;
}

.work-card.work-card-forest {
    background: #1B3A2D !important;
}

.work-card.work-card-sage {
    background: #2D5E44 !important;
}

.work-card.work-card-amber-accent {
    background: #1E1E1E !important;
    border-left: 4px solid #D4A853 !important;
}

.work-card.work-card-amber {
    background: #D4A853 !important;
}

.work-card.work-card-amber h3,
.work-card.work-card-amber p {
    color: #1B3A2D;
}

.work-card.work-card-amber .work-tag {
    color: #1B3A2D;
    background: rgba(27, 58, 45, 0.15);
}

.work-stats {
    display: flex;
    gap: 48px;
    margin: 28px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.work-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px;
}

.work-stat-label {
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
}

.work-result {
    font-weight: 600;
    color: var(--text-on-dark) !important;
    font-style: italic;
}


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials {
    padding: 120px 0;
    background: var(--forest);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 36px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-on-dark);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-cite {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-cite strong {
    font-size: 0.95rem;
    color: var(--text-on-dark);
    font-weight: 600;
}

.testimonial-cite span {
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
}


/* ═══════════════════════════════════════════════════════
   BIG CTA BLOCK
   Full-bleed amber section. Impossible to miss.
   ═══════════════════════════════════════════════════════ */
.cta-block {
    background: var(--amber);
    padding: 120px var(--container-padding);
    text-align: center;
}

.cta-block-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-block-text {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--forest);
    margin-bottom: 48px;
    line-height: 1.05;
}


/* ═══════════════════════════════════════════════════════
   CONTACT + FOOTER
   ═══════════════════════════════════════════════════════ */
.contact {
    background: var(--forest);
    position: relative;
}

.contact-body {
    padding: 100px 0 48px;
}

.contact-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 100px;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 24px;
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-on-dark);
    margin-bottom: 32px;
    line-height: 1.3;
}

.contact-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
}

.contact-location .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--amber);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-on-dark);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
}


/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */

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

    .work-card-feature,
    .work-card-wide {
        grid-column: 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }


    .about-big-text {
        font-size: clamp(3rem, 14vw, 5rem);
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-mobile.open { display: flex; }

    .nav-toggle.active span:first-child {
        transform: rotate(45deg) translate(3px, 3px);
    }
    .nav-toggle.active span:last-child {
        transform: rotate(-45deg) translate(3px, -3px);
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .hero-bottom {
        flex-direction: column;
        gap: 24px;
    }

    .shout-text {
        font-size: clamp(3.5rem, 16vw, 8rem);
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .philosophy-text {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .card-deck-scroll {
        height: 200vh;
    }

    .deck-card {
        padding: 32px 24px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .card-list li {
        font-size: 0.85rem;
        padding: 8px 0 8px 20px;
    }

    .contact-title br { display: none; }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: clamp(2.4rem, 11vw, 3.5rem);
    }

    .contact-location {
        flex-direction: column;
        gap: 8px;
    }
    .contact-location .dot { display: none; }
}
