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

:root {
    /* Brand kleuren — hout & leer palet */
    --dark-base:    #0C0703;   /* donkerste mahonie-zwart */
    --dark-brown:   #1C0F07;   /* donker mahonie */
    --brand-brown:  #3D1F0A;   /* walnoot */
    --mid-brown:    #6B3D2E;   /* medium leer */
    --leather:      #8B5E3C;   /* licht leer */
    --wood-warm:    #A0673A;   /* warm hout */
    --cream:        #FAF0E4;   /* warm perkament */
    --cream-dark:   #EDD5B0;   /* donker perkament */
    --tan:          #D9BE96;   /* leer-tan */
    --gold:         #C9A84C;
    --gold-light:   #E8D5A0;
    --gold-dark:    #8B6914;
    --gold-warm:    #D4A84B;   /* warm goud */
    --gold-glow:    rgba(201, 168, 76, 0.18);

    /* Tekst */
    --text-dark:    #1C0F07;
    --text-muted:   #7A5A3A;   /* warm bruin ipv roze */
    --text-light:   #FAF0E4;

    /* Typografie */
    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-sans:    'Inter', system-ui, sans-serif;

    /* Layout */
    --container:    1240px;
    --section-pad:  110px;

    /* Effecten */
    --shadow-card:  0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.18);
    --radius-card:  16px;
    --radius-btn:   8px;
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: #FAF0E4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── UTILITIES ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Knoppen */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-base);
    border-color: var(--gold);
    font-weight: 600;
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: rgba(250, 245, 240, 0.8);
    border-color: rgba(232, 213, 160, 0.35);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.btn-outline-light {
    background: transparent;
    color: rgba(250, 245, 240, 0.8);
    border-color: rgba(250, 245, 240, 0.25);
}

.btn-outline-light:hover {
    border-color: var(--cream);
    color: var(--cream);
    background: rgba(250, 245, 240, 0.07);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* Sectie headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title--light  { color: var(--cream); }

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-sub--light { color: rgba(250, 240, 228, 0.55); }

/* Gouden lijn-accent onder sectie-eyebrow */
.section-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 6px auto 0;
}

/* Scroll-reveal: GSAP beheert animaties — opacity:0 voorkomt FOUC */
.reveal {
    opacity: 0;
}

/* ── NAVIGATIE ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
    background: #1E0F06;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(201, 168, 76, 0.2);
    padding: 0 2rem;
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 80px;
}

.nav-logo img {
    height: 64px;
    width: auto;
    border-radius: 0;
    transition: opacity 0.2s;
}

.nav-logo:hover img { opacity: 0.85; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: rgba(250, 245, 240, 0.75);
    font-size: 0.88rem;
    font-weight: 400;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.nav-cta {
    margin-left: 0.5rem;
    padding: 0.55rem 1.4rem;
    font-size: 0.88rem;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0 1.25rem;
    border-top: 1px solid rgba(250, 245, 240, 0.08);
    max-width: var(--container);
    margin: 0 auto;
}

.nav-mobile a {
    text-decoration: none;
    color: rgba(250, 245, 240, 0.75);
    font-size: 1rem;
    padding: 0.65rem 0;
    transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--gold); }

.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #0C0703 0%, #1C0F07 60%, #0C0703 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 140px;
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-orb--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(107, 61, 46, 0.75) 0%, rgba(61, 31, 10, 0.4) 50%, transparent 70%);
    top: -200px; right: -150px;
    animation: floatOrb 14s ease-in-out infinite;
}

.hero-orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.14) 0%, rgba(160, 103, 58, 0.08) 50%, transparent 70%);
    bottom: -120px; left: -100px;
    animation: floatOrb 18s ease-in-out infinite reverse;
}

.hero-orb--3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(61, 31, 10, 0.55) 0%, transparent 70%);
    top: 50%; left: 25%;
    animation: floatOrb 22s ease-in-out infinite 6s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, -50px) scale(1.06); }
    66%       { transform: translate(-25px, 25px) scale(0.94); }
}

/* Hero 2-kolom layout */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.hero-content {
    text-align: left;
}

/* Op desktop: linker kolom  tekst niet meer gecentreerd */
.hero-content .hero-eyebrow { text-align: left; }
.hero-content .hero-sub     { margin-left: 0; }
.hero-content .hero-ctas    { justify-content: flex-start; }
.hero-content .hero-trust   { justify-content: flex-start; }

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7.5vw, 5.75rem);
    font-weight: 700;
    line-height: 1.04;
    color: var(--cream);
    margin-bottom: 1.75rem;
}

.hero-line {
    display: block;
    opacity: 0;
}

.hero-line--accent {
    background: linear-gradient(
        110deg,
        #7A5A10 0%,
        #C9A84C 25%,
        #F0DC9A 50%,
        #C9A84C 75%,
        #7A5A10 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    animation: goldShimmer 5s linear 1.8s infinite;
}

@keyframes goldShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 220% center; }
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(250, 245, 240, 0.6);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.75rem;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    opacity: 0;
    animation: fadeUp 0.8s 1.5s ease forwards;
}

.trust-item { text-align: center; }

.trust-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.trust-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(250, 245, 240, 0.38);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 44px;
    background: rgba(201, 168, 76, 0.18);
}

/* Scroll-indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.hero-scroll span {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(250, 245, 240, 0.25);
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.5), transparent);
    animation: scrollBlink 2.5s ease-in-out infinite;
}

@keyframes scrollBlink {
    0%        { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.001%   { transform-origin: bottom; }
    100%      { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── HERO VISUAL: BROWSER MOCKUP ── */
.hero-visual {
    position: relative;
    opacity: 0;
}

.browser-mockup {
    width: 100%;
    background: #150C05;
    border-radius: 14px;
    border: 1px solid rgba(201, 168, 76, 0.28);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(201, 168, 76, 0.1),
        inset 0 1px 0 rgba(201, 168, 76, 0.12);
    overflow: hidden;
    animation: floatBrowser 7s ease-in-out infinite 2s;
}

@keyframes floatBrowser {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-14px) rotate(0deg); }
}

.browser-bar {
    background: #1C0F07;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.browser-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.bd-red    { background: rgba(255, 95, 87, 0.55); }
.bd-yellow { background: rgba(255, 189, 46, 0.55); }
.bd-green  { background: rgba(39, 201, 63, 0.55); }

.browser-url-bar {
    flex: 1;
    margin-left: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(201, 168, 76, 0.4);
    font-family: var(--font-sans);
    letter-spacing: 0.04em;
}

.browser-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mockup nav */
.mock-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    background: rgba(61, 31, 10, 0.5);
    border-radius: 6px;
}

.mock-logo-block {
    width: 28px; height: 18px;
    background: rgba(201, 168, 76, 0.35);
    border-radius: 3px;
}

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

.mock-link {
    width: 28px; height: 5px;
    background: rgba(250, 245, 240, 0.15);
    border-radius: 3px;
}

.mock-btn-pill {
    width: 42px; height: 16px;
    background: rgba(201, 168, 76, 0.4);
    border-radius: 10px;
    margin-left: 4px;
}

/* Mockup hero area */
.mock-hero-area {
    background: linear-gradient(135deg, rgba(61, 31, 10, 0.6) 0%, rgba(12, 7, 3, 0.85) 100%);
    border-radius: 8px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mock-headline {
    height: 10px; width: 75%;
    background: linear-gradient(to right, rgba(201, 168, 76, 0.6), rgba(201, 168, 76, 0.3));
    border-radius: 5px;
}

.mock-subline {
    height: 6px; width: 90%;
    background: rgba(250, 245, 240, 0.12);
    border-radius: 3px;
}

.mock-subline--short { width: 65%; }

.mock-cta-row {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.mock-cta-btn {
    width: 80px; height: 18px;
    background: rgba(201, 168, 76, 0.5);
    border-radius: 5px;
}

.mock-cta-ghost {
    width: 60px; height: 18px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 5px;
}

/* Mockup cards */
.mock-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.mock-card-sm {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 8px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-card-sm--featured {
    background: rgba(74, 43, 50, 0.4);
    border-color: rgba(201, 168, 76, 0.25);
}

.mock-card-icon {
    width: 18px; height: 18px;
    background: rgba(201, 168, 76, 0.3);
    border-radius: 4px;
}

.mock-card-line {
    height: 5px;
    background: rgba(250, 245, 240, 0.1);
    border-radius: 3px;
}

.mock-card-line--short { width: 65%; }

/* Glow achter browser mockup */
.browser-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(30px);
    z-index: -1;
}

/* Golf-overgang: warme perkament-sectie */
.problem {
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: #FAF0E4;
    clip-path: ellipse(55% 100% at 50% 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── PROBLEEM / OPLOSSING ── */
.problem {
    padding: var(--section-pad) 2rem;
    background: linear-gradient(180deg, #FAF0E4 0%, #EDD5B0 100%);
    border-top: 1px solid rgba(139, 94, 60, 0.15);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.col-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.col-badge--bad {
    background: rgba(200, 80, 80, 0.08);
    color: #b85050;
    border: 1px solid rgba(200, 80, 80, 0.18);
}

.col-badge--good {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.14) 0%, rgba(139, 94, 60, 0.08) 100%);
    color: var(--gold-dark);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.problem-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.problem-heading--gold { color: var(--mid-brown); }

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.93rem;
    line-height: 1.55;
    padding: 1rem 1.2rem;
    border-radius: 10px;
}

.problem-item--bad {
    background: rgba(200, 80, 80, 0.04);
    color: #6a3a3a;
    border: 1px solid rgba(200, 80, 80, 0.09);
}

.problem-item--good {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(160, 103, 58, 0.05) 100%);
    color: var(--text-dark);
    border: 1px solid rgba(201, 168, 76, 0.22);
}

.prob-icon {
    font-size: 0.8rem;
    font-weight: 700;
    color: #c05050;
    flex-shrink: 0;
    margin-top: 1px;
    width: 18px;
}

.prob-icon--good { color: var(--gold-dark); }

/* ── DIENSTEN ── */
.services {
    padding: var(--section-pad) 2rem;
    background: linear-gradient(180deg, #EDD5B0 0%, #D9BE96 100%);
    border-top: 1px solid rgba(139, 94, 60, 0.2);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(160deg, #FAF0E4 0%, #F0DEC0 100%);
    border-radius: var(--radius-card);
    padding: 2.25rem;
    border: 1px solid rgba(139, 94, 60, 0.22);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 20px 60px rgba(28, 15, 7, 0.14),
        0 0 0 1px rgba(201, 168, 76, 0.35),
        0 0 35px rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.45);
}

.service-card--featured {
    background: linear-gradient(160deg, #1C0F07 0%, #2D1810 100%);
    border-color: rgba(201, 168, 76, 0.55);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.12), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

.service-card--featured:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 55px rgba(201, 168, 76, 0.22), 0 0 0 1px rgba(201, 168, 76, 0.3);
}

.service-card--featured .service-title { color: var(--cream); }
.service-card--featured .service-desc  { color: rgba(250, 245, 240, 0.55); }
.service-card--featured .service-features li { color: rgba(250, 245, 240, 0.7); }
.service-card--featured .service-icon  { color: var(--gold); }
.service-card--featured .service-link  { color: var(--gold); }
.service-card--featured .service-features li::before { color: var(--gold); }

.card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark-base);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.card-badge--wip {
    background: linear-gradient(135deg, rgba(61, 31, 10, 0.85) 0%, rgba(107, 61, 46, 0.8) 100%);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.service-link--wip {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.service-link--wip span {
    font-size: 0.8em;
    font-style: italic;
    color: var(--text-muted);
}

.service-icon {
    width: 46px;
    height: 46px;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}

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

.service-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.75rem;
}

.service-features li {
    font-size: 0.865rem;
    color: var(--text-dark);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.78rem;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s, letter-spacing 0.25s;
}

.service-link:hover {
    color: var(--gold);
    letter-spacing: 0.07em;
}

/* ── WERKWIJZE ── */
.process {
    padding: var(--section-pad) 2rem;
    background: linear-gradient(180deg, #1C0F07 0%, #2D1810 50%, #1C0F07 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    margin-top: -2px;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(107, 61, 46, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107, 61, 46, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    position: relative;
    z-index: 1;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(201, 168, 76, 0.5), rgba(201, 168, 76, 0.12));
    margin-top: 2.5rem;
    align-self: start;
}

.step-title::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 0.5rem auto 0;
}

.process-step {
    text-align: center;
    padding: 0 1.5rem;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.28;
    line-height: 1;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
    transition: opacity 0.4s ease, text-shadow 0.4s ease;
}

.process-step:hover .step-number {
    opacity: 0.55;
    text-shadow: 0 0 60px rgba(201, 168, 76, 0.7);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.88rem;
    color: rgba(250, 245, 240, 0.48);
    line-height: 1.8;
    max-width: 280px;
    margin: 0 auto;
}

/* ── PORTFOLIO ── */
.portfolio {
    padding: var(--section-pad) 2rem;
    background: linear-gradient(180deg, #D9BE96 0%, #C9A878 60%, #BF9C6E 100%);
    border-top: 1px solid rgba(139, 94, 60, 0.25);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-grid--6 {
    grid-template-rows: auto auto;
}

.portfolio-card {
    text-decoration: none;
    display: block;
    color: inherit;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: box-shadow var(--transition), transform var(--transition);
}

.portfolio-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px);
}

.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.07);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 15, 7, 0.97) 0%,
        rgba(61, 31, 10, 0.65) 45%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.portfolio-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.portfolio-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: letter-spacing 0.25s;
}

.portfolio-link:hover { letter-spacing: 0.06em; }

/* ── TESTIMONIAL ── */
.testimonial {
    padding: var(--section-pad) 2rem;
    background: var(--cream-dark);
}

.testimonial--dark {
    background: var(--dark-brown);
    position: relative;
    overflow: hidden;
}

.testimonial--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.testimonial--dark .quote-text {
    color: rgba(250, 245, 240, 0.85);
}

.testimonial--dark .author-name {
    color: var(--cream);
}

.testimonial--dark .author-company {
    color: rgba(250, 245, 240, 0.45);
}

.testimonial--dark .testimonial-card {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 9rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.18;
    line-height: 0.4;
    display: block;
    margin-bottom: 2rem;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-style: italic;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 2.25rem;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--brand-brown);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.author-company {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── FAQ ── */
.faq {
    padding: var(--section-pad) 2rem;
    background: linear-gradient(180deg, #EDD5B0 0%, #FAF0E4 100%);
    border-top: 1px solid rgba(139, 94, 60, 0.2);
}

.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(139, 94, 60, 0.18);
    border-left: 3px solid transparent;
    padding-left: 0;
    transition: border-color 0.3s ease, padding-left 0.3s ease;
}

.faq-item.open {
    border-left-color: var(--gold);
    padding-left: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--brand-brown); }
.faq-question[aria-expanded="true"] { color: var(--brand-brown); }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 22px;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 1.4rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 280px;
}

/* ── CTA / CONTACT ── */
.cta-banner {
    padding: var(--section-pad) 2rem;
    background: linear-gradient(160deg, #0C0703 0%, #1C0F07 50%, #0C0703 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.cta-orb--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(107, 61, 46, 0.65) 0%, rgba(61, 31, 10, 0.35) 50%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.cta-orb--2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, rgba(160, 103, 58, 0.05) 50%, transparent 70%);
    top: -50px; right: 10%;
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 1.25rem;
    line-height: 1.05;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(250, 245, 240, 0.55);
    max-width: 540px;
    margin: 0 auto 2.75rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
    background: #1E0F06;
    border-top: 2px solid rgba(201, 168, 76, 0.25);
    padding: 4.5rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-brand img {
    margin-bottom: 1rem;
    opacity: 1;
    border-radius: 0;
    height: 88px;
    width: auto;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(250, 245, 240, 0.38);
    line-height: 1.65;
}

.footer-col-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-links li {
    font-size: 0.875rem;
    color: rgba(250, 245, 240, 0.42);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}

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

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.77rem;
    color: rgba(250, 245, 240, 0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        max-width: 700px;
        gap: 3rem;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content .hero-eyebrow { text-align: center; }
    .hero-content .hero-sub     { margin: 0 auto 2.75rem; }
    .hero-content .hero-ctas    { justify-content: center; }
    .hero-content .hero-trust   { justify-content: center; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
}


@media (max-width: 1024px) {
    :root { --section-pad: 90px; }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        background: linear-gradient(to bottom, rgba(201, 168, 76, 0.3), transparent);
        margin: 0 auto;
    }
}

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

    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }

    .hero-visual { display: none; }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .portfolio-overlay { opacity: 1; }

    .hero-trust {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

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

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

@media (max-width: 480px) {
    .hero-ctas, .cta-actions { flex-direction: column; align-items: center; }
    .trust-divider { display: none; }
    .hero-trust { flex-direction: column; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

@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;
    }
}
