/* ============================================================
   Lume — Med Spa & Aesthetics Template
   Plain CSS3. No frameworks. No build step.
   Luxe / soft / glowing — blush, soft gold, ivory.
   ------------------------------------------------------------
   REBRAND: change the variables in :root. --brand sets the
   blush rose, --gold the accent. Swap --font-* to change
   typefaces (also update the <link> in each HTML head).
   ============================================================ */
:root {
  /* Colors */
  --brand:      #c98a96;  /* blush rose (primary)        */
  --brand-dark: #a9636f;  /* deeper rose                 */
  --gold:       #c9a36a;  /* soft gold (accent)          */
  --gold-dark:  #b08a4f;
  --ink:        #3a2c2e;  /* warm espresso text          */
  --ink-soft:   #816f70;  /* muted mauve-grey text       */
  --bg:         #fffdfb;  /* ivory page background        */
  --bg-alt:     #faf3ee;  /* soft blush alternate         */
  --line:       #efe2da;  /* borders / dividers           */
  --white:      #ffffff;

  /* Gradients */
  --grad:      linear-gradient(135deg, #d8a0aa 0%, #c9a36a 100%);
  --grad-soft: linear-gradient(135deg, #f6e3e1 0%, #f3e7d4 100%);

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

  /* Effects */
  --radius:    20px;
  --radius-sm: 13px;
  --shadow-sm: 0 4px 18px rgba(150, 110, 96, .08);
  --shadow:    0 16px 44px rgba(150, 110, 96, .14);
  --shadow-lg: 0 26px 64px rgba(201, 138, 150, .26);
  --transition: .35s 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.12; color: var(--ink); font-weight: 600; letter-spacing: .005em; }
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: 96px 0; }
.section--alt { background: var(--bg-alt); }

.section__head { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.section__title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 14px 0; font-weight: 600; }
.section__sub  { color: var(--ink-soft); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: inline-block; width: 22px; height: 1px;
  background: var(--gold); vertical-align: middle; margin: 0 10px;
  opacity: .7;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid { display: grid; gap: 28px; }
.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: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem;
  letter-spacing: .03em;
  padding: 14px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn--lg { padding: 17px 40px; font-size: .98rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-lg); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 30px 70px rgba(201, 138, 150, .4); }

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

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

.link-arrow { color: var(--brand-dark); font-weight: 600; font-size: .88rem; letter-spacing: .04em; transition: var(--transition); }
.link-arrow:hover { color: var(--gold-dark); letter-spacing: .07em; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--ink); font-weight: 600; font-size: .82rem;
  padding: 9px 18px; border-radius: 999px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

/* ------------------------------------------------------------ TOP BAR */
.topbar { background: var(--ink); color: #e6d6d2; font-size: .82rem; letter-spacing: .02em; }
.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: 22px; }
.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(201, 163, 106, .28); padding: 4px 13px; border-radius: 999px; }

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

.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 600; font-size: 1.6rem; letter-spacing: .04em; }
.logo__mark { display: grid; place-items: center; }
.logo__text { line-height: 1; }
.logo__dot { color: var(--gold); }
.logo--light, .logo--light .logo__text { color: #fff; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav__list { display: flex; gap: 30px; }
.nav__link { font-weight: 500; font-size: .95rem; color: var(--ink-soft); position: relative; transition: var(--transition); letter-spacing: .02em; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px;
  background: var(--grad); transition: var(--transition); border-radius: 2px;
}
.nav__link:hover { color: var(--brand-dark); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--brand-dark); 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: 2px; background: var(--ink); border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------ HERO */
.hero {
  position: relative;
  background: radial-gradient(circle at 82% 12%, rgba(201, 163, 106, .14), transparent 46%),
              radial-gradient(circle at 8% 88%, rgba(201, 138, 150, .16), transparent 48%),
              var(--bg-alt);
  padding: 86px 0 134px;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 48px; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; margin: 20px 0; line-height: 1.04; }
.hero__text { color: var(--ink-soft); font-size: 1.14rem; max-width: 520px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; color: var(--ink-soft); font-size: .9rem; font-weight: 500; }
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Hero art */
.hero__art { position: relative; display: grid; place-items: center; min-height: 420px; }
.hero__glow {
  position: absolute; inset: 0; margin: auto; width: 380px; height: 380px;
  background: var(--grad); opacity: .2;
  border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
  filter: blur(8px);
  animation: morph 11s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%; }
  50%     { border-radius: 58% 42% 40% 60% / 56% 58% 42% 44%; }
}
.hero__photo {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px; aspect-ratio: 4 / 5;
  border-radius: 220px 220px 24px 24px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 7px solid #fff;
}
.hero__card {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  padding: 13px 18px; border-radius: 16px; box-shadow: var(--shadow);
  font-size: .82rem; border: 1px solid var(--line);
}
.hero__card strong { display: block; color: var(--ink); font-family: var(--font-body); font-size: .9rem; }
.hero__card small { color: var(--ink-soft); }
.hero__card-emoji { font-size: 1.5rem; }
.hero__card--rating { top: 14%; left: -3%; animation: float 5s ease-in-out infinite; }
.hero__card--glow   { bottom: 13%; right: -3%; animation: float 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: 32px; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(201, 138, 150, .35); }

/* ------------------------------------------------------------ INTRO STRIP */
.intro { background: var(--bg); }
.intro__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.intro__media { position: relative; display: grid; place-items: center; }
.intro__photo {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.intro__badge {
  position: absolute; bottom: -22px; right: -10px;
  background: var(--grad); color: #fff; border-radius: var(--radius-sm);
  padding: 18px 24px; box-shadow: var(--shadow); text-align: center;
}
.intro__badge strong { display: block; font-family: var(--font-head); font-size: 2.1rem; line-height: 1; }
.intro__badge span { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.intro__body .section__title { text-align: left; margin-top: 10px; }
.intro__body p { color: var(--ink-soft); margin-bottom: 18px; }
.intro__list { display: grid; gap: 13px; margin: 22px 0 28px; }
.intro__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-weight: 500; }
.intro__list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad-soft); color: var(--gold-dark);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
  margin-top: 3px;
}

/* ------------------------------------------------------------ TREATMENT CARDS */
.treatment { position: relative; overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.treatment__media { position: relative; overflow: hidden; }
.treatment__img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.treatment:hover .treatment__img { transform: scale(1.07); }
.treatment__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,253,251,.92); color: var(--gold-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; backdrop-filter: blur(4px);
}
.treatment__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.treatment__body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.treatment__body p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 18px; flex: 1; }
.treatment__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.treatment__price { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--brand-dark); }
.treatment__price small { font-size: .72rem; color: var(--ink-soft); font-family: var(--font-body); letter-spacing: .08em; text-transform: uppercase; display: block; }

/* ------------------------------------------------------------ FEATURES (why choose) */
.feature { text-align: center; padding: 36px 26px; }
.feature__icon {
  display: grid; place-items: center; width: 72px; height: 72px; font-size: 2rem;
  background: var(--grad-soft); border-radius: 20px; margin: 0 auto 20px;
}
.feature h3 { font-size: 1.4rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .93rem; }

/* ------------------------------------------------------------ SPECIALISTS */
.specialist { text-align: center; padding: 0; overflow: hidden; }
.specialist__photo {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
}
.specialist__body { padding: 24px 22px 28px; }
.specialist__body h3 { font-size: 1.35rem; }
.specialist__role { color: var(--gold-dark); font-weight: 600; font-size: .85rem; letter-spacing: .04em; margin-bottom: 12px; }
.specialist__cred { color: var(--ink-soft); font-size: .88rem; margin-bottom: 16px; }
.specialist__social { display: flex; justify-content: center; gap: 10px; }
.specialist__social a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: var(--bg-alt); transition: var(--transition); font-size: .95rem;
}
.specialist__social a:hover { background: var(--grad); transform: translateY(-3px); }

/* ------------------------------------------------------------ GALLERY */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--wide { grid-column: span 2; }
.gallery__cap {
  position: absolute; inset: auto 0 0 0; padding: 22px 16px 14px;
  background: linear-gradient(transparent, rgba(58,44,46,.72));
  color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .05em;
}
@media (max-width: 768px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

/* ------------------------------------------------------------ TESTIMONIALS */
.testimonial { display: flex; flex-direction: column; gap: 16px; }
.testimonial__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.testimonial blockquote { color: var(--ink); font-family: var(--font-head); font-size: 1.32rem; line-height: 1.45; font-style: italic; }
.testimonial figcaption { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testimonial__avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial figcaption strong { display: block; font-family: var(--font-body); font-size: .95rem; }
.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: 48px 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: 3rem; line-height: 1; }
.stat__label { display: block; margin-top: 8px; font-size: .86rem; letter-spacing: .06em; opacity: .95; }

/* ------------------------------------------------------------ CTA STRIP */
.cta-strip {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(201,163,106,.25), transparent 50%), var(--ink);
  color: #fff; padding: 76px 0;
}
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-strip p { color: #e6d6d2; margin-top: 10px; max-width: 460px; }

/* ------------------------------------------------------------ FOOTER */
.footer { background: #2c2123; color: #c8b6b3; padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 52px; }
.footer__brand .logo { color: #fff; }
.footer__brand p { margin: 18px 0 20px; 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(--grad); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer__col ul { display: grid; gap: 12px; }
.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.6; margin-bottom: 6px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .84rem; }
.footer__links a:hover { color: #fff; }

/* ------------------------------------------------------------ BACK TO TOP */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad); 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); }

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

/* ============================================================
   PAGE BANNER + BREADCRUMB (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(201,163,106,.16), transparent 46%),
              radial-gradient(circle at 5% 92%, rgba(201,138,150,.18), transparent 48%),
              var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 70px 0 76px;
  text-align: center;
  overflow: hidden;
}
.page-banner__inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.page-banner__title { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; margin: 16px 0; }
.page-banner__sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 620px; margin: 0 auto 22px; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .86rem; font-weight: 500; color: var(--ink-soft);
  background: rgba(255,255,255,.65); border: 1px solid var(--line);
  padding: 8px 20px; border-radius: 999px;
}
.breadcrumb a { color: var(--brand-dark); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb__sep { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ============================================================
   TREATMENTS PAGE — grouped menu
   ============================================================ */
.menu-group { margin-bottom: 76px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.menu-group__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.menu-group__head p { color: var(--ink-soft); font-size: .96rem; max-width: 440px; }
.menu-group__label { color: var(--gold-dark); font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; display: block; margin-bottom: 6px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__body .section__title { text-align: left; margin-bottom: 16px; }
.split__body p { color: var(--ink-soft); margin-bottom: 16px; }
.split__media { position: relative; }
.split__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.split--reverse .split__media { order: 2; }

.value { padding: 30px 28px; }
.value__icon {
  display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 18px;
  font-size: 1.7rem; background: var(--grad-soft); border-radius: 16px;
}
.value h3 { font-size: 1.35rem; margin-bottom: 8px; }
.value p { color: var(--ink-soft); font-size: .93rem; }

.standard { display: flex; gap: 16px; align-items: flex-start; }
.standard__icon { flex: none; width: 48px; height: 48px; display: grid; place-items: center; background: var(--grad-soft); border-radius: 12px; font-size: 1.4rem; }
.standard h3 { font-size: 1.2rem; margin-bottom: 6px; }
.standard p { color: var(--ink-soft); font-size: .92rem; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.price-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.price-table__head { background: var(--grad-soft); padding: 22px 30px; }
.price-table__head h3 { font-size: 1.6rem; }
.price-table__head span { color: var(--ink-soft); font-size: .9rem; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 30px; border-top: 1px solid var(--line);
}
.price-row__info h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.price-row__info p { color: var(--ink-soft); font-size: .86rem; }
.price-row__price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--brand-dark); white-space: nowrap; }
.price-row__price small { font-size: .7rem; color: var(--ink-soft); font-family: var(--font-body); letter-spacing: .06em; text-transform: uppercase; display: block; text-align: right; }

/* Packages */
.package { position: relative; display: flex; flex-direction: column; text-align: center; padding: 40px 30px; }
.package--featured { border-color: var(--brand); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.package--featured::before {
  content: 'Most Loved'; position: absolute; top: 18px; right: 18px;
  background: var(--grad); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.package h3 { font-size: 1.6rem; margin-bottom: 6px; }
.package__desc { color: var(--ink-soft); font-size: .9rem; margin-bottom: 20px; }
.package__price { font-family: var(--font-head); font-size: 3rem; font-weight: 600; color: var(--brand-dark); line-height: 1; }
.package__price span { font-size: 1rem; color: var(--ink-soft); font-family: var(--font-body); }
.package__list { display: grid; gap: 12px; margin: 26px 0 30px; text-align: left; }
.package__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--ink); }
.package__list .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-soft); color: var(--gold-dark);
  display: grid; place-items: center; font-size: .72rem; font-weight: 700; margin-top: 3px;
}
.package .btn { margin-top: auto; }

/* ------------------------------------------------------------ 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; transition: var(--transition); }
.faq__item.open { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--ink);
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__icon { flex: none; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-soft); color: var(--gold-dark); font-size: 1.2rem; transition: var(--transition); }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__a-inner { padding: 0 26px 24px; color: var(--ink-soft); font-size: .96rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { 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: 26px; }
.info-list { display: grid; gap: 18px; margin-bottom: 28px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list__icon { flex: none; width: 48px; height: 48px; display: grid; place-items: center; background: var(--grad-soft); border-radius: 13px; font-size: 1.3rem; }
.info-list strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.info-list p, .info-list a { color: var(--ink-soft); font-size: .92rem; }
.info-list a:hover { color: var(--brand-dark); }

.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow-sm); }
.hours-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.hours-list { display: grid; gap: 10px; }
.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; }

/* ------------------------------------------------------------ BOOKING FORM */
.booking-form { padding: 38px; }
.booking-form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.booking-form > p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 24px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: var(--bg); 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(201,138,150,.14); background: #fff;
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #d9534f; }
.error { color: #d9534f; font-size: .8rem; display: block; margin-top: 6px; min-height: 1em; }
.form-success {
  color: var(--gold-dark); font-weight: 600; margin-top: 18px; text-align: center;
  background: var(--grad-soft); border-radius: var(--radius-sm); padding: 16px;
}
.form-note { color: var(--ink-soft); font-size: .8rem; text-align: center; margin-top: 14px; }

.map-embed {
  margin-top: 30px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; text-align: center;
  background: var(--grad-soft); min-height: 220px; padding: 30px; color: var(--ink-soft);
}
.map-embed strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .grid--4 { 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: 360px; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .intro__inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .intro__body .section__title, .split__body .section__title, .contact-info .section__title { text-align: center; }
  .split--reverse .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .package--featured { transform: none; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(80%, 330px);
    background: var(--bg); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 104px 34px 34px; gap: 24px; box-shadow: -10px 0 40px rgba(58,44,46,.14);
    transition: right .38s ease; z-index: 99;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 20px; width: 100%; }
  .nav__link { font-size: 1.15rem; }
  .nav__cta { width: 100%; }
  .hamburger { display: flex; z-index: 100; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .menu-group__head { flex-direction: column; align-items: flex-start; }
  .price-row { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__left { gap: 14px; }
  .hero__card { display: none; }
  .intro__badge { right: 0; }
}

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