/* ==========================================
   FLEXING BARBER — DARK LUXURY REDESIGN
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700;1,9..144,900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #C9A96E;
    --gold-light: #E2C88A;
    --gold-dark: #A07840;
    --ink: #0A0806;
    --ink-2: #111009;
    --ink-3: #1A1710;
    --ink-4: #242018;
    --smoke: #2E2920;
    --ash: #5A5346;
    --parchment: #F5F0E8;
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --text-muted: #8A8070;
    --text-dim: #6A6050;

    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body: 'Space Grotesk', 'Inter', system-ui, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);

    --section-pad: clamp(5rem, 10vw, 9rem);
    --radius: 4px;
    --radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }

/* ==========================================
   SKIP LINK - Accessibility
   ========================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ==========================================
   ARIA LIVE REGIONS
   ========================================== */
[aria-live="polite"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   UTILITIES
   ========================================== */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.gold { color: var(--gold); }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn--gold {
    background: var(--gold);
    color: var(--ink);
}
.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201,169,110,0.35);
}

.btn--outline {
    background: transparent;
    color: var(--parchment);
    border: 1px solid rgba(201,169,110,0.35);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255,255,255,0.06);
    color: var(--parchment);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

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

.btn--full { width: 100%; }

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out-expo);
}
.btn:hover svg { transform: translateX(3px); }

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.5s 0.2s forwards;
}

.preloader__bar {
    width: 120px;
    height: 1px;
    background: rgba(201,169,110,0.2);
    position: relative;
    overflow: hidden;
}
.preloader__bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--gold);
    animation: loadBar 1.2s var(--ease-out-expo) 0.3s forwards;
}

@keyframes loadBar {
    to { left: 0; }
}

.preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,8,6,0.95) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.header--scrolled {
    padding: 1rem 0;
    background: rgba(10,8,6,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201,169,110,0.12);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
    flex-shrink: 0;
}
.logo span { color: var(--gold); }
.logo:hover { color: var(--gold); }

.nav__list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.7);
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.burger {
    width: 32px;
    height: 20px;
    position: relative;
    z-index: 1001;
    display: none;
}
.burger span,
.burger::before,
.burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: var(--parchment);
    transition: all 0.3s var(--ease-out-expo);
    border-radius: 2px;
    left: 0;
}
.burger::before { top: 0; }
.burger span { top: 50%; transform: translateY(-50%); }
.burger::after { bottom: 0; }

.burger[aria-expanded="true"] span { opacity: 0; transform: scaleX(0); }
.burger[aria-expanded="true"]::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger[aria-expanded="true"]::after { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 991px) {
    .burger { display: flex; }
    .nav {
        position: fixed;
        inset: 0;
        background: var(--ink-2);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out-expo);
        z-index: 998;
        padding: 6rem 1.5rem 2rem;
    }
    .nav--open { opacity: 1; visibility: visible; }
    .nav__list { 
        flex-direction: column; 
        gap: 1.75rem;
        text-align: center;
    }
    .nav__link { font-size: 1.25rem; letter-spacing: 0.15em; }
    .header__cta { display: none !important; }
    .header { padding: 1rem 0; }
    .header__inner { gap: 1rem; }
}
@media (min-width: 992px) {
    .nav { display: flex; }
    .header__cta { display: inline-flex; }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    height: 100dvh;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.06);
    animation: heroScale 18s var(--ease-in-out-quart) infinite alternate;
}

@keyframes heroScale {
    from { transform: scale(1.06); }
    to { transform: scale(1.0); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,8,6,1) 0%,
        rgba(10,8,6,0.75) 35%,
        rgba(10,8,6,0.2) 65%,
        rgba(10,8,6,0.5) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: clamp(3rem, 8vw, 6rem);
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s 0.4s var(--ease-out-expo) forwards;
}

.hero__eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__eyebrow-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
    max-width: 13ch;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s 0.6s var(--ease-out-expo) forwards;
}

@media (max-width: 480px) {
    .hero__title { font-size: clamp(2rem, 12vw, 2.75rem); max-width: 100%; }
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero__subtitle {
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    color: rgba(245,240,232,0.7);
    max-width: 42ch;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s 0.85s var(--ease-out-expo) forwards;
}

@media (max-width: 480px) {
    .hero__subtitle { max-width: 100%; font-size: 1rem; }
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s 1.05s var(--ease-out-expo) forwards;
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; justify-content: center; }
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,169,110,0.15);
    opacity: 0;
    animation: fadeIn 0.8s 1.3s forwards;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.35rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.hero__scroll-text {
    writing-mode: vertical-rl;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__scroll-bar {
    width: 1px;
    height: 48px;
    background: rgba(201,169,110,0.3);
    position: relative;
    overflow: hidden;
}

.hero__scroll-bar::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2s 1.5s var(--ease-in-out-quart) infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.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; }

/* ==========================================
   QUIZ / FUNNEL SECTION
   ========================================== */
.quiz-section {
    padding: var(--section-pad) 0;
    background: var(--ink-2);
    position: relative;
    overflow: hidden;
}

.quiz-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.quiz-section::after {
    content: '"';
    position: absolute;
    top: -2rem;
    right: 5%;
    font-family: var(--font-display);
    font-size: 20rem;
    color: rgba(201,169,110,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Intro State */
.quiz__intro {
    max-width: 780px;
    margin: 0 auto;
}

.quiz__intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .quiz__intro-content { text-align: center; }
    .quiz__trust { justify-content: center; }
    .quiz__intro-actions { align-items: center; }
}

.quiz__intro-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
}
.quiz__intro-title em { font-style: italic; color: var(--gold); }

.quiz__intro-desc {
    color: rgba(245,240,232,0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.quiz__trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,169,110,0.12);
}

.quiz__trust-avatars {
    display: flex;
}
.quiz__trust-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: 2px solid var(--ink-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink);
    margin-left: -8px;
}
.quiz__trust-avatars span:first-child { margin-left: 0; }

.quiz__trust-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.quiz__trust-text strong { color: var(--parchment); }

.quiz__intro-visual {
    position: relative;
}

.quiz__intro-card {
    background: var(--ink-3);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.quiz__intro-card-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.quiz__intro-card-step:last-child { border-bottom: none; padding-bottom: 0; }
.quiz__intro-card-step:first-child { padding-top: 0; }

.quiz__step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.quiz__step-text {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.4;
}
.quiz__step-text strong { color: var(--parchment); display: block; }

.quiz__intro-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .quiz__intro-actions { align-items: center; }
}

/* Quiz Active State */
.quiz__active {
    max-width: 680px;
    margin: 0 auto;
    display: none;
}

.quiz__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.quiz__step-indicator {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.quiz__progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.08);
    margin: 0 2rem;
    border-radius: 2px;
    overflow: hidden;
}

.quiz__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 2px;
    transition: width 0.5s var(--ease-out-expo);
    width: 0%;
}

.quiz__skip-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.quiz__skip-link:hover { color: var(--gold); }

.quiz__card {
    background: var(--ink-3);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3rem);
    animation: cardIn 0.5s var(--ease-out-expo);
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.quiz__question-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.quiz__question-title {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.quiz__question-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.quiz__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

.quiz__option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.25rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.25s var(--ease-out-expo);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.quiz__option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.08), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.quiz__option:hover {
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.05);
}
.quiz__option:hover::before { opacity: 1; }

.quiz__option.selected {
    border-color: var(--gold);
    background: rgba(201,169,110,0.08);
}
.quiz__option.selected::before { opacity: 1; }

.quiz__option-check {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    font-size: 0.625rem;
    color: transparent;
}
.quiz__option.selected .quiz__option-check {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    font-size: 0.75rem;
}

.quiz__option-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.quiz__option-label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.2;
}

.quiz__option-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

.quiz__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.75rem;
    gap: 1rem;
}

.quiz__nav .btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Quiz Result */
.quiz__result {
    max-width: 680px;
    margin: 0 auto;
    display: none;
    animation: cardIn 0.6s var(--ease-out-expo);
}

.quiz__result-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--ink-3);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.quiz__result-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.quiz__result-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 0 0 8px rgba(201,169,110,0.12), 0 0 0 16px rgba(201,169,110,0.05);
}

.quiz__result-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.quiz__result-desc {
    font-size: 1rem;
    color: rgba(245,240,232,0.6);
    max-width: 45ch;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 300;
}

.quiz__result-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quiz__result-service {
    background: var(--ink-3);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s;
}
.quiz__result-service:hover { border-color: var(--gold); }

.quiz__result-service-name {
    font-weight: 600;
    color: var(--parchment);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.quiz__result-service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.quiz__result-service-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.quiz__result-tips {
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.quiz__result-tips h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.quiz__result-tips ul {
    display: grid;
    gap: 0.75rem;
}

.quiz__result-tips li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(245,240,232,0.75);
}

.quiz__result-tips li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.625rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.quiz__result-cta {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: center;
}

.quiz__restart {
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    margin-top: 1rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.quiz__restart:hover { color: var(--gold); }

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

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}
.about__image-frame:hover .about__img { transform: scale(1.04); }

.about__image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.5) 0%, transparent 60%);
}

.about__badge {
    position: absolute;
    bottom: -1rem;
    right: 0.5rem;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(201,169,110,0.4);
}

@media (max-width: 768px) {
    .about__badge {
        bottom: -0.5rem;
        right: 0.5rem;
        width: 80px;
        height: 80px;
    }
    .about__badge-num { font-size: 1.25rem; }
    .about__badge-text { font-size: 0.5rem; max-width: 70px; }
}

@media (max-width: 480px) {
    .about__badge {
        right: 0;
        bottom: -0.5rem;
    }
}

.about__badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.about__badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(10,8,6,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.3;
    max-width: 80px;
}

@media (max-width: 768px) {
    .about__content { text-align: center; }
    .about__content .btn { margin: 0 auto; display: flex; width: fit-content; }
}

.about__title {
    margin-bottom: 1.5rem;
}

.about__desc {
    font-size: 1.0625rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about__philosophy {
    padding: 1.5rem;
    border-left: 2px solid var(--gold);
    background: rgba(201,169,110,0.05);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin-bottom: 2.5rem;
}

.about__philosophy p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--parchment);
    line-height: 1.5;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
    .about__features { grid-template-columns: 1fr; text-align: left; max-width: 280px; margin: 0 auto 2rem; }
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(245,240,232,0.75);
}

.about__feature::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.625rem;
    flex-shrink: 0;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    padding: var(--section-pad) 0;
    background: var(--ink-2);
    position: relative;
}

.services__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(201,169,110,0.08);
    border: 1.5px solid rgba(201,169,110,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    background: var(--ink-2);
    padding: 2rem;
    position: relative;
    transition: background 0.3s;
    cursor: default;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    background: var(--ink-3);
}
.service-card:hover::after { opacity: 1; }

.service-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    filter: brightness(0.85) saturate(0.8);
    transition: filter 0.4s;
}
.service-card:hover .service-card__image { filter: brightness(1) saturate(1); }

.service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.service-card__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.service-card__badge {
    background: var(--gold);
    color: var(--ink);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-card__desc {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.service-card__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.service-card__duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.service-card__duration::before {
    content: '⏱';
    font-size: 0.875rem;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--ink);
}

.gallery__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.gallery__item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
    cursor: pointer;
    background: var(--ink-3);
}

.gallery__item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 5; }
.gallery__item:nth-child(3) { grid-column: span 5; }
.gallery__item:nth-child(4) { grid-column: span 4; }
.gallery__item:nth-child(5) { grid-column: span 4; }
.gallery__item:nth-child(6) { grid-column: span 4; }

.gallery__img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.7);
    transition: all 0.6s var(--ease-out-expo);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery__item-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s;
}

.gallery__item:hover .gallery__img { filter: brightness(1) saturate(1); transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover .gallery__item-title { opacity: 1; transform: none; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--ink-2);
}

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

.testimonial-card {
    background: var(--ink-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
    border-color: rgba(201,169,110,0.2);
    transform: translateY(-4px);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 0.8;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-card__star {
    color: var(--gold);
    font-size: 0.875rem;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 300;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201,169,110,0.25);
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9375rem;
}

.testimonial-card__role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: clamp(5rem, 12vw, 10rem) 0;
    overflow: hidden;
    text-align: center;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
}

.cta-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,8,6,0.92) 0%,
        rgba(10,8,6,0.75) 50%,
        rgba(10,8,6,0.92) 100%
    );
}

.cta-section__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}
.cta-section__title em { color: var(--gold); font-style: italic; }

.cta-section__subtitle {
    font-size: 1.0625rem;
    color: rgba(245,240,232,0.6);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

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

@media (max-width: 480px) {
    .cta-section__actions { flex-direction: column; align-items: stretch; padding: 0 1rem; }
    .cta-section__actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
    padding: var(--section-pad) 0;
    background: var(--ink);
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(3rem, 6vw, 6rem);
    margin-top: 2rem;
    align-items: start;
}

.faq__sidebar .section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }

@media (max-width: 768px) {
    .faq__sidebar { text-align: center; }
    .faq__sidebar .btn { margin: 0 auto; display: flex; width: fit-content; }
}

.faq__sidebar-desc {
    font-size: 0.9375rem;
    color: rgba(245,240,232,0.5);
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
}

.accordion__item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
}

.accordion__trigger {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    color: var(--parchment);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s;
}
.accordion__trigger:hover { color: var(--gold); }

.accordion__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    transition: all 0.3s var(--ease-out-expo);
}

.accordion__item.is-open .accordion__icon {
    background: var(--gold);
    color: var(--ink);
    transform: rotate(45deg);
}

.accordion__body {
    height: 0;
    overflow: hidden;
    transition: height 0.4s var(--ease-out-expo);
}

@media (max-width: 480px) {
    .accordion__trigger { padding: 1.25rem 0; font-size: 0.875rem; }
}

.accordion__content {
    padding-bottom: 1.5rem;
    font-size: 0.9375rem;
    color: rgba(245,240,232,0.55);
    line-height: 1.75;
    font-weight: 300;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: var(--section-pad) 0;
    background: var(--ink-2);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 6vw, 6rem);
    margin-top: 3.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact__info { text-align: center; }
    .contact__info .btn { margin: 0 auto; display: flex; width: fit-content; }
    .contact__items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        justify-items: center;
    }
    .contact__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    .contact__item-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact__items {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.contact__info-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.contact__info-subtitle {
    font-size: 0.9375rem;
    color: rgba(245,240,232,0.5);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact__items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact__item-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.contact__item-value {
    font-size: 0.9375rem;
    color: rgba(245,240,232,0.75);
    line-height: 1.4;
    font-weight: 300;
}

.contact__item-value a {
    transition: color 0.2s;
}
.contact__item-value a:hover { color: var(--gold); }

.contact__social {
    display: flex;
    gap: 0.75rem;
}

.contact__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}
.contact__social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,110,0.08);
}

/* Form */
.contact__form {
    background: var(--ink-3);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 480px) {
    .contact__form { padding: 1.25rem; }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}
.form-row .form-group { margin-bottom: 0; }
.form-row { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--parchment);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201,169,110,0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(245,240,232,0.2);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    color: var(--parchment);
}

.form-select option {
    background: var(--ink-3);
    color: var(--parchment);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn--submit {
    width: 100%;
    padding: 1.125rem;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    position: relative;
}

.btn--submit .btn-text { transition: opacity 0.2s; }
.btn--submit.is-loading .btn-text { opacity: 0; }
.btn--submit.is-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10,8,6,0.3);
    border-top-color: var(--ink);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}
.form-success.show { display: block; animation: cardIn 0.5s var(--ease-out-expo); }

.form-success__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    box-shadow: 0 0 0 12px rgba(201,169,110,0.1);
}

.form-success__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.form-success__text {
    font-size: 0.9375rem;
    color: rgba(245,240,232,0.55);
    font-weight: 300;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--ink);
    border-top: 1px solid rgba(201,169,110,0.1);
}

.footer__main {
    padding: 4rem 0 3rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .footer__brand { text-align: center; }
    .footer__brand-desc { margin: 0 auto; }
}

.footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.footer__brand-name span { color: var(--gold); }

.footer__brand-tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer__brand-desc {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.35);
    line-height: 1.7;
    font-weight: 300;
    max-width: 30ch;
}

.footer__nav-title {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .footer__nav-list {
        text-align: center;
    }
}

.footer__nav-link {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.45);
    transition: color 0.2s;
}
.footer__nav-link:hover { color: var(--gold); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.25);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

/* ==========================================
   COOKIE CONSENT
   ========================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink-2);
    border-top: 1px solid rgba(201,169,110,0.2);
    padding: 1.25rem 0;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.cookie-consent--visible {
    transform: translateY(0);
}

.cookie-consent[aria-hidden="true"] {
    pointer-events: none;
}

.cookie-consent__content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-consent__text p {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.5;
    margin: 0;
}

.cookie-consent__link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__link:hover {
    color: var(--gold-light);
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent__actions {
        width: 100%;
    }
    .cookie-consent__btn {
        flex: 1;
    }
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.wa-float {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 500;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.45);
    transition: all 0.3s var(--ease-out-expo);
    animation: waPulse 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .wa-float {
        bottom: 2rem;
        right: 2rem;
        width: 56px;
        height: 56px;
    }
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__item:nth-child(1) { grid-column: span 12; grid-row: span 1; }
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3) { grid-column: span 6; }
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(5),
    .gallery__item:nth-child(6) { grid-column: span 4; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .footer__brand { grid-column: span 2; }
    .about__badge { right: -0.5rem; }
}

@media (max-width: 768px) {
    .about__grid { grid-template-columns: 1fr; }
    .about__image-wrap { max-width: 400px; margin: 0 auto; }
    .services__header { flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
    .services__header .btn { margin: 0 auto; }
    .services__grid { grid-template-columns: 1fr; }
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery__item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery__item:nth-child(1) .gallery__img { min-height: 250px; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .testimonials .section-header { text-align: center; }
    .faq__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .gallery__header { flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
    .gallery__header .btn { margin: 0 auto; }
    .quiz__options { grid-template-columns: 1fr; }
    .quiz__intro-grid { grid-template-columns: 1fr; }
    .quiz__intro-visual { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__brand { grid-column: span 1; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .hero__stats { flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.5rem; justify-content: center; }
    .hero__stat { text-align: center; }
    .hero__scroll { display: none; }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

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