/* ============================================
   SIMPLY ROOTED RADIANCE — v2.3
   A Cinematic, Editorial Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
    --cream: #FAF6F1;
    --cream-deep: #F3EBE0;
    --warm-beige: #E8DDD1;
    --sand: #D4C5B5;
    --taupe: #B8A89A;
    --brown: #8B6F4E;
    --brown-dark: #5C4033;
    --espresso: #3A2A1E;
    --charcoal: #2C2C2C;
    --black: #1A1A1A;
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --gold-glow: rgba(201,169,110,0.15);
    --rose: #D4A99A;
    --blush: #F7EDE2;
    --white: #FFFFFF;
    --off-white: #FDFCFA;
    --burgundy: #6b2737;
    --olive: #2d4a3e;
    --success: #4a7c59;
    --error: #c44536;

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    --section-pad: clamp(60px, 8vw, 120px);
    --container-max: 1320px;
    --container-narrow: 860px;

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-dramatic: cubic-bezier(0.76, 0, 0.24, 1);
    --transition: 0.4s var(--ease);
    --transition-slow: 0.8s var(--ease-out);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-soft: 0 4px 30px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-card: 0 2px 20px rgba(92,64,51,0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.75;
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
body.loading { overflow: hidden; }

img {
    max-width: 100%; height: auto; display: block;
    image-rendering: auto;
    -webkit-image-rendering: auto;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
em { font-style: italic; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 60px);
}

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

/* --- Preloader --- */
.preloader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease-dramatic), visibility 0.8s;
}
.preloader.hidden {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.preloader-inner { text-align: center; }
.preloader-logo-img {
    height: clamp(36px, 6vw, 56px);
    width: auto;
    object-fit: contain;
    opacity: 0;
    animation: preloaderFadeIn 1s 0.3s var(--ease-out) forwards;
}
.preloader-line {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
    transform: scaleX(0);
    animation: preloaderLine 1.5s 0.4s var(--ease-out) forwards;
}
@keyframes preloaderFadeIn {
    to { opacity: 1; }
}
@keyframes preloaderLine {
    to { transform: scaleX(1); }
}

/* --- Navigation --- */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
    transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.nav.scrolled {
    background: rgba(253,252,250,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.nav.scrolled .nav-logo-img {
    filter: none;
}
.nav.scrolled .nav-link { color: var(--charcoal); }
.nav.scrolled .nav-toggle span { background: var(--black); }

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
    height: clamp(32px, 4vw, 46px);
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.5s var(--ease), height 0.3s var(--ease);
}

.nav-links {
    display: flex; align-items: center; gap: clamp(16px, 2.5vw, 40px);
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    transition: color 0.5s var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav.scrolled .nav-link:hover, .nav.scrolled .nav-link.active { color: var(--gold); }

.nav-cta-btn {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.4s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 8px 4px;
    z-index: 1001;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
    display: block;
    width: 100%; height: 2px;
    background: var(--white);
    transition: all 0.4s var(--ease);
    border-radius: 1px;
}
.nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}
.nav.scrolled .nav-toggle:hover span {
    background: var(--gold);
}
.nav-toggle.active span {
    background: var(--white) !important;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(26, 26, 26, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
    padding: 80px 24px 40px;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-menu .mob-link {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    color: var(--white);
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
}
.mobile-menu.open .mob-link {
    opacity: 1; transform: translateY(0);
}
.mobile-menu.open .mob-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mob-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mob-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mob-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mob-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mob-link:nth-child(6) { transition-delay: 0.35s; }
.mob-link:hover { color: var(--gold); }

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}
.hero-media {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-media img, .hero-media video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1);
    transition: transform 12s linear;
    image-rendering: high-quality;
    -webkit-image-rendering: auto;
}
.hero.loaded .hero-media img,
.hero.loaded .hero-media video {
    transform: scale(1);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26,26,26,0.55) 0%,
        rgba(26,26,26,0.45) 40%,
        rgba(26,26,26,0.65) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
}
.hero-badge::before, .hero-badge::after {
    content: ''; width: 40px; height: 1px;
    background: var(--gold-light);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(40px);
}
.hero-title em {
    font-family: var(--font-accent);
    font-weight: 400;
    color: var(--gold-light);
}
.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 300;
    color: rgba(255,255,255,0.92);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(30px);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
}
.hero-scroll {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroScrollIn 1s 2s var(--ease-out) forwards;
}
.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}
@keyframes heroScrollIn { to { opacity: 1; } }

/* Hero animations */
.hero.animate .hero-badge { opacity: 1; transform: translateY(0); transition: all 1s 0.3s var(--ease-out); }
.hero.animate .hero-title { opacity: 1; transform: translateY(0); transition: all 1s 0.5s var(--ease-out); }
.hero.animate .hero-subtitle { opacity: 1; transform: translateY(0); transition: all 1s 0.7s var(--ease-out); }
.hero.animate .hero-actions { opacity: 1; transform: translateY(0); transition: all 1s 0.9s var(--ease-out); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 40px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}
.btn-gold:hover {
    background: var(--brown-dark);
    color: var(--white);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.btn-outline-dark {
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    background: transparent;
}
.btn-outline-dark:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.btn-full { width: 100%; }

/* --- Section Utilities --- */
.section-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}
.section-title em {
    font-family: var(--font-accent);
    font-weight: 400;
    color: var(--brown-dark);
}
.section-desc {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 300;
    color: var(--taupe);
    max-width: 620px;
    line-height: 1.8;
}
.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}
.section-header .section-desc {
    margin: 0 auto;
}

/* --- Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].revealed { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="scale"].revealed { transform: scale(1); }

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* --- Brand Essence Section --- */
.brand-essence {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}
.essence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
.essence-left .section-label { margin-bottom: 12px; }
.essence-left .section-title { margin-bottom: 28px; }
.essence-divider {
    width: 60px; height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
}
.essence-text {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.9;
}
.essence-text:last-of-type { margin-bottom: 32px; }
.essence-signature {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--brown-dark);
    font-style: italic;
}
.essence-images {
    position: relative;
    height: clamp(500px, 60vw, 700px);
}
.essence-img-main {
    position: absolute;
    top: 0; right: 0;
    width: 70%;
    height: 75%;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-medium);
    image-rendering: high-quality;
}
.essence-img-accent {
    position: absolute;
    bottom: 0; left: 0;
    width: 55%;
    height: 50%;
    object-fit: cover;
    object-position: center center;
    border: 6px solid var(--off-white);
    box-shadow: var(--shadow-medium);
    image-rendering: high-quality;
}

/* --- Values Marquee --- */
.values-marquee {
    padding: 28px 0;
    background: var(--black);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    padding: 0 20px;
    letter-spacing: 0.05em;
}
.marquee-dot {
    color: var(--gold);
    font-size: 0.5rem;
    padding: 0 10px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Archetypes Section --- */
.archetypes {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.archetypes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.archetype-card {
    padding: clamp(28px, 3vw, 44px);
    text-align: center;
    position: relative;
    transition: all 0.6s var(--ease);
    border-right: 1px solid rgba(201,169,110,0.15);
}
.archetype-card:last-child { border-right: none; }
.archetype-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-card);
    z-index: 2;
}
.archetype-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-glow);
    color: rgba(201,169,110,0.2);
    line-height: 1;
    margin-bottom: 16px;
}
.archetype-icon {
    width: 54px; height: 54px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.5s var(--ease);
}
.archetype-card:hover .archetype-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}
.archetype-card h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    margin-bottom: 12px;
    color: var(--black);
}
.archetype-card p {
    font-size: 0.88rem;
    color: var(--taupe);
    line-height: 1.7;
    margin-bottom: 18px;
}
.archetype-palette {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.palette-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
    grid-auto-flow: dense;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s var(--ease-out);
    image-rendering: high-quality;
    will-change: transform;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26,26,26,0.7), transparent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall img { height: 100%; object-position: center top; }

/* --- Services Preview --- */
.services-preview {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.service-card {
    background: var(--white);
    padding: clamp(32px, 3vw, 48px);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    border: 1px solid transparent;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}
.service-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(201,169,110,0.15);
    transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.2rem;
    color: var(--gold);
    transition: all 0.5s var(--ease);
}
.service-card:hover .service-icon-wrap {
    background: var(--gold);
    color: var(--white);
}
.service-card h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    margin-bottom: 12px;
    color: var(--black);
}
.service-card p {
    font-size: 0.92rem;
    color: var(--taupe);
    line-height: 1.8;
    margin-bottom: 20px;
}
.service-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    background: var(--cream);
    color: var(--gold);
    border-radius: 2px;
}

/* --- Testimonial / Quote Section --- */
.quote-section {
    position: relative;
    padding: clamp(80px, 10vw, 160px) 0;
    overflow: hidden;
}
.quote-bg {
    position: absolute; inset: 0;
}
.quote-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    image-rendering: high-quality;
}
.quote-bg-overlay {
    position: absolute; inset: 0;
    background: rgba(26,26,26,0.65);
}
.quote-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.quote-mark {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
}
.quote-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.8vw, 2.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}
.quote-content cite {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-style: normal;
}

/* --- For Her & For Him --- */
.for-both {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}
.both-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.both-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    height: clamp(450px, 50vw, 600px);
}
.both-card-img {
    position: absolute; inset: 0;
}
.both-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1s var(--ease-out);
    image-rendering: high-quality;
    will-change: transform;
}
.both-card:hover .both-card-img img {
    transform: scale(1.03);
}
.both-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.05) 0%, rgba(26,26,26,0.4) 40%, rgba(26,26,26,0.82) 100%);
}
.both-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: clamp(28px, 4vw, 48px);
    z-index: 2;
}
.both-card-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.both-card-content p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 400px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.link-arrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.link-arrow::after {
    content: '→';
    transition: transform 0.3s var(--ease);
}
.link-arrow:hover::after {
    transform: translateX(4px);
}

/* --- Newsletter Section --- */
.newsletter {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.newsletter-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 16px;
}
.newsletter-title em {
    font-family: var(--font-accent);
    color: var(--brown-dark);
}
.newsletter p {
    font-size: 0.95rem;
    color: var(--taupe);
    line-height: 1.8;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.newsletter-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 300;
    border: 1px solid var(--sand);
    background: var(--white);
    color: var(--charcoal);
    transition: border-color 0.3s var(--ease);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}
.form-input:focus {
    border-color: var(--gold);
}
.form-input::placeholder {
    color: var(--taupe);
}
.form-note {
    font-size: 0.78rem;
    color: var(--taupe);
    font-style: italic;
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: clamp(60px, 8vw, 100px) 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    padding-bottom: clamp(40px, 5vw, 60px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}
.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.4s var(--ease);
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a, .footer-col span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.footer-scripture {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}
.page-hero-media {
    position: absolute; inset: 0;
}
.page-hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    image-rendering: high-quality;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.5), rgba(26,26,26,0.6));
}
.page-hero-content {
    position: relative; z-index: 2;
    text-align: center;
}
.page-hero-content .section-label { color: var(--gold); }
.page-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 16px;
}
.page-hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto;
}

/* Founder Story */
.founder-section {
    padding: var(--section-pad) 0;
}
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
.founder-image-wrap {
    position: relative;
}
.founder-image-wrap img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-medium);
    image-rendering: high-quality;
}
.founder-image-accent {
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}
.founder-story h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 24px;
}
.founder-story p {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.9;
    color: var(--charcoal);
}

/* Values Grid */
.values-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    padding: clamp(28px, 3vw, 40px);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.5s var(--ease);
    border: 1px solid transparent;
}
.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.value-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.2rem;
    color: var(--gold);
}
.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black);
}
.value-card p {
    font-size: 0.88rem;
    color: var(--taupe);
    line-height: 1.7;
}

/* Philosophy */
.philosophy-section {
    position: relative;
    padding: clamp(80px, 12vw, 180px) 0;
    overflow: hidden;
}
.philosophy-bg {
    position: absolute; inset: 0;
}
.philosophy-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    image-rendering: high-quality;
}
.philosophy-overlay {
    position: absolute; inset: 0;
    background: rgba(26,26,26,0.7);
}
.philosophy-content {
    position: relative; z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.pillar {
    text-align: center;
}
.pillar-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}
.pillar h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}
.pillar p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.process-section {
    padding: var(--section-pad) 0;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 32px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: var(--sand);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    transition: all 0.5s var(--ease);
}
.process-step:hover .step-num {
    background: var(--gold);
    color: var(--white);
}
.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--taupe);
    line-height: 1.6;
}

/* Service Detail Cards */
.service-detail-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}
.service-detail:last-child { margin-bottom: 0; }
.service-detail.reversed { direction: rtl; }
.service-detail.reversed > * { direction: ltr; }
.service-detail-img {
    overflow: hidden;
    border-radius: var(--radius-md);
}
.service-detail-img img {
    width: 100%;
    height: clamp(350px, 40vw, 500px);
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s var(--ease-out);
    image-rendering: high-quality;
    will-change: transform;
}
.service-detail-img:hover img {
    transform: scale(1.02);
}
.service-detail-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 16px;
}
.service-detail-content p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.85;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    margin-bottom: 28px;
}
.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.service-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Pricing */
.pricing-section {
    padding: var(--section-pad) 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: var(--white);
    padding: clamp(32px, 3.5vw, 48px);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--warm-beige);
    transition: all 0.5s var(--ease);
    position: relative;
}
.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: var(--shadow-medium);
}
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 18px;
    white-space: nowrap;
}
.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 20px;
}
.pricing-amount span {
    font-size: 1.2rem;
    color: var(--taupe);
}
.pricing-features {
    margin-bottom: 28px;
    text-align: left;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--charcoal);
    padding: 8px 0;
    border-bottom: 1px solid rgba(228,221,213,0.5);
}
.pricing-features li i {
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 5px;
}

/* ============================================
   QUIZ PAGE
   ============================================ */
.quiz-intro {
    padding: 0 0 8px;
    text-align: center;
}
.quiz-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 60px;
}
.quiz-progress {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
}
.quiz-progress-bar {
    flex: 1;
    height: 3px;
    background: var(--warm-beige);
    border-radius: 2px;
    overflow: hidden;
    transition: background 0.3s var(--ease);
}
.quiz-progress-bar.active {
    background: var(--gold);
}
.quiz-progress-bar.completed {
    background: var(--gold);
}
.quiz-question-wrap {
    min-height: 0;
}
.quiz-question-wrap:empty {
    min-height: 0;
    margin: 0;
    padding: 0;
}
.quiz-question-wrap:not(:empty) {
    min-height: 320px;
}
.quiz-q-num {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.quiz-question {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.4;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border: 1px solid var(--warm-beige);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    background: var(--white);
}
.quiz-option:hover {
    border-color: var(--gold);
    background: var(--cream);
}
.quiz-option.selected {
    border-color: var(--gold);
    background: var(--gold-glow);
}
.quiz-option-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--sand);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    position: relative;
}
.quiz-option.selected .quiz-option-dot {
    border-color: var(--gold);
    background: var(--gold);
}
.quiz-option.selected .quiz-option-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--white);
}
.quiz-option-text {
    font-size: 0.95rem;
    color: var(--charcoal);
}
.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 16px;
}
.quiz-nav .btn { min-width: 140px; }

/* Quiz Result */
.quiz-result {
    text-align: center;
    padding: 20px 0;
}
.result-archetype-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--black);
    margin-bottom: 8px;
}
.result-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.result-desc {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.9;
    max-width: 560px;
    margin: 0 auto 32px;
}
.result-traits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}
.result-trait {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    background: var(--cream);
    color: var(--brown-dark);
    border-radius: 20px;
}
.result-palette {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}
.result-palette-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.result-tips {
    text-align: left;
    max-width: 480px;
    margin: 0 auto 32px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
}
.result-tips h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--black);
}
.result-tips li {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}
.result-tips li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 4px;
}
.result-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: var(--section-pad) 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
}
.contact-form-wrap {
    background: var(--white);
    padding: clamp(28px, 4vw, 48px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown-dark);
}
.form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 300;
    border: 1px solid var(--sand);
    background: var(--white);
    color: var(--charcoal);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B8A89A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color 0.3s var(--ease);
}
.form-select:focus { border-color: var(--gold); }
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 300;
    border: 1px solid var(--sand);
    background: var(--white);
    color: var(--charcoal);
    outline: none;
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
    transition: border-color 0.3s var(--ease);
    border-radius: 0;
}
.form-textarea:focus { border-color: var(--gold); }

.contact-info h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 28px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.info-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.info-item h4 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}
.info-item p {
    font-size: 0.85rem;
    color: var(--taupe);
    margin-bottom: 0;
}

/* FAQ */
.faq-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--warm-beige);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--black);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.faq-answer-inner {
    padding: 0 0 22px;
    font-size: 0.92rem;
    color: var(--taupe);
    line-height: 1.8;
}

/* ============================================
   FORM SUCCESS / ERROR / ANTI-SPAM
   ============================================ */
.form-success, .form-error {
    text-align: center;
    padding: 40px 20px;
}
.form-success i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}
.form-error i {
    font-size: 2.5rem;
    color: var(--error);
    margin-bottom: 16px;
    display: block;
}
.form-success h3, .form-error h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.form-success p, .form-error p {
    font-size: 0.9rem;
    color: var(--taupe);
}

/* Honeypot — completely hidden from humans */
.form-hp {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Spam shield badge */
.spam-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--taupe);
    margin-top: 12px;
    letter-spacing: 0.05em;
}
.spam-shield i {
    color: var(--success);
    font-size: 0.75rem;
}

/* Spinner */
#submitSpinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
#submitSpinner .fa-spin {
    animation: fa-spin 1s linear infinite;
}
@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .nav-cta-btn { display: none; }
    .nav-links { gap: clamp(10px, 1.5vw, 24px); }
    .nav-link { font-size: 0.72rem; letter-spacing: 0.1em; }
}

@media (max-width: 1100px) {
    .archetypes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .archetype-card:nth-child(4),
    .archetype-card:nth-child(5) {
        border-top: 1px solid rgba(201,169,110,0.15);
    }
}

@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-cta-btn { display: none; }
    .nav-toggle { display: flex; }

    .nav { padding: 14px 0; }
    .nav.scrolled { padding: 10px 0; }

    .essence-grid,
    .founder-grid,
    .newsletter-inner,
    .contact-grid { grid-template-columns: 1fr; }

    .both-grid { grid-template-columns: 1fr; gap: 20px; }
    .both-card { height: 380px; }
    .both-card-overlay {
        background: linear-gradient(180deg, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.5) 40%, rgba(26,26,26,0.88) 100%);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: span 1; }

    .services-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 50px; }

    .archetypes-grid { grid-template-columns: repeat(2, 1fr); }
    .archetype-card { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.15); }

    .service-detail { grid-template-columns: 1fr; gap: 28px; }
    .service-detail.reversed { direction: ltr; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); }

    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }

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

    .philosophy-pillars { grid-template-columns: 1fr; gap: 24px; }

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

    .essence-images {
        height: 400px;
    }

    .page-hero {
        height: 45vh;
        min-height: 300px;
    }

    /* Reduce section padding on tablets */
    .brand-essence,
    .archetypes,
    .gallery,
    .services-preview,
    .for-both,
    .newsletter,
    .values-section,
    .process-section,
    .service-detail-section,
    .pricing-section,
    .contact-section,
    .faq-section { padding: clamp(40px, 6vw, 80px) 0; }

    .section-header { margin-bottom: clamp(28px, 4vw, 50px); }

    .quiz-intro { padding-top: 100px !important; }
}

@media (max-width: 600px) {
    .hero { min-height: 100svh; height: 100svh; }
    .hero-content { padding: 0 20px; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
    .hero-title { font-size: clamp(2rem, 7.5vw, 3rem); line-height: 1.15; margin-bottom: 16px; }
    .hero-subtitle { font-size: 0.88rem; margin-bottom: 24px; max-width: 100%; padding: 0; line-height: 1.7; }
    .hero-subtitle br { display: none; }
    .hero-badge { font-size: 0.55rem; letter-spacing: 0.18em; margin-bottom: 16px; }
    .hero-badge::before, .hero-badge::after { width: 20px; }
    .hero-scroll { bottom: 16px; }
    .hero-scroll-line { height: 32px; }
    .hero-scroll span { font-size: 0.5rem; }

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

    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

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

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

    .contact-form .form-row { grid-template-columns: 1fr; }
    .newsletter-form .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-logo-img { height: 32px; }
    .footer-col h4 { margin-top: 8px; }

    .both-card { height: 360px; }
    .both-card-overlay {
        background: linear-gradient(180deg, rgba(26,26,26,0.15) 0%, rgba(26,26,26,0.85) 55%, rgba(26,26,26,0.95) 100%);
    }
    .both-card-content { padding: 20px; }
    .both-card-content h3 { font-size: 1.6rem; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
    .both-card-content p { font-size: 0.85rem; color: rgba(255,255,255,0.92); line-height: 1.6; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
    .link-arrow { text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

    .essence-images {
        height: 300px;
    }
    .essence-img-main { width: 80%; height: 65%; }
    .essence-img-accent { width: 60%; height: 45%; }

    .page-hero {
        height: 35vh;
        min-height: 240px;
    }
    .page-hero-content h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .page-hero-content p {
        font-size: 0.9rem;
    }

    .quiz-option {
        padding: 14px 16px;
    }
    .quiz-option-text {
        font-size: 0.85rem;
    }

    /* Reduce padding further on mobile */
    .brand-essence,
    .archetypes,
    .gallery,
    .services-preview,
    .for-both,
    .newsletter,
    .values-section,
    .process-section,
    .service-detail-section,
    .pricing-section,
    .contact-section,
    .faq-section { padding: clamp(36px, 8vw, 60px) 0; }

    .section-title { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
    .section-header { margin-bottom: clamp(24px, 4vw, 40px); }

    .quote-section { padding: clamp(50px, 10vw, 100px) 0; }
    .philosophy-section { padding: clamp(50px, 10vw, 100px) 0; }

    .nav { padding: 10px 0; }
    .nav.scrolled { padding: 8px 0; }
    .nav-logo-img { height: 26px; }
    .nav-inner { padding: 0 16px; }

    .btn { padding: 14px 28px; font-size: 0.7rem; }

    .container { padding: 0 20px; }

    .quiz-intro { padding-top: 80px !important; }

    .mobile-menu .mob-link { font-size: clamp(1.4rem, 5vw, 2rem); }

    .service-detail-content h3 { font-size: 1.4rem; }
    .service-detail-img img { height: 280px; }
    .service-detail { margin-bottom: 48px; }

    .archetype-card { padding: 24px 20px; }

    .newsletter-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    .contact-form-wrap { padding: 24px 20px; }

    .pricing-card { padding: 28px 20px; }
    .pricing-amount { font-size: 2.2rem; }

    .result-archetype-name { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .result-actions { flex-direction: column; align-items: center; }
    .result-actions .btn { width: 100%; max-width: 280px; }
}

/* Very small screens */
@media (max-width: 400px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.82rem; }
    .hero-content { padding: 0 16px; }
    .btn { padding: 12px 20px; font-size: 0.65rem; letter-spacing: 0.15em; }
    .section-title { font-size: 1.5rem; }
    .container { padding: 0 16px; }
    .quiz-container { padding: 0 16px 40px; }
    .archetype-card { padding: 20px 16px; }
    .footer-grid { gap: 20px; }
    .both-card { height: 340px; }
    .both-card-content h3 { font-size: 1.4rem; }
    .both-card-content p { font-size: 0.8rem; }
}

/* --- Smooth page transitions --- */
.page-transition {
    animation: pageIn 0.6s var(--ease-out);
}
@keyframes pageIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
