/* =========================================================================
   Harmony Hypnosis — design system
   Palette derived from the logo: sage-green → teal gradient on pure black,
   with an elegant off-white serif. Peace Begins in the Mind.
   ========================================================================= */

:root {
  --black:        #000000;
  --panel:        #0b0f0e;
  --panel-2:      #111715;
  --line:         #1d2723;
  --line-soft:    #161e1b;

  --mist:         #ECEFE9;   /* primary serif white */
  --mist-2:       #c3ccc6;
  --dim:          #8b958f;   /* secondary text */
  --faint:        #5d655f;

  --sage:         #8FCB7E;
  --sage-bright:  #aadd9a;
  --sage-deep:    #5fa06b;
  --teal:         #4f9690;
  --teal-deep:    #2e6f6c;

  --grad:    linear-gradient(118deg, var(--sage) 0%, var(--teal) 100%);
  --grad-soft: linear-gradient(118deg, rgba(143,203,126,.16) 0%, rgba(79,150,144,.16) 100%);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--mist-2);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--sage); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--sage-bright); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--mist); font-weight: 500; line-height: 1.1; margin: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 18px;
  display: inline-block;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { font-size: 19px; color: var(--mist-2); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  letter-spacing: .02em;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .2s;
  text-align: center;
}
.btn-primary {
  background: var(--grad); color: #06120c;
  box-shadow: 0 8px 30px -10px rgba(96,160,107,.6);
}
.btn-primary:hover { transform: translateY(-2px); color: #06120c; box-shadow: 0 14px 38px -10px rgba(96,160,107,.75); }
.btn-ghost {
  background: transparent; color: var(--mist);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--sage); color: var(--mist); transform: translateY(-2px); }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none; }

/* =======================  NAV  ======================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 26px;
  transition: background .3s var(--ease), backdrop-filter .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4,7,6,.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
  padding: 12px 26px;
}
.nav-brand {
  font-family: var(--serif); color: var(--mist);
  font-size: 19px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  display: flex; align-items: center; gap: 11px;
}
.nav-brand img { width: 34px; height: 34px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.navlink {
  color: var(--mist-2); font-family: var(--sans); font-weight: 600;
  font-size: 14.5px; letter-spacing: .01em;
}
.nav-links a.navlink:hover { color: var(--sage); }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: .06em;
}
.lang-toggle button {
  background: transparent; color: var(--dim); border: 0; cursor: pointer;
  padding: 7px 12px; transition: background .2s, color .2s;
}
.lang-toggle button.active { background: var(--grad); color: #06120c; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--mist); margin: 5px 0; transition: .3s; }

/* =======================  HERO  ======================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 26px 80px; overflow: hidden;
}
.hero-aura {
  position: absolute; left: 50%; top: 46%;
  width: min(86vw, 720px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,203,126,.20) 0%, rgba(79,150,144,.12) 38%, transparent 68%);
  filter: blur(8px);
  animation: breathe 9s ease-in-out infinite;
  z-index: 0; pointer-events: none;
}
.hero-logo {
  position: relative; z-index: 2;
  width: min(74vw, 460px); height: auto;
  animation: floaty 11s ease-in-out infinite;
}
.hero-sub {
  position: relative; z-index: 2;
  margin: 26px auto 0; max-width: 540px;
  font-size: 19px; color: var(--mist-2); line-height: 1.65;
}
.hero-cta { position: relative; z-index: 2; margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--faint); font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--teal), transparent); animation: cue 2.4s ease-in-out infinite; }

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(.92); opacity: .65; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes cue { 0%,100% { opacity: .2; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* =======================  SECTIONS  ======================= */
section { position: relative; }
.section { padding: 110px 0; }
.section-head { max-width: 680px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5vw, 54px); letter-spacing: -.01em; }
.section-head p { margin: 18px 0 0; color: var(--dim); font-size: 18px; }

.divider-dots { display: flex; gap: 6px; justify-content: center; margin: 0 0 22px; }
.divider-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-deep); display: block; }
.divider-dots i:nth-child(2){ background: var(--teal);} .divider-dots i:nth-child(3){ background: var(--sage);}

/* About */
.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.about-portrait {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel);
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
}
.about-portrait img { width: 78%; }
.about-portrait .ring-quote {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--mist);
}
.about p + p { margin-top: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--mist-2); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px;
  display: inline-flex; align-items: center; gap: 8px;
}
.chip svg { width: 15px; height: 15px; stroke: var(--sage); }

/* Help grid */
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.help-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.help-card:hover { transform: translateY(-5px); border-color: rgba(143,203,126,.4); background: var(--panel-2); }
.help-icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--teal); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.help-icon svg { width: 26px; height: 26px; fill: none; stroke: url(#sg); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.help-card h3 { font-size: 23px; margin-bottom: 8px; }
.help-card p { margin: 0; font-size: 15.5px; color: var(--dim); line-height: 1.6; }

/* Offer cards */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.offer {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px 36px; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.offer:hover { transform: translateY(-4px); }
.offer.featured { border-color: rgba(143,203,126,.5); }
.offer.featured::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: var(--radius);
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .55;
}
.offer-tag {
  position: absolute; top: 20px; right: 22px; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: #06120c;
  background: var(--grad); padding: 5px 12px; border-radius: 999px;
}
.offer h3 { font-size: 28px; margin-bottom: 6px; }
.offer .dur { color: var(--sage); font-weight: 700; font-family: var(--sans); font-size: 14px; letter-spacing: .04em; }
.offer .price { font-family: var(--serif); font-size: 44px; color: var(--mist); margin: 18px 0 4px; line-height: 1; }
.offer .price small { font-size: 16px; color: var(--dim); font-family: var(--sans); }
.offer p.desc { color: var(--dim); font-size: 15.5px; margin: 14px 0 26px; min-height: 66px; }
.offer .btn { width: 100%; justify-content: center; }

/* Stats / reviews */
.reviews { text-align: center; }
.review-stat { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap; margin: 8px 0 30px; }
.review-stat .num { font-family: var(--serif); font-size: 64px; line-height: 1; }
.review-stat .lbl { color: var(--dim); font-size: 14px; letter-spacing: .04em; margin-top: 8px; }
.stars { color: var(--sage); letter-spacing: 4px; font-size: 22px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ci {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.contact-list .ci svg { width: 19px; height: 19px; stroke: var(--sage); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-list .lab { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.contact-list .val { color: var(--mist); font-size: 17px; }
.contact-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px;
}
.contact-card h3 { font-size: 26px; margin-bottom: 10px; }

/* Footer */
.footer { border-top: 1px solid var(--line-soft); padding: 56px 0 40px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { font-family: var(--serif); letter-spacing: .2em; text-transform: uppercase; color: var(--mist); font-size: 20px; }
.footer-brand small { display: block; font-style: italic; text-transform: none; letter-spacing: .02em; font-size: 14px; margin-top: 6px; }
.footer .tag { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-meta { color: var(--faint); font-size: 13px; line-height: 1.9; }
.footer-meta a { color: var(--dim); }
.disclaimer { color: var(--faint); font-size: 12.5px; line-height: 1.6; max-width: 540px; margin-top: 28px; }

/* =======================  BOOKING  ======================= */
.booking-shell { padding: 130px 0 90px; min-height: 100vh; }
.steps { display: flex; gap: 8px; justify-content: center; margin-bottom: 44px; flex-wrap: wrap; }
.step-pill {
  display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700;
  color: var(--faint); letter-spacing: .03em;
}
.step-pill .n { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--sans); }
.step-pill.active { color: var(--mist); }
.step-pill.active .n { background: var(--grad); color: #06120c; border-color: transparent; }
.step-pill.done .n { border-color: var(--sage); color: var(--sage); }
.step-sep { width: 22px; height: 1px; background: var(--line); align-self: center; }

.booking-panel {
  max-width: 760px; margin: 0 auto; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 40px 34px;
}
.booking-panel h2 { font-size: 30px; margin-bottom: 6px; }
.booking-panel .sub { color: var(--dim); margin: 0 0 28px; }

.svc-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.svc-option {
  text-align: left; background: var(--panel-2); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px 22px; cursor: pointer; transition: border-color .25s, transform .25s;
}
.svc-option:hover { transform: translateY(-3px); border-color: rgba(143,203,126,.5); }
.svc-option.selected { border-color: var(--sage); }
.svc-option .so-dur { color: var(--sage); font-weight: 700; font-size: 13px; letter-spacing: .04em; }
.svc-option h3 { font-size: 22px; margin: 6px 0; }
.svc-option .so-price { font-family: var(--serif); font-size: 26px; color: var(--mist); }
.svc-option p { font-size: 14px; color: var(--dim); margin: 10px 0 0; }

.date-row { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 14px; scrollbar-width: thin; }
.date-chip {
  flex: 0 0 auto; min-width: 78px; text-align: center; background: var(--panel-2);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 10px; cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.date-chip:hover { border-color: var(--teal); }
.date-chip.selected { border-color: var(--sage); background: rgba(143,203,126,.08); }
.date-chip .dow { font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; }
.date-chip .dnum { font-family: var(--serif); font-size: 24px; color: var(--mist); }
.date-chip .mon { font-size: 11px; color: var(--faint); text-transform: uppercase; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 10px; margin-top: 6px; }
.slot {
  background: var(--panel-2); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 0; text-align: center; cursor: pointer; font-weight: 700; color: var(--mist-2);
  font-family: var(--sans); font-size: 15px; transition: border-color .2s, color .2s, background .2s;
}
.slot:hover { border-color: var(--teal); color: var(--mist); }
.slot.selected { border-color: var(--sage); background: var(--grad); color: #06120c; }
.empty-note { color: var(--dim); padding: 18px 0; text-align: center; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--mist-2); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; background: var(--black); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 15px; color: var(--mist); font-family: var(--sans); font-size: 15.5px; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); }
.field textarea { resize: vertical; min-height: 92px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--dim); margin: 6px 0 22px; }
.consent input { margin-top: 3px; accent-color: var(--sage); width: 17px; height: 17px; }

.summary-box {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; margin-bottom: 24px; font-size: 15px;
}
.summary-box .row { display: flex; justify-content: space-between; padding: 6px 0; }
.summary-box .row .k { color: var(--dim); }
.summary-box .row .v { color: var(--mist); font-weight: 600; }

.booking-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 8px; }
.alert { background: rgba(176,80,80,.12); border: 1px solid rgba(196,96,96,.4); color: #f0c4c4; padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 18px; }
.hidden { display: none !important; }

/* Result pages */
.result {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 26px;
}
.result .mark { width: 96px; height: 96px; margin-bottom: 26px; }
.result h1 { font-size: clamp(36px, 6vw, 58px); margin-bottom: 14px; }
.result p { color: var(--dim); max-width: 520px; margin: 0 auto 10px; font-size: 18px; }
.result .detail { color: var(--mist); font-family: var(--serif); font-size: 22px; margin: 22px 0 30px; }
.spinner { width: 38px; height: 38px; border: 3px solid var(--line); border-top-color: var(--sage); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 18px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =======================  RESPONSIVE  ======================= */
/* ---- Accordion (help section) ---- */
.accordion { display: flex; flex-direction: column; gap: 10px; max-width: 900px; margin: 0 auto; }
.acc-item {
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .25s;
}
.acc-item[open] { border-color: rgba(143,203,126,.35); }
.acc-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 16.5px; color: var(--mist-2);
  transition: color .2s; user-select: none;
}
.acc-head::-webkit-details-marker { display: none; }
.acc-head:hover { color: var(--mist); }
.acc-item[open] .acc-head { color: var(--mist); }
.acc-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(143,203,126,.1); display: grid; place-items: center; }
.acc-icon svg { width: 18px; height: 18px; stroke: var(--sage); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.acc-head > span:nth-child(2) { flex: 1; }
.acc-arrow { margin-left: auto; flex-shrink: 0; }
.acc-arrow svg { width: 20px; height: 20px; stroke: var(--dim); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .3s var(--ease); }
.acc-item[open] .acc-arrow svg { transform: rotate(180deg); stroke: var(--sage); }
.acc-body { padding: 0 22px 22px 22px; }
.acc-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.acc-list li {
  position: relative; padding-left: 20px; color: var(--mist-2); font-size: 15px; line-height: 1.5;
}
.acc-list li::before { content: "·"; position: absolute; left: 4px; color: var(--sage); font-weight: 700; }

@media (max-width: 540px) {
  .acc-list { grid-template-columns: 1fr; }
}

/* ---- Feature grid, benefits, prices (existing) ---- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.feature-card {
  background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 22px; transition: transform .3s var(--ease), border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(143,203,126,.4); }
.feature-card h3 { font-size: 20px; margin: 14px 0 8px; }
.feature-card p { color: var(--dim); font-size: 14.5px; margin: 0; }

/* ---- Hypnotherapy: explainer + benefits ---- */
.hypno-explain { max-width: 820px; margin: 6px auto 8px; text-align: center; }
.hypno-explain p { color: var(--mist-2); font-size: 17px; }
.benefits {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; text-align: left;
}
.benefits li {
  position: relative; padding-left: 32px; color: var(--mist-2); font-size: 15.5px; line-height: 1.5;
}
.benefits li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.help-subhead {
  text-align: center; font-size: 27px; margin: 56px 0 30px;
}

/* ---- Offer price sub-line ---- */
.price-sub { color: var(--sage); font-weight: 700; font-size: 14px; margin: 0 0 12px; }

/* ---- Price list ---- */
.price-list { max-width: 820px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 16px; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 24px 28px;
}
.pr-main h3 { font-size: 22px; margin: 0 0 6px; }
.pr-main p { color: var(--dim); font-size: 14.5px; margin: 0; }
.pr-amt { text-align: right; flex-shrink: 0; }
.pr-amt span { font-family: var(--serif); font-size: 38px; color: var(--mist); line-height: 1; display: block; }
.pr-amt small { color: var(--dim); font-size: 13px; }
.price-notes {
  max-width: 820px; margin: 30px auto 0; padding: 0; list-style: none;
}
.price-notes li {
  position: relative; padding-left: 22px; color: var(--dim); font-size: 14.5px; margin: 0 0 10px; line-height: 1.5;
}
.price-notes li::before { content: "•"; position: absolute; left: 4px; color: var(--sage); }

/* ---- Booking: service sub + format toggle ---- */
.svc-option .so-sub { color: var(--sage); font-weight: 700; font-size: 13px; margin-top: 2px; }
.format-toggle { display: flex; gap: 10px; flex-wrap: wrap; }
.fmt-opt {
  flex: 1; min-width: 150px; cursor: pointer;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--mist-2);
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-family: var(--sans); font-weight: 700; font-size: 14.5px;
  transition: border-color .2s, background .2s, color .2s;
}
.fmt-opt:hover { border-color: var(--teal); }
.fmt-opt.selected { border-color: var(--sage); background: rgba(143,203,126,.1); color: var(--mist); }
.currency-note { color: var(--dim); font-size: 13px; margin: 10px 0 0; line-height: 1.5; }

@media (max-width: 880px) {
  body { font-size: 16px; }
  .nav-burger { display: block; }
  .nav-links {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(4,7,6,.97); backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line-soft);
    padding: 14px 22px 22px;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height .35s var(--ease), opacity .25s, padding .35s;
    padding-top: 0; padding-bottom: 0;
  }
  .nav-links.open { max-height: 80vh; opacity: 1; pointer-events: auto; padding-top: 14px; padding-bottom: 22px; }
  .nav-links a.navlink { padding: 12px 4px; font-size: 16px; border-bottom: 1px solid var(--line-soft); }
  .nav-links .lang-toggle { align-self: flex-start; margin: 10px 0 4px; }
  .nav-links .btn { width: 100%; justify-content: center; margin-top: 6px; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .about, .contact { grid-template-columns: 1fr; gap: 40px; }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .offers { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .booking-panel { padding: 28px 22px; }
  .svc-options, .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .help-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pr-amt { text-align: left; }
  .review-stat { gap: 32px; }
  .nav { padding: 14px 18px; }
  .wrap { padding: 0 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .hero-aura { opacity: .8; }
}
/* Legal / prose pages */
.legal { max-width: 760px; margin: 0 auto; padding: 130px 0 90px; }
.legal h1 { font-family: var(--serif); font-size: clamp(34px, 5vw, 50px); margin-bottom: 6px; }
.legal .updated { color: var(--faint); font-size: 14px; margin-bottom: 34px; }
.legal h2 { font-family: var(--serif); font-size: 26px; color: var(--mist); margin: 30px 0 8px; }
.legal p { color: var(--dim); font-size: 16.5px; line-height: 1.75; margin: 0 0 14px; }
.legal a { color: var(--sage); }
.legal .contact-line { color: var(--mist-2); }
