/* ============================================
   CAPNODE LABS — COMPANY WEBSITE
   Design System & Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,800&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
    --ink: #0d0d0c;
    --ink-90: rgba(13, 13, 12, 0.9);
    --cream: #f7f2e9;
    --cream-50: rgba(247, 242, 233, 0.5);
    --coral: #ff8a76;
    --coral-soft: #ffc4b6;
    --coral-glow: rgba(255, 138, 118, 0.12);
    --tan: #cbb68b;
    --tan-deep: #a68f61;
    --muted: #5b564c;
    --muted-light: #8a8478;
    --line: rgba(13, 13, 12, 0.18);
    --line-light: rgba(247, 242, 233, 0.1);

    --font-body: 'Bricolage Grotesque', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 72px;
    --section-pad: clamp(80px, 10vw, 140px);
    --wrap: 1100px;
}


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

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}


/* ---------- UTILITIES ---------- */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }


/* ---------- TORN EDGES ---------- */
.torn-bottom {
    clip-path: polygon(0% 0%, 100% 0%,
        100% calc(100% - 15px), 96% calc(100% - 28px), 92% calc(100% - 10px),
        88% calc(100% - 22px), 84% calc(100% - 14px), 80% calc(100% - 27px),
        75% calc(100% - 8px), 71% calc(100% - 19px), 66% calc(100% - 26px),
        61% calc(100% - 12px), 57% calc(100% - 22px), 53% calc(100% - 15px),
        48% calc(100% - 29px), 43% calc(100% - 9px), 39% calc(100% - 21px),
        34% calc(100% - 14px), 29% calc(100% - 28px), 24% calc(100% - 11px),
        19% calc(100% - 23px), 14% calc(100% - 17px), 9% calc(100% - 26px),
        5% calc(100% - 10px), 0% calc(100% - 22px));
}

.torn-top {
    clip-path: polygon(0% 15px, 4% 28px, 8% 10px, 12% 22px, 17% 14px, 21% 27px,
        26% 8px, 30% 19px, 35% 26px, 39% 12px, 44% 22px, 48% 15px,
        53% 29px, 57% 9px, 62% 21px, 66% 14px, 71% 28px, 76% 11px,
        80% 23px, 85% 17px, 90% 26px, 95% 10px, 100% 22px,
        100% 100%, 0% 100%);
}


/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 clamp(24px, 4vw, 48px);
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.scrolled {
    background: rgba(13, 13, 12, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--line-light);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 10;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-logo span {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 22px;
    color: var(--coral-soft);
    letter-spacing: -0.03em;
    line-height: 1;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cream-50);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--coral);
    transition: width 0.3s var(--ease-out-expo);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--coral);
    padding: 10px 24px;
    border: 2px solid var(--coral);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s var(--ease-spring);
}

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

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 10;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--cream);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--ink);
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 0 80px;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.05;
    color: var(--cream);
    max-width: 860px;
    margin-bottom: 32px;
}

.hero-headline em {
    font-style: italic;
    color: var(--coral);
}

/* Individual word reveal */
.hero-headline .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.22em;
}

.hero-headline .word-inner {
    display: inline-block;
    transform: translateY(110%);
    animation: wordReveal 0.7s var(--ease-out-expo) forwards;
}

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

.hero-sub {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: var(--muted-light);
    max-width: 560px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s var(--ease-out-expo) 1s forwards;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s var(--ease-out-expo) 1.2s forwards;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--coral);
    padding: 16px 36px;
    border: 2px solid var(--coral);
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease, transform 0.2s var(--ease-spring);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 0;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: var(--coral);
    transform: translateY(-2px);
}

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

.btn-primary svg {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cream-50);
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    color: var(--cream);
}

.btn-secondary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Floating shapes in hero */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 138, 118, 0.08);
    top: -10%;
    right: -5%;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(203, 182, 139, 0.06);
    bottom: 10%;
    left: -8%;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 196, 182, 0.07);
    top: 40%;
    right: 25%;
    animation: floatShape 18s ease-in-out infinite 3s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 35px) scale(1.02); }
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    animation: heroFadeUp 0.8s var(--ease-out-expo) 1.6s forwards;
}

.scroll-hint span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 242, 233, 0.3);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--coral), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--cream);
    padding: var(--section-pad) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}

.about-heading {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 28px;
}

.about-heading em {
    font-style: italic;
    color: var(--coral);
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.about-right {
    padding-top: 20px;
}

.about-callout {
    background: var(--ink);
    border-left: 4px solid var(--coral);
    padding: 36px 40px;
    margin-bottom: 40px;
}

.about-callout p {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    color: var(--cream);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px 12px;
    border: 1px solid var(--line);
    transition: border-color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.stat-item:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
}

.stat-num {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 36px;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}


/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries {
    background: var(--ink);
    padding: var(--section-pad) 0;
    position: relative;
}

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

.industries-header .section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}

.industries-header h2 {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: var(--cream);
    max-width: 640px;
    margin: 0 auto;
}

.industries-header h2 em {
    font-style: italic;
    color: var(--coral);
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: rgba(247, 242, 233, 0.04);
    border: 1px solid rgba(247, 242, 233, 0.08);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.industry-card:hover {
    border-color: rgba(255, 138, 118, 0.25);
    background: rgba(247, 242, 233, 0.06);
    transform: translateY(-6px);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: background 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: rgba(255, 138, 118, 0.1);
}

.industry-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--coral-soft);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-card h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.25;
}

.industry-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    color: var(--coral-soft);
    margin-bottom: 24px;
    line-height: 1.5;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.industry-features li {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(247, 242, 233, 0.55);
    padding: 8px 0;
    border-bottom: 1px solid rgba(247, 242, 233, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.industry-features li:last-child {
    border-bottom: none;
}

.industry-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
    margin-top: 8px;
}

.industry-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--coral-soft);
    padding: 6px 14px;
    border: 1px solid transparent;
    transition: background 0.3s ease, color 0.3s ease;
}

.industry-card:hover .industry-chip {
    background: var(--coral);
}


/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.process {
    background: var(--cream);
    padding: var(--section-pad) 0;
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 72px;
}

.process-header .section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}

.process-header h2 {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: var(--ink);
}

.process-header h2 em {
    font-style: italic;
    color: var(--coral);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--line);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ink);
    border: 3px solid var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.process-step:hover .step-num {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px var(--coral-glow);
}

.step-num svg {
    width: 28px;
    height: 28px;
    stroke: var(--coral-soft);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-num-label {
    position: absolute;
    bottom: -6px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--ink);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
}

.process-step h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-step p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 220px;
    margin: 0 auto;
}


/* ============================================
   STATEMENT / QUOTE SECTION
   ============================================ */
.statement-section {
    background: var(--tan);
    padding: 80px 0 56px;
    position: relative;
    z-index: 1;
    margin-bottom: -40px;
}

.statement-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 48px);
    text-align: center;
}

.statement-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(24px, 3.5vw, 38px);
    line-height: 1.4;
    color: var(--ink);
    background: var(--coral-soft);
    padding: 32px 48px;
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0px var(--ink);
    display: inline-block;
    position: relative;
}

.statement-quote::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 800;
    color: var(--ink);
    opacity: 0.12;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}


/* ============================================
   CONTACT / FOOTER
   ============================================ */
.site-footer {
    background: var(--ink);
    padding: 100px 0 56px;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 64px;
}

.footer-heading {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-heading em {
    font-style: italic;
    color: var(--coral);
}

.footer-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted-light);
    margin-bottom: 36px;
    max-width: 420px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--coral);
    padding: 14px 32px;
    border: 2px solid var(--coral);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s var(--ease-spring);
}

.footer-cta svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s var(--ease-out-expo);
}

.footer-cta:hover {
    background: transparent;
    color: var(--coral);
    transform: translateY(-2px);
}

.footer-cta:hover svg {
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 12px;
}

.contact-item {
    border-bottom: 1px solid rgba(247, 242, 233, 0.15);
    padding-bottom: 20px;
}

.contact-item .label {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 15px;
    color: var(--coral-soft);
    margin-bottom: 6px;
}

.contact-item .value {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    color: var(--cream);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-item .value:hover {
    color: var(--coral);
}

.footer-bottom {
    border-top: 1px solid rgba(247, 242, 233, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 24px;
    width: auto;
}

.footer-logo span {
    font-weight: 800;
    font-size: 18px;
    color: var(--coral-soft);
    letter-spacing: -0.03em;
}

.footer-strip {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 242, 233, 0.35);
    font-weight: 600;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .industry-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-cards .industry-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(13, 13, 12, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 20px;
        color: var(--cream);
    }

    .nav-cta {
        font-size: 16px;
        padding: 14px 32px;
    }

    /* Hero */
    .hero {
        min-height: 90vh;
        padding-bottom: 120px;
    }

    .hero-headline {
        font-size: clamp(34px, 8vw, 52px);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .scroll-hint {
        display: none;
    }

    /* Industries */
    .industry-cards {
        grid-template-columns: 1fr;
    }

    .industry-cards .industry-card:last-child {
        max-width: 100%;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 48px 24px;
    }

    .process-steps::before {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Statement */
    .statement-quote {
        font-size: clamp(20px, 4vw, 28px);
        padding: 24px 28px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }

    .stat-num {
        font-size: 28px;
        margin-bottom: 0;
    }
}
