/* ==========================================================================
   Boba 'N Bites — Des Moines, Iowa
   Monochrome brand: warm off-whites, soft sand, deep charcoal.
   Softness comes from generous image rounding, low-contrast washes and
   restrained type — not from pill-shaped chips.
   ========================================================================== */

:root {
  --black: #161513;
  --ink: #1f1e1b;
  --ink-2: #2e2c28;
  --ink-soft: #6d675f;
  --gray-400: #9a938a;
  --gray-200: #d9d3c9;

  --white: #ffffff;
  --off: #faf8f4;
  --off-2: #f2eee7;
  --off-3: #e8e2d8;

  --line: rgba(22, 21, 19, 0.09);
  --line-strong: rgba(22, 21, 19, 0.22);
  --berry: #a8443c;

  /* soft, generous — the reference's calm comes from here */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 4px 20px rgba(22, 21, 19, 0.05);
  --shadow: 0 18px 48px rgba(22, 21, 19, 0.08);
  --shadow-lg: 0 36px 90px rgba(22, 21, 19, 0.13);

  --wrap: 1200px;
  --display: "Outfit", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --script: "Sacramento", "Snell Roundhand", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  color: var(--black);
}
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 400; letter-spacing: 0.02em; }
h3 { font-size: 1.06rem; font-weight: 600; letter-spacing: 0.03em; }
h4 { font-size: 0.95rem; font-weight: 600; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

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

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section--white { background: var(--white); }
.section--cream2 { background: var(--off-2); }
.section--dark { background: var(--black); color: rgba(255, 255, 255, 0.68); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.2rem;
}
.section--dark .eyebrow { color: rgba(255, 255, 255, 0.45); }

.lede { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.85; }
.section--dark .lede { color: rgba(255, 255, 255, 0.62); }
.hl { color: var(--gray-400); }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.3rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }

.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { background: var(--ink-2); box-shadow: var(--shadow-sm); }

.btn--dark { background: transparent; color: var(--black); border-color: var(--line-strong); }
.btn--dark:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.btn--ghost { background: transparent; color: var(--black); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.section--dark .btn--primary, .cta-band .btn--primary {
  background: var(--white); color: var(--black);
}
.section--dark .btn--primary:hover, .cta-band .btn--primary:hover { background: var(--off-2); }
.section--dark .btn--ghost, .cta-band .btn--ghost {
  color: var(--white); border-color: rgba(255, 255, 255, 0.3);
}
.section--dark .btn--ghost:hover, .cta-band .btn--ghost:hover {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.btn--lg { padding: 1.15rem 2.8rem; font-size: 0.76rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
}
.brand {
  justify-self: start;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--body);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gray-400);
  margin-top: 0.42rem;
}

.nav-toggle {
  display: none; justify-self: end;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 1px; background: var(--black); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: var(--black);
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav-links {
  justify-self: center;
  display: flex; align-items: center; gap: 2.6rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--black);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--black); }

.nav-action { justify-self: end; }
.nav-action .btn { padding: 0.78rem 1.7rem; font-size: 0.68rem; }
.nav-links .nav-cta { display: none; }
/* .nav-links a is more specific than .btn--primary, so restate the colours */
.nav-links .btn { color: var(--white); }
.nav-links .btn:hover { color: var(--white); }
.nav-links .nav-cta a::after { display: none; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(120% 90% at 50% -10%, var(--white) 0%, rgba(255,255,255,0) 62%),
    linear-gradient(180deg, var(--off) 0%, var(--off-2) 100%);
}
.wordmark {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 7.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 1.6rem;
}
.wordmark em { font-style: normal; font-weight: 600; }
.hero-tagline {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.9;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.6rem; justify-content: center; }

/* the real product shot, floating under the hero copy */
.hero-product {
  position: relative;
  margin: clamp(2.8rem, 6vw, 4.5rem) auto 0;
  width: min(72vw, 268px);
}
.hero-product img {
  position: relative; z-index: 1;
  width: 100%; height: auto;
  filter: drop-shadow(0 34px 38px rgba(22, 21, 19, 0.22));
}
/* soft ground shadow so it sits rather than floats */
.hero-product::before {
  content: "";
  position: absolute; z-index: 0;
  left: 50%; bottom: 2.5%;
  width: 74%; height: 26px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(22,21,19,0.22) 0%, rgba(22,21,19,0) 70%);
}
.hero-product figcaption {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* -------------------------------------------------------- product strip */
.strip { background: linear-gradient(180deg, var(--off-2) 0%, var(--off) 100%); padding: 0 0 clamp(4rem, 8vw, 7rem); }
.strip-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 2.4vw, 2rem); }
.strip-item { text-align: center; }
.strip-figure {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 5 / 6;
  padding: 7% 9%;
  margin-bottom: 1.5rem;
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--white) 0%, var(--off-2) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.strip-item:hover .strip-figure { transform: translateY(-8px); box-shadow: var(--shadow); }
.strip-figure img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(22, 21, 19, 0.18));
}
.strip-item h3 { font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 0.4rem; font-weight: 600; }
.strip-item p { margin: 0; font-size: 0.8rem; color: var(--gray-400); }

/* ------------------------------------------------------------- dividers */
.wave { display: block; line-height: 0; }
.wave--to-white { background: var(--off); color: var(--white); }
.wave--to-off { background: var(--white); color: var(--off); }
.wave--to-off2 { background: var(--white); color: var(--off-2); }
.wave svg { display: block; width: 100%; height: clamp(48px, 6vw, 96px); fill: currentColor; }

/* ---------------------------------------------------------------- about */
.about { position: relative; overflow: hidden; }
.watermark {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display); font-weight: 300;
  font-size: clamp(5rem, 17vw, 15rem);
  letter-spacing: 0.08em;
  line-height: 1; color: var(--black);
  opacity: 0.032; white-space: nowrap;
  pointer-events: none; user-select: none; text-transform: uppercase;
}
.about-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem); align-items: center;
}
.about-stack { position: relative; min-height: 460px; }
.about-stack img {
  position: absolute; border-radius: var(--r-lg);
  box-shadow: var(--shadow); object-fit: cover;
}
.about-stack img:first-child { left: 0; bottom: 0; width: 56%; aspect-ratio: 3 / 4; z-index: 2; }
.about-stack img:last-child  { right: 0; top: 0;   width: 56%; aspect-ratio: 3 / 4; }
.about-body p { max-width: 44ch; }

/* -------------------------------------------------------- two-image band */
.imgband { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; }
.imgband img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ------------------------------------------------------ centred feature */
.feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.feature-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.feature-body { text-align: center; }
.feature-body p { max-width: 40ch; margin-inline: auto; }

/* ------------------------------------------------------------- instagram */
.insta-head { text-align: center; margin-bottom: 3rem; }
.insta-head .eyebrow { margin-bottom: 0.2rem; }
.insta-head h2 {
  font-family: var(--script);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400; letter-spacing: 0;
  line-height: 1; margin: 0;
}
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; max-width: 1000px; margin-inline: auto; }
.insta-grid a {
  position: relative; display: block; aspect-ratio: 1 / 1;
  overflow: hidden; border-radius: var(--r); background: var(--off-2);
}
.insta-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.insta-grid a:hover img { transform: scale(1.07); }

/* ------------------------------------------------------------ find/book */
.findstore { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--off) 0%, var(--off-2) 100%); }
.findstore-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.findstore-body p { max-width: 40ch; margin-bottom: 2rem; }
.findstore-media img {
  width: 100%; max-width: 400px; margin-left: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

/* --------------------------------------------------------------- to top */
.to-top {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 55;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--black); color: var(--white);
  border: none; border-radius: var(--r-sm); cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.25s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--ink-2); }
.to-top svg { width: 17px; height: 17px; }

/* ----------------------------------------------------------------- grids */
.grid { display: grid; gap: 1.8rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--tight { grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 1.1rem; }
.grid--tight .card { padding: 1.7rem 1.5rem; }

/* ----------------------------------------------------------------- cards */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.4rem 2.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card p { font-size: 0.94rem; }
.card ul { margin: 1rem 0 0; padding-left: 1.1rem; font-size: 0.92rem; }
.card ul li { margin-bottom: 0.45rem; }
.card-icon {
  color: var(--black);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--off-2);
  margin-bottom: 1.4rem;
}
.card-icon svg { width: 26px; height: 26px; }
.grid--tight .card-icon { width: 44px; height: 44px; margin-bottom: 1rem; }
.grid--tight .card-icon svg { width: 22px; height: 22px; }

.svc {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--off-2); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc:hover .svc-media img { transform: scale(1.05); }
.svc-body { padding: 2rem 1.9rem 2.2rem; display: flex; flex-direction: column; flex: 1; }
.svc-body p { font-size: 0.94rem; }
.svc-body ul { margin: 0.8rem 0 1.7rem; padding-left: 1.1rem; font-size: 0.9rem; }
.svc-body ul li { margin-bottom: 0.4rem; }
.svc-body .btn { margin-top: auto; align-self: flex-start; }

/* ----------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat strong {
  display: block; font-family: var(--display); font-weight: 300;
  font-size: clamp(2rem, 4.2vw, 3rem); color: var(--white); line-height: 1;
  letter-spacing: 0.02em; margin-bottom: 0.6rem;
}
.stat span { font-size: 0.8rem; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.55); }

/* --------------------------------------------------------------- splits */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
.split--flip .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.split-media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.split-media--stack img { aspect-ratio: 3 / 4; }
.split-media--stack img:first-child { margin-top: 2.5rem; }

/* ----------------------------------------------------------------- steps */
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 1.8rem; }
.steps li { counter-increment: step; position: relative; padding-left: 4.2rem; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0.1rem;
  font-family: var(--display); font-weight: 300;
  font-size: 1.5rem; color: var(--gray-400); letter-spacing: 0.04em;
}
.section--dark .steps li::before { color: rgba(255, 255, 255, 0.4); }
.steps h3 { margin-bottom: 0.35em; }
.steps p { font-size: 0.94rem; }

/* ------------------------------------------------------------------ menu */
.menu-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 3.5rem; }
.filter-btn {
  font-family: var(--body); font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.75rem 1.5rem; border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
.filter-btn[aria-pressed="true"] { background: var(--black); border-color: var(--black); color: var(--white); }

.menu-group { margin-bottom: clamp(3rem, 6vw, 5rem); }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: 2.2rem;
}
.menu-group-head h2 { margin: 0; display: flex; align-items: baseline; gap: 0.85rem; flex-wrap: wrap; }
.menu-size { font-family: var(--body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-400); }
.menu-group-price { font-family: var(--display); font-weight: 400; font-size: 1.15rem; color: var(--ink); letter-spacing: 0.04em; }
.fn { font-size: 0.62em; color: var(--gray-400); margin-left: 0.15em; font-weight: 500; }
.menu-footnotes { margin-top: 2.5rem; font-size: 0.83rem; color: var(--gray-400); letter-spacing: 0.03em; }
.menu-footnotes strong { color: var(--ink); font-weight: 600; }
.menu-group-head p { margin: 0; font-size: 0.88rem; color: var(--gray-400); letter-spacing: 0.02em; }

.menu-list { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.menu-item {
  background: var(--white); border-radius: var(--r);
  padding: 1.5rem 1.7rem; display: flex; gap: 1.2rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.menu-item-body { flex: 1; min-width: 0; }
.menu-item h3 { font-size: 1rem; margin: 0 0 0.4em; letter-spacing: 0.02em; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.menu-item p { margin: 0; font-size: 0.9rem; line-height: 1.7; }
.menu-price { font-family: var(--display); font-weight: 400; color: var(--black); white-space: nowrap; font-size: 1rem; }

.tag {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; border-radius: 5px; background: var(--off-2); color: var(--gray-400);
}
.tag--fav { background: var(--black); color: var(--white); }
.tag--veg { background: transparent; color: var(--ink-soft); border: 1px solid var(--line-strong); }
.tag--new { background: var(--off-3); color: var(--ink); }

.note {
  background: var(--white); border-radius: var(--r);
  padding: 2rem 2.1rem; box-shadow: var(--shadow-sm);
}
.note h3 { margin-bottom: 0.6em; }
.note p { font-size: 0.94rem; }

/* ------------------------------------------------------------- rate cards */
.rate {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.6rem 2.2rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.rate:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.rate-price {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--black);
  line-height: 1; letter-spacing: 0.02em; margin-bottom: 0.9rem;
}
.rate h3 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 1rem;
}
.rate p { font-size: 0.93rem; }

/* -------------------------------------------------------------- packages */
.package {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.6rem 2.2rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.package--featured { background: var(--black); box-shadow: var(--shadow); position: relative; }
.package--featured h3, .package--featured .package-price { color: var(--white); }
.package--featured > p, .package--featured ul li { color: rgba(255, 255, 255, 0.65); }
.package--featured::after {
  content: "Most booked"; position: absolute; top: 1.6rem; right: 1.6rem;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.package--featured .btn { background: var(--white); color: var(--black); border-color: var(--white); }
.package--featured .btn:hover { background: var(--off-2); color: var(--black); }
.package-price {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.1rem, 3.2vw, 2.7rem); color: var(--black);
  margin: 0.6rem 0 0.2rem; line-height: 1;
}
.package-price small { display: block; font-family: var(--body); font-size: 0.78rem; font-weight: 500; color: var(--gray-400); margin-top: 0.7rem; letter-spacing: 0.06em; }
.package > p { font-size: 0.94rem; }
.package ul { list-style: none; margin: 1.7rem 0 2.1rem; padding: 0; }
.package ul li { padding-left: 1.5rem; position: relative; margin-bottom: 0.7rem; font-size: 0.92rem; }
.package ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.4;
}
.package .btn { margin-top: auto; }

/* --------------------------------------------------------------- gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.1rem; }
.gallery--tease { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  position: relative; border: 0; padding: 0; margin: 0;
  border-radius: var(--r); overflow: hidden; cursor: zoom-in;
  background: var(--off-2); box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5; display: block; width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery-item:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.is-hidden { display: none; }
.gallery-caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(22, 21, 19, 0.9), rgba(22, 21, 19, 0));
  color: var(--white); text-align: left;
  padding: 3rem 1.2rem 1.2rem;
  font-family: var(--display); font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.gallery-caption small {
  display: block; font-family: var(--body); font-weight: 400;
  text-transform: none; letter-spacing: 0.01em;
  opacity: 0.75; font-size: 0.78rem; margin-top: 0.35rem;
}
.gallery-empty { text-align: center; color: var(--gray-400); padding: 4rem 1rem; display: none; }
.gallery-empty.is-visible { display: block; }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(16, 15, 14, 0.95); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.is-open { display: flex; }
.lightbox-figure { margin: 0; max-width: 980px; width: 100%; text-align: center; }
.lightbox-figure img { width: 100%; height: auto; max-height: 74vh; object-fit: contain; border-radius: var(--r); }
.lightbox-figure figcaption { color: var(--white); margin-top: 1.4rem; font-size: 0.95rem; letter-spacing: 0.04em; }
.lightbox-figure figcaption small { display: block; opacity: 0.5; font-size: 0.78rem; margin-top: 0.4rem; }
.lightbox button {
  position: absolute; background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white);
  width: 48px; height: 48px; border-radius: var(--r-sm);
  font-size: 1.35rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background 0.25s ease;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox button:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ----------------------------------------------------------- spec list */
.spec-list { margin: 2.5rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.spec-row {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.spec-row dt {
  margin: 0;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}
.spec-row dd { margin: 0; font-size: 0.93rem; line-height: 1.7; color: var(--ink-soft); }
@media (max-width: 620px) {
  .spec-row { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ---------------------------------------------------------- event list */
.event-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.event-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem; padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
}
.event-name h3 { margin: 0 0 0.3rem; font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-weight: 400; letter-spacing: 0.01em; font-family: var(--display); }
.event-name p { margin: 0; font-size: 0.88rem; color: var(--gray-400); letter-spacing: 0.02em; }
.event-year {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--gray-400); letter-spacing: 0.06em; white-space: nowrap;
}

/* -------------------------------------------------------------- schedule */
.schedule { display: grid; gap: 1rem; }
.schedule-row {
  display: grid; grid-template-columns: 76px 1fr auto; gap: 1.6rem; align-items: center;
  background: var(--white); border-radius: var(--r); padding: 1.4rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.schedule-date { text-align: center; border-right: 1px solid var(--line); padding-right: 1rem; }
.schedule-date strong { display: block; font-family: var(--display); font-weight: 400; font-size: 1.15rem; letter-spacing: 0.14em; color: var(--black); }
.schedule-date span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gray-400); }
.schedule-info h3 { margin: 0 0 0.2em; font-size: 1rem; }
.schedule-info p { margin: 0; font-size: 0.86rem; color: var(--gray-400); }
.schedule-time { font-size: 0.84rem; letter-spacing: 0.06em; color: var(--ink); white-space: nowrap; }

/* ----------------------------------------------------------------- forms */
.form-layout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.form-card { background: var(--white); border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow); }
.form-section-title {
  font-family: var(--body); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gray-400); margin: 2.4rem 0 1.4rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--line);
}
.form-section-title:first-child { margin-top: 0; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 600; font-size: 0.84rem; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 0.5rem; }
.req { color: var(--berry); }
.hint { display: block; font-weight: 400; font-size: 0.8rem; color: var(--gray-400); margin-top: 0.3rem; }

.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  padding: 0.9rem 1.05rem; border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  background: var(--off); transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--black); background: var(--white);
  box-shadow: 0 0 0 3px rgba(22, 21, 19, 0.07);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--berry); background: #fdf6f5;
}
.field-error { display: none; color: var(--berry); font-size: 0.82rem; margin-top: 0.4rem; font-weight: 500; }
.field-error.is-visible { display: block; }

.checks { display: grid; gap: 0.6rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.check {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--off); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 0.75rem 0.95rem; font-size: 0.9rem; cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.check input { width: auto; accent-color: var(--black); }
.check:hover { border-color: var(--black); }
.check:has(input:checked) { border-color: var(--black); background: var(--white); }

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

.form-status { display: none; margin-top: 1.5rem; padding: 1.2rem 1.4rem; border-radius: var(--r-sm); font-size: 0.93rem; }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--off-2); color: var(--black); }
.form-status--err { background: #fdf1ef; color: #8e332c; }
.form-status a { color: inherit; font-weight: 600; }

.aside-card { background: var(--white); border-radius: var(--r-lg); padding: 2.1rem; margin-bottom: 1.3rem; box-shadow: var(--shadow-sm); }
.aside-card:last-child { margin-bottom: 0; }
.aside-card h3 { font-size: 1rem; }
.aside-card p { font-size: 0.9rem; }
.aside-card--dark { background: var(--black); color: rgba(255, 255, 255, 0.65); }
.aside-card--dark h3 { color: var(--white); }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.contact-list li { display: flex; gap: 0.95rem; align-items: flex-start; font-size: 0.92rem; }
.contact-list .ico {
  color: var(--black); flex: none; width: 34px; height: 34px;
  border-radius: var(--r-sm); background: var(--off-2); display: grid; place-items: center;
}
.contact-list .ico svg { width: 17px; height: 17px; }
.contact-list a { font-weight: 600; text-decoration: none; color: var(--black); }
.contact-list a:hover { text-decoration: underline; }
.contact-list .meta { display: block; color: var(--gray-400); font-size: 0.83rem; font-weight: 400; margin-top: 0.15rem; }
.contact-list strong { color: var(--black); font-weight: 600; }
.aside-card--dark .contact-list a, .aside-card--dark .contact-list strong { color: var(--white); }
.aside-card--dark .contact-list .meta { color: rgba(255, 255, 255, 0.45); }
.aside-card--dark .contact-list .ico { background: rgba(255, 255, 255, 0.1); color: var(--white); }

/* ------------------------------------------------------------------- faq */
.faq { display: grid; gap: 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.faq summary {
  font-family: var(--display); font-size: 1rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--black); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--black); outline-offset: 4px; }
.faq summary::after { content: "+"; color: var(--gray-400); font-size: 1.3rem; font-weight: 300; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 1.1rem 0 0; font-size: 0.94rem; max-width: 68ch; }

/* ---------------------------------------------------------- testimonials */
.quote { background: var(--white); border-radius: var(--r-lg); padding: 2.4rem 2.2rem; box-shadow: var(--shadow-sm); }
.quote-stars { color: var(--black); letter-spacing: 0.3em; font-size: 0.7rem; margin-bottom: 1.2rem; }
.quote blockquote { margin: 0 0 1.5rem; font-size: 0.98rem; line-height: 1.85; }
.quote cite { font-style: normal; font-weight: 600; font-size: 0.88rem; color: var(--black); letter-spacing: 0.03em; }
.quote cite span { display: block; font-weight: 400; color: var(--gray-400); font-size: 0.82rem; margin-top: 0.2rem; letter-spacing: 0.02em; }

/* -------------------------------------------------------------- cta band */
.cta-band { background: var(--black); color: rgba(255, 255, 255, 0.68); border-radius: var(--r-xl); padding: clamp(3rem, 7vw, 5rem); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 52ch; margin-inline: auto; }
.cta-band .hero-actions { margin-top: 2.2rem; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--black); color: rgba(255, 255, 255, 0.55); padding: clamp(4rem, 8vw, 6rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.site-footer h4 { color: var(--white); font-family: var(--body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 1.4rem; }
.site-footer a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.25s ease; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; font-size: 0.89rem; }
.footer-brand .brand { color: var(--white); margin-bottom: 1.4rem; font-size: 1.25rem; }
.footer-brand .brand small { color: rgba(255, 255, 255, 0.4); }
.footer-brand p { font-size: 0.89rem; max-width: 34ch; line-height: 1.85; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--r-sm); border: 1px solid rgba(255, 255, 255, 0.16); transition: all 0.25s ease; }
.footer-social a:hover { background: var(--white); border-color: var(--white); }
.footer-social a:hover svg { stroke: var(--black); }
.footer-social svg { width: 17px; height: 17px; stroke: rgba(255, 255, 255, 0.7); transition: stroke 0.25s ease; }
.footer-bottom { padding-top: 1.8rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255, 255, 255, 0.38); }
.footer-bottom p { margin: 0; }

/* ----------------------------------------------------------- page header */
.page-head {
  background:
    radial-gradient(110% 90% at 50% 0%, var(--white) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, var(--off) 0%, var(--off-2) 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
}
.page-head h1 { margin-bottom: 0.4em; }
.page-head .lede { max-width: 58ch; margin-inline: auto; }
.crumbs { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1.4rem; }
.crumbs a { color: var(--gray-400); text-decoration: none; }
.crumbs a:hover { color: var(--black); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--black); color: var(--white); padding: 0.9rem 1.4rem; border-radius: 0 0 var(--r-sm) 0; z-index: 200; font-weight: 600; }
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------- credit list */
.credit-list { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.credit-item { background: var(--white); border-radius: var(--r); padding: 1.2rem 1.4rem; font-size: 0.88rem; display: flex; gap: 1.1rem; align-items: center; box-shadow: var(--shadow-sm); }
.credit-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--r-sm); flex: none; }
.credit-item p { margin: 0; font-size: 0.82rem; line-height: 1.6; }
.credit-item strong { display: block; color: var(--black); font-size: 0.88rem; margin-bottom: 0.2rem; font-weight: 600; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1040px) {
  .strip-row { grid-template-columns: repeat(3, 1fr); }
  .strip-item:nth-child(n+4) { display: none; }
}
@media (max-width: 980px) {
  .about-grid, .feature, .findstore-grid, .form-layout, .imgband { grid-template-columns: 1fr; }
  .about-stack { min-height: 400px; }
  .about-body p { max-width: none; }
  .findstore-media { order: -1; }
  .findstore-media img { margin-inline: auto; max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split--flip .split-media { order: 0; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  /* opaque so the panel never has page content showing through behind it */
  .site-header { background: var(--off); }
  /* .nav must not be the containing block, or the panel is only wrap-wide */
  .nav { position: static; grid-template-columns: 1fr auto; padding: 1rem 0; }
  .nav-toggle { display: flex; }
  .nav-action { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;                    /* flush to the header, no gap */
    left: 0; right: 0;            /* full width, not just the wrap */
    justify-self: stretch;        /* else the desktop `center` shrink-wraps it */
    width: auto;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--off);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(22, 21, 19, 0.10);
    padding: 0.5rem 1.25rem 1.5rem;
    display: none;
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; padding-top: 1.4rem; }
  .nav-links a { display: block; padding: 1.05rem 0; font-size: 0.9rem; letter-spacing: 0.14em; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { display: block; }
  .nav-links .btn { justify-content: center; width: 100%; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .schedule-row { grid-template-columns: 64px 1fr; row-gap: 0.6rem; }
  .schedule-time { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 1.2rem; transform: none; }
  .split-media--stack img:first-child { margin-top: 0; }
  .strip-row { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(n+3) { display: none; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stack { min-height: 320px; }
  .gallery--tease { grid-template-columns: 1fr; }
  .to-top { right: 1rem; bottom: 1rem; }
}

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

/* --------------------------------------------------------------- reveals */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .site-footer, .hero-actions, .menu-nav, .lightbox, .to-top { display: none !important; }
  body { background: #fff; color: #000; }
  .menu-item, .card { break-inside: avoid; }
}
