/* ==========================================================================
   Varahi Conventions — public site
   ========================================================================== */

:root {
  --ink:        #17120C;
  --ink-2:      #3B322A;
  --ink-3:      #6B6055;
  --cream:      #FCF9F3;
  --paper:      #FFFFFF;
  --tint:       #F5EEE2;
  --tint-2:     #EDE2D0;
  --gold:       #A8842A;
  --gold-light: #D9B863;
  --green:      #14453A;
  --green-lt:   #2E7A63;
  --rose:       #8C3F52;
  --line:       rgba(23, 18, 12, 0.12);
  --line-soft:  rgba(23, 18, 12, 0.07);

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

  --shadow-sm: 0 1px 2px rgba(23, 18, 12, .06), 0 2px 8px rgba(23, 18, 12, .05);
  --shadow-md: 0 4px 12px rgba(23, 18, 12, .07), 0 12px 32px rgba(23, 18, 12, .08);
  --shadow-lg: 0 8px 24px rgba(23, 18, 12, .10), 0 24px 64px rgba(23, 18, 12, .12);

  --radius:    14px;
  --radius-sm: 9px;
  --wrap:      1160px;
  --header-h:  76px;
}

/* --- reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

/* Class-level `display` beats the UA rule for [hidden], so restate it. */
[hidden] { display: none !important; }

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

h1 { font-size: clamp(2.6rem, 6.2vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

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

button, input, select, textarea { font: inherit; color: inherit; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: .8rem 1.2rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* --- layout --------------------------------------------------------------- */

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
.wrap-narrow { width: min(100% - 2.5rem, 780px); }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head h2 { margin-bottom: .35em; }
.section-lede { color: var(--ink-3); font-size: 1.06rem; }
.section-dark .section-lede { color: rgba(252, 249, 243, .68); }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-dark .eyebrow { color: var(--gold-light); }

/* --- buttons -------------------------------------------------------------- */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: 100px;
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn:hover  { transform: translateY(-1.5px); }
.btn:active { transform: translateY(0); }

.btn-primary { --btn-bg: var(--ink); --btn-fg: var(--cream); --btn-bd: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { --btn-bg: #2A2119; --btn-bd: #2A2119; box-shadow: var(--shadow-md); }

.btn-outline { --btn-bd: var(--line); --btn-fg: var(--ink); }
.btn-outline:hover { --btn-bd: var(--ink); background: rgba(23,18,12,.04); }

.btn-ghost { --btn-fg: var(--ink-2); padding-inline: .8rem; }
.btn-ghost:hover { --btn-fg: var(--ink); background: rgba(23,18,12,.05); }

.btn-sm  { padding: .52rem 1rem; font-size: .86rem; }
.btn-lg  { padding: .95rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* --- header --------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  color: var(--cream);
  transition: background-color .3s ease, box-shadow .3s ease, color .3s ease;
}
.site-header::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,7,4,.55), rgba(10,7,4,0));
  z-index: -1;
  transition: opacity .3s ease;
}

.site-header.is-stuck {
  background: rgba(252, 249, 243, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line-soft), var(--shadow-sm);
}
.site-header.is-stuck::after { opacity: 0; }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-mark { color: var(--gold-light); flex: none; }
.site-header.is-stuck .brand-mark { color: var(--gold); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; letter-spacing: .01em; }
.brand-sub {
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  opacity: .68; font-weight: 500;
}

.site-nav { display: flex; gap: 1.6rem; font-size: .91rem; }
.site-nav a { position: relative; padding: .35rem 0; opacity: .85; transition: opacity .2s ease; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.site-header:not(.is-stuck) .btn-ghost { --btn-fg: rgba(252,249,243,.9); }
.site-header:not(.is-stuck) .btn-ghost:hover { --btn-fg: #fff; background: rgba(255,255,255,.12); }
.site-header:not(.is-stuck) .btn-primary { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }
.site-header:not(.is-stuck) .btn-primary:hover { --btn-bg: #fff; --btn-bd: #fff; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0 9px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: currentColor; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--cream); color: var(--ink);
  border-top: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  padding: .5rem 1.25rem 1.25rem;
  display: flex; flex-direction: column;
}
.mobile-nav a { padding: .95rem .25rem; border-bottom: 1px solid var(--line-soft); font-size: 1.02rem; }
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-call { color: var(--gold); font-weight: 600; }

/* --- hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(94svh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.11) translate3d(-1.2%, -1.2%, 0); }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(8,6,3,.60) 0%, rgba(8,6,3,.22) 32%, rgba(8,6,3,.55) 72%, rgba(8,6,3,.86) 100%),
    radial-gradient(120% 70% at 50% 100%, rgba(8,6,3,.55), transparent 60%);
}

.hero-content { padding-block: clamp(6rem, 14vh, 9rem) clamp(2.5rem, 6vh, 4rem); }
.hero-content .eyebrow { color: var(--gold-light); }
.hero h1 { margin-bottom: .45em; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero-lede {
  max-width: 47ch;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: rgba(252, 249, 243, .86);
  margin-bottom: 2.1rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero .btn-primary { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }
.hero .btn-primary:hover { --btn-bg: #fff; --btn-bd: #fff; }
.hero .btn-outline { --btn-bd: rgba(252,249,243,.45); --btn-fg: var(--cream); }
.hero .btn-outline:hover { --btn-bd: var(--cream); background: rgba(255,255,255,.12); }

.hero-stats {
  position: relative;
  border-top: 1px solid rgba(252, 249, 243, .16);
  background: rgba(8, 6, 3, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 1.15rem;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: .1rem; text-align: center; }
.stat + .stat { border-left: 1px solid rgba(252, 249, 243, .14); }
.stat-value { font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 1.85rem); line-height: 1.1; }
.star { color: var(--gold-light); font-size: .8em; margin-left: .12em; }
.stat-label {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(252, 249, 243, .6);
}

/* --- about ---------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-copy p { color: var(--ink-2); }
.about-points {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 1.5rem;
}
.about-points li {
  position: relative; padding-left: 1.6rem;
  font-size: .93rem; color: var(--ink-2);
}
.about-points li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid var(--gold);
}

.about-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-md);
}
.about-card h3 { margin-bottom: 1.3rem; }
.steps { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 1.15rem; }
.steps li { display: flex; gap: .95rem; align-items: flex-start; }
.step-n {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--tint); color: var(--gold);
  font-size: .85rem; font-weight: 600; font-variant-numeric: tabular-nums;
}
.steps strong { display: block; font-weight: 600; font-size: .97rem; }
.steps p { margin: .15rem 0 0; font-size: .89rem; color: var(--ink-3); line-height: 1.55; }

.slot-note {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.3rem;
}
.slot-note strong { display: block; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.slot-note p { font-size: .89rem; color: var(--ink-3); line-height: 1.6; }

/* --- gallery -------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #241C14;
  cursor: zoom-in;
  border: 0; padding: 0;
  display: block;
  width: 100%;
  text-align: left;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1), filter .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.06); }

.gi-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 2.6rem .95rem .85rem;
  background: linear-gradient(to top, rgba(8,6,3,.88), rgba(8,6,3,0));
  color: var(--cream);
  font-size: .88rem;
  transform: translateY(6px);
  opacity: .92;
  transition: transform .35s ease, opacity .35s ease;
}
.gallery-item:hover .gi-cap { transform: translateY(0); opacity: 1; }
.gi-cap strong { display: block; font-family: var(--serif); font-size: 1.14rem; font-weight: 500; }
.gi-cap small { display: block; color: rgba(252,249,243,.72); font-size: .8rem; line-height: 1.4; }

/* An editorial rhythm rather than a uniform grid. */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }

.gallery-note {
  margin-top: 1.4rem;
  font-size: .84rem;
  color: rgba(252, 249, 243, .5);
  text-align: center;
}

/* --- features ------------------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature {
  background: var(--cream);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  transition: background-color .3s ease;
}
.feature:hover { background: var(--paper); }
.feature h3 { font-size: 1.18rem; margin-bottom: .4em; }
.feature p { font-size: .91rem; color: var(--ink-3); line-height: 1.62; }

/* --- calendar ------------------------------------------------------------- */

.calendar-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(1.1rem, 2.6vw, 1.9rem);
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.cal-title { margin: 0; font-size: clamp(1.3rem, 2.6vw, 1.75rem); }
.cal-nav {
  width: 42px; height: 42px; flex: none;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--paper); color: var(--ink-2);
  display: grid; place-items: center; cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.cal-nav:hover:not([disabled]) { background: var(--tint); border-color: var(--ink); color: var(--ink); }
.cal-nav[disabled] { opacity: .3; cursor: not-allowed; }

.cal-legend {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.25rem;
  padding-bottom: 1rem; margin-bottom: .35rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: .8rem; color: var(--ink-3);
}
.lg { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.lg-slots { margin-left: auto; }
.lg b {
  font-weight: 600; color: var(--ink-2);
  font-size: .7rem; letter-spacing: .06em;
  padding: .1rem .3rem; border-radius: 4px; background: rgba(23,18,12,.06);
}
.chip { width: 13px; height: 13px; border-radius: 4px; flex: none; }
.chip-free   { background: rgba(20, 69, 58, .16);  box-shadow: inset 0 0 0 1px rgba(20,69,58,.3); }
.chip-booked { background: rgba(140, 63, 82, .16); box-shadow: inset 0 0 0 1px rgba(140,63,82,.32); }
.chip-past   { background: rgba(23, 18, 12, .06);  box-shadow: inset 0 0 0 1px var(--line-soft); }

.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  padding: .8rem 0 .45rem;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); text-align: center;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  min-height: 260px;
}
.cal-loading {
  grid-column: 1 / -1;
  display: grid; place-items: center;
  min-height: 260px; color: var(--ink-3); font-size: .92rem;
}

.cal-day {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 82px;
  padding: .38rem .38rem .34rem;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}
.cal-day:hover:not(.is-past):not(.is-blank) {
  border-color: var(--gold);
  box-shadow: 0 3px 12px rgba(168, 132, 42, .18);
  transform: translateY(-1.5px);
}
.cal-day.is-blank { border: 0; background: none; cursor: default; pointer-events: none; }
.cal-day.is-past { background: rgba(23,18,12,.025); color: var(--ink-3); cursor: not-allowed; opacity: .6; }
.cal-day.is-today { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.cal-day.is-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink), var(--shadow-md);
  transform: translateY(-1.5px);
}
.cal-day.is-full { background: rgba(140, 63, 82, .035); }

.cal-date {
  font-size: .84rem; font-weight: 500; font-variant-numeric: tabular-nums;
  padding: .1rem .12rem;
}
.cal-today-dot {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); margin-left: .3rem; vertical-align: middle;
}

.cal-pips { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.pip {
  display: grid; place-items: center;
  height: 21px; border-radius: 5px;
  font-size: .6rem; font-weight: 600; letter-spacing: .06em;
}
/* Free slots carry the colour; booked ones recede, so a scannable calendar
   answers "what is still open?" rather than "what is gone?". */
.pip-free   { background: rgba(20, 69, 58, .15);  color: var(--green); box-shadow: inset 0 0 0 1px rgba(20, 69, 58, .18); }
.pip-booked { background: rgba(140, 63, 82, .09); color: rgba(140, 63, 82, .75); text-decoration: line-through; text-decoration-thickness: 1px; }
.pip-past   { background: rgba(23, 18, 12, .05);  color: var(--ink-3); }
.pip-hot    { box-shadow: inset 0 0 0 1px rgba(168, 132, 42, .55); }

.cal-error {
  margin: 1rem 0 0; padding: .85rem 1rem;
  background: rgba(140, 63, 82, .08);
  border: 1px solid rgba(140, 63, 82, .22);
  border-radius: var(--radius-sm);
  color: var(--rose); font-size: .9rem;
}

/* --- selected-day panel --------------------------------------------------- */

.day-detail { margin-top: 1.25rem; animation: slideDown .35s cubic-bezier(.22,.61,.36,1); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.day-detail-inner {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-lg);
}
.day-detail-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.day-detail-head .eyebrow { color: var(--gold-light); margin-bottom: .4rem; }
.day-detail-head h3 { margin: 0; color: var(--cream); }
.day-close {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(252,249,243,.1); border: 0; color: var(--cream);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: background-color .2s ease;
}
.day-close:hover { background: rgba(252,249,243,.2); }

.slot-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: .75rem; margin-bottom: 1.4rem; }
.slot-option {
  display: flex; align-items: center; gap: .85rem;
  padding: .95rem 1.1rem;
  border: 1px solid rgba(252,249,243,.16);
  border-radius: var(--radius-sm);
  background: rgba(252,249,243,.04);
}
.slot-option.is-booked { opacity: .55; }
.slot-option-dot {
  flex: none; width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-lt);
  box-shadow: 0 0 0 4px rgba(46, 122, 99, .22);
}
.slot-option.is-booked .slot-option-dot { background: var(--rose); box-shadow: 0 0 0 4px rgba(140, 63, 82, .22); }
.slot-option-body strong { display: block; font-size: .97rem; font-weight: 500; }
.slot-option-body small { color: rgba(252,249,243,.6); font-size: .8rem; }
.slot-option-state {
  margin-left: auto; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-lt); font-weight: 600;
}
.slot-option.is-booked .slot-option-state { color: var(--rose); }

.day-detail-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.day-detail .btn-primary { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }
.day-detail .btn-outline { --btn-bd: rgba(252,249,243,.4); --btn-fg: var(--cream); }
.day-detail .btn-outline:hover { --btn-bd: var(--cream); background: rgba(255,255,255,.1); }

/* --- enquiry -------------------------------------------------------------- */

.enquire-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.enquire-copy p { color: var(--ink-2); }
.enquire-direct { margin-top: 2rem; display: grid; gap: .55rem; }
.direct-row {
  display: flex; align-items: center; gap: .9rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.direct-row:hover { border-color: var(--gold); transform: translateX(3px); box-shadow: var(--shadow-sm); }
.direct-icon {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--tint); color: var(--gold);
}
.direct-row strong { display: block; font-size: .95rem; font-weight: 500; }
.direct-row small { color: var(--ink-3); font-size: .8rem; }

.enquire-form {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.2vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 1.1rem; border: 0; padding: 0; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-row > label, .form-row > legend {
  display: block; margin-bottom: .4rem; padding: 0;
  font-size: .84rem; font-weight: 500; color: var(--ink-2);
}
.form-row span[aria-hidden] { color: var(--rose); }

input[type="text"], input[type="tel"], input[type="date"], input[type="number"],
input[type="email"], input[type="password"], select, textarea {
  width: 100%;
  padding: .78rem .95rem;
  background: var(--cream);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-sm);
  font-size: .97rem;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
input:hover, select:hover, textarea:hover { border-color: var(--line); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(168, 132, 42, .14);
}
input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(140, 63, 82, .12);
}
textarea { resize: vertical; min-height: 88px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6055' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 18px;
  padding-right: 2.6rem;
}
.field-error { display: block; margin-top: .35rem; font-size: .8rem; color: var(--rose); }

.slot-picker { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.slot-pick { position: relative; cursor: pointer; }
.slot-pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot-pick-body {
  display: block;
  padding: .8rem .9rem;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.slot-pick-body strong { display: block; font-size: .89rem; font-weight: 500; }
.slot-pick-body small { color: var(--ink-3); font-size: .77rem; }
.slot-pick input:checked + .slot-pick-body {
  border-color: var(--gold);
  background: rgba(168, 132, 42, .07);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.slot-pick input:focus-visible + .slot-pick-body { outline: 2.5px solid var(--gold); outline-offset: 2px; }
.slot-pick input:disabled + .slot-pick-body { opacity: .45; cursor: not-allowed; }
.slot-hint { margin: .5rem 0 0; font-size: .8rem; color: var(--ink-3); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-fineprint { margin: .9rem 0 0; font-size: .78rem; color: var(--ink-3); text-align: center; }
.form-status {
  margin: 1rem 0 0; padding: .95rem 1.1rem;
  border-radius: var(--radius-sm); font-size: .9rem; line-height: 1.55;
}
.form-status.is-ok    { background: rgba(20, 69, 58, .08);  border: 1px solid rgba(20,69,58,.22);  color: var(--green); }
.form-status.is-error { background: rgba(140, 63, 82, .08); border: 1px solid rgba(140,63,82,.22); color: var(--rose); }

/* --- faq ------------------------------------------------------------------ */

.faq-list { display: grid; gap: .6rem; }
.faq {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq[open] { border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 300; color: var(--gold);
  transition: transform .25s ease;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 1.25rem 1.25rem; margin: 0; color: var(--ink-3); font-size: .94rem; }

/* --- visit ---------------------------------------------------------------- */

.visit-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.visit-copy p { color: var(--ink-2); }
.visit-address {
  font-style: normal;
  margin: 1.6rem 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
  color: var(--ink-2);
  line-height: 1.85;
  font-size: .96rem;
}
.visit-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  aspect-ratio: 4 / 3;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9); }

/* --- footer --------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(252, 249, 243, .7);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  font-size: .91rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(252, 249, 243, .12);
}
.footer-brand .brand-name { display: block; font-size: 1.5rem; color: var(--cream); margin-bottom: .6rem; }
.footer-brand p { max-width: 34ch; line-height: 1.7; }
.footer-col h4 { color: var(--cream); margin-bottom: .9rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a { display: block; padding: .28rem 0; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 1.5rem; font-size: .82rem;
  color: rgba(252, 249, 243, .45);
}
.footer-bottom p { margin: 0; }
.staff-link { transition: color .2s ease; }
.staff-link:hover { color: var(--gold-light); }

/* --- mobile call bar ------------------------------------------------------ */

.call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: .6rem;
  padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(252, 249, 243, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
}
.call-bar .btn { flex: 1; }

/* --- lightbox ------------------------------------------------------------- */

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .5rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 6, 3, .94);
  backdrop-filter: blur(6px);
  animation: fadeIn .22s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; min-width: 0; }
.lb-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 70px rgba(0,0,0,.6);
}
.lb-figure figcaption { color: rgba(252, 249, 243, .82); font-size: .92rem; text-align: center; }
.lb-close, .lb-prev, .lb-next {
  width: 48px; height: 48px; flex: none;
  border-radius: 50%; border: 1px solid rgba(252,249,243,.2);
  background: rgba(252,249,243,.06); color: var(--cream);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s ease, transform .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(252,249,243,.16); transform: scale(1.06); }
.lb-close { position: absolute; top: 1.2rem; right: 1.2rem; font-size: 1.6rem; }

/* --- reveal animation ----------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 960px) {
  .site-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .about-grid, .enquire-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-card { order: -1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 165px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(8) { grid-column: span 2; }
  .gallery-item:nth-child(6) { grid-row: span 1; }

  .call-bar { display: flex; }
  body { padding-bottom: 72px; }
  .site-footer { padding-bottom: 5rem; }
}

@media (max-width: 700px) {
  :root { --header-h: 66px; }
  body { font-size: 16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem 0; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { padding-top: .9rem; border-top: 1px solid rgba(252,249,243,.14); }

  .about-points { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lg-slots { margin-left: 0; }
  .cal-legend { gap: .45rem .8rem; font-size: .74rem; }

  .calendar-card { padding: .85rem .7rem 1rem; }
  .cal-grid, .cal-weekdays { gap: 4px; }
  .cal-day { min-height: 74px; padding: .28rem .2rem .24rem; border-radius: 8px; }
  .cal-date { font-size: .76rem; }
  /* Stack the two slots so the full words "Day" and "Night" fit in a cell
     roughly 40px wide — side by side they would have to be abbreviated again. */
  .cal-pips { grid-template-columns: 1fr; gap: 2px; }
  .pip { height: 16px; font-size: .56rem; border-radius: 4px; letter-spacing: .02em; }
  .cal-weekdays { font-size: .62rem; letter-spacing: .04em; }

  .slot-picker { grid-template-columns: 1fr; }
  .lightbox { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); }
  .lb-prev { left: .7rem; } .lb-next { right: .7rem; }
  .lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
}

@media (max-width: 420px) {
  .cal-day { min-height: 68px; padding-inline: .14rem; }
  .pip { height: 15px; font-size: .52rem; letter-spacing: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .call-bar, .hero-media, .lightbox, .day-detail { display: none !important; }
  body { background: #fff; color: #000; }
}
