:root {
  --ink: #f4f7f0;
  --ink-muted: rgba(244, 247, 240, 0.78);
  --ink-soft: rgba(244, 247, 240, 0.6);
  --cream: #1a2a2f;
  --fog: #070d11;
  --sand: #c8b789;
  --copper: #d7b67e;
  --leaf: #8fbe9a;
  --leaf-deep: #05442b;
  --leaf-mid: #0f3a2c;
  --leaf-soft: #b9d9b3;
  --leaf-mist: #0a1a1c;
  --accent-1: #dead69;
  --accent-2: #d9a872;
  --accent-3: #ce9a69;
  --accent-4: #bb8751;
  --surface: #0b1317;
  --surface-soft: #0f1b20;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(2, 10, 8, 0.7);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --anchor-offset-base: 60px;
  --anchor-offset: calc(var(--anchor-offset-base) + env(safe-area-inset-top, 0px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  background-color: var(--fog);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background-color: var(--fog);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

#top {
  display: block;
  scroll-margin-top: 0;
  width: 1px;
  height: 1px;
}

/* iOS rubber-band/overscroll can expose the root background; keep it consistent. */
@supports (-webkit-touch-callout: none) {
  html,
  body {
    background-color: var(--fog);
  }
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 820px at 12% 10%, rgba(52, 94, 78, 0.5), transparent 68%),
    radial-gradient(1000px 720px at 85% 8%, rgba(20, 48, 63, 0.7), transparent 66%),
    radial-gradient(1100px 900px at 20% 82%, rgba(92, 74, 52, 0.34), transparent 70%),
    radial-gradient(900px 680px at 78% 86%, rgba(70, 60, 48, 0.28), transparent 68%),
    linear-gradient(180deg, #070d11 0%, #0a1217 55%, #060c10 100%);
}

.ambient::before {
  content: "";
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(900px 700px at 12% 35%, rgba(74, 120, 98, 0.26), transparent 64%),
    radial-gradient(1000px 760px at 70% 72%, rgba(96, 76, 54, 0.22), transparent 66%),
    radial-gradient(900px 700px at 82% 28%, rgba(26, 62, 70, 0.32), transparent 64%);
  opacity: 0.55;
  animation: haze-shift 120s ease-in-out infinite;
}

.ambient::after {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(1000px 720px at 38% 16%, rgba(40, 70, 78, 0.22), transparent 66%),
    radial-gradient(1000px 720px at 76% 58%, rgba(20, 44, 42, 0.42), transparent 70%);
  opacity: 0.35;
  animation: haze-shift 140s ease-in-out infinite reverse;
}


img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

main {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}


section {
  padding: 80px 0;
  position: relative;
  isolation: isolate;
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

@media (min-width: 1101px) {
  section#story,
  section#visit {
    scroll-margin-top: 130px;
  }
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.site-header .container {
  padding-left: calc(clamp(16px, 4vw, 40px) + env(safe-area-inset-left, 0px));
  padding-right: calc(clamp(16px, 4vw, 40px) + env(safe-area-inset-right, 0px));
}

section > .container {
  position: relative;
  z-index: 1;
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--leaf-soft);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  margin-top: 18px;
}

p {
  font-size: 1rem;
  color: var(--ink-muted);
}

.lead {
  font-size: 1.1rem;
  margin: 20px 0 28px;
  color: var(--ink-muted);
}

p + .btn {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3), var(--accent-4));
  color: #1a120c;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 30px rgba(3, 21, 19, 0.5);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(3, 21, 19, 0.7);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(160deg, rgba(6, 20, 18, 0.84), rgba(6, 18, 17, 0.78));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20640%20640'%3E%0A%20%20%3Cg%20fill%3D'none'%20stroke%3D'%23d9caa7'%20stroke-width%3D'1.1'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%20opacity%3D'0.5'%3E%0A%20%20%20%20%3Cpath%20d%3D'M80%20140c40-60%20130-60%20170%200'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M110%20160c18-22%2044-22%2062%200'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M86%20190c24-10%2058-10%2082%206'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M390%20160c36-54%20120-54%20156%200'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M430%20142c12-22%2036-32%2054-44'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M440%20144c10-16%2026-24%2046-34'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M140%20420c46-68%20144-68%20190%200'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M176%20392c22-28%2054-28%2076%200'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M150%20448c28-12%2068-12%2096%208'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M420%20410c44-60%20124-60%20168%200'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M452%20390c16-24%2040-34%2062-46'%2F%3E%0A%20%20%20%20%3Cpath%20d%3D'M462%20392c12-18%2030-26%2052-36'%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E"),
    radial-gradient(180px 120px at 10% 30%, rgba(143, 190, 154, 0.16), transparent 70%),
    radial-gradient(220px 140px at 90% 70%, rgba(215, 182, 126, 0.18), transparent 72%),
    radial-gradient(140px 100px at 50% 10%, rgba(244, 221, 184, 0.16), transparent 70%),
    linear-gradient(90deg, rgba(7, 18, 16, 0.4), rgba(7, 18, 16, 0.1), rgba(7, 18, 16, 0.4));
  background-size: 640px 640px, auto, auto, auto, auto;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, 10% 30%, 90% 70%, 50% 10%, 0 0;
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(185, 217, 179, 0.45),
    rgba(215, 182, 126, 0.4),
    transparent
  );
  opacity: 0.35;
  pointer-events: none;
}

.logo {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.logo::before,
.logo::after {
  content: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(244, 247, 240, 0.9);
  padding: 6px;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--leaf-soft);
}

.nav-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-menu {
  position: fixed;
  right: clamp(18px, 3vw, 32px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: start center;
  padding: clamp(20px, 4vw, 48px);
  padding-left: calc(clamp(20px, 4vw, 48px) + env(safe-area-inset-left, 0px));
  padding-right: calc(clamp(20px, 4vw, 48px) + env(safe-area-inset-right, 0px));
  background: rgba(4, 8, 8, 0.7);
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.3s ease;
}

.menu-modal__overlay {
  position: absolute;
  inset: 0;
}

.menu-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  overflow-x: clip;
  justify-self: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s ease;
}

.menu-pager {
  display: none;
}

.menu-pager__btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 22, 24, 0.55);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.menu-pager__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.menu-pager__btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.menu-pager__status {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 0;
  text-align: center;
  min-width: 10ch;
}

.menu-panel {
  position: relative;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3), var(--accent-4));
  border: none;
  box-shadow: 0 28px 80px rgba(6, 10, 8, 0.65);
  color: #2b1f17;
  --menu-line-color: rgba(60, 43, 32, 0.45);
  --menu-corner-gap: 110px;
  --menu-line-inset: 28px;
  --menu-content-pad: clamp(52px, 5vw, 72px);
}

.menu-panel--page {
  display: flex;
  flex-direction: column;
  min-height: max(820px, 112vh);
  overflow: visible;
}

.menu-panel__scroll {
  flex: 1;
  min-height: 0;
  overflow: visible;
  padding: var(--menu-content-pad);
  touch-action: pan-y;
}

.menu-logo {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  margin-bottom: 8px;
}

.menu-logo img {
  width: clamp(110px, 16vw, 150px);
  height: auto;
  border-radius: 0;
  opacity: 0.6;
  filter: brightness(0.7) contrast(2);
}

.menu-panel--page .menu-disclaimer {
  margin-top: auto;
  padding-top: 22px;
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  background:
    linear-gradient(var(--menu-line-color), var(--menu-line-color)) top center /
      calc(100% - (var(--menu-corner-gap) * 2)) 1px no-repeat,
    linear-gradient(var(--menu-line-color), var(--menu-line-color)) bottom center /
      calc(100% - (var(--menu-corner-gap) * 2)) 1px no-repeat,
    linear-gradient(var(--menu-line-color), var(--menu-line-color)) center left /
      1px calc(100% - (var(--menu-corner-gap) * 2)) no-repeat,
    linear-gradient(var(--menu-line-color), var(--menu-line-color)) center right /
      1px calc(100% - (var(--menu-corner-gap) * 2)) no-repeat;
  background-position:
    center top var(--menu-line-inset),
    center bottom var(--menu-line-inset),
    left var(--menu-line-inset) center,
    right var(--menu-line-inset) center;
}

.menu-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  opacity: 0.65;
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20512%20512%27%3E%0A%20%20%3Cg%20transform%3D%27rotate%28-45%20256%20256%29%27%3E%0A%20%20%20%20%3Cpath%20fill%3D%27none%27%20stroke%3D%27%235a3f2c%27%20stroke-width%3D%276%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20d%3D%27M510.405%2C273.484c-1.508-2.147-3.888-3.517-6.5-3.733c-42.317-3.554-77.845-0.121-107.67%2C7.683c27.522-67.759%2C10.526-137.19%2C9.188-142.368c-0.077-0.323-0.172-0.647-0.293-0.966c-0.345-0.97-0.853-1.841-1.483-2.599c-0.862-1.052-1.948-1.866-3.146-2.414c-1.129-0.517-2.379-0.797-3.655-0.797c-0.69%2C0.004-2.026%2C0.168-3.017%2C0.53c-0.319%2C0.112-0.621%2C0.241-0.914%2C0.388c-33.28%2C15.706-59.272%2C34.113-79.595%2C53.052c-19.75-56.979-57.647-102.884-59.362-104.948c-3.362-4.026-10.207-4.026-13.569%2C0c-31.992%2C38.393-46.005%2C76.517-51.595%2C96.292c-18.931-16.085-42.05-31.172-70.267-44.473c-3.845-1.806-8.259-0.634-10.733%2C2.556c-0.552%2C0.711-1%2C1.513-1.328%2C2.392c-0.112%2C0.328-0.216%2C0.659-0.293%2C0.991c-1.339%2C5.182-18.291%2C74.509%2C9.133%2C142.216c-29.489-7.603-64.886-11.078-107.211-7.534c-2.612%2C0.215-4.991%2C1.586-6.5%2C3.733c-1.5%2C2.146-1.974%2C4.853-1.285%2C7.379c0.56%2C2.069%2C14.233%2C51.06%2C52.698%2C94.052c27.638%2C30.888%2C72.388%2C62.793%2C139.319%2C62.793c19.326%2C0%2C40.534-2.696%2C63.672-8.81c23.147%2C6.114%2C44.347%2C8.81%2C63.673%2C8.81c66.922%2C0%2C111.681-31.905%2C139.319-62.793c38.466-42.991%2C52.138-91.983%2C52.698-94.052C512.38%2C278.338%2C511.905%2C275.631%2C510.405%2C273.484z%20M66.56%2C363.587c-25.733-28.603-39.81-60.888-45.759-77.026c166.983-9.25%2C214.035%2C95.965%2C224.224%2C126.922C172.129%2C430.941%2C112.112%2C414.191%2C66.56%2C363.587z%20M250.892%2C382.609c-7.108-13.797-17.545-30.123-32.599-46.116c-17.597-18.696-43.489-38.729-80.422-52.201c-26.754-52.249-20.776-110.651-16.742-134.222C262.578%2C222.19%2C257.875%2C340.126%2C250.892%2C382.609z%20M254.731%2C264.305c-10.131-25.735-26.213-52.308-51.168-77.126c2.474-11.069%2C12.795-49.622%2C43.506-89.932c12.42%2C16.698%2C38.983%2C55.609%2C52.265%2C99.059C277.039%2C220.442%2C263.22%2C244.566%2C254.731%2C264.305z%20M264.405%2C288.691c10.759-33.612%2C41.319-95.181%2C126.078-138.617c4.067%2C23.579%2C10.097%2C82.025-16.884%2C134.47c-53.496%2C19.851-85.326%2C54.414-103.636%2C83.386c1.476-20.188%2C0.929-47.354-6.648-77.052C263.759%2C290.208%2C264.149%2C289.492%2C264.405%2C288.691z%20M445.44%2C363.587c-45.526%2C50.569-105.5%2C67.353-178.354%2C49.922c10.543-30.595%2C58.819-135.819%2C224.112-126.948C485.25%2C302.708%2C471.173%2C334.993%2C445.44%2C363.587z%27%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E")
      top left / 86px 86px no-repeat,
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20512%20512%27%3E%0A%20%20%3Cg%20transform%3D%27rotate%28-315%20256%20256%29%27%3E%0A%20%20%20%20%3Cpath%20fill%3D%27none%27%20stroke%3D%27%235a3f2c%27%20stroke-width%3D%276%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20d%3D%27M510.405%2C273.484c-1.508-2.147-3.888-3.517-6.5-3.733c-42.317-3.554-77.845-0.121-107.67%2C7.683c27.522-67.759%2C10.526-137.19%2C9.188-142.368c-0.077-0.323-0.172-0.647-0.293-0.966c-0.345-0.97-0.853-1.841-1.483-2.599c-0.862-1.052-1.948-1.866-3.146-2.414c-1.129-0.517-2.379-0.797-3.655-0.797c-0.69%2C0.004-2.026%2C0.168-3.017%2C0.53c-0.319%2C0.112-0.621%2C0.241-0.914%2C0.388c-33.28%2C15.706-59.272%2C34.113-79.595%2C53.052c-19.75-56.979-57.647-102.884-59.362-104.948c-3.362-4.026-10.207-4.026-13.569%2C0c-31.992%2C38.393-46.005%2C76.517-51.595%2C96.292c-18.931-16.085-42.05-31.172-70.267-44.473c-3.845-1.806-8.259-0.634-10.733%2C2.556c-0.552%2C0.711-1%2C1.513-1.328%2C2.392c-0.112%2C0.328-0.216%2C0.659-0.293%2C0.991c-1.339%2C5.182-18.291%2C74.509%2C9.133%2C142.216c-29.489-7.603-64.886-11.078-107.211-7.534c-2.612%2C0.215-4.991%2C1.586-6.5%2C3.733c-1.5%2C2.146-1.974%2C4.853-1.285%2C7.379c0.56%2C2.069%2C14.233%2C51.06%2C52.698%2C94.052c27.638%2C30.888%2C72.388%2C62.793%2C139.319%2C62.793c19.326%2C0%2C40.534-2.696%2C63.672-8.81c23.147%2C6.114%2C44.347%2C8.81%2C63.673%2C8.81c66.922%2C0%2C111.681-31.905%2C139.319-62.793c38.466-42.991%2C52.138-91.983%2C52.698-94.052C512.38%2C278.338%2C511.905%2C275.631%2C510.405%2C273.484z%20M66.56%2C363.587c-25.733-28.603-39.81-60.888-45.759-77.026c166.983-9.25%2C214.035%2C95.965%2C224.224%2C126.922C172.129%2C430.941%2C112.112%2C414.191%2C66.56%2C363.587z%20M250.892%2C382.609c-7.108-13.797-17.545-30.123-32.599-46.116c-17.597-18.696-43.489-38.729-80.422-52.201c-26.754-52.249-20.776-110.651-16.742-134.222C262.578%2C222.19%2C257.875%2C340.126%2C250.892%2C382.609z%20M254.731%2C264.305c-10.131-25.735-26.213-52.308-51.168-77.126c2.474-11.069%2C12.795-49.622%2C43.506-89.932c12.42%2C16.698%2C38.983%2C55.609%2C52.265%2C99.059C277.039%2C220.442%2C263.22%2C244.566%2C254.731%2C264.305z%20M264.405%2C288.691c10.759-33.612%2C41.319-95.181%2C126.078-138.617c4.067%2C23.579%2C10.097%2C82.025-16.884%2C134.47c-53.496%2C19.851-85.326%2C54.414-103.636%2C83.386c1.476-20.188%2C0.929-47.354-6.648-77.052C263.759%2C290.208%2C264.149%2C289.492%2C264.405%2C288.691z%20M445.44%2C363.587c-45.526%2C50.569-105.5%2C67.353-178.354%2C49.922c10.543-30.595%2C58.819-135.819%2C224.112-126.948C485.25%2C302.708%2C471.173%2C334.993%2C445.44%2C363.587z%27%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E")
      top right / 86px 86px no-repeat,
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20512%20512%27%3E%0A%20%20%3Cg%20transform%3D%27rotate%28-225%20256%20256%29%27%3E%0A%20%20%20%20%3Cpath%20fill%3D%27none%27%20stroke%3D%27%235a3f2c%27%20stroke-width%3D%276%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20d%3D%27M510.405%2C273.484c-1.508-2.147-3.888-3.517-6.5-3.733c-42.317-3.554-77.845-0.121-107.67%2C7.683c27.522-67.759%2C10.526-137.19%2C9.188-142.368c-0.077-0.323-0.172-0.647-0.293-0.966c-0.345-0.97-0.853-1.841-1.483-2.599c-0.862-1.052-1.948-1.866-3.146-2.414c-1.129-0.517-2.379-0.797-3.655-0.797c-0.69%2C0.004-2.026%2C0.168-3.017%2C0.53c-0.319%2C0.112-0.621%2C0.241-0.914%2C0.388c-33.28%2C15.706-59.272%2C34.113-79.595%2C53.052c-19.75-56.979-57.647-102.884-59.362-104.948c-3.362-4.026-10.207-4.026-13.569%2C0c-31.992%2C38.393-46.005%2C76.517-51.595%2C96.292c-18.931-16.085-42.05-31.172-70.267-44.473c-3.845-1.806-8.259-0.634-10.733%2C2.556c-0.552%2C0.711-1%2C1.513-1.328%2C2.392c-0.112%2C0.328-0.216%2C0.659-0.293%2C0.991c-1.339%2C5.182-18.291%2C74.509%2C9.133%2C142.216c-29.489-7.603-64.886-11.078-107.211-7.534c-2.612%2C0.215-4.991%2C1.586-6.5%2C3.733c-1.5%2C2.146-1.974%2C4.853-1.285%2C7.379c0.56%2C2.069%2C14.233%2C51.06%2C52.698%2C94.052c27.638%2C30.888%2C72.388%2C62.793%2C139.319%2C62.793c19.326%2C0%2C40.534-2.696%2C63.672-8.81c23.147%2C6.114%2C44.347%2C8.81%2C63.673%2C8.81c66.922%2C0%2C111.681-31.905%2C139.319-62.793c38.466-42.991%2C52.138-91.983%2C52.698-94.052C512.38%2C278.338%2C511.905%2C275.631%2C510.405%2C273.484z%20M66.56%2C363.587c-25.733-28.603-39.81-60.888-45.759-77.026c166.983-9.25%2C214.035%2C95.965%2C224.224%2C126.922C172.129%2C430.941%2C112.112%2C414.191%2C66.56%2C363.587z%20M250.892%2C382.609c-7.108-13.797-17.545-30.123-32.599-46.116c-17.597-18.696-43.489-38.729-80.422-52.201c-26.754-52.249-20.776-110.651-16.742-134.222C262.578%2C222.19%2C257.875%2C340.126%2C250.892%2C382.609z%20M254.731%2C264.305c-10.131-25.735-26.213-52.308-51.168-77.126c2.474-11.069%2C12.795-49.622%2C43.506-89.932c12.42%2C16.698%2C38.983%2C55.609%2C52.265%2C99.059C277.039%2C220.442%2C263.22%2C244.566%2C254.731%2C264.305z%20M264.405%2C288.691c10.759-33.612%2C41.319-95.181%2C126.078-138.617c4.067%2C23.579%2C10.097%2C82.025-16.884%2C134.47c-53.496%2C19.851-85.326%2C54.414-103.636%2C83.386c1.476-20.188%2C0.929-47.354-6.648-77.052C263.759%2C290.208%2C264.149%2C289.492%2C264.405%2C288.691z%20M445.44%2C363.587c-45.526%2C50.569-105.5%2C67.353-178.354%2C49.922c10.543-30.595%2C58.819-135.819%2C224.112-126.948C485.25%2C302.708%2C471.173%2C334.993%2C445.44%2C363.587z%27%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E")
      bottom right / 86px 86px no-repeat,
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20512%20512%27%3E%0A%20%20%3Cg%20transform%3D%27rotate%28-135%20256%20256%29%27%3E%0A%20%20%20%20%3Cpath%20fill%3D%27none%27%20stroke%3D%27%235a3f2c%27%20stroke-width%3D%276%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20d%3D%27M510.405%2C273.484c-1.508-2.147-3.888-3.517-6.5-3.733c-42.317-3.554-77.845-0.121-107.67%2C7.683c27.522-67.759%2C10.526-137.19%2C9.188-142.368c-0.077-0.323-0.172-0.647-0.293-0.966c-0.345-0.97-0.853-1.841-1.483-2.599c-0.862-1.052-1.948-1.866-3.146-2.414c-1.129-0.517-2.379-0.797-3.655-0.797c-0.69%2C0.004-2.026%2C0.168-3.017%2C0.53c-0.319%2C0.112-0.621%2C0.241-0.914%2C0.388c-33.28%2C15.706-59.272%2C34.113-79.595%2C53.052c-19.75-56.979-57.647-102.884-59.362-104.948c-3.362-4.026-10.207-4.026-13.569%2C0c-31.992%2C38.393-46.005%2C76.517-51.595%2C96.292c-18.931-16.085-42.05-31.172-70.267-44.473c-3.845-1.806-8.259-0.634-10.733%2C2.556c-0.552%2C0.711-1%2C1.513-1.328%2C2.392c-0.112%2C0.328-0.216%2C0.659-0.293%2C0.991c-1.339%2C5.182-18.291%2C74.509%2C9.133%2C142.216c-29.489-7.603-64.886-11.078-107.211-7.534c-2.612%2C0.215-4.991%2C1.586-6.5%2C3.733c-1.5%2C2.146-1.974%2C4.853-1.285%2C7.379c0.56%2C2.069%2C14.233%2C51.06%2C52.698%2C94.052c27.638%2C30.888%2C72.388%2C62.793%2C139.319%2C62.793c19.326%2C0%2C40.534-2.696%2C63.672-8.81c23.147%2C6.114%2C44.347%2C8.81%2C63.673%2C8.81c66.922%2C0%2C111.681-31.905%2C139.319-62.793c38.466-42.991%2C52.138-91.983%2C52.698-94.052C512.38%2C278.338%2C511.905%2C275.631%2C510.405%2C273.484z%20M66.56%2C363.587c-25.733-28.603-39.81-60.888-45.759-77.026c166.983-9.25%2C214.035%2C95.965%2C224.224%2C126.922C172.129%2C430.941%2C112.112%2C414.191%2C66.56%2C363.587z%20M250.892%2C382.609c-7.108-13.797-17.545-30.123-32.599-46.116c-17.597-18.696-43.489-38.729-80.422-52.201c-26.754-52.249-20.776-110.651-16.742-134.222C262.578%2C222.19%2C257.875%2C340.126%2C250.892%2C382.609z%20M254.731%2C264.305c-10.131-25.735-26.213-52.308-51.168-77.126c2.474-11.069%2C12.795-49.622%2C43.506-89.932c12.42%2C16.698%2C38.983%2C55.609%2C52.265%2C99.059C277.039%2C220.442%2C263.22%2C244.566%2C254.731%2C264.305z%20M264.405%2C288.691c10.759-33.612%2C41.319-95.181%2C126.078-138.617c4.067%2C23.579%2C10.097%2C82.025-16.884%2C134.47c-53.496%2C19.851-85.326%2C54.414-103.636%2C83.386c1.476-20.188%2C0.929-47.354-6.648-77.052C263.759%2C290.208%2C264.149%2C289.492%2C264.405%2C288.691z%20M445.44%2C363.587c-45.526%2C50.569-105.5%2C67.353-178.354%2C49.922c10.543-30.595%2C58.819-135.819%2C224.112-126.948C485.25%2C302.708%2C471.173%2C334.993%2C445.44%2C363.587z%27%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E")
      bottom left / 86px 86px no-repeat;
}

.menu-panel > * {
  position: relative;
  z-index: 1;
}

.menu-modal[data-state="open"] {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal[data-state="open"] .menu-modal__panel {
  transform: translateY(0) scale(1);
}

.mobile-menu-panel[data-state="open"] {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  padding-top: 14px;
  padding-bottom: 22px;
  border-top-color: rgba(255, 255, 255, 0.1);
  max-height: calc(100dvh - 84px);
  overflow-y: auto;
}

.menu-panel-title {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--leaf-soft);
  margin-bottom: 12px;
}

.menu-modal .menu-panel-title {
  color: #3c2b20;
}

.menu-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.menu-modal__subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(60, 43, 32, 0.7);
  text-align: center;
}

.menu-modal__close {
  position: fixed;
  top: calc(clamp(18px, 3vw, 34px) + env(safe-area-inset-top, 0px));
  right: calc(clamp(18px, 3vw, 34px) + env(safe-area-inset-right, 0px));
  z-index: 41;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 62%),
    linear-gradient(
      135deg,
      rgba(222, 173, 105, 0.18),
      rgba(217, 168, 114, 0.18),
      rgba(206, 154, 105, 0.18),
      rgba(187, 135, 81, 0.18)
    );
  backdrop-filter: blur(3px);
  box-shadow: 0 10px 22px rgba(2, 10, 8, 0.26);
  color: #2b1f17;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-modal__close-icon {
  font-size: 1.35em;
  font-weight: 400;
  line-height: 1;
}

.menu-modal__close:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(2, 10, 8, 0.32);
}

.menu-modal__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

@media (min-width: 721px) {
  .menu-modal__close {
    border-color: rgba(255, 255, 255, 0.12);
    background:
      radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 62%),
      linear-gradient(160deg, rgba(8, 20, 18, 0.72), rgba(5, 10, 12, 0.62));
    backdrop-filter: blur(10px) saturate(1.15);
    box-shadow: 0 12px 26px rgba(2, 10, 8, 0.3);
    color: rgba(244, 247, 240, 0.7);
  }
}

.brand-lockup {
  display: grid;
  justify-items: center;
  text-align: center;
}

.brand-lockup__name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.05;
}

.brand-lockup__sub {
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.header-brand {
  display: none;
}

.menu-sheet {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-section h3 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  color: #2b1f17;
  margin-bottom: 6px;
}

.menu-section__note {
  font-size: 0.8rem;
  color: rgba(60, 43, 32, 0.7);
  margin-bottom: 12px;
}

.menu-items {
  list-style: none;
  display: grid;
  gap: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(60, 43, 32, 0.2);
  font-size: 0.9rem;
}

.menu-price {
  font-weight: 600;
  color: #3f2e23;
}

.menu-disclaimer {
  margin-top: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(60, 43, 32, 0.65);
}

body.food-menu-open {
  overflow: hidden;
}

.menu-panel-links {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 500;
}

.menu-panel-links a {
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.menu-panel-links a:hover {
  color: var(--leaf-soft);
}

.menu-panel-links--food {
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.menu-panel-links--food .menu-title {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf-soft);
}

.mobile-menu-panel {
  position: relative;
  z-index: 1;
  padding: 0;
  padding-left: calc(clamp(16px, 4vw, 40px) + env(safe-area-inset-left, 0px));
  padding-right: calc(clamp(16px, 4vw, 40px) + env(safe-area-inset-right, 0px));
  border-top: 1px solid transparent;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    padding 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
  max-height: 0;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

.mobile-menu-links {
  display: grid;
  gap: 14px;
  font-weight: 500;
  justify-items: center;
  text-align: center;
}

.mobile-menu-links a {
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.mobile-menu-links a:hover {
  color: var(--leaf-soft);
}

.mobile-menu-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

.menu-panel-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-panel-cta .btn {
  padding: 10px 16px;
  font-size: 0.85rem;
}

@media (min-width: 1101px) {
  .menu-modal__panel {
    max-width: 1160px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(16px, 3vw, 32px);
  }

  .menu-panel--page {
    width: auto;
    height: 100%;
  }
}

.menu-fab {
  pointer-events: auto;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.18), rgba(7, 18, 16, 0.92)),
    linear-gradient(160deg, rgba(8, 20, 18, 0.95), rgba(5, 10, 12, 0.9));
  box-shadow: 0 18px 50px rgba(2, 10, 8, 0.65);
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(2, 10, 8, 0.8);
}

.menu-fab:focus-visible {
  outline: 2px solid var(--leaf-soft);
  outline-offset: 4px;
}

.menu-fab-icon {
  position: relative;
  width: 32px;
  height: 36px;
  color: var(--ink);
}

.menu-fab-icon--menu {
  width: 46px;
  height: 46px;
}

.menu-fab-icon--menu svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: none;
}

.menu-fab--header {
  width: 50px;
  height: 50px;
  box-shadow: 0 12px 30px rgba(2, 10, 8, 0.55);
}

.menu-fab--header::before {
  inset: 9px;
}

.menu-fab--header .menu-fab-icon {
  width: 22px;
  height: 26px;
}

.menu-fab--header .utensil {
  width: 11px;
  height: 26px;
}

.menu-fab--header .utensil-fork {
  left: 3px;
}

.menu-fab--header .utensil-knife {
  right: 3px;
}

.utensil {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 36px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, left 0.35s ease, right 0.35s ease;
}

.utensil svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.utensil-fork {
  left: 4px;
}

.utensil-knife {
  right: 4px;
}

.food-menu-open .floating-menu .menu-fab {
  border-color: rgba(185, 217, 179, 0.5);
}

.food-menu-open .floating-menu .utensil-fork {
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.food-menu-open .floating-menu .utensil-knife {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-open .menu-fab--header {
  border-color: rgba(185, 217, 179, 0.5);
}

.mobile-menu-open .menu-fab--header .utensil-fork {
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-open .menu-fab--header .utensil-knife {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  padding-top: 120px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(180px, 20vw, 240px);
  gap: 16px;
  position: relative;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
}

.hero-main {
  grid-row: 1 / span 2;
}

.hero-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(3, 21, 19, 0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.hero-stamp {
  position: absolute;
  top: -14px;
  right: -8px;
  background: rgba(244, 247, 240, 0.92);
  border: 1px dashed rgba(3, 21, 19, 0.5);
  border-radius: 18px;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  display: grid;
  gap: 4px;
  transform: rotate(3deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
  color: #1a120c;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding-left: 26px;
  position: relative;
  font-weight: 500;
  color: var(--ink-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 8px;
  background: var(--leaf);
  border-radius: 100% 0;
  transform: rotate(-35deg);
  box-shadow: -4px 4px 0 -2px rgba(255, 255, 255, 0.12);
}

.story-images {
  position: relative;
  width: min(460px, 100%);
  max-width: 460px;
  min-height: 320px;
  aspect-ratio: 4 / 3;
  justify-self: center;
  margin-inline: auto;
  isolation: isolate;
}

.story-images figure {
  position: absolute;
}

.story-images figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(16, 20, 18, 0.7);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.story-images img {
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.story-images::after {
  content: "";
  position: absolute;
  top: -16px;
  right: 12%;
  width: 120px;
  height: 36px;
  background: linear-gradient(120deg, rgba(255, 244, 223, 0.75), rgba(227, 205, 171, 0.4));
  border-radius: 18px;
  transform: rotate(6deg);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.story-images .story-shot {
  width: 64%;
  padding: 12px 12px 16px;
  background: #f6f0e6;
  border-radius: 18px;
  box-shadow: 0 26px 46px rgba(18, 14, 8, 0.22);
}

.story-images .story-shot.shot-1 {
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}

.story-images .story-shot.shot-2 {
  right: 0;
  bottom: 0;
  transform: rotate(4deg);
  z-index: 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.space-card {
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.space-card img {
  height: 220px;
  object-fit: cover;
}

.kitchen {
  background: transparent;
}

.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.menu-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border);
  color: var(--ink-muted);
}

.menu-title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--leaf-soft);
}

.kitchen-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 16px;
}

.kitchen-mosaic figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.kitchen-mosaic figure:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 8px);
}

.kitchen-mosaic img {
  height: 100%;
  object-fit: cover;
}

.mosaic-main {
  grid-column: span 2;
  grid-row: span 2;
}

.daybreak {
  background: transparent;
}

.daybreak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.daybreak-photos {
  position: relative;
  min-height: 360px;
  width: min(460px, 100%);
  max-width: 460px;
  justify-self: end;
  isolation: isolate;
}

.daybreak-photos::before {
  content: "";
  position: absolute;
  top: -24px;
  right: 12%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 232, 194, 0.85), rgba(255, 232, 194, 0));
  filter: blur(1px);
  opacity: 0.9;
  z-index: 0;
}

.daybreak-shot {
  position: absolute;
  width: 68%;
  aspect-ratio: 4 / 5;
  padding: 12px;
  margin: 0;
  background: rgba(248, 240, 228, 0.92);
  border-radius: 22px;
  box-shadow: 0 26px 46px rgba(18, 14, 8, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 1;
}

.daybreak-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.daybreak-shot.shot-morning {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.daybreak-shot.shot-evening {
  bottom: 0;
  right: -10px;
  transform: rotate(4deg);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill {
  background: rgba(143, 190, 154, 0.18);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.scroll-strip {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(4vw, calc((100vw - 1200px) / 2));
  padding-right: max(4vw, calc((100vw - 1200px) / 2));
  padding-bottom: 12px;
  touch-action: none;
  --strip-gap: 18px;
  --strip-duration: 34s;
}

.scroll-strip-track {
  display: flex;
  gap: var(--strip-gap);
  width: max-content;
  animation: scroll-strip var(--strip-duration) linear infinite;
  will-change: transform;
}


.drink-card {
  background: var(--surface);
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-width: clamp(220px, 30vw, 320px);
}

.drink-card img {
  height: 260px;
  object-fit: cover;
}

@keyframes scroll-strip {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-strip-track {
    animation: none;
  }
}

.desserts::before {
  content: "";
  position: absolute;
  inset: -16% -4% -20%;
  background:
    radial-gradient(700px 520px at 10% 14%, rgba(143, 190, 154, 0.16), transparent 74%),
    radial-gradient(760px 600px at 92% 22%, rgba(215, 182, 126, 0.14), transparent 76%),
    radial-gradient(900px 640px at 28% 82%, rgba(18, 44, 42, 0.25), transparent 78%),
    linear-gradient(
      130deg,
      rgba(15, 27, 32, 0.65) 0%,
      rgba(15, 27, 32, 0.4) 36%,
      rgba(15, 27, 32, 0.18) 56%,
      transparent 82%
    );
  opacity: 0.85;
  filter: blur(6px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  z-index: 0;
}

.dessert-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(4, clamp(140px, 14vw, 210px));
  grid-auto-rows: clamp(140px, 14vw, 210px);
  gap: 16px;
  grid-auto-flow: dense;
  grid-template-areas:
    "hero hero hero hero tall tall"
    "hero hero hero hero tall tall"
    "wide1 wide1 wide1 small1 big big"
    "small2 wide2 wide2 wide2 big big";
}

.dessert-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.dessert-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dessert-frame.focus-top img {
  object-position: 50% 30%;
}

.dessert-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 10, 12, 0.82));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.dessert-frame figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.dessert-frame:hover img {
  transform: scale(1.05);
}

.dessert-frame:hover::before,
.dessert-frame:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.dessert-frame.dessert-feature {
  grid-area: hero;
}

.dessert-frame.tall {
  grid-area: tall;
}

.dessert-frame.wide.dessert-wide-1 {
  grid-area: wide1;
}

.dessert-frame.big {
  grid-area: big;
}

.dessert-frame.dessert-small-1 {
  grid-area: small1;
}

.dessert-frame.dessert-small-2 {
  grid-area: small2;
}

.dessert-frame.wide.dessert-wide-2 {
  grid-area: wide2;
}

.seasonal {
  background: transparent;
  color: var(--ink);
}

.seasonal h2,
.seasonal p,
.seasonal .eyebrow {
  color: var(--ink);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.seasonal-photos {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seasonal-collage {
  position: relative;
  width: min(480px, 100%);
  min-height: 420px;
}

.seasonal-shot {
  position: absolute;
  width: 58%;
  padding: 12px 12px 18px;
  background: #f6f0e6;
  border-radius: 18px;
  box-shadow: 0 28px 50px rgba(18, 14, 8, 0.25);
  transform-origin: center;
}

.seasonal-shot img {
  border-radius: 14px;
  height: 100%;
}

.seasonal-shot figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(28, 27, 24, 0.7);
}

.seasonal-shot::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 40%;
  width: 70px;
  height: 22px;
  background: linear-gradient(120deg, rgba(255, 244, 223, 0.8), rgba(227, 205, 171, 0.55));
  border-radius: 12px;
  transform: rotate(-6deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.seasonal-shot.shot-1 {
  top: -8px;
  left: -4%;
  transform: rotate(-5deg);
  z-index: 2;
}

.seasonal-shot.shot-2 {
  top: 76px;
  right: -4%;
  transform: rotate(6deg);
  z-index: 3;
}

.seasonal-shot.shot-3 {
  bottom: -8px;
  left: calc(26% - 14px);
  transform: rotate(2deg);
  z-index: 4;
}

.gallery {
  background: transparent;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-item.wide {
  grid-column: span 3;
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hosts-photos {
  position: relative;
  display: block;
  padding: 18px 10px 32px 32px;
  min-height: 420px;
}

.hosts-photos::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  z-index: 3;
  background:
    radial-gradient(circle at 35% 30%, rgba(200, 183, 137, 0.7), rgba(15, 20, 18, 0.15) 65%);
  border-radius: 50%;
  border: 8px solid rgba(15, 20, 18, 0.7);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.host-photo {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.host-photo--main {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.host-photo--secondary {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 52%;
  max-width: 280px;
  z-index: 4;
  aspect-ratio: 3 / 4;
  border: 10px solid var(--surface);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.38);
  transform: rotate(2.5deg);
}

.visit {
  background: transparent;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.visit-info a {
  color: var(--leaf-soft);
  font-weight: 600;
}

.hours-oneliner {
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.visit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visit-actions .btn {
  background: linear-gradient(135deg, #b9d9b3, #d7b67e);
  color: #091412;
  border-color: rgba(215, 182, 126, 0.4);
  box-shadow: 0 12px 28px rgba(4, 18, 16, 0.55);
}

.visit-actions .btn:hover {
  background: linear-gradient(135deg, #d7b67e, #b9d9b3);
  box-shadow: 0 16px 32px rgba(4, 18, 16, 0.7);
}

.visit-actions .btn--ghost {
  background: rgba(15, 58, 44, 0.35);
  color: var(--ink);
  border-color: rgba(143, 190, 154, 0.45);
  box-shadow: inset 0 0 0 1px rgba(143, 190, 154, 0.2);
}

.visit-actions .btn--ghost:hover {
  background: rgba(143, 190, 154, 0.2);
  border-color: rgba(215, 182, 126, 0.6);
}

.visit-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.visit-image {
  background-image: url("assets/proka-17.jpg");
  background-size: cover;
  background-position: center;
  min-height: 240px;
}

.visit-details {
  padding: 20px;
}

.social-links {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
}

.social-links a {
  color: var(--leaf-soft);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--copper);
}

.site-footer {
  background: transparent;
  color: var(--ink);
  padding: 56px 0 48px;
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 17, 0) 0%, rgba(4, 10, 12, 0.55) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.6fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-logo {
  width: 96px;
  border-radius: 50%;
  background: rgba(244, 247, 240, 0.9);
  padding: 8px;
}

.footer-tagline {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--small {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
}

.footer-col {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--leaf-soft);
}

.footer-col a {
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--leaf-soft);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 247, 240, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (min-width: 721px) {
  .footer-bottom {
    padding-right: calc(clamp(18px, 3vw, 32px) + 84px);
  }
}

.footer-bottom a {
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--leaf-soft);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes haze-shift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(40px, -30px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1100px) {
  :root {
    --anchor-offset-base: 60px;
  }

  .hero-inner,
  .story-grid,
  .kitchen-grid,
  .daybreak-grid,
  .seasonal-grid,
  .hosts-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    grid-auto-rows: clamp(150px, 26vw, 200px);
  }

  .hero-grid {
    order: -1;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-images {
    min-height: clamp(210px, 28vw, 270px);
  }

  .daybreak-photos {
    justify-self: center;
    margin-inline: auto;
  }

  .hosts-photos::after {
    top: 3px;
    right: 9px;
  }

  .menu-modal__panel {
    max-width: 720px;
  }

  .menu-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 52px;
    margin-bottom: 0;
    padding: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .menu-pager__btn {
    border: none;
    border-bottom: 1px solid rgba(60, 43, 32, 0.42);
    border-radius: 0;
    background: transparent;
    padding: 6px 2px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(43, 31, 23, 0.85);
  }

  .menu-pager__btn:hover {
    border-bottom-color: rgba(60, 43, 32, 0.7);
  }

  .menu-pager__status {
    color: rgba(43, 31, 23, 0.75);
    flex-basis: 100%;
    order: 4;
    margin-top: 32px;
    padding: 0;
    line-height: 1.1;
    opacity: 0.6;
  }

  .menu-pager__btn--prev {
    order: 1;
  }

  .menu-pager__btn--next {
    order: 3;
  }

  .menu-modal[data-menu-page="1"] .menu-panel--page[data-menu-page="2"] {
    display: none;
  }

  .menu-modal[data-menu-page="2"] .menu-panel--page[data-menu-page="1"] {
    display: none;
  }

}

@media (max-width: 720px) {
  :root {
    --anchor-offset-base: 60px;
  }

  section {
    padding: 64px 0;
  }

  .scroll-strip {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    touch-action: pan-y;
  }

  .logo::before {
    inset: -10px;
  }

  .logo::after {
    inset: -16px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
  }

  .header-brand {
    display: grid;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    max-width: calc(100% - 148px);
  }

  .header-brand .brand-lockup__name {
    font-size: 0.95rem;
  }

  .header-brand .brand-lockup__sub {
    font-size: 0.66rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta-btn {
    display: none;
  }

  .menu-fab--header {
    display: inline-grid;
  }

  .menu-modal__panel {
    max-width: 560px;
    gap: 14px;
  }

  .menu-panel--page {
    min-height: auto;
  }

  .menu-panel {
    --menu-content-pad: 44px;
    --menu-corner-gap: 84px;
    --menu-line-inset: 20px;
  }

  .menu-panel::before {
    inset: 0;
  }

  .menu-panel::after {
    inset: 0;
    background-size: 68px 68px;
  }

  .menu-modal__header {
    flex-direction: column;
    align-items: center;
  }

  .menu-modal__close {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .mobile-menu-panel[data-state="open"] {
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(130px, 30vw, 180px);
    gap: 12px;
  }

  .hero-main {
    grid-row: 1 / span 2;
  }

  .hero-photo figcaption {
    left: 10px;
    bottom: 10px;
    font-size: 0.7rem;
  }

  .hero-stamp {
    position: absolute;
    top: -12px;
    right: -6px;
    margin-top: 0;
    width: auto;
    padding: 10px 14px;
    font-size: 0.62rem;
  }

  .ambient::before {
    opacity: 0.45;
  }

  .ambient::after {
    opacity: 0.3;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

  .gallery-item.wide,
  .gallery-item.span-2,
  .gallery-item.big {
    grid-column: span 2;
  }

  .gallery-item.span-2.gallery-item--single {
    grid-column: span 1;
  }

  .gallery-item.tall,
  .gallery-item.big {
    grid-row: span 1;
  }

  .story-images {
    position: relative;
    min-height: clamp(190px, 52vw, 260px);
    aspect-ratio: 4 / 3;
    display: block;
    gap: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }

  .story-images figure {
    position: absolute;
    width: 58%;
    padding: 6px 6px 10px;
    justify-self: auto;
  }

  .story-images .story-shot {
    width: clamp(220px, 62vw, 340px);
    margin: 0;
    border-radius: 14px;
  }

  .story-images .story-shot.shot-1 {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 1;
  }

  .story-images .story-shot.shot-2 {
    right: 0;
    bottom: 0;
    transform: rotate(3deg);
    z-index: 0;
  }

  .story-images img {
    height: 100%;
    border-radius: var(--radius-md);
  }

  .story-images::after {
    top: -10px;
    right: 10%;
    width: 90px;
    height: 28px;
  }

  .daybreak-photos {
    position: relative;
    min-height: clamp(220px, 62vw, 300px);
    width: min(360px, 100%);
    max-width: 100%;
    display: block;
    gap: 0;
    isolation: isolate;
    margin-inline: auto;
  }

  .daybreak-photos::before {
    content: "";
    position: absolute;
    top: -18px;
    right: 8%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 232, 194, 0.75), rgba(255, 232, 194, 0));
    filter: blur(1px);
    opacity: 0.85;
    z-index: 0;
  }

  .daybreak-shot {
    position: absolute;
    width: 60%;
    aspect-ratio: 4 / 5;
    padding: 8px;
  }

  .daybreak-shot.shot-morning,
  .daybreak-shot.shot-evening {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .daybreak-shot img {
    height: 100%;
  }

  .daybreak-shot.shot-morning {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
  }

  .daybreak-shot.shot-evening {
    right: 0;
    bottom: 0;
    transform: rotate(3deg);
    z-index: 1;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .space-card img {
    height: 200px;
  }

  .kitchen-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(140px, 34vw, 190px);
  }

  .kitchen-mosaic .mosaic-main {
    grid-row: span 2;
  }

  .kitchen-mosaic figure:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 8px);
  }

  .hosts-photos {
    min-height: 360px;
    padding: 12px 8px 28px 18px;
  }

  .hosts-photos::after {
    content: "";
    width: 96px;
    height: 96px;
    top: -7px;
    right: -2px;
    border-width: 6px;
  }

  .host-photo--secondary {
    position: absolute;
    right: -4%;
    bottom: -6%;
    width: 58%;
    max-width: 240px;
    transform: rotate(2deg);
    border-width: 8px;
  }

  .seasonal-collage {
    position: relative;
    width: min(340px, 92%);
    min-height: clamp(260px, 62vw, 320px);
    margin-inline: auto;
    display: block;
  }

  .seasonal-shot {
    position: absolute;
    width: 62%;
    padding: 8px 8px 12px;
  }

  .seasonal-shot::after {
    top: -8px;
    left: 42%;
    width: 56px;
    height: 18px;
  }

  .seasonal-shot.shot-1 {
    top: 0;
    left: -2%;
    transform: rotate(-4deg);
  }

  .seasonal-shot.shot-2 {
    top: 54px;
    right: -2%;
    transform: rotate(5deg);
  }

  .seasonal-shot.shot-3 {
    bottom: -6px;
    left: 18%;
    transform: rotate(2deg);
  }

  .story-images figure:last-child figcaption {
    left: 12px;
    right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-col {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-col:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 26px;
  }
}

@media (max-width: 540px) {
  .hero-actions,
  .mobile-menu-cta,
  .menu-panel-cta,
  .visit-actions,
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .mobile-menu-cta .btn,
  .menu-panel-cta .btn,
  .visit-actions .btn,
  .footer-actions .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.wide,
  .gallery-item.span-2,
  .gallery-item.big,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .dessert-gallery {
    grid-template-rows: repeat(4, clamp(110px, 18vw, 150px));
    grid-auto-rows: clamp(110px, 18vw, 150px);
  }

}

@media (min-width: 500px) and (max-width: 720px) {
  .story-images {
    min-height: clamp(180px, 34vw, 230px);
  }

  .story-images figure {
    width: 54%;
  }

  .story-images .story-shot {
    width: clamp(210px, 46vw, 290px);
  }

  .story-images::after {
    right: 12%;
    width: 78px;
    height: 24px;
  }
}

@media (max-width: 500px) {
  .seasonal-shot.shot-3 {
    transform: translateY(20px) rotate(2deg);
  }
}

@media (min-width: 721px) {
  .menu-fab--header {
    display: none;
  }

  .mobile-menu-panel {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
    transform: none;
  }

  .btn {
    transition: none;
  }

  .ambient::before,
  .ambient::after {
    animation: none;
  }
}
