/* ============================================================
   RALLE medVAC — Design System
   Premium light wellness aesthetic
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg:           #faf7f2;
    --bg-warm:      #f4ede0;
    --bg-cool:      #eef2ee;
    --surface:      #ffffff;
    --surface-alt:  #f8f4eb;

    /* Brand colors */
    --primary:        #1a3d3a;
    --primary-mid:    #2d5a55;
    --primary-light:  #5a8a83;
    --sage:           #7a9690;
    --sage-soft:      #a8bdb7;

    /* Accent */
    --honey:        #c9986a;
    --honey-dark:   #a87d54;
    --honey-light:  #e2bd95;
    --honey-glow:   rgba(201, 152, 106, 0.15);

    /* Text */
    --text-1: #1a2820;
    --text-2: #5a6660;
    --text-3: #8a9590;
    --text-on-dark: #f4ede0;

    /* Lines & shadows */
    --border:       #e8e2d5;
    --border-warm:  #ddd2bf;
    --shadow-sm:    0 1px 2px rgba(26, 40, 32, 0.04);
    --shadow:       0 4px 16px rgba(26, 40, 32, 0.06);
    --shadow-lg:    0 16px 48px rgba(26, 40, 32, 0.10);
    --shadow-glow:  0 8px 32px rgba(201, 152, 106, 0.18);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing scale */
    --space-1:  0.5rem;
    --space-2:  1rem;
    --space-3:  1.5rem;
    --space-4:  2rem;
    --space-5:  3rem;
    --space-6:  4rem;
    --space-7:  6rem;
    --space-8:  8rem;

    /* Radius */
    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  20px;
    --r-xl:  32px;
    --r-pill: 999px;

    /* Transitions */
    --t-fast: 0.15s ease;
    --t:      0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --max-w:   1240px;
    --max-w-narrow: 880px;
    --max-w-text:   680px;
}

/* ── BASE ───────────────────────────────────────────────────── */
body {
    background: var(--bg);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.375rem; }

p { color: var(--text-2); }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 1.5rem; }
.container-text   { max-width: var(--max-w-text);   margin: 0 auto; padding: 0 1.5rem; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--t);
}
.site-header.scrolled {
    background: rgba(250, 247, 242, 0.96);
    border-bottom-color: var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.brand-mark {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
.brand-mark::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1.5px solid var(--honey);
    opacity: 0.6;
}
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    background: var(--honey);
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.5px;
}
.brand-name b { font-weight: 600; color: var(--honey-dark); }

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-size: 0.94rem;
    color: var(--text-1);
    letter-spacing: 0.3px;
    transition: var(--t);
    position: relative;
}
.nav-link:hover { color: var(--honey-dark); }
.nav-link.active { color: var(--honey-dark); }
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--honey);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--r-pill);
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--t);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--text-on-dark);
}
.btn-primary:hover {
    background: var(--primary-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}
.btn-accent {
    background: var(--honey);
    color: white;
}
.btn-accent:hover {
    background: var(--honey-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}
.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--border-warm);
}
.btn-ghost:hover {
    background: var(--surface);
    border-color: var(--primary);
}
.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px; height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--primary);
    transition: var(--t);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: calc(80px + 4rem) 0 6rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(201, 152, 106, 0.10), transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(122, 150, 144, 0.12), transparent 55%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { max-width: 620px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--honey-dark);
    margin-bottom: 1.4rem;
}
.eyebrow::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--honey);
}
.hero h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    letter-spacing: -0.02em;
}
.hero h1 em {
    font-style: italic;
    color: var(--honey-dark);
    font-weight: 400;
}
.hero-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-2);
    margin-bottom: 2.5rem;
    max-width: 540px;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.trust-item {
    display: flex;
    flex-direction: column;
}
.trust-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 500;
    line-height: 1;
}
.trust-label {
    font-size: 0.82rem;
    color: var(--text-3);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-visual-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #d4c5a8 0%, #a8b8a8 100%);
    display: grid; place-items: center;
    color: var(--primary);
    font-family: var(--font-display);
    font-style: italic;
    text-align: center;
    padding: 2rem;
    position: relative;
}
.hero-visual-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.hero-floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--surface);
    padding: 1.2rem 1.5rem;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}
.hero-floating-card .icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--honey-glow);
    display: grid; place-items: center;
    color: var(--honey-dark);
    flex-shrink: 0;
}
.hero-floating-card .text small {
    display: block;
    color: var(--text-3);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero-floating-card .text strong {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ── SECTION ────────────────────────────────────────────────── */
section { padding: 6rem 0; position: relative; }
.section-warm { background: var(--bg-warm); }
.section-cool { background: var(--bg-cool); }
.section-dark {
    background: var(--primary);
    color: var(--text-on-dark);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--text-on-dark); }
.section-dark p { color: rgba(244, 237, 224, 0.75); }

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.1rem; }

/* ── MEDIA LOGOS STRIP ──────────────────────────────────────── */
.media-strip {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface-alt);
}
.media-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.media-strip-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-3);
    font-weight: 500;
}
.media-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-2);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--t);
}
.media-logo:hover { color: var(--primary); }
.media-logo b { font-weight: 700; }

/* ── FEATURE CARDS ──────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--surface);
    padding: 2.2rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: var(--t);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--honey);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--t-slow);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    background: var(--honey-glow);
    color: var(--honey-dark);
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}
.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── BENEFITS LIST ──────────────────────────────────────────── */
.benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: var(--surface);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    transition: var(--t);
}
.benefit-item:hover {
    border-color: var(--sage-soft);
    transform: translateX(4px);
}
.benefit-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--honey);
    color: white;
    display: grid; place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.benefit-item strong {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.benefit-item span {
    color: var(--text-2);
    font-size: 0.94rem;
}

.benefits-visual {
    aspect-ratio: 1;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--sage-soft), var(--bg-warm));
    box-shadow: var(--shadow-lg);
    position: relative;
}
.benefits-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── TESTIMONIAL ────────────────────────────────────────────── */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--t);
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem; left: 1.8rem;
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--honey);
    line-height: 1;
    opacity: 0.4;
}
.testimonial:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--text-1);
    font-style: italic;
    margin: 2rem 0 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-attr {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}
.testimonial-attr strong {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}
.testimonial-attr span {
    color: var(--text-3);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

/* Big quote feature */
.big-quote {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.big-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.35;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.big-quote .attribution {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--honey-dark);
}

/* ── TREATMENT AREAS GRID (Equipment showcase) ──────────────── */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.treatment-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--t);
}
.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.treatment-card .image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sage-soft), var(--bg-warm));
    position: relative;
    overflow: hidden;
}
.treatment-card .image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--t-slow);
}
.treatment-card:hover .image img { transform: scale(1.04); }
.treatment-card .body {
    padding: 1.8rem;
}
.treatment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.treatment-card p {
    font-size: 0.92rem;
    color: var(--text-2);
}

/* ── PROCESS / STEPS ────────────────────────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}
.process-step {
    text-align: center;
    position: relative;
}
.process-num {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--honey);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.6;
}
.process-step h4 {
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
}
.process-step p { font-size: 0.94rem; }

/* ── CTA BLOCK ──────────────────────────────────────────────── */
.cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: var(--text-on-dark);
    padding: 5rem 3rem;
    border-radius: var(--r-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: "";
    position: absolute;
    top: -50%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(201, 152, 106, 0.18), transparent 60%);
    pointer-events: none;
}
.cta-block h2 {
    color: var(--text-on-dark);
    margin-bottom: 1rem;
    position: relative;
}
.cta-block p {
    color: rgba(244, 237, 224, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.cta-block .btn-accent { position: relative; }

/* ── FORM ──────────────────────────────────────────────────── */
.form-card {
    background: var(--surface);
    padding: 3rem;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-row.cols-1 { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.02em;
}
.form-field label .req { color: var(--honey-dark); }
.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-warm);
    border-radius: var(--r-md);
    background: var(--bg);
    font-size: 0.97rem;
    color: var(--text-1);
    transition: var(--t);
    font-family: var(--font-body);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--honey);
    background: var(--surface);
    box-shadow: 0 0 0 4px var(--honey-glow);
}
.form-field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }

.form-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.6rem;
}
.form-radio {
    position: relative;
    cursor: pointer;
}
.form-radio input { position: absolute; opacity: 0; pointer-events: none; }
.form-radio span {
    display: block;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border-warm);
    border-radius: var(--r-md);
    text-align: center;
    font-size: 0.94rem;
    color: var(--text-1);
    transition: var(--t);
}
.form-radio:hover span { border-color: var(--sage); }
.form-radio input:checked + span {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-on-dark);
    box-shadow: var(--shadow);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.form-note {
    font-size: 0.84rem;
    color: var(--text-3);
    max-width: 360px;
}

/* ── BOOKING STEPS ─────────────────────────────────────────── */
.booking-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}
.progress-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-warm);
    display: grid;
    place-items: center;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-3);
    position: relative;
}
.progress-dot.active {
    background: var(--honey);
    border-color: var(--honey);
    color: white;
}
.progress-dot.done {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-on-dark);
}
.progress-line {
    width: 32px;
    height: 1px;
    background: var(--border);
    align-self: center;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--primary);
    color: var(--text-on-dark);
    padding: 5rem 0 2rem;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}
.footer-brand .brand-mark { background: var(--honey); }
.footer-brand .brand-mark::before { border-color: var(--primary); }
.footer-brand .brand-mark::after { background: var(--primary); }
.footer-brand .brand-name { color: var(--text-on-dark); }
.footer-brand .brand-name b { color: var(--honey-light); }
.footer-tagline {
    color: rgba(244, 237, 224, 0.6);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 1.5rem;
}
.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--honey-light);
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col a {
    color: rgba(244, 237, 224, 0.75);
    font-size: 0.92rem;
    transition: var(--t-fast);
}
.footer-col a:hover { color: var(--honey-light); }

.footer-bottom {
    border-top: 1px solid rgba(244, 237, 224, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(244, 237, 224, 0.5);
    font-size: 0.84rem;
}
.footer-bottom a:hover { color: var(--honey-light); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
    0%   { transform: scale(1);   opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ── BREATHING ORB (animated treatment metaphor) ────────────── */
.breathing-orb {
    width: 280px; height: 280px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    display: grid;
    place-items: center;
}
.breathing-orb::before,
.breathing-orb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--honey);
    animation: pulse-ring 3.5s ease-out infinite;
}
.breathing-orb::after { animation-delay: 1.5s; }
.breathing-orb-core {
    width: 60%; height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--honey-light), var(--honey));
    box-shadow: 0 0 80px rgba(201, 152, 106, 0.4);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero { padding: calc(80px + 2rem) 0 4rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .benefits-split { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    section { padding: 4rem 0; }
    .nav { display: none; }
    .nav.open {
        display: flex;
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .mobile-toggle { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 2rem 1.5rem; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-trust { gap: 1.2rem; }
    .cta-block { padding: 3rem 1.5rem; }
}
