/* ============================================================
   franzu.top — Federico, Web Designer & SEO Consultant
   Production CSS — Premium, editorial, crafted
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
    /* Colors */
    --color-bg:        #111111;
    --color-bg-soft:   #181816;
    --color-bg-alt:    #1a1918;
    --color-surface:   #1f1e1c;
    --color-surface-elevated: #252422;
    --color-border:    #333230;
    --color-border-subtle: #2a2927;
    --color-text:      #F5F0EB;
    --color-text-soft: #9A9590;
    --color-accent:    #D4845A;
    --color-accent-dk: #B56A42;
    --color-accent-lt: #E8A880;
    --color-accent-glow: rgba(212, 132, 90, 0.15);

    /* Typography */
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  6rem;
    --space-2xl: 10rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 720px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.6s;
    --duration-fast: 0.3s;

    /* Glass */
    --glass-bg: rgba(31, 30, 28, 0.6);
    --glass-border: rgba(212, 132, 90, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Fix: ensure [hidden] attribute works */
[hidden] { display: none !important; }

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

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

ul[role="list"] {
    list-style: none;
}

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */

/* Noise / grain overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' 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: 256px 256px;
}

/* Ambient floating orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.4;
}

.orb--a {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 132, 90, 0.08) 0%, transparent 70%);
    animation: orbFloatA 20s ease-in-out infinite;
}

.orb--b {
    width: 400px;
    height: 400px;
    bottom: 20%;
    left: -150px;
    background: radial-gradient(circle, rgba(212, 132, 90, 0.06) 0%, transparent 70%);
    animation: orbFloatB 25s ease-in-out infinite;
}

.orb--c {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -250px;
    background: radial-gradient(circle, rgba(180, 100, 60, 0.05) 0%, transparent 70%);
    animation: orbFloatC 30s ease-in-out infinite;
}

@keyframes orbFloatA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloatB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.08); }
}

@keyframes orbFloatC {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 50px) scale(1.05); }
}

/* ---- Utility ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-sm);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .container {
        padding-inline: var(--space-md);
    }
}

.section {
    padding-block: var(--space-xl);
}

@media (min-width: 768px) {
    .section {
        padding-block: var(--space-2xl);
    }
}

.section__header {
    margin-bottom: var(--space-lg);
    position: relative;
}

.section__header--center {
    text-align: center;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section__label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-accent);
}

/* ---- Typography ---- */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-variation-settings: "SOFT" 50;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-variation-settings: "SOFT" 40;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
}

em {
    font-style: italic;
    color: var(--color-accent);
    font-variation-settings: "SOFT" 80;
}

strong {
    font-weight: 600;
    color: var(--color-text);
}

p {
    color: var(--color-text-soft);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dk));
    color: var(--color-bg);
    box-shadow: 0 4px 20px rgba(212, 132, 90, 0.25);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent-lt), var(--color-accent));
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
    border-radius: inherit;
}

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

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(212, 132, 90, 0.35);
}

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

.btn--secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 132, 90, 0.1);
}

.btn--lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */

.section-divider {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.section-divider--hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.section-divider--hero svg {
    width: 100%;
    height: 60px;
    display: block;
}

.section-divider--accent {
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.section-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-subtle), transparent);
}

.section-divider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.6;
    flex-shrink: 0;
}

.section-divider--wide {
    padding: 0;
    max-width: 100%;
}

.section-divider--wide svg {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: block;
    height: 40px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-sm) 0;
    transition: background var(--duration) var(--ease-out),
                backdrop-filter var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
}

.site-header.scrolled {
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 1px 0 rgba(51, 50, 48, 0.3);
}

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

@media (min-width: 768px) {
    .nav {
        padding-inline: var(--space-md);
    }
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 101;
}

.nav__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dk));
    color: var(--color-bg);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(212, 132, 90, 0.2);
}

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

.nav__links {
    display: none;
    align-items: center;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .nav__links {
        display: flex;
    }
}

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-soft);
    transition: color 0.3s ease;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
    color: var(--color-text);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dk));
    color: var(--color-bg) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all var(--duration-fast) ease !important;
    box-shadow: 0 2px 12px rgba(212, 132, 90, 0.15);
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 132, 90, 0.3);
}

/* Mobile Toggle */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.nav__mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.nav__mobile a {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text);
    transition: color 0.3s ease;
}

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

/* ============================================================
   HERO
   ============================================================ */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-block: var(--space-2xl) var(--space-xl);
    position: relative;
    overflow: hidden;
}

/* Dot grid pattern */
.hero__grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
}

.hero__grid-pattern svg {
    width: 100%;
    height: 100%;
}

/* Hero decorative shapes */
.hero__shapes {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: min(400px, 35vw);
    height: min(400px, 35vw);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero__shapes {
        right: -5%;
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .hero__shapes {
        right: -20%;
        width: 250px;
        height: 250px;
        opacity: 0.25;
    }
}

.hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 132, 90, 0.1);
}

.hero__ring--1 {
    inset: 0;
    animation: heroRingSpin 40s linear infinite;
}

.hero__ring--2 {
    inset: 15%;
    border-color: rgba(212, 132, 90, 0.07);
    animation: heroRingSpin 30s linear infinite reverse;
}

.hero__ring--3 {
    inset: 30%;
    border-color: rgba(212, 132, 90, 0.05);
    animation: heroRingSpin 20s linear infinite;
}

@keyframes heroRingSpin {
    to { transform: rotate(360deg); }
}

.hero__geo {
    position: absolute;
    inset: 10%;
    animation: heroGeoFloat 15s ease-in-out infinite;
}

@keyframes heroGeoFloat {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.05); }
}

.hero__content {
    max-width: 900px;
    padding-inline: var(--space-sm);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero__content {
        padding-inline: var(--space-md);
    }
}

.hero__sub {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 600px;
    margin-block: var(--space-md) var(--space-lg);
    line-height: 1.6;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    z-index: 2;
}

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

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

/* ============================================================
   ABOUT
   ============================================================ */

.about {
    background: var(--color-bg-soft);
    position: relative;
}

/* Subtle gradient wash behind about */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
    pointer-events: none;
}

/* Corner decoration */
.about__corner-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

.about__layout {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about__layout {
        grid-template-columns: 120px 1fr;
        gap: var(--space-lg);
        align-items: start;
    }
}

.about__label {
    display: none;
}

@media (min-width: 768px) {
    .about__label {
        display: block;
    }

    .about__label span {
        position: sticky;
        top: 6rem;
        padding-left: 0.5rem;
        border-left: 2px solid var(--color-accent);
    }
}

.about__body {
    max-width: var(--container-narrow);
    position: relative;
    z-index: 1;
}

/* Quote frame styling */
.about__quote-frame {
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
    border-left: 2px solid transparent;
    background: linear-gradient(135deg, rgba(212, 132, 90, 0.03) 0%, transparent 60%);
    border-radius: 0 12px 12px 0;
}

.about__quote-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dk), transparent);
    border-radius: 2px;
}

.about__quote-accent {
    position: absolute;
    top: -12px;
    left: -1px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    border-radius: 4px 0 0 0;
    opacity: 0.4;
}

.about__body p {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about__body p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
    position: relative;
    background: var(--color-bg);
}

/* Dot pattern background for services */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 132, 90, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.services__grid {
    display: grid;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services__grid {
        gap: var(--space-md);
    }
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    transition: transform var(--duration) var(--ease-out),
                border-color 0.4s ease,
                box-shadow var(--duration) var(--ease-out),
                background var(--duration) var(--ease-out);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Subtle background gradient on cards */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 132, 90, 0.02) 0%, transparent 50%);
    pointer-events: none;
    border-radius: inherit;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 132, 90, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(212, 132, 90, 0.05);
    background: rgba(35, 33, 30, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-lt), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

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

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.service-card:hover .service-card__icon {
    opacity: 1;
    transform: scale(1.05);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    opacity: 0.7;
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================
   PROOF / STATS
   ============================================================ */

.proof {
    background: var(--color-bg-alt);
    position: relative;
}

/* Warm gradient wash */
.proof::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 132, 90, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(180, 100, 60, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.proof__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .proof__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md) var(--space-lg);
    }
}

.proof__stat {
    position: relative;
}

/* Stat cards with glass morphism */
.proof__stat--card {
    padding: var(--space-md) var(--space-sm);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform var(--duration) var(--ease-out),
                border-color 0.4s ease,
                box-shadow var(--duration) var(--ease-out);
}

.proof__stat--card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(212, 132, 90, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(212, 132, 90, 0.05);
}

/* Subtle glow behind the stat number */
.proof__stat-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 132, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.proof__stat--card:hover .proof__stat-bg {
    opacity: 1;
}

.proof__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    display: block;
    position: relative;
}

.proof__suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--color-accent-lt);
    opacity: 0.8;
}

.proof__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-soft);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   CTA
   ============================================================ */

.cta {
    text-align: center;
    position: relative;
    background: var(--color-bg-soft);
    overflow: hidden;
}

/* Background gradient wash */
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
    pointer-events: none;
}

.cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 132, 90, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative corner frame */
.cta__frame {
    position: absolute;
    inset: var(--space-md);
    pointer-events: none;
    z-index: 0;
}

.cta__frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--color-accent);
    opacity: 0.15;
}

.cta__frame-corner--tl {
    top: 0;
    left: 0;
    border-top: 1px solid;
    border-left: 1px solid;
}

.cta__frame-corner--tr {
    top: 0;
    right: 0;
    border-top: 1px solid;
    border-right: 1px solid;
}

.cta__frame-corner--bl {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.cta__frame-corner--br {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__content h2 {
    margin-bottom: var(--space-md);
}

.cta__sub {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .cta__actions {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-md);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    border-top: 1px solid var(--color-border-subtle);
    padding: var(--space-md) 0;
    position: relative;
    background: var(--color-bg);
}

.footer__line {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    overflow: visible;
}

.footer__line svg {
    width: 100%;
    height: 2px;
    display: block;
}

.site-footer p {
    font-size: 0.875rem;
    text-align: center;
    color: var(--color-text-soft);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Hero entrance */
.hero__content {
    opacity: 0;
    transform: translateY(40px);
    animation: heroIn 1s var(--ease-out) 0.2s forwards;
}

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

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration) var(--ease-out),
                transform var(--duration) var(--ease-out);
}

.reveal.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; }

/* ============================================================
   FOCUS / ACCESSIBILITY
   ============================================================ */

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero__scroll-line {
        animation: none;
        opacity: 0.5;
    }

    .orb {
        animation: none;
    }

    .hero__ring,
    .hero__geo {
        animation: none;
    }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
    .site-header,
    .nav__toggle,
    .nav__mobile,
    .hero__scroll,
    .noise,
    .orb,
    .hero__shapes,
    .hero__grid-pattern {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section {
        padding-block: 2rem;
    }
}