/* ==========================================================================
   Deep Release Massage — design system
   Sports massage meets hot-stone/fire-cupping ritual: a clinical/spa tension
   reflected in the type pairing (Fraunces italic display + clean Inter body).
   ========================================================================== */

:root {
    --ink:        #17130f;
    --ink-soft:   #241d17;
    --ink-softer: #35281f;
    --cream:      #f7f1e6;
    --cream-soft: #efe4d0;
    --white:      #fffaf3;

    --ember:       #d8622c;
    --ember-deep:  #a8431a;
    --ember-light: #f3a06a;

    --sage:       #435a4f;
    --sage-light: #7f9689;

    --stone: #a79c8a;
    --line:  rgba(23, 19, 15, 0.1);
    --line-on-dark: rgba(247, 241, 230, 0.14);

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

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 26px;

    --shadow-sm: 0 2px 10px rgba(23, 19, 15, 0.06);
    --shadow: 0 12px 32px rgba(23, 19, 15, 0.12);
    --shadow-lg: 0 24px 60px rgba(23, 19, 15, 0.18);

    --ease: cubic-bezier(.25, .8, .35, 1);
    color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 560;
    line-height: 1.12;
    margin: 0 0 .5em;
    letter-spacing: -0.01em;
}
em, .italic { font-style: italic; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; background: var(--ember); color: var(--white);
    padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Icons ---------- */
.icon { width: 1.15em; height: 1.15em; vertical-align: -0.22em; flex-shrink: 0; }
.icon--lg { width: 28px; height: 28px; }
.stars { display: inline-flex; gap: 2px; color: var(--ember); }
.stars .icon { width: 15px; height: 15px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
    border: 1px solid transparent; cursor: pointer; position: relative; overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
    white-space: nowrap;
}
.btn::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 45%, transparent 60%);
    transform: translateX(-120%); transition: transform .6s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--ember); color: var(--white); box-shadow: 0 8px 22px rgba(216, 98, 44, .35); }
.btn--primary:hover { background: var(--ember-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(216, 98, 44, .42); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--on-dark.btn--ghost { color: var(--cream); border-color: var(--line-on-dark); }
.btn--on-dark.btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247, 241, 230, .82); backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 24px; transition: padding .3s var(--ease); }
.site-header.is-scrolled .header-inner { padding: 12px 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 34px; height: 34px; color: var(--ember); flex-shrink: 0; }
.brand__name-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--ink); }
.brand__name em { color: var(--ember); }
.brand__tag { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
    position: relative; font-weight: 600; font-size: .93rem; color: var(--ink-soft); padding: 6px 0;
}
.main-nav a::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--ember);
    transition: right .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--ember-deep); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 50%; background: transparent; border: none; color: var(--ink); cursor: pointer;
    transition: background-color .2s var(--ease);
}
.icon-btn:hover { background: var(--cream-soft); }
.nav-toggle { display: none; }

.mobile-nav {
    display: none; flex-direction: column; gap: 4px; padding: 10px 24px 22px; background: var(--cream);
    border-bottom: 1px solid var(--line);
}
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-radius: 8px; }
.mobile-nav a:hover, .mobile-nav a.is-active { background: var(--cream-soft); color: var(--ember-deep); }
.mobile-nav .btn { margin-top: 10px; }

@media (max-width: 880px) {
    .main-nav, .header-actions .btn { display: none; }
    .nav-toggle { display: inline-flex; }
    .mobile-nav.is-open { display: flex; }
}

.scrim {
    position: fixed; inset: 0; background: rgba(23,19,15,.4); opacity: 0; pointer-events: none; z-index: 90;
    transition: opacity .3s var(--ease);
}
.scrim.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
    position: relative; background: var(--ink); color: var(--cream); overflow: hidden;
    padding: 96px 0 120px;
}
.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none;
    animation: emberFloat 12s ease-in-out infinite;
}
.hero::before { width: 480px; height: 480px; background: radial-gradient(circle, var(--ember) 0%, transparent 70%); top: -160px; right: -120px; }
.hero::after { width: 380px; height: 380px; background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%); bottom: -180px; left: -100px; animation-delay: -6s; }
@keyframes emberFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 24px) scale(1.08); }
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
    background: rgba(216,98,44,.16); color: var(--ember-light); font-size: .78rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

.hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); color: var(--white); }
.hero h1 em { color: var(--ember-light); }
.hero p.lede { font-size: 1.15rem; color: rgba(247,241,230,.78); max-width: 46ch; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 52px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--white); }
.hero-stat span { font-size: .82rem; color: rgba(247,241,230,.6); }

.hero-media { position: relative; }
.hero-media img {
    border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.hero-media .float-card {
    position: absolute; left: -30px; bottom: 30px; background: var(--white); color: var(--ink);
    border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px; max-width: 240px;
    animation: floatCard 5s ease-in-out infinite;
}
.float-card .icon { color: var(--ember); width: 26px; height: 26px; }
.float-card strong { display: block; font-size: .9rem; }
.float-card span { font-size: .78rem; color: var(--stone); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; }
    .hero-stats { flex-wrap: wrap; row-gap: 20px; }
    .float-card { left: 16px; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--sage { background: var(--sage); color: var(--cream); }
.section--soft { background: var(--cream-soft); }

.section-head { max-width: 640px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
    display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ember-deep); margin-bottom: 14px;
}
.section--dark .eyebrow, .section--sage .eyebrow { color: var(--ember-light); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--stone); font-size: 1.05rem; }
.section--dark .section-head p, .section--sage .section-head p { color: rgba(247,241,230,.7); }

/* ---------- Treatment cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .cards-grid { grid-template-columns: 1fr; } }

.tcard {
    background: var(--white); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    display: flex; flex-direction: column; height: 100%; border: 1px solid var(--line);
}
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tcard__icon {
    width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ember-light), var(--ember)); color: var(--white); margin-bottom: 22px;
    transition: transform .35s var(--ease);
}
.tcard:hover .tcard__icon { transform: rotate(-6deg) scale(1.06); }
.tcard__icon .icon { width: 28px; height: 28px; }
.tcard h3 { font-size: 1.35rem; margin-bottom: 10px; }
.tcard p { color: var(--stone); font-size: .95rem; flex-grow: 1; }
.tcard__from { font-weight: 700; color: var(--ember-deep); margin: 14px 0 18px; font-size: .95rem; }
.tcard__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .9rem; color: var(--ink); }
.tcard__link .icon { transition: transform .25s var(--ease); }
.tcard:hover .tcard__link .icon { transform: translateX(4px); }

/* ---------- Area filter pills ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; }
.pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
    border: 1px solid var(--line); background: var(--white); font-weight: 600; font-size: .88rem; cursor: pointer;
    transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.pill:hover { transform: translateY(-1px); }
.pill.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pill .icon { width: 16px; height: 16px; }

/* ---------- Treatment menu ---------- */
.menu-group { margin-bottom: 56px; }
.menu-group__head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.menu-group__icon {
    width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    background: var(--ink); color: var(--ember-light); flex-shrink: 0;
}
.menu-group__head h3 { margin: 0; font-size: 1.5rem; }
.menu-group__head p { margin: 2px 0 0; color: var(--stone); font-size: .92rem; }

.menu-list { display: grid; gap: 14px; }
.menu-row {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 18px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.menu-row:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: rgba(216,98,44,.35); }
.menu-row__area { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.menu-row__area .icon { color: var(--ember-deep); width: 22px; height: 22px; }
.menu-row__meta { display: flex; align-items: center; gap: 18px; color: var(--stone); font-size: .88rem; }
.menu-row__price { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); min-width: 60px; text-align: right; }
.menu-row .btn { flex-shrink: 0; }
.menu-row[hidden] { display: none; }

@media (max-width: 640px) {
    .menu-row { flex-wrap: wrap; }
    .menu-row__price { text-align: left; }
}

/* ---------- USP / feature row ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
    text-align: center; padding: 30px 20px; border-radius: var(--radius); background: rgba(247,241,230,.06);
    border: 1px solid var(--line-on-dark);
}
.feature__icon {
    width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
    background: rgba(216,98,44,.16); color: var(--ember-light);
}
.feature h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
.feature p { font-size: .88rem; color: rgba(247,241,230,.65); margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.testi p { font-size: .98rem; margin: 14px 0 18px; }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--sage); color: var(--cream);
    display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600;
}
.testi__who strong { display: block; font-size: .92rem; }
.testi__who span { font-size: .8rem; color: var(--stone); }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--ember-deep), var(--ember)); color: var(--white);
    border-radius: var(--radius-lg); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-band::after {
    content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,.12); top: -100px; right: -60px;
}
.cta-band h3 { color: var(--white); margin-bottom: 8px; font-size: 1.7rem; position: relative; z-index: 1; }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.cta-band .btn--ghost:hover { background: var(--white); color: var(--ember-deep); }

/* ---------- Promotions ---------- */
.promo-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px;
    background: var(--sage); color: var(--white); font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .04em; animation: promoPulse 2.4s ease-in-out infinite;
}
@keyframes promoPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(67,90,79,.4); } 50% { box-shadow: 0 0 0 6px rgba(67,90,79,0); } }
.menu-row__price--promo { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; min-width: 100px; }
.menu-row__price--promo .promo-badge { margin-bottom: 4px; }
.menu-row__price--promo .was { text-decoration: line-through; color: var(--stone); font-size: .82rem; }
.menu-row__price--promo .now { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ember-deep); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
    background: none; border: none; text-align: left; padding: 22px 4px; cursor: pointer;
    font-family: var(--font-display); font-size: 1.08rem; font-weight: 500; color: var(--ink);
}
.faq-q .icon { transition: transform .3s var(--ease); color: var(--ember); flex-shrink: 0; }
.faq-item.is-open .faq-q .icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 4px 22px; color: var(--stone); margin: 0; max-width: 62ch; }

/* ---------- Forms ---------- */
.form-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--stone); font-size: .8rem; }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
    background: var(--cream); font: inherit; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--ember); box-shadow: 0 0 0 4px rgba(216,98,44,.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.alert {
    border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px; display: flex; gap: 12px; align-items: flex-start;
    font-size: .92rem;
}
.alert--success { background: rgba(67,90,79,.12); color: var(--sage); }
.alert--error { background: rgba(168,67,26,.1); color: var(--ember-deep); }
.alert .icon { flex-shrink: 0; margin-top: 2px; }

/* ---------- Misc content blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px;
    background: var(--cream-soft); font-size: .78rem; font-weight: 700; color: var(--sage);
}
.badge .icon { width: 14px; height: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,241,230,.72); padding: 76px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-on-dark); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { font-size: .9rem; max-width: 34ch; margin: 16px 0 20px; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(247,241,230,.08); transition: background-color .2s var(--ease), color .2s var(--ease);
}
.socials a:hover { background: var(--ember); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .9rem; padding: 6px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--ember-light); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; }
.footer-contact .icon { color: var(--ember-light); margin-top: 2px; }

.footer-bar {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
    padding: 26px 0 10px; font-size: .82rem;
}
.footer-credit { text-align: center; white-space: nowrap; }
.credit-link { color: var(--ember-light); font-weight: 600; }
.footer-legal { display: flex; gap: 18px; justify-content: flex-end; }
@media (max-width: 700px) {
    .footer-bar { grid-template-columns: 1fr; text-align: center; }
    .footer-legal { justify-content: center; }
}
.footer-fineprint { font-size: .76rem; color: rgba(247,241,230,.4); text-align: center; margin: 10px 0 0; }

/* ---------- Cookie bar ---------- */
.cookie-bar {
    position: fixed; left: 20px; right: 20px; bottom: 20px; max-width: 640px; margin: 0 auto;
    background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 20px 24px;
    box-shadow: var(--shadow-lg); z-index: 150; display: flex; flex-direction: column; gap: 14px;
    transform: translateY(140%); transition: transform .4s var(--ease);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: .86rem; }
.cookie-bar a { color: var(--ember-light); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal="stagger"].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: .08s; }
[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: .16s; }
[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: .24s; }

/* ---------- Simple content pages (about/contact/legal) ---------- */
.page-hero { background: var(--ink); color: var(--cream); padding: 70px 0 60px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(247,241,230,.72); max-width: 56ch; margin: 12px auto 0; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 40px; }
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); }

.hide-sm { }
@media (max-width: 880px) { .hide-sm { display: none !important; } }
