/* ============================================================
   Knead — Massage Therapy & Bodywork Studio Template
   Plain CSS3. No frameworks. Warm, earthy, soothing.
   ============================================================ */

/* ------------------------------------------------------------
   DESIGN SYSTEM / REBRAND
   To rebrand: change the variables below. --brand sets the
   primary terracotta, --accent the sage. Update --font-* to
   swap typefaces (also update the <link> in each page head).
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --brand:      #b56b4a;  /* terracotta (primary)   */
  --brand-dark: #98583b;
  --accent:     #7d8c6b;  /* sage green (accent)    */
  --accent-dark:#647155;
  --ink:        #3a2c22;  /* deep warm brown text   */
  --ink-soft:   #7a6a5d;  /* muted text             */
  --bg:         #fdf8f2;  /* cream page background   */
  --bg-alt:     #f6ece0;  /* soft alternate section  */
  --line:       #e8dccd;  /* borders / dividers      */
  --white:      #ffffff;

  /* Gradients */
  --grad: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);

  /* Typography */
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Effects */
  --radius:    20px;
  --radius-sm: 13px;
  --shadow-sm: 0 4px 16px rgba(58, 44, 34, .06);
  --shadow:    0 14px 40px rgba(58, 44, 34, .12);
  --shadow-lg: 0 24px 60px rgba(181, 107, 74, .22);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);

  /* Layout */
  --container: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 600; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ------------------------------------------------------------ LAYOUT HELPERS */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }

.section__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(1.8rem, 3.5vw, 2.7rem); margin: 12px 0; }
.section__sub  { color: var(--ink-soft); font-size: 1.06rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(181, 107, 74, .1);
  padding: 6px 15px;
  border-radius: 999px;
}

.grad-text {
  color: var(--brand);
  font-style: italic;
}

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

/* ------------------------------------------------------------ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 13px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn--lg { padding: 16px 36px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-lg); }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-3px); box-shadow: 0 28px 64px rgba(181, 107, 74, .32); }

.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-3px); }

.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.link-arrow { color: var(--brand); font-weight: 600; font-size: .92rem; transition: var(--transition); }
.link-arrow:hover { color: var(--accent-dark); letter-spacing: .02em; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink); font-weight: 600; font-size: .85rem;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* ------------------------------------------------------------ TOP BAR */
.topbar { background: var(--ink); color: #e6d8c8; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 42px; flex-wrap: wrap; gap: 6px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.topbar__item:hover { color: #fff; }
.topbar__note { color: #fff; font-weight: 600; background: rgba(125, 140, 107, .35); padding: 4px 12px; border-radius: 999px; }
.topbar__item--hide-sm { display: inline-flex; }

/* ------------------------------------------------------------ HEADER / NAV */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 242, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; }
.logo__mark { display: grid; place-items: center; }
.logo__text { letter-spacing: .01em; }
.logo--light, .logo--light .logo__text { color: #fff; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__list { display: flex; gap: 28px; }
.nav__link { font-weight: 500; color: var(--ink-soft); position: relative; transition: var(--transition); }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--brand); transition: var(--transition); border-radius: 2px;
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--brand); font-weight: 600; }
.nav__link.active::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ------------------------------------------------------------ HERO */
.hero {
  position: relative;
  background: radial-gradient(circle at 82% 12%, rgba(125,140,107,.16), transparent 46%),
              radial-gradient(circle at 8% 92%, rgba(181,107,74,.14), transparent 46%),
              var(--bg-alt);
  padding: 82px 0 130px;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 44px; }
.hero__title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; margin: 18px 0; }
.hero__text { color: var(--ink-soft); font-size: 1.14rem; max-width: 520px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; color: var(--ink-soft); font-size: .92rem; font-weight: 500; }

/* Hero art */
.hero__art { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero__blob {
  position: absolute; inset: 0; margin: auto; width: 360px; height: 360px;
  background: var(--grad); opacity: .16;
  border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%;
  animation: morph 10s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; }
  50%     { border-radius: 60% 40% 38% 62% / 55% 60% 40% 45%; }
}

.hero__card {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  background: #fff; padding: 12px 16px; border-radius: 14px; box-shadow: var(--shadow);
  font-size: .85rem;
}
.hero__card strong { display: block; color: var(--ink); }
.hero__card small { color: var(--ink-soft); }
.hero__card-emoji { font-size: 1.5rem; }
.hero__card--top { top: 14%; left: -4%; animation: float 4.5s ease-in-out infinite; }
.hero__card--bot { bottom: 13%; right: -3%; animation: float 4.5s ease-in-out infinite 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero__wave svg { width: 100%; height: 80px; }

/* ------------------------------------------------------------ CARDS (shared) */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(181,107,74,.28); }

/* ------------------------------------------------------------ INTRO STRIP */
.intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.intro__media { display: grid; place-items: center; }
.intro__body .section__title { text-align: left; margin-bottom: 14px; }
.intro__body p { color: var(--ink-soft); margin-bottom: 16px; }
.intro__points { display: grid; gap: 12px; margin: 22px 0 28px; }
.intro__points li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.intro__points span { color: var(--accent-dark); font-size: 1.1rem; line-height: 1.4; }

/* ------------------------------------------------------------ TREATMENT MENU (services) */
.treatment { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.treatment__photo {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.treatment__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.treatment__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.treatment__head h3 { font-size: 1.3rem; }
.treatment__dur { color: var(--accent-dark); font-weight: 600; font-size: .85rem; white-space: nowrap; }
.treatment p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 18px; }
.treatment__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.treatment__price { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--brand); }

/* ------------------------------------------------------------ BENEFITS / FEATURES */
.feature { text-align: center; padding: 32px 24px; }
.feature__icon {
  display: grid; place-items: center; width: 68px; height: 68px; font-size: 2rem;
  background: var(--bg-alt); border-radius: 18px; margin: 0 auto 18px;
}
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .94rem; }

/* ------------------------------------------------------------ THERAPIST TEASER */
.therapist { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center; }
.therapist__media { position: relative; display: grid; place-items: center; }
.therapist__body .section__title { text-align: left; margin-bottom: 16px; }
.therapist__body p { color: var(--ink-soft); margin-bottom: 16px; }
.therapist__sign { font-family: var(--font-head); font-style: italic; font-size: 1.25rem; color: var(--brand); margin-top: 10px; }
.therapist__creds { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 28px; }
.therapist__creds span {
  background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink);
  font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
}

/* ------------------------------------------------------------ TESTIMONIALS */
.testimonial { display: flex; flex-direction: column; gap: 14px; }
.testimonial__stars { color: #d99a4e; letter-spacing: 2px; font-size: 1.05rem; }
.testimonial blockquote { color: var(--ink-soft); font-style: italic; font-size: 1rem; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__avatar {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--line);
}
.testimonial figcaption strong { display: block; font-family: var(--font-head); font-size: .98rem; }
.testimonial figcaption small { color: var(--ink-soft); }

/* ------------------------------------------------------------ STATS */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: var(--grad); border-radius: var(--radius); padding: 46px 30px;
  box-shadow: var(--shadow-lg);
}
.stat { text-align: center; color: #fff; }
.stat__num { display: block; font-family: var(--font-head); font-weight: 600; font-size: 2.7rem; line-height: 1; }
.stat__label { display: block; margin-top: 8px; font-size: .92rem; opacity: .92; }

/* ------------------------------------------------------------ CTA STRIP */
.cta-strip { background: var(--ink); color: #fff; padding: 64px 0; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-strip p { color: #e2d3c3; margin-top: 8px; }

/* ------------------------------------------------------------ PAGE BANNER + BREADCRUMB */
.page-banner {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(125,140,107,.16), transparent 45%),
              radial-gradient(circle at 5% 95%, rgba(181,107,74,.14), transparent 45%),
              var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 66px 0 70px;
  text-align: center;
  overflow: hidden;
}
.page-banner__inner { max-width: 760px; margin: 0 auto; }
.page-banner__title { font-size: clamp(2.1rem, 4.5vw, 3.1rem); font-weight: 600; margin: 14px 0; }
.page-banner__sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 620px; margin: 0 auto 22px; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  background: rgba(255,255,255,.7); border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 999px;
}
.breadcrumb a { color: var(--brand); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb__sep { color: var(--line); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ------------------------------------------------------------ ABOUT — SPLIT / STORY */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__body .section__title { text-align: left; margin-bottom: 14px; }
.split__body p { color: var(--ink-soft); margin-bottom: 16px; }
.split__media { display: grid; place-items: center; }

/* Studio gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--line); transition: var(--transition);
}
.gallery img:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Credentials list */
.cred-list { display: grid; gap: 14px; }
.cred-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.cred-list .cred__icon { font-size: 1.5rem; line-height: 1; }
.cred-list strong { display: block; color: var(--ink); margin-bottom: 2px; }
.cred-list small { color: var(--ink-soft); }

/* Value cards */
.value h3 { font-size: 1.16rem; margin-bottom: 8px; }
.value p { color: var(--ink-soft); font-size: .94rem; }
.value__icon {
  display: grid; place-items: center; width: 60px; height: 60px; font-size: 1.7rem;
  background: var(--bg-alt); border-radius: 16px; margin-bottom: 18px;
}

/* ------------------------------------------------------------ PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; text-align: center; position: relative; }
.price-card--featured { border-color: var(--brand); box-shadow: var(--shadow); }
.price-card__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card__desc { color: var(--ink-soft); font-size: .9rem; min-height: 2.6em; margin-bottom: 16px; }
.price-card__amount { font-family: var(--font-head); font-weight: 600; font-size: 2.8rem; color: var(--brand); line-height: 1; }
.price-card__per { color: var(--ink-soft); font-size: .9rem; margin-bottom: 22px; }
.price-card ul { display: grid; gap: 11px; text-align: left; margin-bottom: 26px; }
.price-card li { display: flex; gap: 10px; color: var(--ink-soft); font-size: .94rem; }
.price-card li::before { content: '✓'; color: var(--accent-dark); font-weight: 700; }
.price-card .btn { margin-top: auto; }

/* Package rows */
.packages { display: grid; gap: 18px; max-width: 880px; margin: 0 auto; }
.package {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.package__icon { font-size: 2rem; }
.package__info h3 { font-size: 1.18rem; margin-bottom: 4px; }
.package__info p { color: var(--ink-soft); font-size: .92rem; }
.package__price { text-align: right; }
.package__price strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--brand); display: block; }
.package__price small { color: var(--ink-soft); font-size: .82rem; }

/* ------------------------------------------------------------ FAQ / ACCORDION */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  padding: 20px 24px; transition: var(--transition);
}
.faq__q:hover { color: var(--brand); }
.faq__icon { flex-shrink: 0; font-size: 1.3rem; color: var(--brand); transition: transform var(--transition); }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { color: var(--ink-soft); font-size: .96rem; padding: 0 24px 22px; }

/* ------------------------------------------------------------ CONTACT / FORM */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact__info .section__title { text-align: left; margin-bottom: 14px; }
.contact__info > p { color: var(--ink-soft); margin-bottom: 24px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .96rem; color: var(--ink);
  background: #fff; transition: var(--transition);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(181,107,74,.14);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #d9534f; }
.error { color: #d9534f; font-size: .8rem; display: block; margin-top: 5px; min-height: 1em; }
.form-success { color: var(--accent-dark); font-weight: 600; margin-top: 16px; text-align: center; }
.form-note { color: var(--ink-soft); font-size: .8rem; text-align: center; margin-top: 12px; }
.contact__form { padding: 34px; }
.contact__form-title { font-size: 1.4rem; margin-bottom: 22px; }

/* Info blocks */
.info-list { display: grid; gap: 16px; margin-bottom: 28px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .info__icon {
  display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0;
  background: var(--bg-alt); border-radius: 12px; font-size: 1.2rem;
}
.info-list strong { display: block; color: var(--ink); }
.info-list a { color: var(--brand); }
.info-list a:hover { color: var(--accent-dark); }
.info-list span { color: var(--ink-soft); font-size: .92rem; }

.hours-list { display: grid; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 24px; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: .92rem; color: var(--ink-soft);
  padding-bottom: 9px; border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list li span:last-child { color: var(--ink); font-weight: 600; }

.map-placeholder {
  margin-top: 22px; display: grid; place-items: center; text-align: center;
  background: var(--bg-alt); border: 1px dashed var(--line); border-radius: var(--radius-sm);
  padding: 30px 18px; color: var(--ink-soft); font-size: .88rem; font-weight: 500;
}

/* ------------------------------------------------------------ PHOTO HELPERS */
.media-img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 6px solid #fff; position: relative; z-index: 1;
}
.media-img--tall { aspect-ratio: 3 / 4; max-width: 440px; }

/* ------------------------------------------------------------ FOOTER */
.footer { background: #2c211a; color: #cbb9a8; padding-top: 66px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 48px; }
.footer__brand p { margin: 16px 0 18px; font-size: .92rem; max-width: 300px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px;
  background: rgba(255,255,255,.08); transition: var(--transition);
}
.footer__social a:hover { background: var(--brand); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 1.04rem; margin-bottom: 18px; font-family: var(--font-head); }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .92rem; transition: var(--transition); }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__contact li { font-size: .9rem; line-height: 1.5; margin-bottom: 8px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .86rem; }
.footer__links a:hover { color: #fff; }

/* ------------------------------------------------------------ BACK TO TOP */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--brand); color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); background: var(--brand-dark); }

/* ------------------------------------------------------------ SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

/* ------------------------------------------------------------ RESPONSIVE */
@media (max-width: 992px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__art { order: 1; min-height: 320px; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .intro, .therapist, .split, .contact { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .intro__body .section__title, .therapist__body .section__title,
  .split__body .section__title, .contact__info .section__title { text-align: center; }
  .intro__points li, .therapist__creds { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(78%, 320px);
    background: var(--bg); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 32px 32px; gap: 22px; box-shadow: -10px 0 40px rgba(0,0,0,.14);
    transition: right .35s ease; z-index: 99;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 18px; width: 100%; }
  .nav__link { font-size: 1.1rem; }
  .nav__cta { width: 100%; }
  .hamburger { display: flex; z-index: 100; }

  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .package { grid-template-columns: auto 1fr; }
  .package__price { grid-column: 2; text-align: left; margin-top: 6px; }
  .section { padding: 66px 0; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .topbar__left { gap: 12px; }
  .topbar__item--hide-sm { display: none; }
  .hero__card { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
