/* ============================================================
   AffinitiStyle — Main Stylesheet (v2 — Upgraded)
   Fonts: Playfair Display (headings) + Outfit (body/UI)
   Colors: Gold #C9A86C | Off-Black #0E0E0E | Warm Cream #F7F3ED
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --gold:        #C9A86C;
    --gold-light:  #DEBB88;
    --gold-dark:   #A07840;
    --black:       #0E0E0E;
    --black-soft:  #1A1918;
    --black-card:  #1E1D1C;
    --white:       #FFFFFF;
    --off-white:   #F7F3ED;
    --gray-light:  #ECE7DF;
    --text-dark:   #18171A;
    --text-muted:  #66594E;

    --nav-height:  72px;
    --section-pad: 120px;
    --container:   1280px;

    /* Spring-feel easing for all transitions */
    --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
    --transition:  300ms var(--ease-spring);
    --shadow-card: 0 24px 60px -16px rgba(14, 10, 5, 0.10);
    --shadow-gold: 0 8px 32px rgba(201, 168, 108, 0.28);
}


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

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in { opacity: 1 !important; transform: none !important; filter: none !important; }
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Film-grain overlay — adds premium texture to every surface */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

/* Skip navigation — keyboard accessibility */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10000;
    transition: top 200ms;
    letter-spacing: 0.05em;
}
.skip-nav:focus { top: 1rem; }

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

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

ul { list-style: none; }


/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    text-wrap: balance;
}

/* Pill-shaped eyebrow badge — replaces plain uppercase text */
.section-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 108, 0.10);
    border: 1px solid rgba(201, 168, 108, 0.28);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 60px;
}

.center { text-align: center; }
.center.section-subtitle {
    margin-left: auto;
    margin-right: auto;
}


/* ===== LAYOUT ===== */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: var(--section-pad) 0;
}


/* ===== BUTTONS ===== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

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

.btn-gold:active {
    transform: translateY(0) scale(0.98);
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:active {
    transform: scale(0.98);
}


/* ===== SCROLL FADE-IN ===== */

/* Scroll reveal — CSS handles the actual reveal so content is never
   permanently hidden if JS or Motion CDN fails to load. */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms var(--ease-spring), transform 600ms var(--ease-spring);
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Stagger siblings so they cascade in rather than all at once */
.fade-in:nth-child(2) { transition-delay: 80ms; }
.fade-in:nth-child(3) { transition-delay: 160ms; }
.fade-in:nth-child(4) { transition-delay: 240ms; }
.fade-in:nth-child(5) { transition-delay: 320ms; }
.fade-in:nth-child(6) { transition-delay: 400ms; }


/* ===== NAVBAR ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background-color: transparent;
    display: flex;
    align-items: center;
    transition: background-color var(--transition);
}

/* On scroll: full-width bar → floating glass pill */
.navbar.scrolled {
    background-color: transparent;
    box-shadow: none;
}

.navbar.scrolled .nav-container {
    background: rgba(16, 14, 13, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    max-width: 900px;
    padding: 0 20px;
    height: 52px;
    margin-top: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 400ms var(--ease-spring);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    flex-shrink: 0;
    cursor: pointer;
    transition: font-size var(--transition);
}

.navbar.scrolled .nav-logo { font-size: 1.5rem; }

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

.nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    transition: color var(--transition);
    cursor: pointer;
}

.nav-links a:hover              { color: var(--gold); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta {
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 0.68rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


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

.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('../images/salon.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--black-soft);
    overflow: hidden;
}

/* Directional overlay — dense on the left (text), opens up on right */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(14, 14, 14, 0.93) 0%,
        rgba(14, 14, 14, 0.76) 42%,
        rgba(14, 14, 14, 0.50) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 640px;
    padding: 0 32px 0 8%;
    padding-top: calc(var(--nav-height) + 20px);
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 108, 0.10);
    border: 1px solid rgba(201, 168, 108, 0.25);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 48px;
    max-width: 460px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Thin animated gold line — scroll signal */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 8%;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.4s ease infinite;
}

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


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

.about {
    background-color: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 32px 80px -20px rgba(14, 10, 5, 0.18);
}

.about-badge {
    position: absolute;
    bottom: -75px;
    right: -20px;
    width: 140px;
    /* Match the logo image's own light-grey background so no seam shows */
    background-color: #f7f7f7;
    line-height: 0;
    box-shadow: 0 20px 50px -12px rgba(14, 10, 5, 0.35);
}

/* Override the big photo rule (.about-image img) so the logo keeps its natural shape */
.about-image .about-badge img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.about-text .section-title { color: var(--black); }

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-text .btn { margin-top: 16px; }


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

.services {
    background-color: var(--white);
}

/* Asymmetric 2-column: primary card left (wider), right stack */
.services-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3px;
    background-color: var(--gray-light);
}

/* Right column — two cards stacked vertically */
.services-right {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.service-card {
    background-color: var(--off-white);
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background-color 350ms var(--ease-spring);
    cursor: pointer;
    height: 100%;
}

.service-card:hover {
    background-color: var(--black);
}

.service-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 4px;
    flex-shrink: 0;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    transition: color var(--transition);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    flex-grow: 1;
    transition: color var(--transition);
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    transition: color var(--transition);
}

.service-book {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    transition: color var(--transition);
    cursor: pointer;
}

.service-price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex-grow: 1;
}

.service-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding-bottom: 9px;
    transition: color var(--transition), border-color var(--transition);
    cursor: pointer;
}

.service-price-list li span:last-child {
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
    transition: color var(--transition);
}

.service-price-list li:hover { color: var(--gold-dark); }

.service-card:hover .service-price-list li {
    color: rgba(255, 255, 255, 0.62);
    border-bottom-color: rgba(255, 255, 255, 0.09);
}

.service-card:hover .service-price-list li span:last-child { color: var(--gold-light); }
.service-card:hover .service-price-list li:hover           { color: var(--gold-light); }
.service-card:hover h3,
.service-card:hover p    { color: rgba(255, 255, 255, 0.85); }
.service-card:hover .service-book { color: var(--gold); }

/* --- Service cart: selected rows + keyboard focus --- */
.service-price-list li { user-select: none; }   /* rapid clicking shouldn't highlight text */

.service-price-list li:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Selected = gold tick + heavier text + gold underline (not colour alone) */
.service-price-list li.is-selected {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}
.service-price-list li.is-selected span:first-child {
    font-weight: 600;
}
.service-price-list li.is-selected span:first-child::before {
    content: '\2713';
    margin-right: 8px;
    font-weight: 700;
}
/* Cards turn dark on hover, so selected rows switch to the lighter gold there */
.service-card:hover .service-price-list li.is-selected {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}


/* ===== CART TOAST (bottom-right pop-up) ===== */

.cart-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;                       /* above the navbar and cards */
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: min(320px, calc(100vw - 32px));
    padding: 14px 18px;
    background: var(--black-soft);
    border-left: 3px solid var(--gold);
    border-radius: 2px;
    box-shadow: 0 20px 50px -12px rgba(14, 10, 5, 0.45);
    font-family: 'Outfit', sans-serif;
    pointer-events: none;                /* never blocks clicks underneath */
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 250ms var(--ease-spring), transform 250ms var(--ease-spring);
}
.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.cart-toast strong {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--white);
}
.cart-toast span {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--gold);
}

@media (max-width: 768px) {
    .cart-toast { right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    .cart-toast { transition: none; transform: none; }
}


/* ===== PORTFOLIO ===== */

.portfolio {
    background-color: var(--black);
}

.portfolio .section-title    { color: var(--white); letter-spacing: -0.02em; }
.portfolio .section-subtitle { color: rgba(255, 255, 255, 0.50); }

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

.portfolio-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-item {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #251f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item .placeholder-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 168, 108, 0.35);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease-spring);
}

.portfolio-item:hover img { transform: scale(1.04); }


/* ===== TESTIMONIALS ===== */

.testimonials {
    background-color: var(--off-white);
}

/* Large editorial featured quote */
.testimonial-featured {
    background-color: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 64px 80px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.testimonial-featured .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 28px;
    display: block;
}

.testimonial-featured blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.65;
    max-width: 820px;
    margin: 0 auto 28px;
}

.testimonial-featured .testimonial-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    display: block;
}

/* Secondary 2-column row */
.testimonials-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    border-bottom: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stars {
    color: var(--gold);
    font-size: 0.88rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.85;
    flex-grow: 1;
    font-size: 0.97rem;
}

.testimonial-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.06em;
}


/* ===== COACHING BANNER ===== */

.coaching-banner {
    background-color: var(--black);
    padding: 100px 0;
    background-image:
        radial-gradient(ellipse 50% 80% at 5% 50%, rgba(201, 168, 108, 0.06) 0%, transparent 70%),
        linear-gradient(135deg, rgba(201, 168, 108, 0.03) 0%, transparent 60%);
}

.coaching-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.coaching-banner .section-title {
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}
.coaching-banner p {
    color: rgba(255, 255, 255, 0.58);
    max-width: 540px;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ===== INSTAGRAM ===== */

.instagram { background-color: var(--white); }

.instagram-follow {
    text-align: center;
    padding: 52px 0 16px;
}

.instagram-follow p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
}


/* ===== CONTACT ===== */

.contact {
    background-color: var(--black);
}

.contact .section-title { color: var(--white); letter-spacing: -0.02em; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 32px;
    font-size: 1.02rem;
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.68);
    transition: color var(--transition);
}

.contact-item a:hover { color: var(--gold); }

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Inline error shown above the Send button when a submission fails */
.form-error {
    margin: 0 0 16px;
    padding: 12px 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(217, 130, 111, 0.10);
    border-left: 3px solid #D9826F;
    border-radius: 2px;
}
.form-error a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.form-group input,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 3px;
    padding: 14px 16px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition), background-color var(--transition);
    resize: vertical;
    min-height: 44px;
}

.form-group input::placeholder,
/* Message box: roomy by default, grows with the pre-written message, capped so it never takes over the page */
.form-group textarea#message {
    min-height: 220px;
    max-height: 480px;
    line-height: 1.6;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background-color: rgba(201, 168, 108, 0.04);
    outline: 2px solid rgba(201, 168, 108, 0.18);
    outline-offset: 0;
}


/* ===== POLICIES ===== */

.policies {
    background-color: var(--off-white);
}

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

.policy-card {
    background-color: var(--white);
    padding: 40px 36px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-card);
}

.policy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.policy-card strong { color: var(--text-dark); }

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


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

.footer {
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.28);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    transition: color var(--transition);
    cursor: pointer;
}

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


/* ===== COACHING PAGE — SPECIFIC STYLES ===== */

.coaching-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    background-color: var(--black-soft);
    overflow: hidden;
    padding-top: var(--nav-height);
}

.coaching-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 5% 50%, rgba(201,168,108,0.07) 0%, transparent 65%),
        linear-gradient(135deg, rgba(201,168,108,0.04) 0%, transparent 55%);
}

.coaching-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 740px;
}

.coaching-hero .section-title {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: -0.025em;
}

.coaching-hero p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
}

.who-its-for {
    background-color: var(--off-white);
}

.who-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.who-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: var(--white);
    padding: 24px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
}

.who-item:hover { transform: translateX(4px); }

.who-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.who-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.modules {
    background-color: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 3px;
    background-color: var(--gray-light);
}

.module-card {
    background-color: var(--off-white);
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background-color 350ms var(--ease-spring);
    cursor: default;
}

.module-card:hover { background-color: var(--black); }
.module-card:hover .module-title  { color: var(--white); }
.module-card:hover .module-desc   { color: rgba(255,255,255,0.58); }
.module-card:hover .module-number { opacity: 0.85; }

.module-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.55;
    line-height: 1;
    flex-shrink: 0;
    min-width: 44px;
    transition: opacity var(--transition);
}

.module-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    transition: color var(--transition);
    letter-spacing: -0.01em;
}

.module-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.68;
    transition: color var(--transition);
}

.challenge-callout {
    background-color: var(--black);
    padding: 64px;
    border-left: 4px solid var(--gold);
    margin-top: 3px;
    background-image: radial-gradient(ellipse 40% 60% at 0% 50%, rgba(201,168,108,0.06) 0%, transparent 70%);
}

.challenge-callout h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.challenge-callout p {
    color: rgba(255,255,255,0.62);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 680px;
}

.coaching-about { background-color: var(--off-white); }

.coaching-cta {
    background-color: var(--off-white);
    text-align: center;
    padding: 120px 0;
}

.coaching-cta .section-title { margin-bottom: 16px; }
.coaching-cta p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.faq { background-color: var(--white); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--off-white);
    transition: background-color var(--transition);
}

.faq-item[open] { background-color: var(--white); }

.faq-item summary {
    padding: 24px 32px;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
    user-select: none;
}

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

.faq-item summary::after {
    content: '+';
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 350ms var(--ease-spring);
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary        { color: var(--gold); }

.faq-body {
    padding: 0 32px 28px;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.82;
}


/* ===== RESPONSIVE — Tablet (≤1024px) ===== */

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

    .services-grid      { grid-template-columns: 1fr; }
    .services-right     { flex-direction: row; }
    .services-right .service-card { flex: 1; }
    .testimonial-featured { padding: 48px; }
    .testimonials-secondary { grid-template-columns: 1fr; }
    .about-grid         { gap: 52px; }
    .modules-grid       { grid-template-columns: 1fr; }
    .contact-grid       { gap: 56px; }
}


/* ===== RESPONSIVE — Mobile (≤768px) ===== */

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

    .container { padding: 0 20px; }

    /* Navbar */
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background-color: rgba(14, 13, 12, 0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
        border-top: 1px solid rgba(255,255,255,0.07);
        z-index: 99;
    }

    .navbar.scrolled .nav-container {
        max-width: calc(100% - 32px);
        border-radius: 100px;
        height: 48px;
        margin-top: 8px;
    }

    .nav-links.open { display: flex; }
    .nav-links a    { font-size: 0.88rem; }
    .nav-cta        { display: none; }
    .hamburger      { display: flex; }

    /* Hero */
    .hero-content {
        padding: 0 20px;
        padding-top: calc(var(--nav-height) + 40px);
        max-width: 100%;
    }
    .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
    .hero-ctas  { flex-direction: column; align-items: flex-start; }
    .hero-ctas .btn { width: 100%; text-align: center; }
    .scroll-indicator { left: 50%; }

    /* About */
    .about-grid      { grid-template-columns: 1fr; }
    .about-image img { height: 420px; }
    .about-badge     { right: 0; bottom: -50px; width: 110px; }

    /* Services */
    .services-grid  { grid-template-columns: 1fr; }
    .services-right { flex-direction: column; }

    /* Portfolio */
    .portfolio-grid      { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid--two { grid-template-columns: 1fr; }

    /* Testimonials */
    .testimonial-featured   { padding: 40px 24px; }
    .testimonials-secondary { grid-template-columns: 1fr; }

    /* Coaching banner */
    .coaching-banner-inner { flex-direction: column; text-align: center; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    /* Footer */
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }

    /* Coaching page */
    .who-list       { grid-template-columns: 1fr; }
    .modules-grid   { grid-template-columns: 1fr; }
    .challenge-callout { padding: 40px 24px; }
    .coaching-cta   { padding: 80px 0; }
}


/* ===== RESPONSIVE — Small mobile (≤390px) ===== */

@media (max-width: 390px) {
    .hero-title            { font-size: 2.2rem; }
    .portfolio-grid        { grid-template-columns: 1fr; }
    .coaching-hero .section-title { font-size: 2rem; }
    .faq-item summary      { padding: 20px; }
    .faq-body              { padding: 0 20px 20px; }
    .testimonial-featured  { padding: 32px 20px; }
}
