/* Pro Beauty — Business Bay, Dubai
   Palette keyed to the brand logo (navy wordmark + royal-blue PB monogram + copper divider on cream).
   Source: CLAUDE-DESIGN.md palette section + media-manifest.md. */

:root {
  --bg:        #F4F1EA; /* warm cream canvas */
  --bg-deep:   #ECE7DC; /* slightly deeper cream for banding */
  --surface:   #FFFFFF; /* marble-white cards / panels */
  --text:      #1D2D4F; /* deep navy — primary text */
  --muted:     #6E6A64; /* warm grey — secondary text */
  --primary:   #1D2D4F; /* deep navy — headers, footer, primary buttons */
  --primary-d: #14203a; /* darker navy for footer depth */
  --secondary: #A8693F; /* copper — dividers, section labels */
  --accent:    #2F5499; /* royal/cobalt blue — CTAs, links */
  --accent-d:  #264a8a;
  --border:    #E5DED4; /* soft sand hairline */
  --border-on-dark: rgba(255,255,255,0.14);
  --focus:     #2F5499;

  --whatsapp:  #25D366;

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

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(29,45,79,0.05), 0 2px 8px rgba(29,45,79,0.04);
  --shadow-md: 0 8px 30px rgba(29,45,79,0.10);
  --shadow-lg: 0 24px 60px rgba(20,32,58,0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

/* ---------- Shared section + label ---------- */
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.band-deep { background: var(--bg-deep); }
.band-navy { background: var(--primary); color: #F3F1EC; }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--secondary);
}
.eyebrow--center { justify-content: center; }
.band-navy .eyebrow { color: #C99A6F; }

.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(32px, 5vw, 52px); }
.section-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 56ch;
}
.section-head--center .section-sub { margin-inline: auto; }
.band-navy .section-sub { color: rgba(243,241,236,0.78); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(47,84,153,0.30); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--whatsapp { --btn-bg: var(--whatsapp); --btn-fg: #08311a; }
.btn--whatsapp:hover { box-shadow: 0 10px 26px rgba(37,211,102,0.34); }
.btn--navy { --btn-bg: var(--primary); }
.btn--navy:hover { box-shadow: 0 10px 26px rgba(29,45,79,0.30); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--ghost:hover { background: var(--text); color: var(--bg); box-shadow: none; }

.btn--on-image {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn--on-image:hover { background: #fff; color: var(--text); box-shadow: 0 10px 26px rgba(0,0,0,0.25); }

.btn--sm { min-height: 44px; padding: 0 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* small text-link with arrow */
.linkarrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--accent);
}
.linkarrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.linkarrow:hover svg { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.nav--scrolled {
  background: rgba(244,241,234,0.88);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.nav__logo { display: flex; align-items: center; gap: 0; }
.nav__logo img { height: 56px; width: auto; transition: opacity .3s, height .3s var(--ease); }
.nav--scrolled .nav__logo img { height: 48px; }
@media (max-width: 939px) { .nav__logo img { height: 46px; } }
/* logo art is navy on transparent — invert to cream when over the dark hero */
.nav:not(.nav--scrolled) .nav__logo img { filter: brightness(0) invert(1); }

.nav__links { display: none; }
@media (min-width: 940px) {
  .nav__links { display: flex; align-items: center; gap: 34px; }
}
.nav__link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav:not(.nav--scrolled) .nav__link { color: rgba(255,255,255,0.92); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { display: none; }
@media (min-width: 940px) { .nav__cta { display: inline-flex; } }

.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}
.nav:not(.nav--scrolled) .nav__burger { color: #fff; }
@media (min-width: 940px) { .nav__burger { display: none; } }
.nav__burger svg { width: 26px; height: 26px; }

/* Mobile menu sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--primary);
  color: #F3F1EC;
  display: flex;
  flex-direction: column;
  padding: 26px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .42s var(--ease);
  overflow-y: auto;
}
.sheet--open { transform: translateY(0); }
.sheet__top { display: flex; align-items: center; justify-content: space-between; }
.sheet__top img { height: 50px; filter: brightness(0) invert(1); }
.sheet__close {
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--border-on-dark);
  border-radius: 999px; color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.sheet__close svg { width: 22px; height: 22px; }
.sheet__links { display: flex; flex-direction: column; gap: 2px; margin-top: 38px; }
.sheet__links a {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: #F3F1EC;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-on-dark);
}
.sheet__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.sheet__meta { margin-top: auto; padding-top: 32px; color: rgba(243,241,236,0.6); font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(13,21,40,0.92) 0%, rgba(13,21,40,0.45) 38%, rgba(13,21,40,0.18) 70%, rgba(13,21,40,0.42) 100%);
}
.hero__inner { padding-block: 120px 56px; width: 100%; }
.hero__eyebrow {
  color: #D9C3A8;
  letter-spacing: 0.26em;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 22px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content:""; width: 32px; height: 1px; background: #D9C3A8; }
.hero__title {
  font-size: clamp(44px, 9vw, 92px);
  line-height: 0.98;
  color: #fff;
  font-weight: 500;
  max-width: 16ch;
}
.hero__title em { font-style: italic; color: #E7D3BC; }
.hero__sub {
  margin-top: 26px;
  font-size: clamp(17px, 2.4vw, 21px);
  color: rgba(255,255,255,0.86);
  max-width: 48ch;
  line-height: 1.5;
}
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__strip {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__strip span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
}
.hero__strip svg { width: 17px; height: 17px; color: #D9C3A8; }
.scroll-cue {
  position: absolute;
  right: var(--gutter); bottom: 38px;
  z-index: 1;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
  display: none;
}
@media (min-width: 940px) { .scroll-cue { display: inline-flex; align-items: center; gap: 14px; } }
.scroll-cue::after { content:""; width:1px; height: 54px; background: rgba(255,255,255,0.4); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100%{ transform: scaleY(0.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* ---------- Service category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 52px;
}
@media (min-width: 620px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 940px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
  min-height: 200px;
}
.cat-card::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card:hover::after { transform: scaleY(1); }
.cat-card__num {
  font-family: var(--serif);
  font-size: 15px; font-style: italic;
  color: var(--secondary);
  margin-bottom: 16px;
}
.cat-card__name { font-size: 27px; margin-bottom: 10px; }
.cat-card__desc { color: var(--muted); font-size: 15px; flex: 1; }
.cat-card__tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.cat-card__tags span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(47,84,153,0.07);
  padding: 5px 11px; border-radius: 999px;
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  gap: 18px;
  margin-top: 52px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(47,84,153,0.08);
  color: var(--accent);
  margin-bottom: 22px;
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 24px; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 15.5px; }

/* split feature (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 5vw, 80px); } .split--rev .split__media { order: 2; } }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__stat {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(244,241,234,0.94);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 14px 20px;
}
.split__body .section-title { font-size: clamp(30px, 4.4vw, 46px); }
.feat-list { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.feat-list li {
  list-style: none;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.feat-list li:last-child { border-bottom: 1px solid var(--border); }
.feat-list .fi {
  flex: none; width: 22px; height: 22px; margin-top: 2px; color: var(--accent);
}
.feat-list h4 { font-family: var(--sans); font-size: 16px; font-weight: 700; margin-bottom: 3px; letter-spacing: 0.01em; }
.feat-list p { color: var(--muted); font-size: 15px; }

/* ---------- Menu (services list) ---------- */
.menu-tabs {
  display: flex;
  gap: 8px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.menu-tab {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .25s var(--ease);
  min-height: 44px;
}
.menu-tab:hover { border-color: var(--accent); color: var(--accent); }
.menu-tab--active { background: var(--primary); color: #fff; border-color: var(--primary); }
.menu-tab--active:hover { color: #fff; }

.menu-panel {
  margin-top: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 24px;
  align-items: center;
  padding: 22px clamp(20px, 3vw, 34px);
  border-top: 1px solid var(--border);
  transition: background .2s;
}
.menu-row:first-child { border-top: none; }
.menu-row:hover { background: var(--bg); }
.menu-row__main { min-width: 0; }
.menu-row__name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.menu-row__desc { color: var(--muted); font-size: 14.5px; margin-top: 3px; }
.menu-row__right { display: flex; align-items: center; gap: 18px; justify-content: flex-end; flex-wrap: wrap; }
.menu-row__price {
  font-family: var(--serif);
  font-size: 21px;
  white-space: nowrap;
  color: var(--text);
}
.menu-row__price small { font-family: var(--sans); font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }
.menu-row__price--ask { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--muted); font-style: normal; }
.menu-book {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent);
  border-radius: 999px;
  min-height: 42px; padding: 0 16px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: all .2s var(--ease);
  white-space: nowrap;
}
.menu-book svg { width: 16px; height: 16px; }
.menu-book:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.price-note {
  margin-top: 18px;
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted); font-size: 13.5px;
  max-width: 70ch;
}
.price-note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--secondary); }

@media (max-width: 540px) {
  .menu-row { grid-template-columns: 1fr; }
  .menu-row__right { justify-content: space-between; }
}

/* ---------- Gallery ---------- */
.gallery {
  margin-top: 50px;
  columns: 1;
  column-gap: 16px;
}
@media (min-width: 560px) { .gallery { columns: 2; } }
@media (min-width: 980px) { .gallery { columns: 3; } }
.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-deep);
}
.gallery__item img { width: 100%; height: auto; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 28px 18px 14px;
  background: linear-gradient(to top, rgba(13,21,40,0.78), transparent);
  color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11,17,33,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 50px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox--open { opacity: 1; pointer-events: auto; }
.lightbox__img { max-width: 92vw; max-height: 80vh; border-radius: 8px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__cap { position: absolute; left: 0; right: 0; bottom: 26px; text-align: center; color: rgba(255,255,255,0.85); font-size: 14px; letter-spacing: 0.04em; }
.lb-btn {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,0.22); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 50px; }
@media (min-width: 900px) { .loc-grid { grid-template-columns: 1fr 1.1fr; align-items: stretch; } }
.loc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column;
}
.loc-detail { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.loc-detail:last-of-type { border-bottom: none; }
.loc-detail svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.loc-detail h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.loc-detail p { font-size: 16px; }
.loc-detail .tag-confirm { font-size: 12px; color: var(--secondary); font-weight: 600; }
.loc-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  position: relative;
  background: var(--bg-deep);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(0.25) contrast(1.02); }
.map-badge {
  position: absolute; left: 16px; top: 16px;
  background: var(--surface);
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.map-badge svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- Booking form ---------- */
.book-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 940px) { .book-grid { grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 90px); align-items: center; } }
.book-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--text); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 15px;
  min-height: 52px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
  box-shadow: 0 0 0 3px rgba(47,84,153,0.13);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 460px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.form-success {
  text-align: center;
  padding: 20px 6px;
}
.form-success__check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: rgba(37,211,102,0.12); display: grid; place-items: center; color: #1f9d52; }
.form-success__check svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 28px; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

.book-side .section-title { font-size: clamp(30px, 4.4vw, 48px); }
.book-contacts { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.book-contacts a {
  display: flex; align-items: center; gap: 14px;
  color: var(--text); font-weight: 600; font-size: 16px;
}
.book-contacts .ci { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; }
.book-contacts svg { width: 22px; height: 22px; }
.ci--wa { background: rgba(37,211,102,0.12); color: #1f9d52; }
.ci--call { background: rgba(47,84,153,0.1); color: var(--accent); }
.ci--ig { background: rgba(168,105,63,0.12); color: var(--secondary); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content:""; position: absolute; inset: 0; background: linear-gradient(rgba(15,23,43,0.82), rgba(15,23,43,0.86)); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(34px, 6vw, 64px); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 18px auto 0; font-size: clamp(16px,2vw,19px); }
.cta-band__actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--primary-d); color: rgba(243,241,236,0.72); padding-block: clamp(48px, 7vw, 80px) 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.footer__brand .wordmark { margin-bottom: 18px; }
.footer__brand p { font-size: 15px; max-width: 36ch; }
.footer h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { color: rgba(243,241,236,0.72); font-size: 15px; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer__contact a { color: rgba(243,241,236,0.72); }
.footer__contact a:hover { color: #fff; }
.footer__bar {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--border-on-dark);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 13px; color: rgba(243,241,236,0.5);
}
.footer__bar .confirm-note { max-width: 60ch; }

/* CSS wordmark (footer / where logo art can't sit on dark) */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark__main {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.18em;
  color: #fff;
  font-weight: 500;
}
.wordmark__sub {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C99A6F;
  margin-top: 8px;
}

/* ---------- Sticky mobile booking bar ---------- */
.mbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(29,45,79,0.12);
  transform: translateY(110%);
  transition: transform .4s var(--ease);
}
.mbar--show { transform: translateY(0); }
.mbar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 60px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  color: #fff;
}
.mbar a svg { width: 20px; height: 20px; }
.mbar .m-wa { background: var(--whatsapp); color: #08311a; }
.mbar .m-call { background: var(--primary); }
@media (min-width: 940px) { .mbar { display: none; } }

/* WhatsApp FAB (desktop) */
.fab {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 65;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #08311a;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
@media (min-width: 940px) { .fab { display: flex; } }

/* spacing helper so content clears mobile bar */
.page-pad-bottom { height: 60px; }
@media (min-width: 940px) { .page-pad-bottom { display: none; } }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
