/* ============================================================
   ABROAD WITH JAY — Premium Startup Landing Page
   Design: Caribbean Editorial meets Modern SaaS
   ============================================================ */

/* --- Design Tokens --- */
:root {
    /* Colors - Caribbean Sunset Palette */
    --cream: #FDFAF6;
    --sand: #F5EDE4;
    --linen: #EBE3D9;
    --parchment: #E2D9CC;
    --ink: #1A1714;
    --ink-70: #4A453F;
    --ink-40: #8A8379;
    --ink-20: #C5BEB4;
    --white: #FFFFFF;

    /* Accent - Bold Red */
    --accent: #db1135;
    --accent-dark: #b80e2c;
    --accent-light: #fdeef1;
    --accent-glow: rgba(219, 17, 53, 0.15);

    /* Secondary - Tropical Teal */
    --teal: #0D9488;
    --teal-dark: #0F766E;
    --teal-light: #CCFBF1;

    /* Depth layers */
    --shadow-sm: 0 1px 2px rgba(26, 23, 20, 0.04);
    --shadow-md: 0 4px 12px rgba(26, 23, 20, 0.06);
    --shadow-lg: 0 12px 32px rgba(26, 23, 20, 0.08);
    --shadow-xl: 0 24px 64px rgba(26, 23, 20, 0.12);
    --shadow-glow: 0 8px 32px rgba(219, 17, 53, 0.2);

    /* Typography */
    --ff-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;

    /* Layout */
    --max-w: 1200px;
    --max-w-narrow: 800px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

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

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

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

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

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

/* --- Premium Grain Overlay --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* --- Layout Containers --- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--narrow {
    max-width: var(--max-w-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Typography Scale --- */
.text-display {
    font-family: var(--ff-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.text-display-xl {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.text-display-lg {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-display-md {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
}

.text-body-lg {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--ink-70);
}

.text-body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-70);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

.text-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    font-family: var(--ff-body);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 0 var(--accent-glow);
}

.btn--primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn--secondary {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--linen);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    border-color: var(--ink-20);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: rgba(255,255,255,0.9);
    color: var(--ink);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(26, 25, 23, 0.08);
}

.btn--ghost:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.btn--outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--outline:active {
    transform: translateY(0);
}

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

.btn--small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Focus States */
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ============================================================
   NAVIGATION — Refined Startup Nav
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--duration-slow) var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 250, 246, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(26, 23, 20, 0.06);
    box-shadow: 0 1px 3px rgba(26, 23, 20, 0.04);
}


/* Nav when mobile menu is open */
.nav.menu-open .nav-name,
.nav.menu-open:not(.scrolled) .nav-name {
    color: var(--white) !important;
}

.nav.menu-open .nav-name em {
    color: rgba(255,255,255,0.5) !important;
}

.nav.menu-open .nav-avatar,
.nav.menu-open:not(.scrolled) .nav-avatar {
    border-color: rgba(255,255,255,0.3) !important;
}

/* Nav on hero (light bg) */
.nav:not(.scrolled) .nav-name {
    color: var(--ink);
}

.nav:not(.scrolled) .nav-name em {
    color: var(--ink-40);
}

.nav:not(.scrolled) .nav-links a:not(.nav-cta) {
    color: var(--ink-70);
}

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

.nav:not(.scrolled) .nav-links a:not(.nav-cta)::after {
    background: var(--ink);
}

.nav:not(.scrolled) .nav-burger span {
    background: var(--ink);
}

.nav:not(.scrolled) .nav-avatar {
    border-color: var(--linen);
}

.nav:not(.scrolled) .nav-logo-dot {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity var(--duration-fast) ease;
}

.nav-brand:hover {
    opacity: 0.85;
}

.nav-logo-mark {
    position: relative;
}

.nav-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--linen);
    transition: all var(--duration-normal) var(--ease-spring);
}

.nav-brand:hover .nav-avatar {
    transform: scale(1.06);
    border-color: var(--accent);
}

.nav-logo-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--cream);
    transition: border-color var(--duration-normal) ease;
}

.nav:not(.scrolled) .nav-logo-dot {
    border-color: var(--cream);
}

.nav-name {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--ink);
    transition: color var(--duration-normal) ease;
}

.nav-name em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-40);
    transition: color var(--duration-normal) ease;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-70);
    transition: color var(--duration-fast) ease;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width var(--duration-normal) var(--ease-out);
}

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

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 12px rgba(219, 17, 53, 0.3);
    position: relative;
    overflow: visible !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--accent);
    animation: navCtaPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes navCtaPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.08); }
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    box-shadow: 0 4px 20px rgba(219, 17, 53, 0.4) !important;
    transform: translateY(-1px);
}

.nav-burger {
    display: none;
    background: 0;
    border: 0;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: background var(--duration-fast) ease;
}

.nav-burger:hover {
    background: rgba(255,255,255,0.1);
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
}

.nav-burger.open span,
.nav:not(.scrolled) .nav-burger.open span {
    background: var(--white) !important;
}

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

.nav-burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Nav */
@media (max-width: 768px) {
    .nav.menu-open {
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 18, 12, 0.98) !important;
        transition: none;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: transparent;
        flex-direction: column;
        padding: 32px 28px;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--duration-normal) var(--ease-out), visibility var(--duration-normal);
        overflow-y: auto;
    }

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

    .nav-links a:not(.nav-cta) {
        color: rgba(255,255,255,0.8) !important;
    }

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

    .nav-links a {
        font-size: 1.125rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 16px;
    }

    .nav-burger {
        display: flex;
    }
}

/* ============================================================
   HERO SECTION — Cinematic Dark, Funded-Startup Polish
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--cream);
}

/* --- Hero Background Layers --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(219, 17, 53, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(13, 148, 136, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(26, 23, 20, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 23, 20, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: heroGlowPulse 8s ease-in-out infinite;
}

.hero-bg-glow--1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: 5%;
    background: radial-gradient(circle, rgba(219, 17, 53, 0.08) 0%, transparent 70%);
}

.hero-bg-glow--2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    left: -5%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
    animation-delay: -4s;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* --- Hero Layout --- */
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 140px var(--space-xl) 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    flex: 1;
}

/* --- Hero Content (Left) --- */
.hero-content {
    padding-right: var(--space-xl);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-40);
    margin-bottom: var(--space-2xl);
    animation: heroFadeUp 0.7s var(--ease-out) 0.2s both;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(219, 17, 53, 0.3);
    animation: eyebrowDotPulse 2s ease-in-out infinite;
}

@keyframes eyebrowDotPulse {
    0%, 100% { box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(219, 17, 53, 0.3); }
    50% { box-shadow: 0 0 14px var(--accent), 0 0 28px rgba(219, 17, 53, 0.5); }
}

.hero-eyebrow-sep {
    color: var(--ink-20);
    font-weight: 300;
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.hero-title-line {
    display: block;
    font-family: var(--ff-display);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
}

.hero-title-line--1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--ink-70);
    animation: heroFadeUp 0.7s var(--ease-out) 0.3s both;
}

.hero-title-line--2 {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    animation: heroFadeUp 0.7s var(--ease-out) 0.4s both;
}

.hero-title-line--3 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--ink-70);
    margin-top: 0.15em;
    animation: heroFadeUp 0.7s var(--ease-out) 0.5s both;
}

.hero-title-line--4 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    animation: heroFadeUp 0.7s var(--ease-out) 0.55s both;
}

.hero-title-accent {
    background: linear-gradient(135deg, #e8233f 0%, #db1135 40%, #f01a3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--ink-40);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
    max-width: 440px;
    animation: heroFadeUp 0.7s var(--ease-out) 0.65s both;
}

/* --- Hero CTAs --- */
.hero-cta {
    display: flex;
    gap: var(--space-md);
    animation: heroFadeUp 0.7s var(--ease-out) 0.75s both;
}

.btn--hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(219, 17, 53, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all var(--duration-normal) var(--ease-out);
}

.btn--hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.btn--hero-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(219, 17, 53, 0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}

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

.btn--hero-primary svg {
    transition: transform var(--duration-normal) var(--ease-out);
}

.btn--hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1.5px solid var(--linen);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.btn--hero-secondary:hover {
    border-color: var(--ink-20);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--ink);
}

.btn--hero-secondary svg {
    width: 18px;
    height: 18px;
}

/* --- Hero Visual (Right) --- */
.hero-visual {
    position: relative;
    animation: heroFadeUp 0.9s var(--ease-out) 0.4s both;
}

.hero-video-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-xl);
}

.hero-video-frame iframe,
.hero-video-frame video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}

/* Lite YouTube embed */
.lite-yt {
    position: relative;
    cursor: pointer;
}

.lite-yt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.lite-yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
    transition: transform var(--duration-normal) var(--ease-out);
}

.lite-yt:hover .lite-yt-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.lite-yt.activated .lite-yt-thumb,
.lite-yt.activated .lite-yt-play {
    display: none;
}

/* --- Glass Cards --- */
.hero-visual.is-playing .hero-glass-card {
    opacity: 0 !important;
    pointer-events: none;
    animation: none !important;
}

.hero-glass-card {
    position: absolute;
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
    background: var(--white);
    border: 1px solid var(--linen);
    border-radius: var(--radius-lg);
}

.hero-glass-card--stats {
    bottom: -20px;
    right: -20px;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 28px 18px;
    box-shadow: var(--shadow-lg);
    animation: heroFadeUp 0.8s var(--ease-out) 0.8s both, glassFloat 5s ease-in-out 1.6s infinite;
}

.hero-glass-stats-caption {
    font-size: 0.6875rem;
    color: var(--ink-40);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.hero-glass-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-glass-stat {
    text-align: center;
    padding: 0 20px;
}

.hero-glass-stat-num {
    display: block;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.hero-glass-stat-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--ink-40);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 2px;
}

.hero-glass-divider {
    width: 1px;
    height: 32px;
    background: var(--linen);
}

.hero-glass-card--proof {
    top: -20px;
    left: -20px;
    right: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    animation: heroFadeUp 0.8s var(--ease-out) 0.9s both, glassFloat 5s ease-in-out 2s infinite;
}

.hero-proof-avatars {
    display: flex;
}

.hero-proof-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    margin-left: -8px;
}

.hero-proof-avatars img:first-child {
    margin-left: 0;
}

.hero-proof-label {
    font-size: 0.75rem;
    color: var(--ink-40);
    white-space: nowrap;
}

.hero-proof-label strong {
    color: var(--ink);
}

@keyframes glassFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- Hero Animations --- */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hero Responsive --- */
@media (max-width: 1100px) {
    .hero-inner {
        gap: 48px;
    }

    .hero-glass-card--stats {
        left: -16px;
    }

    .hero-glass-card--proof {
        right: -12px;
    }
}

@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 120px var(--space-lg) 48px;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-title-line--1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .hero-title-line--2 { font-size: clamp(2.5rem, 9vw, 4rem); }
    .hero-title-line--3 { font-size: clamp(1.4rem, 4vw, 2rem); }
    .hero-title-line--4 { font-size: clamp(2rem, 7vw, 3rem); }

    .hero-glass-card--stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--space-lg);
        justify-content: center;
        animation: heroFadeUp 0.8s var(--ease-out) 0.8s both;
    }

    .hero-glass-card--proof {
        position: relative;
        top: auto;
        right: auto;
        margin-top: var(--space-sm);
        justify-content: center;
        animation: heroFadeUp 0.8s var(--ease-out) 0.9s both;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 100px var(--space-md) 32px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn--hero-primary,
    .btn--hero-secondary {
        justify-content: center;
        width: 100%;
    }

    .hero-eyebrow-sep,
    .hero-eyebrow span:last-child {
        display: none;
    }

    .hero-glass-stat {
        padding: 0 14px;
    }

    .hero-glass-stat-num {
        font-size: 1.1rem;
    }

    .hero-video-frame {
        aspect-ratio: 16/9;
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linen), transparent);
}

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

.about-visual {
    position: relative;
}

.about-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: translateY(0);
    transition: transform var(--duration-slow) var(--ease-out);
}

.about-photo-frame:hover {
    transform: translateY(-8px);
}

.about-photo-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 23, 20, 0.3) 100%);
    z-index: 1;
}

.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out);
}

.about-photo-frame:hover .about-photo {
    transform: scale(1.05);
}

.about-badge {
    background: var(--white);
    border: 1px solid var(--linen);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: var(--space-lg);
}

.about-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.about-badge-text {
    flex: 1;
}

.about-badge-text strong {
    display: block;
    font-size: 0.875rem;
    color: var(--ink);
}

.about-badge-text span {
    font-size: 0.75rem;
    color: var(--ink-40);
}

.about-socials {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--ink-70);
    border: 1.5px solid var(--linen);
    transition: all var(--duration-normal) var(--ease-out);
}

.about-social:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.about-content .text-tag {
    margin-bottom: var(--space-md);
}

.about-content .text-display-lg {
    margin-bottom: var(--space-xl);
}

.about-prose {
    max-width: 560px;
}

.about-prose p {
    color: var(--ink-70);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-prose p:first-child::first-letter {
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 800;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 6px;
    color: var(--accent);
}

.about-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--linen);
}

.about-highlight-item {
    text-align: center;
}

.about-highlight-item strong {
    display: block;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.about-highlight-item span {
    font-size: 0.8125rem;
    color: var(--ink-40);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-highlight {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--linen);
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
}

.newsletter-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    pointer-events: none;
}

.newsletter-text {
    position: relative;
    z-index: 1;
}

.newsletter-text .text-tag {
    margin-bottom: var(--space-md);
}

.newsletter-text .text-display-md {
    margin-bottom: var(--space-md);
}

.newsletter-text p {
    color: var(--ink-70);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--ink-70);
    font-size: 0.9375rem;
}

.newsletter-feature svg {
    color: var(--teal);
    flex-shrink: 0;
}

.newsletter-form-wrap {
    position: relative;
    z-index: 1;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.nl-input-wrap {
    position: relative;
}

.nl-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--linen);
    border-radius: var(--radius-md);
    font-family: var(--ff-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream);
    transition: all var(--duration-fast) ease;
}

.nl-input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.nl-input::placeholder {
    color: var(--ink-40);
}

.nl-note {
    font-size: 0.8125rem;
    color: var(--ink-40);
    text-align: center;
}

.nl-msg {
    font-size: 0.875rem;
    text-align: center;
    min-height: 0;
    margin: 0;
}

.nl-msg:empty {
    display: none;
}

.nl-msg--success {
    color: #0a7d3b;
}

.nl-msg--error {
    color: #db1135;
}

@media (max-width: 900px) {
    .newsletter-card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        gap: 32px;
    }
}

/* ============================================================
   TIMELINE SECTION
   ============================================================ */
.timeline {
    padding: var(--space-5xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linen), transparent);
}

.timeline-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto var(--space-3xl);
}

.timeline-header .text-tag {
    margin-bottom: var(--space-md);
}

.timeline-track {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--teal));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent);
    z-index: 1;
}

.timeline-card {
    background: var(--cream);
    border: 1px solid var(--linen);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: all var(--duration-normal) var(--ease-out);
}

.timeline-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    display: inline-block;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.timeline-card h3 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--ink);
    margin-bottom: var(--space-xs);
}

.timeline-card p {
    color: var(--ink-70);
    font-size: 0.9375rem;
    line-height: 1.65;
}

@media (max-width: 600px) {
    .timeline {
        padding: var(--space-3xl) 0;
    }

    .timeline-track {
        padding-left: 32px;
    }

    .timeline-line {
        left: 11px;
    }

    .timeline-marker {
        left: -29px;
        width: 10px;
        height: 10px;
    }

    .timeline-card {
        padding: 16px;
    }

    .timeline-card:hover {
        transform: none;
    }

    .timeline-card h3 {
        font-size: 1rem;
    }

    .timeline-card p {
        font-size: 0.875rem;
    }
}

/* ============================================================
   VIDEOS SECTION
   ============================================================ */
.videos {
    padding: var(--space-5xl) 0;
    background: var(--white);
    position: relative;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linen), transparent);
}

.videos-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.videos-header .text-tag {
    margin-bottom: var(--space-md);
}

.videos-header .text-display-lg {
    margin-bottom: var(--space-md);
}

.videos-header p {
    color: var(--ink-70);
    font-size: 1.0625rem;
}

.vid-grid {
    display: grid;
    gap: 24px;
}

/* Featured Video Card */
.vid-card--featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--linen);
    transition: all var(--duration-normal) var(--ease-out);
}

.vid-card--featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.vid-card--featured .vid-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.vid-card--featured .vid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.vid-card--featured:hover .vid-thumb img {
    transform: scale(1.05);
}

.vid-card--featured .vid-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vid-card--featured .vid-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.vid-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.vid-badge svg {
    width: 12px;
    height: 12px;
}

.vid-card--featured h3 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: var(--space-md);
    color: var(--ink);
}

.vid-card--featured p {
    color: var(--ink-70);
    line-height: 1.65;
    font-size: 0.9375rem;
}

/* Regular Video Cards Grid */
.vid-grid-regular {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vid-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--linen);
    transition: all var(--duration-normal) var(--ease-out);
}

.vid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vid-thumb {
    position: relative;
    overflow: hidden;
}

.vid-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-out);
}

.vid-card:hover .vid-thumb img {
    transform: scale(1.05);
}

.vid-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 23, 20, 0.3);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.vid-card:hover .vid-play {
    opacity: 1;
}

.vid-play svg {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    padding: 12px;
    color: var(--ink);
    box-shadow: var(--shadow-md);
    transform: scale(0.9);
    transition: transform var(--duration-fast) var(--ease-spring);
}

.vid-card:hover .vid-play svg {
    transform: scale(1);
}

.vid-card h4 {
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
}

.videos-footer {
    text-align: center;
    margin-top: var(--space-2xl);
}

@media (max-width: 1000px) {
    .vid-card--featured {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .vid-grid-regular {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   BLOG SECTION (Main Page)
   ============================================================ */
.blog-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linen), transparent);
}

.blog-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.blog-section-header .text-tag {
    margin-bottom: var(--space-md);
}

.blog-section-header .text-display-lg {
    margin-bottom: var(--space-md);
}

.blog-section-header p {
    color: var(--ink-70);
    font-size: 1.0625rem;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--linen);
    transition: all var(--duration-normal) var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-card-thumb {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-out);
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-body .text-tag {
    margin-bottom: var(--space-sm);
}

.blog-card-body h3 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.blog-card-body p {
    font-size: 0.875rem;
    color: var(--ink-40);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .blog-section {
        padding: var(--space-3xl) 0;
    }

    .blog-card-body {
        padding: 18px;
    }

    .blog-card-body h3 {
        font-size: 1rem;
    }
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linen), transparent);
}

.instagram-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.instagram-header .text-tag {
    margin-bottom: var(--space-md);
}

.instagram-header .text-display-lg {
    margin-bottom: var(--space-md);
}

.instagram-header p {
    color: var(--ink-70);
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: start;
}

.ig-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.ig-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--duration-normal) var(--ease-out);
}

.ig-item:hover img {
    transform: scale(1.1);
}

.ig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 23, 20, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: var(--white);
}

.ig-item:hover .ig-overlay {
    opacity: 1;
}

.ig-overlay-stats {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

.ig-overlay-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ig-footer {
    text-align: center;
    margin-top: var(--space-2xl);
}

@media (max-width: 768px) {
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ig-item:nth-child(n+5) {
        display: none;
    }
}

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

    .ig-item:nth-child(n+4) {
        display: none;
    }
}

/* ============================================================
   COMMUNITY / TESTIMONIALS
   ============================================================ */
.community {
    padding: var(--space-5xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linen), transparent);
}

.community-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.community-header .text-tag {
    margin-bottom: var(--space-md);
}

.testimonial-track-wrap {
    position: relative;
    margin: 0 calc(-1 * var(--space-xl));
    padding: 0 var(--space-xl);
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(50% - 10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--linen);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.t-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--linen);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-70);
    transition: all var(--duration-fast) ease;
}

.t-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.05);
}

.t-arrow:active {
    transform: scale(0.95);
}

.t-dots {
    display: flex;
    gap: 8px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--linen);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.t-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    padding: var(--space-5xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linen), transparent);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.faq-header .text-tag {
    margin-bottom: var(--space-md);
}

.faq-grid {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--cream);
    border: 1px solid var(--linen);
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-out);
}

.faq-item[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 20px 24px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--ink-40);
    flex-shrink: 0;
    transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item[open] .faq-question::after {
    content: '\2212';
    color: var(--accent);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--ink-70);
    font-size: 0.9375rem;
    line-height: 1.75;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 16px 18px;
        font-size: 0.9375rem;
    }

    .faq-answer {
        padding: 0 18px 16px;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }
}

/* ============================================================
   SERVICES / WORK WITH JAY
   ============================================================ */
.services {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--linen), transparent);
}

.services-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.services-header .text-tag {
    margin-bottom: var(--space-md);
}

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

.svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1.5px solid var(--linen);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out);
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.svc-card:hover .svc-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(-5deg);
}

.svc-card h3 {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.svc-card p {
    color: var(--ink-70);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--duration-fast) ease;
}

.svc-card:hover .svc-link {
    gap: 10px;
}

@media (max-width: 900px) {
    .svc-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    padding: var(--space-5xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--accent-light) 50%, var(--cream) 100%);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta .text-tag {
    margin-bottom: var(--space-md);
}

.final-cta .text-display-lg {
    margin-bottom: var(--space-md);
}

.final-cta > .container > p {
    color: var(--ink-70);
    font-size: 1.0625rem;
    max-width: 520px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.final-cta .nl-form {
    max-width: 460px;
    margin: 0 auto;
    flex-direction: row;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 6px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--linen);
}

.final-cta .nl-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
}

.final-cta .nl-input:focus {
    box-shadow: none;
}

.final-cta .btn {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .final-cta .nl-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: var(--space-md);
    }

    .final-cta .btn {
        width: 100%;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--linen);
    background: var(--cream);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.footer-brand-text strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--ink);
}

.footer-brand-text span {
    font-size: 0.8125rem;
    color: var(--ink-40);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--ink-70);
    transition: color var(--duration-fast) ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--duration-normal) var(--ease-out);
}

.footer-links a:hover {
    color: var(--accent);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--linen);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--ink-40);
}

@media (max-width: 700px) {
    .footer-inner {
        flex-direction: column;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-lg);
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slower) var(--ease-out),
                transform var(--duration-slower) var(--ease-out);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--duration-slower) var(--ease-out),
                transform var(--duration-slower) var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--duration-slower) var(--ease-out),
                transform var(--duration-slower) var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--duration-slower) var(--ease-out),
                transform var(--duration-slower) var(--ease-out);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-normal) var(--ease-out),
                transform var(--duration-normal) var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
