/* ==========================================================================
   Treats By Geo — stylesheet
   1. Tokens          5. Sections
   2. Reset & base    6. Booking
   3. Motion system   7. Overlays
   4. Nav & hero      8. Footer & utilities
   ========================================================================== */

/* ── 1. Tokens ───────────────────────────────────────────────────────────── */
:root {
  /* Ink */
  --clay: #3d2b24;
  --clay-mid: #5a433a;
  --clay-light: #8a7168;

  /* Accent */
  --rose: #c2868c;
  --rose-soft: #d4a5a9;
  --rose-wash: rgba(194, 134, 140, 0.1);
  --rose-ring: rgba(194, 134, 140, 0.35);

  /* Surface */
  --linen: #f7f0ec;
  --cream: #faf6f3;
  --white: #fff;
  --bone: #ede4de;

  /* Line */
  --border: rgba(61, 43, 36, 0.08);
  --border-m: rgba(61, 43, 36, 0.12);

  /* Elevation */
  --sh-xs: 0 1px 2px rgba(61, 43, 36, 0.04);
  --sh-sm: 0 2px 8px rgba(61, 43, 36, 0.06);
  --sh-md: 0 8px 30px rgba(61, 43, 36, 0.08);
  --sh-lg: 0 20px 60px rgba(61, 43, 36, 0.12);
  --sh-xl: 0 30px 80px rgba(61, 43, 36, 0.16);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Metrics */
  --mw: 1240px;
  --r: 20px;
  --rs: 12px;
  --rxs: 8px;
  --gutter: clamp(20px, 5vw, 60px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Status */
  --ok: #4a7c59;
  --err: #b4443f;
}

/* ── 2. Reset & base ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--sans);
  color: var(--clay);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.ctn {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 12000;
  background: var(--clay);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--rxs) var(--rxs);
  font-size: 0.85rem;
  transition: top 0.25s var(--ease);
}
.skip-link:focus {
  top: 0;
}

/* Film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── 3. Motion system ────────────────────────────────────────────────────── */
.rv,
.rv-l,
.rv-r,
.rv-s {
  opacity: 0;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.rv {
  transform: translateY(36px);
}
.rv-l {
  transform: translateX(-50px);
}
.rv-r {
  transform: translateX(50px);
}
.rv-s {
  transform: scale(0.92);
}
.rv.vis,
.rv-l.vis,
.rv-r.vis,
.rv-s.vis {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }

/* Masked line reveal */
.mask {
  overflow: hidden;
  display: block;
}
.mask-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease);
}
.mask.vis .mask-inner {
  transform: translateY(0);
}

/* Typewriter caret */
.caret::after {
  content: "|";
  color: var(--rose);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.stagger.vis > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.vis > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.vis > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.vis > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.vis > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.vis > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .rv, .rv-l, .rv-r, .rv-s { opacity: 1; transform: none; }
  .mask-inner { transform: none; }
}

/* ── 4. Nav & hero ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.sc {
  background: rgba(250, 246, 243, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  box-shadow: var(--sh-xs);
}
.nav-i {
  width: 100%;
  max-width: var(--mw);
  padding: 0 clamp(16px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1100;
}
.brand img {
  height: 68px;
  width: auto;
  transition: transform 0.3s var(--ease);
}
.brand:hover img {
  transform: scale(1.05) rotate(-3deg);
}
.brand span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nls {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nl {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clay-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.4s var(--ease);
}
.nl:hover,
.nl[aria-current="true"] {
  color: var(--clay);
}
.nl:hover::after,
.nl[aria-current="true"]::after {
  width: 100%;
}

.nc {
  background: var(--clay);
  color: var(--cream);
  padding: 11px 26px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.nc:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--rose-ring);
}

.ham {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1100;
}
.ham span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.35s var(--ease);
}
.ham span:nth-child(1) { top: 0; }
.ham span:nth-child(2) { top: 10px; }
.ham span:nth-child(3) { top: 20px; }
.ham.op span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.ham.op span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.ham.op span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.mob {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mob.op {
  opacity: 1;
  pointer-events: auto;
}
.mob a {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--clay);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mob.op a { opacity: 1; transform: translateY(0); }
.mob.op a:nth-child(1) { transition-delay: 0.05s; }
.mob.op a:nth-child(2) { transition-delay: 0.1s; }
.mob.op a:nth-child(3) { transition-delay: 0.15s; }
.mob.op a:nth-child(4) { transition-delay: 0.2s; }
.mob.op a:nth-child(5) { transition-delay: 0.25s; }
.mob.op a:nth-child(6) { transition-delay: 0.3s; }
.mob .mobc {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--clay);
  color: var(--cream);
  padding: 16px 44px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 12px;
}

@media (max-width: 820px) {
  .nls { display: none; }
  .ham { display: block; }
  .brand img { height: 52px; }
}

/* Hero */
.hero {
  padding: 120px 0 0;
  text-align: center;
  position: relative;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  overflow-wrap: break-word;
}
.hero h1 em {
  color: var(--rose);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clay-light);
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 36px;
  min-height: 3.4em;
}
.hero-a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.bp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clay);
  color: var(--cream);
  padding: 16px 34px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.bp:hover {
  background: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--rose-ring);
}
.bp svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.bp:hover svg { transform: translateX(4px); }

.bg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--border-m);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.bg-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}

/* Marquee */
.mq {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mq-track {
  display: flex;
  will-change: transform;
}
.mq-track img {
  height: clamp(200px, 30vw, 400px);
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

/* ── 5. Sections ─────────────────────────────────────────────────────────── */
section {
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.sl {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.st {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.sd {
  font-size: 0.95rem;
  color: var(--clay-light);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}
.center { text-align: center; }
.center .sd { margin-inline: auto; }

/* About */
.about { background: var(--white); }
.about-layout {
  display: grid;
  grid-template-columns: min(320px, 35%) 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}
.about-vid {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--sh-xl);
  background: #000;
  aspect-ratio: 9 / 16;
  max-height: 80vh;
  position: sticky;
  top: 100px;
}
.about-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-head { margin-bottom: 24px; }
.about-body p {
  font-size: 1rem;
  color: var(--clay-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.geo-sig {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose);
  margin-top: 10px;
}
.ps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step;
}
.pst {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-wash);
  border: 1.5px solid var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0;
}
.pst h3 {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.pst p {
  font-size: 0.82rem;
  color: var(--clay-light);
  line-height: 1.5;
}
@media (max-width: 820px) {
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-vid {
    max-width: 240px;
    margin: 0 auto;
    position: static;
    max-height: 55vh;
  }
}

/* Menu */
.mg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.mc {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.mc:hover,
.mc:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  background: var(--rose);
  border-color: var(--rose);
}
.mc:hover h3,
.mc:hover .mc-copy,
.mc:hover .ml,
.mc:focus-visible h3,
.mc:focus-visible .mc-copy,
.mc:focus-visible .ml {
  color: var(--white);
}
.mc:hover .me,
.mc:focus-visible .me { filter: brightness(10); }
.me {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  transition: filter 0.5s var(--ease);
}
.mc h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.5s var(--ease);
}
.mc-copy {
  font-size: 0.88rem;
  color: var(--clay-light);
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color 0.5s var(--ease);
}
.ml {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.5s var(--ease);
}
.ml svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.mc:hover .ml svg { transform: translateX(5px); }
@media (max-width: 700px) {
  .mg {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }
}

/* Parallax divider */
.pdiv {
  height: 60vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}
.pdiv-img {
  position: absolute;
  inset: 0 0 auto 0;
  height: 160%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  will-change: transform;
}
.pdiv-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 43, 36, 0.25),
    rgba(61, 43, 36, 0.45)
  );
  z-index: 1;
}
.pdiv-t {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  padding: 0 20px;
}
.pdiv-t h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 16px;
}
.pdiv-t p {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.85;
}

/* Gallery */
.gallery { background: var(--white); }
.gm {
  columns: 4;
  column-gap: 14px;
  margin-top: 50px;
}
.gi {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--rs);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
}
.gi img {
  width: 100%;
  transition: transform 0.7s var(--ease);
}
.gi::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(61, 43, 36, 0.25) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gi:hover img,
.gi:focus-visible img { transform: scale(1.05); }
.gi:hover::after,
.gi:focus-visible::after { opacity: 1; }
@media (max-width: 1000px) { .gm { columns: 3; } }

/* Mobile gallery — native scroll-snap */
.gal-carousel {
  display: none;
  position: relative;
  margin-top: 40px;
}
.gal-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.gal-track::-webkit-scrollbar { display: none; }
.gal-card {
  flex: 0 0 auto;
  width: 75vw;
  max-width: 320px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--sh-md);
  scroll-snap-align: center;
  padding: 0;
}
.gal-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.gal-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  pointer-events: none;
}
.gal-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.gal-arrow,
.rnav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clay);
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.gal-arrow:hover,
.rnav button:hover {
  background: var(--clay);
  color: var(--cream);
  border-color: var(--clay);
}
@media (max-width: 700px) {
  .gm { display: none; }
  .gal-carousel { display: block; }
}

/* Reviews */
.reviews { width: 100%; }
.rh {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.rnav { display: flex; gap: 10px; }
.rnav button {
  width: 48px;
  height: 48px;
  background: var(--white);
}
.rtw {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0 var(--gutter) 20px;
}
.rtw::-webkit-scrollbar { display: none; }
.rtr { display: flex; gap: 20px; }
.rc {
  flex: 0 0 auto;
  width: 380px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.rc:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--rose-soft);
}
.rs {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 0.9rem;
}
.rc blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--clay-mid);
  flex: 1;
  margin-bottom: 20px;
}
.ra {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rl {
  font-size: 0.7rem;
  color: var(--clay-light);
  margin-top: 2px;
}
@media (max-width: 600px) {
  .rc { width: 300px; padding: 24px 20px; }
  .rnav { display: none; }
}

/* ── 6. Booking ──────────────────────────────────────────────────────────── */
.booking {
  background: var(--linen);
  position: relative;
}
.booking::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--rose-wash) 0%, transparent 70%);
  pointer-events: none;
}
.blay {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 50px;
  position: relative;
}
.binfo {
  display: flex;
  flex-direction: column;
}
.binfo h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.2;
}
.binfo-lede {
  font-size: 0.92rem;
  color: var(--clay-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.bperks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  list-style: none;
}
.bpk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--clay-mid);
}
.bpki {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.binfo-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
}
.binfo-img img {
  width: clamp(180px, 80%, 400px);
  height: auto;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(61, 43, 36, 0.1));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.bbox {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.btabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.btab {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay-light);
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btab:hover { color: var(--clay); }
.btab[aria-selected="true"] {
  color: var(--rose);
  border-bottom-color: var(--rose);
  background: var(--rose-wash);
}
.bbody { padding: 32px; }

.bprog {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.pb {
  flex: 1;
  height: 3px;
  background: var(--bone);
  border-radius: 3px;
  overflow: hidden;
}
.pb::after {
  content: "";
  display: block;
  height: 100%;
  background: var(--rose);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pb.on::after { transform: scaleX(1); }

.bs { animation: slide 0.4s var(--ease); }
@keyframes slide {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
.bst {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 6px;
}
.bsd {
  font-size: 0.85rem;
  color: var(--clay-light);
  margin-bottom: 28px;
}

.fr { margin-bottom: 18px; }
.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.fl {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 7px;
}
.fl .opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.fi {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-m);
  border-radius: var(--rxs);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--clay);
  background: var(--cream);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-width: 0;
}
.fi:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-wash);
}
.fi::placeholder { color: #bfb3ad; }
.fi[aria-invalid="true"] {
  border-color: var(--err);
  box-shadow: 0 0 0 3px rgba(180, 68, 63, 0.1);
}
textarea.fi { resize: vertical; min-height: 90px; }
select.fi {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a7168' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.fe {
  display: block;
  font-size: 0.76rem;
  color: var(--err);
  margin-top: 6px;
}

.fi-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px dashed var(--border-m);
  border-radius: var(--rxs);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--clay-light);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.fi-upload:hover,
.fi-upload:focus-within { border-color: var(--rose); }
.fi-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.fi-upload.has-file {
  border-color: var(--rose);
  border-style: solid;
  background: var(--rose-wash);
  color: var(--clay);
}

.bact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
}
.bbk {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clay-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.bbk:hover { color: var(--clay); }
.bbk svg { width: 14px; height: 14px; }

.bnx,
.bsb {
  background: var(--clay);
  color: var(--cream);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease), opacity 0.3s ease;
}
.bnx:hover:not(:disabled),
.bsb:hover:not(:disabled) {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--rose-ring);
}
.bnx:disabled,
.bsb:disabled { opacity: 0.55; cursor: not-allowed; }
.bnx svg,
.bsb svg { width: 14px; height: 14px; }

.spin {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(250, 246, 243, 0.35);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.bsuc { text-align: center; padding: 50px 20px; }
.bsuc-i {
  width: 60px;
  height: 60px;
  background: var(--rose-wash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--rose);
}
.bsuc h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 10px;
}
.bsuc p {
  font-size: 0.9rem;
  color: var(--clay-light);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
}
.bsuc dl {
  margin: 26px auto 0;
  max-width: 340px;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 0.84rem;
}
.bsuc dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
}
.bsuc dt { color: var(--clay-light); }
.bsuc dd { font-weight: 500; text-align: right; }

.form-error {
  background: rgba(180, 68, 63, 0.08);
  border: 1px solid rgba(180, 68, 63, 0.25);
  color: var(--err);
  border-radius: var(--rxs);
  padding: 12px 14px;
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 18px;
}
.form-error a { text-decoration: underline; }

@media (max-width: 900px) {
  .blay { grid-template-columns: 1fr; gap: 40px; }
  .fr2 { grid-template-columns: 1fr; }
  .binfo-img { min-height: 120px; }
}
@media (max-width: 500px) {
  .bbody { padding: 24px 20px; }
  .btab { font-size: 0.7rem; padding: 14px 8px; }
}

/* ── Booking calendar ────────────────────────────────────────────────────── */
.cal {
  border: 1px solid var(--border-m);
  border-radius: var(--rs);
  background: var(--cream);
  padding: 14px;
  user-select: none;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}
.cal-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
}
.cal-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clay);
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.cal-nav:hover:not(:disabled) {
  background: var(--clay);
  color: var(--cream);
}
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-dow,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  margin-bottom: 6px;
}
.cal-dow span {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay-light);
  padding: 4px 0;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: var(--rxs);
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--clay);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease);
}
.cal-day:hover:not(:disabled) {
  background: var(--rose-wash);
  transform: scale(1.06);
}
.cal-day:disabled {
  color: rgba(138, 113, 104, 0.35);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.cal-day.today::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay-light);
}
.cal-day.sel {
  background: var(--rose);
  color: var(--white);
  font-weight: 500;
}
.cal-day.sel::after { background: var(--white); }
.cal-day.blank { visibility: hidden; }

.cal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--clay-light);
  flex-wrap: wrap;
}
.cal-picked {
  color: var(--clay);
  font-weight: 500;
}
.cal-clear {
  font-size: 0.74rem;
  color: var(--clay-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cal-clear:hover { color: var(--rose); }
.cal-note {
  font-size: 0.76rem;
  color: var(--clay-light);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── 7. Overlays ─────────────────────────────────────────────────────────── */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lb.op { opacity: 1; pointer-events: auto; }
.lb img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
}
.lbc,
.lba {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  font-size: 1.3rem;
}
.lbc {
  top: 20px;
  right: 24px;
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
  z-index: 10001;
}
.lbc:hover { background: var(--rose); }
.lba {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
}
.lba:hover { background: rgba(255, 255, 255, 0.18); }
.lbp { left: 20px; }
.lbn { right: 20px; }
.lb-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .lba { width: 44px; height: 44px; font-size: 1.1rem; }
  .lbp { left: 8px; }
  .lbn { right: 8px; }
  .lbc { top: 12px; right: 12px; width: 44px; height: 44px; }
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.modal.op { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--sh-xl);
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease);
}
.modal.op .modal-box { transform: scale(1); }
.modal-box h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 10px;
}
.modal-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.modal-box p {
  font-size: 0.9rem;
  color: var(--clay-mid);
  line-height: 1.6;
}
.modal-warn {
  background: var(--rose-wash);
  border: 1px solid var(--rose-soft);
  border-radius: var(--rs);
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--clay-mid);
  line-height: 1.5;
  text-align: left;
}
.modal-warn strong { color: var(--clay); }
.modal-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn-solid,
.btn-ghost {
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.btn-solid { background: var(--clay); color: var(--cream); }
.btn-solid:hover { background: var(--rose); }
.btn-ghost {
  border: 1.5px solid var(--border-m);
  color: var(--clay-light);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

/* ── 8. Footer, CTA, cookies ─────────────────────────────────────────────── */
.ctab {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.bento-main {
  grid-column: 1 / 3;
  background: var(--clay);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-main::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(194, 134, 140, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.bento-main h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
}
.bento-main p {
  color: var(--rose-soft);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 28px;
  position: relative;
}
.bento-main .bp {
  background: var(--rose);
  position: relative;
  align-self: flex-start;
}
.bento-main .bp:hover { background: var(--cream); color: var(--clay); }

.bento-soc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bento-soc a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.bento-fb { background: #1877f2; }
.bento-tt { background: #010101; }
.bento-soc a:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.bento-soc a svg { width: 20px; height: 20px; }

@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .bento-main {
    grid-column: 1;
    padding: 32px 24px;
    border-radius: 20px;
  }
  .bento-main h2 { font-size: 1.4rem; }
  .bento-main p { font-size: 0.85rem; margin-bottom: 20px; }
  .bento-main .bp { padding: 13px 26px; font-size: 0.78rem; }
  .bento-soc { flex-direction: row; gap: 10px; }
  .bento-soc a {
    padding: 14px;
    border-radius: 12px;
    font-size: 0.72rem;
    gap: 6px;
  }
  .bento-soc a svg { width: 16px; height: 16px; }
}

/* Info cards */
.info { background: var(--white); }
.ig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.ic {
  background: var(--cream);
  border-radius: var(--r);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.ic:hover { box-shadow: var(--sh-sm); }
.ic h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 14px;
}
.ic p,
.ic li {
  font-size: 0.88rem;
  color: var(--clay-mid);
  line-height: 1.7;
}
.ic ul { list-style: none; }
.ic li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.ic li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--rose-soft);
  border-radius: 50%;
}
@media (max-width: 700px) { .ig { grid-template-columns: 1fr; } }

/* Footer */
.ft {
  padding: 60px 0 36px;
  border-top: 1px solid var(--border);
}
.ft-t {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
  flex-wrap: wrap;
}
.ft-b-i {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ft-b-i img { height: 40px; }
.ft-b-i span {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
}
.ft-tag {
  font-size: 0.85rem;
  color: var(--clay-light);
  max-width: 280px;
  line-height: 1.6;
}
.ft-s { display: flex; gap: 12px; }
.sb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--linen);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-light);
  transition: all 0.3s var(--ease);
}
.sb:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px var(--rose-ring);
}
.sb svg { width: 18px; height: 18px; }
.ft-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--clay-light);
  flex-wrap: wrap;
  gap: 8px;
}
.ft-m {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  font-size: 0.85rem;
}
.ft-m:hover { opacity: 1; }

/* Cookie bar */
.ck {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(160%);
  width: 90%;
  max-width: 400px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  z-index: 9998;
  text-align: center;
  transition: transform 0.6s var(--ease);
}
.ck.sh { transform: translateX(-50%) translateY(0); }
.ck p {
  font-size: 0.82rem;
  color: var(--clay-light);
  margin-bottom: 14px;
}
.ck-b { display: flex; gap: 8px; justify-content: center; }
.cka,
.ckd {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.cka { background: var(--clay); color: var(--cream); }
.cka:hover { background: var(--rose); }
.ckd {
  border: 1px solid var(--border);
  color: var(--clay-light);
}
.ckd:hover { border-color: var(--rose); color: var(--rose); }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  background: var(--clay);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 0.84rem;
  box-shadow: var(--sh-lg);
  z-index: 12000;
  transition: transform 0.5s var(--ease);
  max-width: 90vw;
  text-align: center;
}
.toast.sh { transform: translateX(-50%) translateY(0); }
