/* ==============================================
   CIARA DALY BEAUTY & ACADEMY
   Editorial Luxury Hospitality
   with Soft Neo-Brutalist Touches
   ============================================== */

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

:root {
    --cream: #FAF6F0;
    --cream-dark: #F0EBE3;
    --charcoal: #1A1714;
    --gold: #B8945A;
    --gold-light: #D4B87A;
    --muted: #7A756E;
    --white: #FAF6F0;

    --border-thick: 3px solid var(--charcoal);
    --border-thin: 1px solid var(--charcoal);
    --border-muted: 1px solid rgba(26, 23, 20, 0.12);

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1280px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--charcoal);
    overscroll-behavior: none;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--charcoal);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.preloader-active {
    overflow: hidden;
}


/* ==============================================
   PRELOADER
   ============================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.preloader::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--charcoal);
}

.preloader-exit {
    animation: preloader-lift 0.85s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes preloader-lift {
    to {
        transform: translateY(-100%);
    }
}

.preloader-inner {
    text-align: center;
}

/* Gold line — draws from center like a precise artist's stroke */
.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    margin: 0 auto 1.6rem;
    animation: preloader-stroke 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes preloader-stroke {
    to { width: 56px; }
}

/* Brand name — mask reveal, rising into frame */
.preloader-name-mask {
    overflow: hidden;
    padding-bottom: 3px;
}

.preloader-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--charcoal);
    text-transform: uppercase;
    transform: translateY(120%);
    animation: preloader-rise 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes preloader-rise {
    to { transform: translateY(0); }
}

/* Subtitle — fades in with letter-spacing settling into place */
.preloader-sub {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.5em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 0.35rem;
    opacity: 0;
    animation: preloader-settle 0.5s var(--ease) 0.95s forwards;
}

@keyframes preloader-settle {
    to {
        opacity: 1;
        letter-spacing: 0.32em;
    }
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

figure {
    margin: 0;
}


/* --- Typography Scale --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

h1 em {
    font-style: italic;
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: -0.01em;
    line-height: 1.12;
}

h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    line-height: 1.25;
}

h4 {
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

p {
    font-size: 0.92rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.75;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--muted);
    display: inline-block;
}


/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}


/* --- Section Label (Editorial Numbering) --- */
.section-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--muted);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: var(--border-muted);
    display: inline-block;
}


/* --- Section Header --- */
.section-header {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 640px;
}

.section-header h2 {
    margin-bottom: 1.2rem;
}

.section-header p {
    line-height: 1.8;
}


/* =========================================
   HEADER / NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--cream);
    border-bottom: 1px solid rgba(26, 23, 20, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.header-hidden {
    transform: translateY(-100%);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--charcoal);
}

.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a.active::after {
    background: var(--gold);
}

.btn-book {
    display: inline-block;
    background: var(--charcoal);
    color: var(--cream);
    border: 1.5px solid var(--charcoal);
    padding: 0.58rem 1.5rem;
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.btn-book:hover {
    background: var(--gold);
    color: var(--cream);
    border-color: var(--gold);
}

.btn-book::after {
    display: none !important;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.35s var(--ease);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}


/* =========================================
   HERO — Buttons (shared)
   ========================================= */
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.85rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border: 2px solid var(--gold);
    text-align: center;
    cursor: pointer;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--charcoal);
    padding: 0.85rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border: 2px solid var(--charcoal);
    text-align: center;
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================
   HERO — EDITORIAL APPOINTMENT COVER
   One goal: book an appointment. Face-visible portrait, warm grade.
   Calm cream canvas · charcoal type · restrained luxe.
   ========================================= */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    padding: clamp(1.5rem, 3.5vh, 2.5rem) 0 clamp(1.5rem, 4vh, 3rem);
    background: var(--cream);
    overflow: hidden;
    isolation: isolate;
}

/* Tiny warm atmosphere so the canvas has depth */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(900px 600px at 8% 0%, rgba(184, 148, 90, 0.07), transparent 60%),
        radial-gradient(800px 500px at 100% 100%, rgba(184, 148, 90, 0.04), transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
    min-height: calc(100vh - 80px - 4.5rem);
}

/* ---------- Copy column ---------- */
.hero-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vh, 1.5rem);
    max-width: 620px;
}

.hero-copy-top,
.hero-copy-bottom {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vh, 1.5rem);
}

/* Mobile-only trust line — hidden on desktop (the richer .hero-proof covers it) */
.hero-trustline {
    display: none;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.02rem;
    color: var(--gold);
    letter-spacing: 0.01em;
    margin-bottom: 0.1rem;
}

.hero-kicker-rule {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.018em;
    color: var(--charcoal);
    margin: 0.2rem 0 0.4rem;
    max-width: 14ch;
}

.hero-amp {
    font-style: italic;
    color: var(--gold);
    margin: 0 0.05em;
    font-weight: 400;
}

.hero-headline-line {
    display: block;
}

.hero-headline-tail {
    display: block;
    color: var(--charcoal);
    font-weight: 400;
    margin-top: 0.08em;
}

.hero-lede {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.62;
    color: rgba(26, 23, 20, 0.8);
    max-width: 48ch;
    margin: 0.1rem 0 0.4rem;
}

.hero-lede strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ---------- CTAs ---------- */
.hero-ctas {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--charcoal);
    color: var(--cream);
    padding: 1.2rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: 1.5px solid var(--charcoal);
    text-decoration: none;
    overflow: hidden;
    transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
    z-index: 0;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform 0.55s var(--ease-out);
    z-index: -1;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
    transform: translateY(0);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    border-color: var(--gold);
}

.btn-primary-arrow {
    display: inline-block;
    font-size: 0.95rem;
    transition: transform 0.45s var(--ease-out);
}

.btn-primary:hover .btn-primary-arrow,
.btn-primary:focus-visible .btn-primary-arrow {
    transform: translateX(6px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--charcoal);
    padding: 1.2rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    border: 1px solid rgba(26, 23, 20, 0.28);
    text-decoration: none;
    transition: border-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: var(--charcoal);
    color: var(--gold);
}

/* ---------- Social proof — two bold, readable items ---------- */
.hero-proof {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem 1.8rem;
    margin: clamp(1rem, 2.5vh, 1.6rem) 0 0;
    padding-top: clamp(1.1rem, 2.5vh, 1.6rem);
    border-top: 1px solid rgba(26, 23, 20, 0.16);
}

.hero-proof-item {
    display: contents;
}

.hero-proof-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 3vw, 3rem);
    line-height: 0.95;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    align-self: center;
}

.hero-proof-num sup {
    font-size: 0.4em;
    color: var(--gold);
    margin-left: 2px;
    font-weight: 400;
    top: -0.8em;
    font-style: italic;
}

.hero-proof-lbl {
    margin: 0;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-proof-headline {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--charcoal);
}

.hero-proof-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--muted);
}

.hero-proof-item--featured .hero-proof-num {
    color: var(--charcoal);
}

.hero-proof-item--featured .hero-proof-headline {
    color: var(--charcoal);
}

/* ---------- Portrait column — warm editorial grade ---------- */
.hero-figure {
    position: relative;
    margin: 0;
    justify-self: end;
    align-self: center;
    width: 100%;
    max-width: 540px;
    display: flex;
    align-items: center;
}

.hero-figure-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1034 / 1600;   /* exact source ratio — virtually no crop */
    max-height: calc(100vh - 80px - 5rem);
    overflow: hidden;
    background: var(--cream-dark);
    isolation: isolate;
    box-shadow:
        0 0 0 1px rgba(26, 23, 20, 0.06),
        0 50px 90px -40px rgba(26, 23, 20, 0.38),
        0 14px 30px -16px rgba(26, 23, 20, 0.22);
}

.hero-figure-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;   /* favors head + shoulders */
    display: block;
    /* Warm editorial grade — lifts a flat studio snap toward magazine feel */
    filter:
        saturate(0.78)
        contrast(1.09)
        brightness(0.99)
        sepia(0.08);
    transition: transform 2.4s var(--ease-out), filter 1.2s var(--ease-out);
}

.hero-figure:hover .hero-figure-frame img {
    transform: scale(1.025);
}

/* Warm tint + vignette overlay — the grade is the polish */
.hero-figure-grade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(26, 23, 20, 0.0) 55%,
            rgba(26, 23, 20, 0.18) 85%,
            rgba(26, 23, 20, 0.38) 100%),
        radial-gradient(120% 80% at 50% 40%,
            rgba(184, 148, 90, 0.0) 55%,
            rgba(26, 23, 20, 0.18) 100%),
        linear-gradient(180deg,
            rgba(212, 184, 122, 0.09) 0%,
            rgba(26, 23, 20, 0.00) 40%);
    mix-blend-mode: multiply;
}

/* Vertical rail caption — integrated, elegant, not a badge */
.hero-figure-rail {
    position: absolute;
    top: 0;
    left: -1.4rem;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.06em;
    white-space: nowrap;
    pointer-events: none;
}

.hero-figure-rail-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    writing-mode: horizontal-tb;
}

/* ---------- Entrance ---------- */
.hero-copy-top > *,
.hero-copy-bottom > *   { animation: heroCopyUp 0.85s var(--ease-out) both; }
.hero-copy-top > *:nth-child(1)    { animation-delay: 0.15s; }
.hero-copy-top > *:nth-child(2)    { animation-delay: 0.28s; }
.hero-copy-top > *:nth-child(3)    { animation-delay: 0.40s; }
.hero-copy-top > *:nth-child(4)    { animation-delay: 0.52s; }
.hero-copy-bottom > *:nth-child(1) { animation-delay: 0.62s; }
.hero-copy-bottom > *:nth-child(2) { animation-delay: 0.74s; }
.hero-figure-frame      { animation: heroFrameIn 1.15s var(--ease-out) 0.25s both; }
.hero-figure-rail       { animation: heroFadeIn  0.9s var(--ease-out) 1s both; }

@keyframes heroCopyUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFrameIn {
    from { opacity: 0; clip-path: inset(0 0 100% 0); }
    to   { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* =========================================
   TICKER / MARQUEE
   ========================================= */
.ticker {
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    padding: 1.15rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: var(--cream);
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: tickerScroll 35s linear infinite;
    will-change: transform;
}

.ticker-track span {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--charcoal);
}

.ticker-track .dot {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-33.333%); }
}


/* =========================================
   ABOUT
   ========================================= */
.about {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: var(--border-thick);
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-text {
    padding: clamp(2.5rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: var(--border-thick);
}

.about-text .eyebrow {
    margin-bottom: 1.5rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.05rem;
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.about-text > p {
    margin-bottom: 1rem;
}

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

.stat-item {
    border-top: var(--border-thick);
    padding-top: 1.5rem;
    padding-right: 1rem;
}

.stat-item .number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.stat-item .label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}


/* =========================================
   SERVICES — Editorial Index
   ========================================= */
.services {
    padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(4rem, 6vw, 6rem);
    background: var(--cream-dark);
    position: relative;
}

/* Faint vertical hairline on far right as editorial marginalia */
.services::after {
    content: '';
    position: absolute;
    top: clamp(3rem, 6vw, 5rem);
    right: clamp(1.5rem, 3vw, 2.5rem);
    width: 1px;
    height: clamp(60px, 8vw, 100px);
    background: rgba(26, 23, 20, 0.15);
    pointer-events: none;
}

/* --- Header --- */
.services-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services-header-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    border-bottom: 1px solid rgba(26, 23, 20, 0.16);
}

.services-header-label {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.services-header-aside {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: var(--muted);
    letter-spacing: 0.005em;
    white-space: nowrap;
}

.services-header-aside-rule {
    display: block;
    width: clamp(28px, 5vw, 56px);
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.services-header-main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: clamp(2rem, 4.5vw, 4.5rem);
    align-items: end;
}

.services-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.012em;
    margin: 0;
    color: var(--charcoal);
    max-width: 13ch;
}

.services-headline em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.services-lede {
    font-size: clamp(0.92rem, 1vw, 0.98rem);
    line-height: 1.75;
    color: var(--muted);
    max-width: 40ch;
    margin: 0;
    padding-left: clamp(0rem, 2vw, 1.75rem);
    border-left: 1px solid rgba(26, 23, 20, 0.18);
}

/* --- Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: var(--border-thick);
    border-left: var(--border-thick);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-right: var(--border-thick);
    border-bottom: var(--border-thick);
    background: var(--cream);
    transition: background 0.5s var(--ease-out);
}

.service-card:hover {
    background: #F7F2EA;
}

/* --- Media --- */
.service-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: 44vh;
    border-bottom: var(--border-thick);
    flex-shrink: 0;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1.4s var(--ease-out), filter 0.8s var(--ease-out);
    will-change: transform;
}

.service-card:hover .service-media img {
    transform: scale(1.035);
}

/* --- Body --- */
.card-body {
    position: relative;
    padding: clamp(2rem, 3.4vw, 2.75rem) clamp(1.6rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.25rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Numbered plate — tabs across the seam between image and body */
.service-plate {
    position: absolute;
    top: 0;
    left: clamp(1.4rem, 3vw, 2rem);
    transform: translateY(-50%);
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem 0.5rem;
    background: var(--cream);
    border: 1px solid var(--charcoal);
    line-height: 1;
    z-index: 3;
    transition: transform 0.55s var(--ease-out), background 0.5s var(--ease-out);
    pointer-events: none;
}

.service-card:hover .service-plate {
    background: var(--cream-dark);
    transform: translateY(-50%) translateY(-2px);
}

.service-plate-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

.service-plate-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.01em;
}

/* Kicker — small rule + eyebrow */
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.card-kicker-rule {
    display: block;
    width: clamp(18px, 3vw, 28px);
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.85rem, 2.4vw, 2.3rem);
    line-height: 1.05;
    letter-spacing: -0.008em;
    margin: 0;
    color: var(--charcoal);
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.7s var(--ease-out);
}

.service-card:hover .card-title::after {
    width: clamp(28px, 4.5vw, 44px);
}

.card-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.4;
    color: var(--muted);
    margin: 1.15rem 0 1.1rem;
    max-width: 22ch;
}

.card-tagline em {
    font-style: italic;
}

.card-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.72;
    color: var(--charcoal);
    margin: 0 0 1.9rem;
    flex: 1;
    max-width: 34ch;
}

/* Refined link */
.card-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    align-self: flex-start;
    margin-top: auto;
    padding-bottom: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    isolation: isolate;
}

.card-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background: var(--charcoal);
    transform-origin: left center;
    transition: transform 0.45s var(--ease-out);
}

.service-card:hover .card-link::after {
    animation: card-link-swap 0.75s var(--ease-out) forwards;
}

@keyframes card-link-swap {
    0%   { transform: scaleX(1); transform-origin: right center; }
    45%  { transform: scaleX(0); transform-origin: right center; }
    55%  { transform: scaleX(0); transform-origin: left center; }
    100% { transform: scaleX(1); transform-origin: left center; }
}

.card-link-arrow {
    display: inline-flex;
    width: 22px;
    line-height: 0;
    color: var(--charcoal);
    transform: translateX(0);
    transition: transform 0.45s var(--ease-out), color 0.45s var(--ease-out);
}

.card-link-arrow svg {
    width: 100%;
    height: auto;
    display: block;
}

.service-card:hover .card-link-arrow {
    transform: translateX(6px);
    color: var(--gold);
}

/* Section-level CTA */
.services .section-cta {
    margin-top: clamp(2.25rem, 4vw, 3.25rem);
    text-align: center;
}

.price {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}


/* =========================================
   ACADEMY
   ========================================= */
.academy {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2rem);
}

.academy-card {
    border: var(--border-thick);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 38vh;
    border-bottom: var(--border-thick);
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.card-content {
    padding: clamp(1.5rem, 3vw, 2rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    border: 1.5px solid var(--charcoal);
    padding: 0.28rem 0.75rem;
    margin-bottom: 1rem;
}

/* Flagship tag in course list */
.course-list-item:first-child .tag {
    border-color: var(--gold);
    color: var(--gold);
}

.card-content h3 {
    margin-bottom: 0.75rem;
}

.card-content p {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-content .link-btn {
    margin-top: auto;
}

.card-note {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: -0.5rem 0 1.4rem;
}

.card-note::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 0.6rem;
    transform: translateY(-1px);
}

.course-list-item .card-note {
    display: inline-block;
    margin: 0.6rem 0 0;
}

.link-btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--charcoal);
    display: inline-block;
}


/* =========================================
   PHOTO WALL (GALLERY)
   ========================================= */
.photo-wall-section {
    padding-top: clamp(3.5rem, 5vw, 5.5rem);
    padding-bottom: 0;
    background: var(--cream-dark);
}

.photo-wall-intro {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.photo-wall-copy h2 {
    margin-bottom: 0;
}

.photo-wall-bleed {
    width: 100%;
}

.photo-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: min(260px, 26vh);
    border-top: var(--border-thick);
    border-left: var(--border-thick);
}

.photo-wall-item {
    position: relative;
    overflow: hidden;
    border-right: var(--border-thick);
    border-bottom: var(--border-thick);
}

.photo-wall-item img,
.photo-wall-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Varied spans — 12 items + 4 extra cells = 16 = 4 clean rows of 4 */
.photo-wall-item:nth-child(1)  { grid-row: span 2; }
.photo-wall-item:nth-child(3)  { grid-column: span 2; }
.photo-wall-item:nth-child(8)  { grid-row: span 2; }
.photo-wall-item:nth-child(9)  { grid-column: span 2; }


/* =========================================
   PORTRAIT STRIP
   ========================================= */
.portrait-strip {
    padding: 0;
    overflow: hidden;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

.portrait-strip-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    height: clamp(320px, 38vw, 520px);
    gap: 2px;
    background: rgba(26, 23, 20, 0.06);
}

.portrait-strip-item {
    overflow: hidden;
    position: relative;
}

.portrait-strip-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}


/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0;
    background: var(--charcoal);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.testimonials .section-label {
    color: rgba(250, 246, 240, 0.35);
    border-color: rgba(250, 246, 240, 0.12);
}

.testimonials .section-header h2 {
    color: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(250, 246, 240, 0.08);
    border: 1px solid rgba(250, 246, 240, 0.08);
}

.testimonial-card {
    padding: clamp(2rem, 4vw, 3.5rem);
    position: relative;
    border-top: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    background: var(--charcoal);
}

.testimonial-featured {
    grid-column: 1 / -1;
}

.testimonial-index {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(184, 148, 90, 0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-card blockquote {
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card .quote {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.75;
    color: rgba(250, 246, 240, 0.8);
    margin-bottom: 2rem;
    max-width: none;
    flex: 1;
}

.testimonial-featured .quote {
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
    color: var(--cream);
    line-height: 1.65;
}

.testimonial-card blockquote footer {
    margin-top: auto;
}

.testimonial-card cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.35rem;
}

.testimonial-detail {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: rgba(250, 246, 240, 0.3);
    letter-spacing: 0.03em;
    display: block;
}

.testimonial-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: clamp(2rem, 4vw, 3.5rem);
}

.testimonial-photo {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}


/* =========================================
   CONTACT
   ========================================= */
.contact {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0;
    background: var(--charcoal);
    color: var(--cream);
    border-top: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -8%;
    right: -3%;
    font-family: var(--font-display);
    font-size: clamp(10rem, 22vw, 26rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(250, 246, 240, 0.02);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
}

.contact .section-label {
    color: rgba(250, 246, 240, 0.35);
    border-color: rgba(250, 246, 240, 0.12);
}

.contact-intro {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 600px;
}

.contact-intro .eyebrow {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.contact-intro h2 {
    margin-bottom: 1.2rem;
    color: var(--cream);
}

.contact-intro h2 em {
    font-style: italic;
    font-weight: 300;
}

.contact-intro p {
    color: rgba(250, 246, 240, 0.5);
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border: 1px solid rgba(250, 246, 240, 0.12);
}

.contact-info {
    padding: clamp(2.5rem, 4vw, 4rem);
    border-right: 1px solid rgba(250, 246, 240, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(250, 246, 240, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-list li:first-child {
    border-top: 1px solid rgba(250, 246, 240, 0.08);
}

.contact-label {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(250, 246, 240, 0.3);
}

.contact-value {
    font-size: 0.92rem;
    color: var(--cream);
    letter-spacing: 0.01em;
}

.contact-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-form {
    padding: clamp(2.5rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.88rem;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(250, 246, 240, 0.18);
    color: var(--cream);
    outline: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-width: 2px;
    border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 246, 240, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    color: rgba(250, 246, 240, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23968f85' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
}

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

.full-width {
    width: 100%;
}


/* =========================================
   FOOTER
   ========================================= */
footer {
    border-top: 1px solid rgba(250, 246, 240, 0.1);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    background: var(--charcoal);
    color: var(--cream);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(250, 246, 240, 0.1);
}

.footer-logo a {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.footer-logo p {
    font-size: 0.85rem;
    max-width: 320px;
    color: rgba(250, 246, 240, 0.45);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    color: rgba(250, 246, 240, 0.35);
}

.footer-links ul li {
    margin-bottom: 0.7rem;
}

.footer-links ul li a {
    font-size: 0.85rem;
    color: rgba(250, 246, 240, 0.55);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(250, 246, 240, 0.25);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--cream);
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(250, 246, 240, 0.3);
    letter-spacing: 0.06em;
}


/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children reveal */
.stagger > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   SECTION CTA (link after grid sections)
   ========================================= */
.section-cta {
    text-align: center;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}


/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */
.page-hero {
    padding: clamp(8rem, 12vw, 10rem) 0 clamp(3rem, 5vw, 4.5rem);
    text-align: center;
    border-bottom: var(--border-thick);
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: attr(data-deco);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 22rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(250, 246, 240, 0.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.page-hero .eyebrow {
    margin-bottom: 2rem;
    color: var(--gold);
}

.page-hero h1 {
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 246, 240, 0.55);
}


/* =========================================
   SERVICE BLOCKS (Services Page)
   ========================================= */
.service-blocks {
    background: var(--cream);
}

.service-block {
    border-bottom: var(--border-thick);
}

.service-block:nth-child(even) {
    background: var(--cream-dark);
}

.service-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: min(520px, 60vh);
}

.service-block:nth-child(even) .service-block-grid {
    direction: rtl;
}

.service-block:nth-child(even) .service-block-grid > * {
    direction: ltr;
}

.service-block-image {
    overflow: hidden;
    position: relative;
}

.service-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-block-text {
    padding: clamp(3rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: var(--border-thick);
}

.service-block:nth-child(even) .service-block-text {
    border-left: none;
    border-right: var(--border-thick);
}

.service-block-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 300;
    color: rgba(26, 23, 20, 0.06);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.service-block-text .eyebrow {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
    border-left: 2px solid var(--gold);
    line-height: 1.6;
}

.service-block-text h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.service-block-text p {
    margin-bottom: 1rem;
    max-width: 480px;
}

.service-block-text .btn-gold {
    margin-top: 1.5rem;
    align-self: flex-start;
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0.4rem;
    border-top: 1px solid rgba(26, 23, 20, 0.14);
    max-width: 480px;
}

.treatment-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.6rem;
    border-bottom: 1px solid rgba(26, 23, 20, 0.1);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--charcoal);
}

.treatment-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--gold);
    transform: translateY(-0.5px);
}


/* =========================================
   COURSE LIST (Academy Page)
   ========================================= */
.courses-section {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0;
    background: var(--cream-dark);
}

.course-list {
    border-top: var(--border-thick);
}

.course-list-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    border-bottom: var(--border-thick);
}

.course-list-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    opacity: 0.6;
}

/* Flagship course — first item gets gold accent */
.course-list-item:first-child {
    border-left: 3px solid var(--gold);
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
    margin-left: -3px;
}

.course-list-item:first-child .course-list-number {
    opacity: 1;
}

.course-list-content {
    flex: 1;
}

.course-list-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
}

.course-list-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.25;
}

.course-list-content p {
    font-size: 0.88rem;
    max-width: 580px;
}

.course-list-item .btn-outline {
    flex-shrink: 0;
    padding: 0.65rem 2rem;
    font-size: 0.65rem;
    white-space: nowrap;
}


/* =========================================
   MENTOR & 1:1 SECTIONS (Academy Page)
   ========================================= */
.mentor-section {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0;
}

.mentor-section .eyebrow,
.one-on-one .eyebrow {
    padding-left: 1.25rem;
    border-left: 2px solid var(--gold);
    line-height: 1.6;
}

.one-on-one {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0;
    background: var(--cream-dark);
    border-top: 3px solid var(--gold);
}

.one-on-one .about-grid {
    direction: rtl;
}

.one-on-one .about-grid > * {
    direction: ltr;
}

.one-on-one .about-text {
    border-left: none;
    border-right: var(--border-thick);
}

.about-text .btn-gold {
    margin-top: 1.5rem;
    align-self: flex-start;
}

.training-alt-note {
    margin-top: 1.75rem;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border: 1px solid rgba(26, 23, 20, 0.12);
    border-left: 2px solid var(--gold);
    max-width: 460px;
    align-self: flex-start;
}

.training-alt-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.5;
}

.training-alt-note a {
    color: var(--charcoal);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 500;
}

.training-alt-note a:hover {
    color: var(--gold);
}


/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    padding: clamp(3.5rem, 5vw, 5.5rem) 0;
    background: var(--charcoal);
    color: var(--cream);
    text-align: center;
}

.cta-banner h2 {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.cta-banner p {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    color: rgba(250, 246, 240, 0.6);
    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================
   ACCREDITATION SPOTLIGHT (Academy Page)
   Editorial cream spread on why training with CDBA travels —
   matching the mentor / one-on-one / course-list pattern language.
   ========================================= */
.accreditation-spotlight {
    position: relative;
    padding: clamp(4rem, 6.5vw, 6.5rem) 0 clamp(4rem, 6.5vw, 6.5rem);
    background: var(--cream);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    overflow: hidden;
    isolation: isolate;
}

/* Decorative oversized "BIA" — same editorial trick as .page-hero::before */
.accreditation-spotlight::before {
    content: attr(data-deco);
    position: absolute;
    bottom: clamp(-1rem, -1vw, -1.5rem);
    right: clamp(-1rem, -2vw, -3rem);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(10rem, 26vw, 30rem);
    line-height: 0.78;
    letter-spacing: -0.04em;
    color: rgba(184, 148, 90, 0.07);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

.accreditation-spotlight .container {
    position: relative;
    z-index: 1;
}

/* ---- Editorial intro: copy + certificate ---- */
.accreditation-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
    border-bottom: var(--border-muted);
}

.accreditation-copy {
    max-width: 580px;
}

/* Eyebrow with gold rule — matches mentor-section / one-on-one pattern */
.accreditation-copy .eyebrow {
    padding-left: 1.25rem;
    border-left: 2px solid var(--gold);
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

.accreditation-copy h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    max-width: 14ch;
}

.accreditation-copy h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.accreditation-copy .lead {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
    max-width: 50ch;
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
    font-weight: 400;
}

.accreditation-copy p:not(.lead) {
    font-size: 0.92rem;
    line-height: 1.78;
    color: var(--muted);
    max-width: 52ch;
}

.accreditation-copy p strong {
    font-weight: 600;
    color: var(--charcoal);
}

.accreditation-copy p em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

/* ---- Museum-style certificate display ---- */
.accreditation-cert {
    position: relative;
    margin: 0;
    max-width: 540px;
    justify-self: end;
    width: 100%;
}

.accreditation-cert::before {
    /* Gold corner mark — small editorial detail */
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 28px;
    height: 28px;
    border-top: 1.5px solid var(--gold);
    border-left: 1.5px solid var(--gold);
    z-index: 2;
    pointer-events: none;
}

.accreditation-cert::after {
    content: '';
    position: absolute;
    bottom: 78px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-bottom: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold);
    z-index: 2;
    pointer-events: none;
}

.accreditation-cert-mat {
    position: relative;
    background: var(--cream-dark);
    padding: clamp(1rem, 2.2vw, 1.75rem);
    border: 1px solid rgba(26, 23, 20, 0.14);
    box-shadow:
        0 28px 48px -28px rgba(26, 23, 20, 0.22),
        0 10px 22px -14px rgba(184, 148, 90, 0.18);
}

.accreditation-cert-mat::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(26, 23, 20, 0.08);
    pointer-events: none;
    z-index: 1;
}

.accreditation-cert-mat img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

.accreditation-cert figcaption {
    margin-top: 1.1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(26, 23, 20, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cert-credential {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--charcoal);
    letter-spacing: 0.005em;
    line-height: 1.2;
}

.cert-meta {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---- Three tenets — same visual language as .course-list ---- */
.accreditation-tenets {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(26, 23, 20, 0.16);
}

.accreditation-tenets li {
    display: grid;
    grid-template-columns: clamp(48px, 5vw, 70px) 1fr;
    gap: clamp(0.85rem, 1.6vw, 1.3rem);
    padding: clamp(1.75rem, 3vw, 2.4rem) clamp(1.5rem, 2.4vw, 2.25rem);
    align-items: start;
    border-right: 1px solid rgba(26, 23, 20, 0.16);
    position: relative;
}

.accreditation-tenets li:first-child {
    padding-left: 0;
}

.accreditation-tenets li:last-child {
    padding-right: 0;
    border-right: none;
}

.tenet-number {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    color: var(--gold);
    line-height: 0.95;
    opacity: 0.9;
    padding-top: 0.05em;
}

.tenet-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    font-weight: 500;
    letter-spacing: 0.005em;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.tenet-content p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 36ch;
}


/* =========================================
   ULTIMATE BROWS — COURSE DETAIL
   Schedule, learning outcomes, pricing tiers.
   ========================================= */
.course-detail {
    padding: clamp(4rem, 7vw, 7rem) 0 clamp(4rem, 6vw, 6rem);
    background: var(--cream);
    scroll-margin-top: 100px;
}

/* Variant — second course-detail in a row gets a thick rule above to separate */
.course-detail-bordered {
    border-top: var(--border-thick);
}

.course-detail-head {
    max-width: 720px;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.course-detail-eyebrow {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}

.course-detail-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--gold-light);
    padding: 0.4rem 0.85rem;
}

.course-detail-flag::before {
    content: '✦';
    color: var(--charcoal);
    font-size: 0.7rem;
}

.course-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.course-detail-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.course-detail-lede {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 60ch;
    color: var(--charcoal);
    opacity: 0.78;
}

/* ---- Pricing block ---- */
.course-pricing {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 0.85fr);
    gap: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: var(--border-thick);
    padding: clamp(1.75rem, 2.6vw, 2.25rem) clamp(1.5rem, 2.4vw, 2rem);
    transition: transform 0.4s var(--ease-out);
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card-feature {
    background: var(--charcoal);
    color: var(--cream);
    border-color: var(--charcoal);
}

.price-card-tag {
    position: absolute;
    top: -1px;
    right: clamp(1.25rem, 2vw, 1.75rem);
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
}

.price-card-head {
    border-bottom: 1px solid rgba(26, 23, 20, 0.14);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.price-card-feature .price-card-head {
    border-bottom-color: rgba(250, 246, 240, 0.16);
}

.price-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.85rem;
}

.price-card-feature .price-eyebrow {
    color: var(--gold-light);
}

.price-amount {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
}

.price-card-feature .price-amount {
    color: var(--cream);
}

.price-amount sup {
    font-size: 0.42em;
    font-weight: 300;
    margin-top: 0.45em;
    color: var(--gold);
    font-style: italic;
}

.price-currency {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    align-self: flex-end;
    margin-bottom: 0.6em;
    margin-left: auto;
}

.price-card-feature .price-currency {
    color: rgba(250, 246, 240, 0.5);
}

.price-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 1.5rem;
    max-width: 36ch;
}

.price-card-feature .price-desc {
    color: rgba(250, 246, 240, 0.7);
}

.price-includes {
    list-style: none;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.price-includes li {
    position: relative;
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 0.55rem 0 0.55rem 1.5rem;
    border-bottom: 1px dotted rgba(26, 23, 20, 0.15);
    color: var(--charcoal);
}

.price-card-feature .price-includes li {
    color: rgba(250, 246, 240, 0.88);
    border-bottom-color: rgba(250, 246, 240, 0.13);
}

.price-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 14px;
    height: 1px;
    background: var(--gold);
}

.price-includes li:last-child {
    border-bottom: none;
}

.price-includes li em {
    font-style: italic;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 1.02em;
}

.price-cta {
    align-self: flex-start;
    width: 100%;
    margin-top: auto;
}

.price-card-feature .btn-gold.price-cta {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.price-card-feature .btn-outline.price-cta {
    color: var(--cream);
    border-color: var(--cream);
}

.price-deposit {
    background: var(--cream-dark);
    border-left: 3px solid var(--gold);
    padding: clamp(1.5rem, 2.4vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-deposit h4 {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.price-deposit p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
}

.price-deposit strong {
    font-weight: 600;
    color: var(--charcoal);
    opacity: 1;
}

/* ---- Detail grid ---- */
.course-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.course-block-head {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26, 23, 20, 0.16);
    position: relative;
}

.course-block-label {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
}

.course-block-head h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 0.85rem;
}

.course-block-note {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 48ch;
}

/* ---- Schedule timeline ---- */
.schedule-timeline {
    list-style: none;
    position: relative;
    padding-left: clamp(5.5rem, 9vw, 7.5rem);
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    bottom: 0.55rem;
    left: clamp(5rem, 8vw, 7rem);
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(184, 148, 90, 0.5) 6%,
        rgba(184, 148, 90, 0.5) 94%,
        transparent
    );
}

.schedule-timeline li {
    position: relative;
    padding: 1.05rem 0 1.05rem 1.85rem;
}

.schedule-timeline li:not(:last-child) {
    border-bottom: 1px dotted rgba(26, 23, 20, 0.13);
}

.schedule-timeline li::before {
    content: '';
    position: absolute;
    top: 1.35rem;
    left: -6px;
    width: 12px;
    height: 12px;
    background: var(--cream);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    z-index: 1;
    transition: background 0.35s var(--ease-out);
}

.schedule-timeline li:hover::before {
    background: var(--gold);
}

.schedule-time {
    position: absolute;
    top: 1.1rem;
    left: clamp(-5.5rem, -9vw, -7.5rem);
    width: clamp(4.2rem, 7vw, 5.8rem);
    text-align: right;
    padding-right: 0.85rem;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: 0.005em;
    white-space: nowrap;
}

.schedule-time small {
    font-size: 0.6em;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-left: 0.05em;
}

.schedule-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    text-transform: none;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
    line-height: 1.25;
}

.schedule-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 48ch;
}

.schedule-break {
    opacity: 0.62;
}

.schedule-break .schedule-content h4 {
    font-style: italic;
    font-weight: 400;
}

/* ---- Outcomes ---- */
.course-outcomes {
    background: var(--cream-dark);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid rgba(26, 23, 20, 0.1);
    position: relative;
}

.course-outcomes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.course-outcomes .course-block-head {
    border-bottom-color: rgba(26, 23, 20, 0.18);
}

.outcomes-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 2.25rem;
}

.outcome-service {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    background: var(--cream);
    border: 1px solid rgba(26, 23, 20, 0.08);
}

.outcome-service-mark {
    font-size: 0.85rem;
    color: var(--gold);
    line-height: 1;
}

.outcome-service h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--charcoal);
    line-height: 1;
}

.outcomes-subhead {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 23, 20, 0.14);
}

.outcomes-list {
    list-style: none;
    column-count: 1;
}

.outcomes-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.4rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--charcoal);
    border-bottom: 1px dotted rgba(26, 23, 20, 0.13);
}

.outcomes-list li:last-child {
    border-bottom: none;
}

.outcomes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

/* ---- Kit contents (lash detail) — same surface as outcomes-services ---- */
.kit-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.kit-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
    background: var(--cream);
    border: 1px solid rgba(26, 23, 20, 0.08);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1;
}

.kit-mark {
    font-size: 0.85rem;
    color: var(--gold);
    line-height: 1;
}

/* ---- Ongoing support — shared section after both course details ---- */
.ongoing-support-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--cream);
    border-top: var(--border-thick);
}

.ongoing-support {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    background: var(--charcoal);
    color: var(--cream);
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 4vw, 3.5rem);
    overflow: hidden;
}

.ongoing-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
}

.ongoing-support-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(6rem, 12vw, 11rem);
    color: var(--gold);
    line-height: 0.7;
    opacity: 0.55;
    align-self: start;
}

.ongoing-support-content .eyebrow {
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.ongoing-support-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.45;
    color: var(--cream);
    max-width: 56ch;
    margin-bottom: 1rem;
}

.ongoing-support-attr {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
}


/* =========================================
   STUDIO LETTERS — Email capture (site-wide)
   Editorial subscription card on cream-dark canvas with a faint
   italic "Letters" watermark. Lives above the footer on every page.
   ========================================= */
.studio-letters {
    position: relative;
    padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(4rem, 7vw, 6.5rem);
    background: var(--cream-dark);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    overflow: hidden;
    isolation: isolate;
}

/* Decorative oversized italic word — same trick as page-hero / accreditation */
.studio-letters::before {
    content: attr(data-deco);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(8rem, 22vw, 24rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(184, 148, 90, 0.07);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

.studio-letters .container {
    position: relative;
    z-index: 1;
}

.studio-letters-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

/* ---- Copy column ---- */
.studio-letters-copy {
    max-width: 540px;
}

.studio-letters-copy .eyebrow {
    padding-left: 1.25rem;
    border-left: 2px solid var(--gold);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.studio-letters-copy h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 1.4rem;
    max-width: 12ch;
}

.studio-letters-copy h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.studio-letters-lede {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
    max-width: 50ch;
    margin-bottom: 1.5rem;
}

.studio-letters-bullets {
    list-style: none;
    border-top: 1px solid rgba(26, 23, 20, 0.16);
    padding-top: 1.1rem;
    margin: 0;
}

.studio-letters-bullets li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.4rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--muted);
    border-bottom: 1px dotted rgba(26, 23, 20, 0.13);
}

.studio-letters-bullets li:last-child {
    border-bottom: none;
}

.studio-letters-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

/* ---- Form card ---- */
.studio-letters-card {
    position: relative;
    background: var(--cream);
    border: var(--border-thick);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow:
        0 24px 50px -28px rgba(26, 23, 20, 0.18),
        0 8px 18px -10px rgba(184, 148, 90, 0.16);
    max-width: 560px;
    width: 100%;
    justify-self: end;
}

/* Editorial corner brackets — same vocabulary as accreditation cert */
.studio-letters-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 22px;
    height: 22px;
    border-top: 1.5px solid var(--gold);
    border-left: 1.5px solid var(--gold);
    pointer-events: none;
}

.studio-letters-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-bottom: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold);
    pointer-events: none;
}

.studio-letters-kicker {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: var(--gold);
    line-height: 1.4;
    margin-bottom: 1.1rem;
    letter-spacing: 0.005em;
}

.studio-letters-kicker em {
    font-style: italic;
    font-weight: 400;
}

/* The input + submit row */
.studio-letters-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
}

/* Standalone name input — same ruled-line vocabulary as the email field */
.studio-letters-row {
    border-bottom: 1.5px solid var(--charcoal);
    transition: border-color 0.4s var(--ease-out);
}

.studio-letters-row:focus-within {
    border-bottom-color: var(--gold);
    border-bottom-width: 2px;
}

.studio-letters-row input {
    border: none;
    background: transparent;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    outline: none;
    border-radius: 0;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.studio-letters-row input::placeholder {
    color: var(--muted);
    opacity: 0.55;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.studio-letters-field {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    border-bottom: 1.5px solid var(--charcoal);
    transition: border-color 0.4s var(--ease-out);
}

.studio-letters-field:focus-within {
    border-bottom-color: var(--gold);
    border-bottom-width: 2px;
}

.studio-letters-field input {
    border: none;
    background: transparent;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    outline: none;
    border-radius: 0;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.studio-letters-field input::placeholder {
    color: var(--muted);
    opacity: 0.55;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.studio-letters-field input:invalid:not(:placeholder-shown) {
    color: #b3554b;
}

.studio-letters-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0 0 0 1.25rem;
    background: transparent;
    border: none;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.35s var(--ease-out);
}

.studio-letters-submit svg {
    transition: transform 0.4s var(--ease-out);
}

.studio-letters-submit:hover,
.studio-letters-submit:focus-visible {
    color: var(--gold);
    outline: none;
}

.studio-letters-submit:hover svg,
.studio-letters-submit:focus-visible svg {
    transform: translateX(5px);
}

.studio-letters-note {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
    max-width: none;
}

/* Custom checkbox — bespoke editorial mark that visually echoes the
   gold corner brackets and tenet-mark vocabulary used elsewhere */
.studio-letters-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    cursor: pointer;
    user-select: none;
    margin-top: 0.15rem;
}

.studio-letters-consent input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.studio-letters-consent-mark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--charcoal);
    background: var(--cream);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    margin-top: 0.05rem;
}

.studio-letters-consent-mark svg {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s var(--ease-out), transform 0.25s var(--ease-out);
}

.studio-letters-consent input[type="checkbox"]:checked + .studio-letters-consent-mark {
    background: var(--gold);
    border-color: var(--gold);
}

.studio-letters-consent input[type="checkbox"]:checked + .studio-letters-consent-mark svg {
    opacity: 1;
    transform: scale(1);
}

.studio-letters-consent input[type="checkbox"]:focus-visible + .studio-letters-consent-mark {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.studio-letters-consent-text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--charcoal);
    opacity: 0.85;
    letter-spacing: 0.005em;
    padding-top: 0.1rem;
}

/* Error state — small red note */
.studio-letters-error {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: #b3554b;
    margin: 0;
    padding: 0.4rem 0.65rem;
    background: rgba(179, 85, 75, 0.07);
    border-left: 2px solid #b3554b;
}

/* Disabled submit while sending */
.studio-letters-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.studio-letters-submit:disabled:hover svg {
    transform: none;
}

/* Success state — replaces the entire form body with the success card */
.studio-letters-form.is-success .studio-letters-row,
.studio-letters-form.is-success .studio-letters-field,
.studio-letters-form.is-success .studio-letters-consent,
.studio-letters-form.is-success .studio-letters-note,
.studio-letters-form.is-success .studio-letters-error {
    display: none;
}

.studio-letters-success {
    display: none;
    align-items: flex-start;
    gap: 0.85rem;
}

.studio-letters-success[hidden] {
    display: none;
}

.studio-letters-form.is-success .studio-letters-success {
    display: flex;
    animation: studio-fade-up 0.55s var(--ease-out) both;
}

@keyframes studio-fade-up {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.studio-letters-success-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--cream);
    flex-shrink: 0;
    margin-top: 2px;
}

.studio-letters-success p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--charcoal);
    max-width: 32ch;
    margin: 0;
}

.studio-letters-success em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}


/* =========================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================= */
@media (max-width: 1024px) {
    /* Hero — stack copy above portrait */
    .hero {
        min-height: 0;
        padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
        min-height: 0;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-figure {
        justify-self: stretch;
        max-width: none;
        order: 2;
    }

    .hero-figure-frame {
        max-height: 620px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-figure-rail {
        left: -1rem;
    }

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

    .about-image {
        max-height: 40vh;
    }

    .about-text {
        border-left: none;
        border-top: var(--border-thick);
    }

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

    .service-card:last-child {
        grid-column: span 2;
    }

    .services-header-main {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 2.5vw, 2rem);
        align-items: start;
    }

    .services-lede {
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 1px solid rgba(26, 23, 20, 0.16);
        max-width: 56ch;
    }

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

    .academy-card:last-child {
        grid-column: span 2;
    }

    .portrait-strip-track {
        height: clamp(240px, 30vw, 360px);
    }

    .photo-wall {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: min(220px, 24vh);
    }

    .photo-wall-item:nth-child(3)  { grid-column: span 1; }
    .photo-wall-item:nth-child(7)  { grid-column: span 1; }

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

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

    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(250, 246, 240, 0.12);
    }

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

    /* Service Blocks — tablet */
    .service-block-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-block:nth-child(even) .service-block-grid {
        direction: ltr;
    }

    .service-block-text {
        border-left: none;
        border-top: var(--border-thick);
    }

    .service-block:nth-child(even) .service-block-text {
        border-right: none;
        border-top: var(--border-thick);
    }

    .service-block-image {
        aspect-ratio: 4 / 5;
        max-height: none;
    }

    /* Course List — tablet */
    .course-list-item {
        grid-template-columns: 60px 1fr auto;
    }

    /* 1:1 Section — tablet */
    .one-on-one .about-grid {
        direction: ltr;
    }

    .one-on-one .about-text {
        border-right: none;
        border-top: var(--border-thick);
    }

    /* Accreditation Spotlight — stack copy above certificate, tenets to single column */
    .accreditation-intro {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 5vw, 3.5rem);
        align-items: start;
    }

    .accreditation-cert {
        max-width: 580px;
        margin: 0 auto;
        justify-self: center;
    }

    .accreditation-copy {
        max-width: 720px;
    }

    .accreditation-tenets {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .accreditation-tenets li {
        border-right: none;
        border-bottom: 1px solid rgba(26, 23, 20, 0.16);
        padding: clamp(1.5rem, 3vw, 2rem) 0;
    }

    .accreditation-tenets li:last-child {
        border-bottom: none;
    }

    /* Course Detail — stack pricing cards with deposit full-width below */
    .course-pricing {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-deposit {
        grid-column: 1 / -1;
    }

    /* Course Detail — stack schedule above outcomes */
    .course-detail-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    /* Studio Letters — stack copy above form card */
    .studio-letters-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .studio-letters-copy {
        max-width: 720px;
    }

    .studio-letters-card {
        max-width: 640px;
        justify-self: stretch;
        margin: 0 auto;
    }
}


/* =========================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--cream);
        padding: 2rem clamp(1.5rem, 4vw, 3rem);
        border-bottom: var(--border-thick);
        gap: 1.5rem;
        z-index: 999;
    }

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

    .nav-links li a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* ======= MOBILE HERO — editorial booking cover ======= */

    /* Slim header — 52px on mobile */
    header nav { height: 52px; }
    .mobile-menu-toggle { padding: 4px; }
    .logo a { font-size: 1.12rem; }
    .logo span { font-size: 0.5rem; letter-spacing: 0.28em; }
    .btn-book {
        padding: 0.4rem 1.05rem;
        font-size: 0.68rem !important;
    }

    .hero {
        padding: 0;
        min-height: 0;
        margin-top: 52px;
    }

    .hero::before { display: none; }

    .hero > .container.hero-grid {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "below";
        grid-template-rows: min(82vh, 760px) auto;
        gap: 0;
        min-height: 0;
        align-items: stretch;
    }

    /* Portrait — full-bleed canvas */
    .hero-figure {
        grid-area: media;
        margin: 0;
        width: 100%;
        max-width: none;
        align-self: stretch;
        justify-self: stretch;
        position: relative;
        order: 0;
    }

    .hero-figure-frame {
        aspect-ratio: auto;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        box-shadow: none;
        overflow: hidden;
    }

    /* Tight face crop — eyes in upper third, brows clearly visible */
    .hero-figure-frame img {
        object-fit: cover;
        object-position: 50% 0%;
        transform: scale(1.42);
        transform-origin: 50% 18%;
        filter: saturate(0.82) contrast(1.08) brightness(0.97) sepia(0.05);
    }

    .hero-figure-rail { display: none; }

    /* Warm shadow focused bottom-left — gives white serif real contrast
       without reading as "club poster." */
    .hero-figure-grade {
        background:
            linear-gradient(180deg,
                rgba(26, 23, 20, 0.00) 40%,
                rgba(30, 22, 16, 0.22) 64%,
                rgba(22, 17, 13, 0.58) 86%,
                rgba(16, 12, 9, 0.80) 100%),
            radial-gradient(130% 80% at 18% 100%,
                rgba(14, 10, 7, 0.62) 0%,
                rgba(14, 10, 7, 0.18) 48%,
                rgba(14, 10, 7, 0.00) 72%);
        mix-blend-mode: normal;
    }

    /* Overlay — bottom-left, compact, intentional */
    .hero-copy {
        display: contents;
    }

    .hero-copy-top {
        grid-area: media;
        align-self: end;
        justify-self: start;
        z-index: 2;
        padding: 0 1.4rem 1.4rem;
        gap: 0.8rem;
        color: var(--cream);
        pointer-events: none;
        max-width: 28rem;
        width: 100%;
    }

    .hero-copy-top > * { pointer-events: auto; }

    .hero-copy-top .hero-kicker {
        color: var(--gold-light);
        font-size: 0.82rem;
        gap: 0.65rem;
        margin: 0;
    }

    .hero-copy-top .hero-kicker-rule {
        background: var(--gold-light);
        width: 24px;
    }

    /* Headline — two clean lines, strong contrast against warm shadow */
    .hero-copy-top .hero-headline {
        font-size: clamp(2rem, 8.4vw, 2.6rem);
        line-height: 1.04;
        letter-spacing: -0.02em;
        color: var(--cream);
        margin: 0;
        max-width: none;
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.35),
            0 8px 32px rgba(0, 0, 0, 0.35);
    }

    .hero-copy-top .hero-headline-line {
        display: block;
    }

    .hero-copy-top .hero-amp {
        color: var(--gold-light);
        font-style: italic;
        font-weight: 400;
    }

    /* CTAs — refined service-grade pair, not ecommerce */
    .hero-copy-top .hero-ctas {
        flex-direction: row;
        align-items: center;
        gap: 1.2rem;
        margin: 0.55rem 0 0;
        flex-wrap: wrap;
    }

    .hero-copy-top .btn-primary {
        width: auto;
        min-height: 54px;
        background: var(--cream);
        color: var(--charcoal);
        border-color: var(--cream);
        padding: 0 1.5rem;
        font-size: 0.76rem;
        letter-spacing: 0.045em;
        font-weight: 600;
        border-radius: 0;
        justify-content: center;
        gap: 0.55rem;
        box-shadow: 0 16px 36px -16px rgba(0, 0, 0, 0.6);
    }

    .hero-copy-top .btn-primary::before { background: var(--gold); }

    .hero-copy-top .btn-primary .btn-primary-arrow {
        font-size: 0.95rem;
        transition: transform 0.4s var(--ease-out);
    }

    .hero-copy-top .btn-primary:hover .btn-primary-arrow,
    .hero-copy-top .btn-primary:focus-visible .btn-primary-arrow {
        transform: translateX(4px);
    }

    .hero-copy-top .btn-primary:hover,
    .hero-copy-top .btn-primary:focus-visible {
        color: var(--cream);
        border-color: var(--gold);
    }

    /* Secondary — understated link with arrow, clear hierarchy */
    .hero-copy-top .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        width: auto;
        min-height: 0;
        background: transparent;
        border: none;
        color: rgba(250, 246, 240, 0.9);
        padding: 0;
        font-family: var(--font-body);
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: none;
        transition: color 0.4s var(--ease-out), gap 0.4s var(--ease-out);
    }

    .hero-copy-top .btn-ghost > span:first-child {
        border-bottom: 1px solid rgba(250, 246, 240, 0.45);
        padding-bottom: 2px;
    }

    .hero-copy-top .btn-ghost-arrow {
        font-size: 0.95rem;
        color: var(--gold-light);
        line-height: 1;
        transition: transform 0.4s var(--ease-out);
    }

    .hero-copy-top .btn-ghost:hover,
    .hero-copy-top .btn-ghost:focus-visible {
        color: var(--cream);
    }

    .hero-copy-top .btn-ghost:hover .btn-ghost-arrow,
    .hero-copy-top .btn-ghost:focus-visible .btn-ghost-arrow {
        transform: translateX(3px);
    }

    /* Trust line — sits on a clean dark band, not noisy image */
    .hero-copy-top .hero-trustline {
        position: relative;
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.35rem 0.55rem;
        margin: 0.9rem -1.4rem 0;
        padding: 0.85rem 1.4rem 0.1rem;
        border-top: 1px solid rgba(250, 246, 240, 0.22);
        font-family: var(--font-body);
        font-size: 0.84rem;
        font-weight: 500;
        letter-spacing: 0.005em;
        color: var(--cream);
        text-align: left;
    }

    .hero-copy-top .hero-trustline::before {
        content: "";
        position: absolute;
        inset: 0 0 -1.4rem 0;
        background: linear-gradient(180deg,
            rgba(10, 8, 6, 0.55) 0%,
            rgba(10, 8, 6, 0.78) 100%);
        z-index: -1;
    }

    .hero-trustline-item {
        display: inline-flex;
        align-items: baseline;
        gap: 0.3rem;
    }

    .hero-trustline em {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 500;
        font-size: 1rem;
        color: var(--gold-light);
        line-height: 1;
    }

    .hero-trustline-dot {
        color: var(--gold-light);
        font-size: 0.9rem;
        line-height: 1;
    }

    /* Editorial content — below the image */
    .hero-copy-bottom {
        grid-area: below;
        padding: clamp(1.8rem, 6vw, 2.4rem) clamp(1.25rem, 5vw, 2rem) clamp(1rem, 3vw, 1.5rem);
        gap: 1.3rem;
        max-width: none;
    }

    .hero-proof {
        grid-template-columns: auto 1fr;
        gap: 1rem 1.4rem;
        padding-top: 1.25rem;
        margin-top: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        border-left: none;
        border-top: none;
    }

    .service-card {
        border-left: var(--border-thick);
    }

    .service-card:last-child {
        grid-column: auto;
    }

    /* Controlled image frame — no more full-screen blowups */
    .service-media {
        aspect-ratio: 1.15 / 1;
        max-height: none;
    }

    /* Per-card crop positions for intentional composition */
    .service-card--brows .service-media img {
        object-position: center 38%;
    }

    .service-card--lashes .service-media img {
        object-position: center 30%;
    }

    .service-card--pmu .service-media img {
        object-position: center 45%;
    }

    /* Tighter card text */
    .card-body {
        padding: 2rem 1.4rem 1.8rem;
    }

    .card-title {
        font-size: clamp(1.55rem, 5vw, 1.85rem);
    }

    .card-tagline {
        font-size: 1rem;
        margin: 0.9rem 0 0.9rem;
    }

    .card-desc {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .card-kicker {
        font-size: 0.6rem;
        letter-spacing: 0.22em;
        margin-bottom: 0.9rem;
    }

    .service-plate {
        left: 1.15rem;
        padding: 0.45rem 0.8rem 0.4rem;
    }

    .service-plate-num {
        font-size: 1.1rem;
    }

    .services-headline {
        font-size: clamp(2.1rem, 8.5vw, 3rem);
        max-width: 14ch;
    }

    .services-header-top {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .services-header-aside {
        font-size: 0.9rem;
    }

    .academy-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .academy-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        border-left: var(--border-thick);
        border-right: var(--border-thick);
        border-bottom: none;
    }

    .academy-card:first-child {
        border-top: var(--border-thick);
    }

    .academy-card:last-child {
        grid-column: auto;
        border-bottom: var(--border-thick);
    }

    .academy-card .card-image {
        aspect-ratio: auto;
        border-bottom: none;
        min-height: 100%;
    }

    .academy-card .card-content {
        padding: 1.2rem 1.25rem;
        border-left: var(--border-thick);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .academy-card .card-content .tag {
        font-size: 0.5rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.6rem;
    }

    .academy-card .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .academy-card .card-content p {
        font-size: 0.82rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }

    .academy-card .link-btn {
        font-size: 0.62rem;
    }

    .photo-wall {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        grid-auto-flow: dense;
    }

    .photo-wall-item:nth-child(1)  { grid-row: span 2; }
    .photo-wall-item:nth-child(3)  { grid-column: span 1; }
    .photo-wall-item:nth-child(5)  { grid-row: span 1; }
    .photo-wall-item:nth-child(7)  { grid-column: span 2; }
    .photo-wall-item:nth-child(8)  { grid-row: span 1; }
    .photo-wall-item:nth-child(9)  { grid-column: span 1; }
    .photo-wall-item:nth-child(10) { grid-row: span 1; }

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

    .ticker-track span {
        font-size: 0.65rem;
        letter-spacing: 0.22em;
    }

    .ticker-track {
        gap: 1.5rem;
    }

    /* Page Hero — mobile */
    .page-hero {
        padding: clamp(7.5rem, 12vw, 10rem) 0 clamp(2.5rem, 5vw, 4rem);
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .service-block-number {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .service-block-text .eyebrow {
        padding-left: 1rem;
        margin-bottom: 0.75rem;
    }

    /* Flagship course — mobile */
    .course-list-item:first-child {
        padding-left: 1rem;
    }

    /* Course List — mobile */
    .course-list-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .course-list-number {
        font-size: 1.5rem;
    }

    .course-list-item .btn-outline {
        justify-self: start;
    }

    /* Service Blocks — mobile */
    .service-block-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-block:nth-child(even) .service-block-grid {
        direction: ltr;
    }

    .service-block-image {
        aspect-ratio: 4 / 5;
        max-height: none;
    }

    .service-block-text {
        border-left: none;
        border-top: var(--border-thick);
        padding: 2rem clamp(1.5rem, 4vw, 2rem);
    }

    .service-block:nth-child(even) .service-block-text {
        border-right: none;
        border-top: var(--border-thick);
    }

    .service-block-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-block-text .eyebrow {
        margin-bottom: 1rem;
    }

    .service-block-text h2 {
        margin-bottom: 1rem;
    }

    .service-block-text p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .service-block-text .btn-gold {
        margin-top: 1rem;
    }

    /* About Grid — mobile (used on academy mentor + 1:1) */
    .about-grid {
        border-width: 2px;
    }

    .about-image {
        max-height: 280px;
    }

    .about-text {
        padding: 2rem clamp(1.25rem, 4vw, 2rem);
    }

    .about-text .lead {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .about-text > p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .about-text .btn-gold {
        margin-top: 1rem;
    }

    /* Course List — mobile refinements */
    .course-list-item {
        padding: 1.25rem 0;
    }

    .course-list-header {
        margin-bottom: 0.5rem;
    }

    .course-list-header h3 {
        font-size: 1.1rem;
    }

    .course-list-content p {
        font-size: 0.82rem;
        line-height: 1.65;
    }

    .course-list-item .btn-outline {
        padding: 0.6rem 1.6rem;
        font-size: 0.6rem;
    }

    /* Section headers — mobile */
    .section-header {
        margin-bottom: clamp(1.25rem, 3vw, 2rem);
    }

    .section-label {
        margin-bottom: 1.25rem;
    }

    /* Testimonials — mobile: stack cards */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-featured .quote {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
    }

    /* Testimonial photos — mobile */
    .testimonial-photos {
        grid-template-columns: 1fr;
    }

    /* Portrait strip — mobile: horizontal scroll */
    .portrait-strip-track {
        grid-auto-columns: 45vw;
        height: 260px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .portrait-strip-track::-webkit-scrollbar {
        display: none;
    }

    /* Contact — mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(250, 246, 240, 0.12);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Stats — mobile */
    .stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        padding: 1.2rem 0;
        border-top: var(--border-thick);
    }

    /* Testimonials — mobile */
    .testimonial-card .quote {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    /* Section spacing — mobile */
    .about,
    .services,
    .academy,
    .contact,
    .mentor-section,
    .one-on-one,
    .courses-section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .testimonials {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    /* Buttons — full width on mobile */
    .service-block-text .btn-gold,
    .about-text .btn-gold,
    .section-cta .btn-outline,
    .cta-banner .btn-gold {
        width: 100%;
    }

    /* CTA Banner — mobile */
    .cta-banner {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    /* Accreditation Spotlight — mobile */
    .accreditation-spotlight {
        padding: clamp(3rem, 7vw, 5rem) 0;
    }

    .accreditation-spotlight::before {
        font-size: clamp(8rem, 30vw, 14rem);
    }

    .accreditation-cert::before,
    .accreditation-cert::after {
        width: 20px;
        height: 20px;
    }

    .accreditation-cert::after {
        bottom: 64px;
    }

    .cert-meta {
        font-size: 0.55rem;
        letter-spacing: 0.22em;
    }

    /* Course Detail — mobile */
    .course-detail {
        padding: clamp(3rem, 7vw, 5rem) 0;
    }

    .course-pricing {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .price-card-tag {
        right: 1rem;
        font-size: 0.55rem;
        padding: 0.4rem 0.7rem;
    }

    /* Schedule — keep timeline, but tighten time column */
    .schedule-timeline {
        padding-left: 4.5rem;
    }

    .schedule-timeline::before {
        left: 4rem;
    }

    .schedule-time {
        left: -4.2rem;
        width: 3.5rem;
        font-size: 0.85rem;
        padding-right: 0.6rem;
    }

    .schedule-content h4 {
        font-size: 1rem;
    }

    .schedule-content p {
        font-size: 0.85rem;
    }

    /* Outcomes — single column services */
    .outcomes-services {
        grid-template-columns: 1fr;
    }

    /* Ongoing support — stack quote-mark above content */
    .ongoing-support {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }

    .ongoing-support-mark {
        font-size: 5rem;
        line-height: 0.6;
    }

    /* Studio Letters — mobile: full-width input, button below as solid CTA */
    .studio-letters {
        padding: clamp(3rem, 7vw, 5rem) 0;
    }

    .studio-letters::before {
        font-size: clamp(7rem, 30vw, 13rem);
    }

    .studio-letters-card {
        padding: clamp(1.5rem, 4vw, 2rem);
    }

    .studio-letters-card::before,
    .studio-letters-card::after {
        width: 18px;
        height: 18px;
    }

    .studio-letters-field {
        grid-template-columns: 1fr;
        border-bottom: none;
        gap: 0.75rem;
    }

    .studio-letters-field input {
        border-bottom: 1.5px solid var(--charcoal);
        padding: 0.85rem 0;
        font-size: 1rem;
    }

    .studio-letters-field:focus-within input {
        border-bottom-color: var(--gold);
        border-bottom-width: 2px;
    }

    .studio-letters-submit {
        background: var(--charcoal);
        color: var(--cream);
        padding: 1.05rem 1.5rem;
        justify-content: center;
        gap: 0.85rem;
        font-size: 0.7rem;
        letter-spacing: 0.18em;
        transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
    }

    .studio-letters-submit:hover,
    .studio-letters-submit:focus-visible {
        background: var(--gold);
        color: var(--cream);
    }

    .studio-letters-submit:hover svg,
    .studio-letters-submit:focus-visible svg {
        transform: translateX(4px);
    }
}


/* =========================================
   RESPONSIVE — SMALL PHONES (max 480px)
   ========================================= */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    /* Hero — small phone */
    .hero-headline {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .hero-lede {
        font-size: 0.96rem;
    }

    .hero-kicker {
        font-size: 0.9rem;
    }

    .hero-proof {
        gap: 0.8rem 1rem;
    }

    .hero-proof-num {
        font-size: 2rem;
    }

    .hero-proof-headline {
        font-size: 0.92rem;
    }

    .hero-proof-sub {
        font-size: 0.84rem;
    }

    .hero-figure-rail {
        display: none;
    }

    /* Ticker — smaller */
    .ticker {
        padding: 0.85rem 0;
    }

    .ticker-track span {
        font-size: 0.58rem;
        letter-spacing: 0.18em;
    }

    .ticker-track {
        gap: 1rem;
    }

    /* Page Hero — small phone */
    .page-hero {
        padding: 7rem 0 2rem;
    }

    .page-hero .eyebrow {
        font-size: 0.58rem;
    }

    /* Academy cards — tighter thumbnail */
    .academy-card {
        grid-template-columns: 100px 1fr;
    }

    .academy-card .card-content {
        padding: 1rem;
    }

    .academy-card .card-content h3 {
        font-size: 1rem;
    }

    .academy-card .card-content p {
        font-size: 0.78rem;
        margin-bottom: 0.6rem;
    }

    /* Photo Wall — smaller rows */
    .photo-wall {
        grid-auto-rows: 160px;
    }

    /* Service blocks — tighter */
    .service-block-image {
        aspect-ratio: 4 / 5;
        max-height: none;
    }

    .service-block-text {
        padding: 1.5rem 1.25rem;
    }

    .service-block-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .service-block-text h2 {
        font-size: 1.6rem;
    }

    /* Course list — compact */
    .course-list-header h3 {
        font-size: 1rem;
    }

    .course-list-content p {
        font-size: 0.78rem;
    }

    .course-list-item .btn-outline {
        padding: 0.5rem 1.2rem;
        font-size: 0.58rem;
    }

    .course-list-item:first-child {
        padding-left: 0.75rem;
    }

    /* Contact form — bigger tap targets */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 0;
        font-size: 1rem;
    }

    /* Footer social — smaller icons */
    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 0.6rem;
    }

    /* About grid — tighter */
    .about-image {
        max-height: 220px;
    }

    .about-text {
        padding: 1.5rem 1.25rem;
    }

    .about-text .lead {
        font-size: 0.9rem;
    }

    /* Buttons — slightly smaller text */
    .btn-gold,
    .btn-outline {
        padding: 0.75rem 2rem;
        font-size: 0.65rem;
    }

    /* Stats — compact */
    .stat-item .number {
        font-size: 1.8rem;
    }

    /* Testimonials */
    .testimonial-card .quote {
        font-size: 1rem;
    }

    .testimonial-index {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    /* Portrait strip — small phones */
    .portrait-strip-track {
        grid-auto-columns: 55vw;
        height: 220px;
    }

    /* Accreditation Spotlight — small phone */
    .accreditation-copy h2 {
        font-size: 2rem;
    }

    .accreditation-tenets li {
        grid-template-columns: 44px 1fr;
        gap: 0.85rem;
    }

    .tenet-number {
        font-size: 2.2rem;
    }

    .accreditation-cert-mat {
        padding: 0.85rem;
    }

    .accreditation-cert-mat::before {
        inset: 5px;
    }

    /* Course detail — small phone */
    .course-detail-title {
        font-size: 2.4rem;
    }

    .price-card {
        padding: 1.5rem 1.25rem;
    }

    .price-amount {
        font-size: 2.6rem;
    }

    .price-includes li {
        font-size: 0.85rem;
    }

    .schedule-timeline {
        padding-left: 4rem;
    }

    .schedule-timeline::before {
        left: 3.5rem;
    }

    .schedule-time {
        left: -3.7rem;
        width: 3rem;
        font-size: 0.78rem;
    }

    /* Studio Letters — small phone */
    .studio-letters-copy h2 {
        font-size: 2rem;
    }

    .studio-letters-kicker {
        font-size: 0.85rem;
    }

    .studio-letters-success p {
        font-size: 1.05rem;
    }
}


/* =========================================
   RESPONSIVE — LARGE SCREENS (min 1440px)
   ========================================= */
@media (min-width: 1440px) {
    :root {
        --container: 1400px;
    }

    /* Hero — tighter copy column on very wide screens */
    .hero-grid {
        gap: clamp(4rem, 6vw, 7rem);
    }

    .hero-figure {
        max-width: 600px;
    }

    /* Photo wall — taller rows */
    .photo-wall {
        grid-auto-rows: min(300px, 28vh);
    }

    /* Service blocks — viewport-friendly minimum */
    .service-block-grid {
        min-height: min(600px, 60vh);
    }

    /* Course list — more breathing room */
    .course-list-item {
        grid-template-columns: 100px 1fr auto;
        gap: 3.5rem;
    }

    /* Portrait strip — large screens */
    .portrait-strip-track {
        height: clamp(480px, 36vw, 600px);
    }
}
