/* ==========================================================================
   TRYST Café & Diner — FC Road, Pune
   Shared stylesheet for index.html + gallery.html
   ========================================================================== */

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
img, picture, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; }

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --cream:     #faf7f0;
  --paper:     #fffdf8;
  --sand:      #f0e8dc;
  --ink:       #2b2825;
  --ink-soft:  #4c453e;
  --muted:     #7d7167;
  --rose:      #b8566d;
  --rose-lt:   #d4758a;
  --blush:     #f4dedf;
  --sage:      #5f8f6f;
  --sky:       #a9c6dd;
  --line:      rgba(43, 40, 37, .10);
  --line-soft: rgba(43, 40, 37, .06);

  --serif:   "Cormorant Garamond", Georgia, serif;
  --display: "Fraunces", Georgia, serif;
  --sans:    "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 10px rgba(43, 40, 37, .05);
  --shadow-md: 0 14px 40px -18px rgba(43, 40, 37, .30);
  --shadow-lg: 0 30px 70px -30px rgba(43, 40, 37, .40);

  --nav-h: 74px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  /* clip, not hidden: `hidden` would turn the page into a scroll container,
     which silently breaks `position: sticky` for any descendant */
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }

::selection { background: var(--blush); color: var(--ink); }

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

/* ── Layout helpers ──────────────────────────────────────────────────────── */
.wrap    { width: min(100% - 3rem, 1180px); margin-inline: auto; }
.wrap-nr { width: min(100% - 3rem, 960px);  margin-inline: auto; }
@media (max-width: 640px) {
  .wrap, .wrap-nr { width: calc(100% - 2.25rem); }
}

section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .9rem;
}
.eyebrow--light { color: var(--blush); }

h1, h2, h3, h4 { font-weight: 400; line-height: 1.15; text-wrap: balance; }

.s-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--ink);
}
.s-lede {
  margin-top: 1.1rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  text-wrap: pretty;
}
.s-head { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.s-head--center { text-align: center; }
.s-head--center .s-lede { margin-inline: auto; }

.rule {
  width: 46px; height: 1px;
  background: var(--rose);
  margin: 1.5rem 0;
  opacity: .5;
}
.s-head--center .rule { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--solid { background: var(--rose); color: #fff; box-shadow: 0 10px 26px -14px rgba(184, 86, 109, .9); }
.btn--solid:hover { background: #a3465d; transform: translateY(-2px); }

.btn--ghost { border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); transform: translateY(-2px); }

.btn--line { border: 1.5px solid var(--line); color: var(--ink); background: var(--paper); }
.btn--line:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

.btn--wa { background: #1f7a4d; color: #fff; box-shadow: 0 12px 28px -14px rgba(31, 122, 77, .95); }
.btn--wa:hover:not(:disabled) { background: #196540; transform: translateY(-2px); }
.btn--wa:disabled { background: #d8d2c8; color: #8d857a; box-shadow: none; cursor: not-allowed; }

.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .76rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: none;
  color: var(--rose);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(184, 86, 109, .3);
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow:hover { gap: .95rem; border-color: var(--rose); }
.link-arrow svg { width: 15px; height: 15px; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.nav__brand {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 500;
  letter-spacing: .28em;
  text-decoration: none;
  color: #fff;
  transition: color .4s var(--ease);
  padding-left: .28em; /* optical balance for tracking */
}
.nav__links { display: flex; align-items: center; gap: 2.1rem; list-style: none; padding: 0; }
.nav__links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .17em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255, 255, 255, .82);
  position: relative;
  padding: .4rem 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { display: inline-flex; align-items: center; gap: .55rem; }
.nav__cta .btn { padding: .68rem 1.4rem; font-size: .68rem; }
.nav__offer {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--rose);
  border-radius: 999px;
  padding: .3rem .62rem;
  white-space: nowrap;
}

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: color .4s var(--ease), background .3s var(--ease);
}
.nav__toggle span {
  display: block; width: 20px; height: 1.5px; background: currentColor;
  position: relative; transition: background .2s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1.5px;
  background: currentColor; transition: transform .35s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

/* scrolled / solid state */
.nav.is-solid {
  background: rgba(250, 247, 240, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 24px -12px rgba(43, 40, 37, .35);
}
.nav.is-solid .nav__brand,
.nav.is-solid .nav__toggle { color: var(--ink); }
.nav.is-solid .nav__links a { color: var(--muted); }
.nav.is-solid .nav__links a:hover,
.nav.is-solid .nav__links a[aria-current="page"] { color: var(--rose); }
.nav.is-solid .btn--ghost { border-color: var(--line); color: var(--ink); }
.nav.is-solid .btn--ghost:hover { border-color: var(--rose); color: var(--rose); background: transparent; }

@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav__panel {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 0 1.8rem;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav__panel.is-open { display: block; animation: slideDown .35s var(--ease) both; }
  .nav__panel ul { list-style: none; padding: 0; }
  .nav__panel a {
    display: block;
    padding: .85rem 0;
    font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
    text-decoration: none; color: var(--ink-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__panel .btn { margin-top: 1.4rem; }
  .nav.is-open .nav__toggle span { background: transparent; }
  .nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
  .nav.is-open .nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }
}
@media (min-width: 941px) { .nav__panel { display: none !important; } }

@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 9.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -2%;
  background: url("images/hero-sign.jpg") center 44% / cover no-repeat;
  z-index: -2;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 17, 15, .22) 0%, rgba(20, 17, 15, .06) 30%,
                             rgba(20, 17, 15, .22) 60%, rgba(20, 17, 15, .68) 100%);
}
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.07); } }

.hero__inner { text-align: center; animation: rise 1.15s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.hero__loc {
  font-size: .68rem; font-weight: 500; letter-spacing: .4em;
  text-transform: uppercase; color: rgba(255, 255, 255, .85);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
  margin-bottom: 1.6rem;
}
.hero__btns { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.hero__btns .btn { padding: .68rem 1.5rem; font-size: .68rem; letter-spacing: .11em; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}
.hero__scroll i {
  display: block; width: 1px; height: 28px;
  background: linear-gradient(rgba(255, 255, 255, .55), transparent);
  animation: bob 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes bob { 0%, 100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ── About ───────────────────────────────────────────────────────────────── */
.about { background: var(--paper); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about__body p + p { margin-top: 1.1rem; }
.about__body p { color: var(--muted); line-height: 1.9; text-wrap: pretty; }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2rem; margin-top: 2.6rem; }
.pillar { border-top: 1px solid var(--line); padding-top: 1rem; }
.pillar h3 {
  font-family: var(--display);
  font-size: 1.02rem; font-weight: 500; letter-spacing: -.005em;
  margin-bottom: .3rem;
}
.pillar p { font-size: .85rem; line-height: 1.65; color: var(--muted); }

/* photo collage — laid out entirely on a grid, so the arch photo and the
   stamp overlap each other but can never escape the column they live in */
.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto 1fr;
  isolation: isolate;
}
.collage__main {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  border-radius: 190px 190px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.collage__main img { width: 100%; height: clamp(400px, 48vw, 560px); object-fit: cover; }

.collage__stamp {
  grid-column: 5 / -1;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  z-index: 3;
  margin-top: 1.6rem;
  background: var(--sage); color: #fff;
  font-family: var(--serif); font-style: italic; font-size: 1.02rem;
  line-height: 1.25; text-align: center;
  border-radius: 50%;
  width: 108px; height: 108px;
  display: grid; place-content: center;
  box-shadow: var(--shadow-md);
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .collage { order: -1; }
  .collage__main img { height: clamp(320px, 60vw, 420px); }
}
@media (max-width: 520px) {
  .pillars { grid-template-columns: 1fr; gap: 1.3rem; }
  .collage__stamp { width: 84px; height: 84px; font-size: .84rem; margin-top: .8rem; }
}

/* ── Signature cards ─────────────────────────────────────────────────────── */
.signatures { background: var(--cream); }
.sig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.sig {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              border-color .45s var(--ease);
}
.sig:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.sig__img { overflow: hidden; }
.sig__img img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform .8s var(--ease);
}
.sig:hover .sig__img img { transform: scale(1.06); }
.sig__body { padding: 1.4rem 1.35rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.sig__name {
  font-family: var(--display); font-size: 1.08rem; font-weight: 500;
  line-height: 1.3; margin-bottom: .45rem;
}
.sig__desc { font-size: .84rem; line-height: 1.6; color: var(--muted); flex: 1; }
.sig__price {
  margin-top: 1rem; padding-top: .85rem;
  border-top: 1px solid var(--line-soft);
  font-size: .88rem; font-weight: 500; color: var(--rose);
  letter-spacing: .02em;
}
@media (max-width: 940px) { .sig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .sig-grid { grid-template-columns: 1fr; gap: 1.1rem; } }

/* ── Menu ────────────────────────────────────────────────────────────────── */
.menu { background: var(--paper); }

.menu__tabs {
  display: flex; gap: .55rem; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 2.8rem);
}
/* below this width the row would wrap awkwardly, so scroll it instead —
   left-aligned, because centring a scrollable row hides the first chip */
@media (max-width: 640px) {
  .menu__tabs {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; scrollbar-width: none;
    scroll-snap-type: x proximity;
    padding-bottom: .4rem;
  }
}
.menu__tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; scroll-snap-align: start;
  padding: .62rem 1.35rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: .75rem; letter-spacing: .09em;
  color: var(--muted);
  white-space: nowrap;
  transition: all .28s var(--ease);
}
.tab:hover { border-color: var(--rose-lt); color: var(--rose); }
.tab[aria-selected="true"] {
  background: var(--rose); border-color: var(--rose); color: #fff;
}

.panel[hidden] { display: none; }
.panel { animation: fadeUp .55s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.menu__sheet {
  max-width: 900px;
  margin-inline: auto;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: clamp(1.75rem, 4vw, 3.25rem);
}
.menu__group + .menu__group { margin-top: 2.5rem; }
.menu__group h3 {
  font-family: var(--display);
  font-size: 1.18rem; font-weight: 600;
  letter-spacing: .02em;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: .35rem;
}
.menu__note {
  font-family: var(--serif); font-style: italic;
  font-size: .95rem; color: var(--rose);
  margin: .7rem 0 .3rem;
  line-height: 1.5;
}
.menu__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }
.menu__list--single { grid-template-columns: 1fr; }

.dish {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: .5rem;
  padding: .78rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.dish__name { font-size: .93rem; color: var(--ink); line-height: 1.45; }
.dish__dots {
  border-bottom: 1px dotted rgba(43, 40, 37, .28);
  transform: translateY(-4px);
  min-width: 1.2rem;
}
.dish__price {
  font-size: .88rem; font-weight: 500; color: var(--rose);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.dish__sub {
  grid-column: 1 / -1;
  font-size: .78rem; line-height: 1.55; color: var(--muted);
  margin-top: -.15rem;
  max-width: 46ch;
}
.dish--veg .dish__name::after,
.dish__name .tag { display: none; }

@media (max-width: 760px) { .menu__list { grid-template-columns: 1fr; gap: 0; } }

.menu__foot {
  max-width: 900px;
  margin: 2.2rem auto 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-size: .78rem; color: var(--muted);
}

/* ── Booking ─────────────────────────────────────────────────────────────── */
.book {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.book__bg {
  position: absolute; inset: -2%; z-index: -2;
  background: url("images/space-window-light.jpg") center 40% / cover no-repeat;
  animation: heroDrift 32s ease-in-out infinite alternate;
}
.book::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 17, 15, .70) 0%, rgba(20, 17, 15, .46) 30%,
                             rgba(20, 17, 15, .52) 65%, rgba(20, 17, 15, .80) 100%);
}
.book .s-title { color: #fff; text-shadow: 0 6px 30px rgba(0, 0, 0, .25); }
.book .rule { background: rgba(255, 255, 255, .35); }
.book .s-lede { color: rgba(255, 255, 255, .82); }
.book .s-lede strong { color: var(--blush); font-weight: 600; }

.book__wizard { max-width: 620px; margin-inline: auto; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: clamp(1.5rem, 3.4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

/* step progress */
.steps__nav {
  list-style: none; padding: 0; margin-bottom: 2.2rem;
  display: flex; justify-content: space-between;
}
.steps__nav li {
  flex: 1; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .62rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.steps__nav li:not(:last-child)::after {
  content: ""; position: absolute; top: 14px; left: calc(50% + 22px);
  width: calc(100% - 44px); height: 1px; background: var(--line);
  transition: background .3s var(--ease);
}
.steps__nav li.is-done:not(:last-child)::after { background: var(--rose-lt); }
.steps__num {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-items: center; position: relative; z-index: 1;
  border: 1px solid var(--line); background: var(--cream); color: var(--ink-soft);
  font-family: var(--display); font-size: .8rem;
  transition: all .3s var(--ease);
}
.steps__nav li.is-active { color: var(--rose); }
.steps__nav li.is-active .steps__num { background: var(--rose); border-color: var(--rose); color: #fff; }
.steps__nav li.is-done { color: var(--ink-soft); cursor: pointer; }
.steps__nav li.is-done .steps__num { background: var(--rose-lt); border-color: var(--rose-lt); color: #fff; }
@media (max-width: 560px) { .steps__label { display: none; } }

/* step panels — one visible at a time, animated in on arrival */
.steps__track { position: relative; }
.step { display: none; }
.step.is-active { display: block; animation: stepIn .5s var(--ease) both; }
.step.is-active.is-back { animation-name: stepInBack; }
@keyframes stepIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
@keyframes stepInBack { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: none; } }

.step-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-top: 1.9rem;
}
.field + .field { margin-top: 1.9rem; }
.field__label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: .85rem;
}
.field__label em {
  font-family: var(--serif); font-size: .95rem; font-style: italic;
  letter-spacing: 0; text-transform: none; color: var(--rose);
}

/* calendar */
.cal { border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem; background: var(--cream); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.cal__month {
  font-family: var(--display); font-size: 1.02rem; font-weight: 500;
}
.cal__nav { display: flex; gap: .35rem; }
.cal__nav button {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--ink-soft);
  transition: all .22s var(--ease);
}
.cal__nav button:hover:not(:disabled) { border-color: var(--rose); color: var(--rose); }
.cal__nav button:disabled { opacity: .3; cursor: not-allowed; }
.cal__nav svg { width: 13px; height: 13px; }

.cal__dow, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal__dow span {
  text-align: center; font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); padding-bottom: .5rem;
}
.cal__grid button {
  aspect-ratio: 1; border-radius: 10px;
  display: grid; place-items: center;
  font-size: .84rem; color: var(--ink-soft);
  position: relative;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cal__grid button:hover:not(:disabled) { background: var(--blush); color: var(--ink); }
.cal__grid button:disabled { color: rgba(125, 113, 103, .32); cursor: not-allowed; }
.cal__grid button.is-today::after {
  content: ""; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 50%; background: var(--rose);
}
.cal__grid button.is-sel {
  background: var(--rose); color: #fff; font-weight: 500;
}
.cal__grid button.is-sel::after { background: rgba(255, 255, 255, .75); }
.cal__grid .pad { visibility: hidden; }

/* time + guests chips */
.slot-group + .slot-group { margin-top: 1.1rem; }
.slot-group > p {
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .55rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .8rem; color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--rose-lt); color: var(--rose); }
.chip[aria-pressed="true"] { background: var(--rose); border-color: var(--rose); color: #fff; }

.stepper {
  display: inline-flex; align-items: center; gap: .35rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: .3rem;
  background: var(--cream);
}
.stepper button {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.stepper button:hover:not(:disabled) { background: var(--blush); color: var(--rose); }
.stepper button:disabled { opacity: .3; cursor: not-allowed; }
.stepper svg { width: 13px; height: 13px; }
.stepper output {
  min-width: 4.6rem; text-align: center;
  font-size: .92rem; font-variant-numeric: tabular-nums;
}

.input, .select, .textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .92rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: rgba(125, 113, 103, .6); }
.input:focus, .select:focus, .textarea:focus { border-color: var(--rose); background: var(--paper); }
.textarea { resize: vertical; min-height: 84px; line-height: 1.6; }
.select {
  appearance: none; -webkit-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='%237d7167' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 15px;
  padding-right: 2.6rem;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .two-col { grid-template-columns: 1fr; } }

.preview {
  margin-top: 1.9rem;
  background: #eef4ee;
  border: 1px solid rgba(95, 143, 111, .22);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
}
.preview__label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .63rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: .7rem;
}
.preview__label svg { width: 14px; height: 14px; }
.preview pre {
  font-family: var(--sans);
  font-size: .82rem; line-height: 1.65;
  color: var(--ink-soft);
  white-space: pre-wrap; word-break: break-word;
  margin: 0;
}
.form-hint { font-size: .74rem; color: var(--muted); text-align: center; margin-top: .9rem; line-height: 1.6; }
.book__cta { margin-top: 1.5rem; }

@media (max-width: 560px) {
  .steps__nav { margin-bottom: 1.6rem; }
  .step-actions { flex-direction: column-reverse; align-items: stretch; }
  .step-actions .btn { width: 100%; }
}

/* ── Gallery preview strip ───────────────────────────────────────────────── */
.peek { background: var(--paper); }
/* 4 columns × 2 rows, exactly filled:
   row 1 → [1 tall][2][3][4]   row 2 → [1 tall][ 5 wide ][6]           */
.peek__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(132px, 15vw, 196px);
  gap: 1rem;
}
.peek__row a {
  display: block; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.peek__row a:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.peek__row img { width: 100%; height: 100%; object-fit: cover; }
.peek__row a:nth-child(1) { grid-row: span 2; }
.peek__row a:nth-child(5) { grid-column: span 2; }

@media (max-width: 780px) {
  .peek__row { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .peek__row a:nth-child(1) { grid-row: span 1; }
  .peek__row a:nth-child(5) { grid-column: span 1; }
}
.peek__foot { margin-top: 2.5rem; text-align: center; }

/* ── Visit / contact ─────────────────────────────────────────────────────── */
.visit { background: var(--cream); }
.visit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.vcard {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column;
}
.vcard__ico {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blush); color: var(--rose);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.vcard__ico svg { width: 17px; height: 17px; }
.vcard h3 {
  font-family: var(--display); font-size: 1.08rem; font-weight: 500;
  margin-bottom: .7rem;
}
.vcard p, .vcard a { font-size: .88rem; line-height: 1.75; color: var(--muted); text-decoration: none; }
.vcard a:hover { color: var(--rose); }
.vcard .link-arrow { margin-top: 1.3rem; align-self: flex-start; }
@media (max-width: 860px) { .visit__grid { grid-template-columns: 1fr; } }

.visit__band {
  margin-top: 2.5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
}
.visit__band img { width: 100%; height: clamp(240px, 34vw, 400px); object-fit: cover; }
.visit__band figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 4rem clamp(1.6rem, 4vw, 3rem) clamp(1.6rem, 3vw, 2.4rem);
  background: linear-gradient(transparent, rgba(20, 17, 15, .8));
  color: #fff;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.foot { background: #201d1a; color: rgba(255, 255, 255, .58); padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; overflow: hidden; }
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3.5rem;
}
.foot__brand {
  font-family: var(--serif); font-size: 1.7rem; letter-spacing: .26em;
  color: #fff; text-decoration: none; display: inline-block;
  padding-left: .26em;
}
.foot__tag {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--blush); margin-top: .5rem;
}
.foot__blurb { font-size: .85rem; line-height: 1.85; margin-top: 1.2rem; max-width: 34ch; color: rgba(255, 255, 255, .5); }
.foot h4 {
  font-size: .66rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255, 255, 255, .38);
  margin-bottom: 1.3rem;
}
.foot ul { list-style: none; padding: 0; display: grid; gap: .75rem; }
.foot a { text-decoration: none; font-size: .88rem; transition: color .25s var(--ease), padding-left .25s var(--ease); display: inline-block; }
.foot a:hover { color: var(--blush); padding-left: .35em; }
.foot li { font-size: .88rem; line-height: 1.7; }

/* Big wordmark, static */
.foot__wordmark {
  text-align: center;
  padding: 0 0 clamp(1.4rem, 4vw, 2.5rem);
}
.foot__wordmark span {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4.6rem, 19vw, 13.5rem);
  line-height: 1;
  letter-spacing: .1em;
  padding-left: .1em;
  color: rgba(255, 255, 255, .14);
}

.foot__bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.6rem 0 2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: .74rem; letter-spacing: .06em;
  color: rgba(255, 255, 255, .38);
}
.foot__bar span:last-child { letter-spacing: .14em; text-transform: uppercase; font-size: .68rem; }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .foot__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .foot__bar { justify-content: center; text-align: center; }
}

/* ── Page header (gallery) ───────────────────────────────────────────────── */
.phead {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(2rem, 4vw, 3.25rem);
  background: linear-gradient(var(--sand), var(--cream));
  text-align: center;
  overflow: hidden;
}
.phead .s-title { font-size: clamp(2.6rem, 6.5vw, 4.4rem); }
.phead__leaf {
  position: absolute; opacity: .1; color: var(--sage);
  pointer-events: none;
}
.phead__leaf--l { left: -60px; top: 30%; width: 220px; transform: rotate(-18deg); }
.phead__leaf--r { right: -60px; bottom: -20px; width: 240px; transform: rotate(150deg); }

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.gal { background: var(--cream); padding-top: clamp(2rem, 4vw, 3rem); }
.gal__filters {
  display: flex; gap: .55rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.masonry { columns: 4; column-gap: 1.1rem; }
@media (max-width: 1100px) { .masonry { columns: 3; } }
@media (max-width: 760px)  { .masonry { columns: 2; column-gap: .8rem; } }
@media (max-width: 420px)  { .masonry { columns: 1; } }

.tile {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  position: relative;
  display: block; width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: box-shadow .45s var(--ease), transform .45s var(--ease);
}
@media (max-width: 760px) { .tile { margin-bottom: .8rem; } }
.tile img {
  width: 100%; height: auto;   /* natural aspect ratio — never cropped */
  opacity: 0;
  transition: opacity .7s var(--ease), transform .8s var(--ease);
}
.tile img.is-loaded { opacity: 1; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile:hover img { transform: scale(1.045); }

.tile__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 2.6rem 1.1rem .95rem;
  background: linear-gradient(transparent, rgba(20, 17, 15, .82));
  color: #fff;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.tile:hover .tile__cap, .tile:focus-visible .tile__cap { opacity: 1; transform: none; }
.tile__cap strong { display: block; font-family: var(--display); font-size: .95rem; font-weight: 500; }
.tile__cap span {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.tile[hidden] { display: none; }

.gal__empty { text-align: center; color: var(--muted); padding: 4rem 0; font-style: italic; font-family: var(--serif); font-size: 1.2rem; }

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.lb {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(18, 15, 13, .93);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lb.is-open { display: grid; animation: fade .3s ease both; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.lb__fig { max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; gap: 1rem; }
.lb__fig img {
  max-width: 100%; max-height: calc(100vh - 11rem);
  width: auto; height: auto; margin-inline: auto;
  border-radius: 8px;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, .8);
}
.lb__cap { text-align: center; color: rgba(255, 255, 255, .8); }
.lb__cap strong { display: block; font-family: var(--display); font-size: 1.05rem; font-weight: 500; color: #fff; }
.lb__cap span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .45); }

.lb__btn {
  position: absolute;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transition: background .25s var(--ease);
}
.lb__btn:hover { background: rgba(255, 255, 255, .22); }
.lb__btn svg { width: 18px; height: 18px; }
.lb__close { top: 1.4rem; right: 1.4rem; }
.lb__prev  { left: 1.4rem;  top: 50%; transform: translateY(-50%); }
.lb__next  { right: 1.4rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb__prev { left: .7rem; } .lb__next { right: .7rem; }
  .lb__btn { width: 40px; height: 40px; }
}

/* ── CTA band ────────────────────────────────────────────────────────────── */
.band {
  background: var(--sand);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.band h2 {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  color: var(--ink);
  max-width: 22ch; margin-inline: auto;
}
.band .btn { margin-top: 2rem; }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal-d1.is-in { transition-delay: .09s; }
.reveal-d2.is-in { transition-delay: .18s; }
.reveal-d3.is-in { transition-delay: .27s; }

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