@font-face {
  font-family: "Baloo 2";
  src: url(../fonts/Baloo2-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Baloo 2";
  src: url(../fonts/Baloo2-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url(../fonts/Nunito-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url(../fonts/Nunito-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url(../fonts/Nunito-ExtraBold.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --cream: #FFF9EE;
  --cream-tint: #FBF1DA;
  --surface: #FFFFFF;
  --ink: #2A2440;
  --muted: #5B5570;
  --subtle: #6B6480;
  --line: rgba(42, 36, 64, .14);
  --line-soft: rgba(42, 36, 64, .08);
  --line-strong: rgba(42, 36, 64, .24);
  --brand: #FFC94D;
  --brand-soft: color-mix(in srgb, var(--brand) 16%, transparent);
  --brand-line: color-mix(in srgb, var(--brand) 50%, transparent);
  --sky: #7FB5E6;
  --sky-soft: color-mix(in srgb, var(--sky) 18%, transparent);
  --sky-line: color-mix(in srgb, var(--sky) 50%, transparent);
  --night: #241F38;
  --night-text: var(--cream);
  --night-muted: #C9C2DC;
  --font-display:
    "Baloo 2",
    "Segoe UI Rounded",
    system-ui,
    sans-serif;
  --font-body:
    "Nunito",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --text-h1: clamp(2.25rem, 1.2rem + 4vw, 3.5rem);
  --text-h2: clamp(1.5rem, 1.25rem + 1.3vw, 2.1rem);
  --text-h3: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-eyebrow: 0.75rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section: clamp(4rem, 3.5rem + 5.5vw, 8rem);
  --radius-card: clamp(20px, 3vw, 32px);
  --radius-btn: clamp(14px, 1.6vw, 18px);
  --radius-sm: 10px;
  --radius-pill: 999px;
  --dur-fast: 180ms;
  --dur-normal: 320ms;
  --dur-slow: 550ms;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
  --shadow-blob: 10px 14px 0 0 rgba(42, 36, 64, .09);
  --shadow-card: 0 2px 6px rgba(42, 36, 64, .06), 0 14px 30px rgba(42, 36, 64, .10);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg,
canvas {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  margin: 0 0 var(--space-4);
  font-weight: 700;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 {
  font-size: var(--text-h1);
}
h2 {
  font-size: var(--text-h2);
}
h3 {
  font-size: var(--text-h3);
  font-weight: 600;
}
p {
  margin: 0 0 var(--space-4);
}
p:last-child {
  margin-bottom: 0;
}
strong,
.lead-strong {
  font-weight: 800;
}
a {
  color: var(--ink);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--muted);
}
:focus-visible {
  outline: 2.5px solid var(--ink);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
::selection {
  background: var(--brand);
  color: var(--ink);
}
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.prose {
  max-width: 62ch;
}
.prose p {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-3) var(--space-6);
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  top: var(--space-4);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: var(--space-4);
  font-size: var(--text-eyebrow);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 0.85em;
  height: 0.85em;
  border-radius: 30%;
  background: var(--brand);
  flex: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 800;
}
.badge--sky {
  background: var(--sky);
  color: var(--ink);
}
.dot-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
.dot-rule i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 40%;
  background: var(--sky);
}
.dot-rule i:nth-child(2) {
  background: var(--brand);
  width: 9px;
  height: 9px;
}
.dot-rule i:nth-child(3) {
  background: var(--ink);
  opacity: .55;
}
.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head p {
  color: var(--muted);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}
.brand:hover {
  color: var(--ink);
  opacity: .8;
}
.brand-mark {
  flex: none;
  display: grid;
  place-items: center;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  position: relative;
  display: inline-block;
  padding-block: 0.3rem;
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 800;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-pop);
}
.site-nav a:hover,
.site-nav a[aria-current=page] {
  color: var(--ink);
}
.site-nav a:hover::after,
.site-nav a[aria-current=page]::after {
  transform: scaleX(1);
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: var(--space-2);
  border: 1.5px solid var(--line-strong);
  background: none;
  color: var(--ink);
  padding: var(--space-2) var(--space-3);
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: var(--space-6) clamp(1.25rem, 4vw, 2.5rem) var(--space-8);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
  .site-nav a {
    font-size: 1.05rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.7rem;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-pop),
    box-shadow var(--dur-fast) var(--ease-pop),
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}
.btn-brand {
  background: var(--brand);
  color: var(--ink);
}
.btn-brand:hover {
  box-shadow: 0 8px 20px var(--brand-soft);
}
.btn-sky {
  background: var(--sky);
  color: var(--ink);
}
.btn-sky:hover {
  box-shadow: 0 8px 20px var(--sky-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
}
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.9rem;
  margin: 0 0 var(--space-4);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--muted);
}
.hours-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--subtle);
  flex-shrink: 0;
}
.hours-pill[data-status=open] {
  border-color: var(--brand-line);
  color: var(--ink);
}
.hours-pill[data-status=open] .dot {
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.hours-pill[data-status=before] .dot {
  background: var(--sky);
}
.hours-pill[data-status=closed] .dot {
  background: var(--subtle);
}
.blob-cluster {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  --pop-scale: 1;
  position: absolute;
  opacity: 1;
  box-shadow: var(--shadow-blob);
}
.blob--a {
  width: clamp(120px, 16vw, 220px);
  height: clamp(120px, 16vw, 220px);
  background: var(--sky);
  border-radius: 42% 58% 53% 47% / 41% 44% 56% 59%;
  top: -4%;
  left: 2%;
  transform: rotate(-8deg) scale(var(--pop-scale));
}
.blob--b {
  width: clamp(140px, 18vw, 260px);
  height: clamp(140px, 18vw, 260px);
  background: var(--brand);
  border-radius: 58% 42% 47% 53% / 55% 60% 40% 45%;
  bottom: -8%;
  right: 3%;
  transform: rotate(6deg) scale(var(--pop-scale));
}
.blob--c {
  width: clamp(60px, 7vw, 96px);
  height: clamp(60px, 7vw, 96px);
  background: var(--ink);
  opacity: .08;
  border-radius: 50% 50% 38% 62% / 62% 38% 62% 38%;
  top: 12%;
  right: 14%;
  transform: rotate(-4deg) scale(var(--pop-scale));
}
.blob--d {
  width: clamp(46px, 5vw, 70px);
  height: clamp(46px, 5vw, 70px);
  background: var(--sky);
  border-radius: 50%;
  bottom: 16%;
  left: 10%;
  opacity: .8;
  transform: scale(var(--pop-scale));
}
.page-hero .blob--a,
.page-hero .blob--b {
  opacity: .9;
}
.js-on:not(.rm) .blob {
  --pop-scale: .5;
  opacity: 0;
}
.js-on:not(.rm) .blob--c {
  opacity: 0;
}
.js-on:not(.rm) .blob--d {
  opacity: 0;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--cream),
      var(--cream-tint));
  text-align: center;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(5.5rem, 4.5rem + 8vw, 11rem);
  max-width: 900px;
}
.hero .eyebrow,
.hero .hours-pill {
  justify-content: center;
}
.hero h1 {
  margin-bottom: var(--space-6);
}
.hero-sub {
  max-width: 54ch;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.scallop {
  display: block;
  width: 100%;
  height: clamp(14px, 2.2vw, 24px);
  margin-top: calc(-1 * clamp(14px, 2.2vw, 24px) + 1px);
  -webkit-mask-image:
    radial-gradient(
      circle at 11px 0,
      transparent 10.5px,
      black 11px);
  mask-image:
    radial-gradient(
      circle at 11px 0,
      transparent 10.5px,
      black 11px);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: 22px 100%;
  mask-size: 22px 100%;
  opacity: 0;
  transform: scaleY(.4);
  transform-origin: top;
}
.scallop--tint {
  background: var(--cream-tint);
}
.scallop--sun {
  background: var(--brand);
}
.scallop--sky {
  background: var(--sky);
}
.scallop--night {
  background: var(--night);
}
@supports (animation-timeline: view()) {
  .scallop {
    animation: scallop-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 45%;
  }
}
@supports not (animation-timeline: view()) {
  .scallop {
    opacity: 1;
    transform: none;
  }
}
@keyframes scallop-reveal {
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scallop {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
main > section {
  padding-block: var(--section);
  position: relative;
}
.blk-tint {
  background: var(--cream-tint);
}
.blk-sun {
  background: var(--brand);
  color: var(--ink);
}
.blk-sun .eyebrow {
  color: var(--ink);
  opacity: .7;
}
.blk-sun .muted,
.blk-sun p {
  color: var(--ink);
}
.blk-sky {
  background: var(--sky);
  color: var(--ink);
}
.blk-sky .eyebrow {
  color: var(--ink);
  opacity: .7;
}
.blk-night {
  background: var(--night);
  color: var(--night-text);
}
.blk-night .eyebrow {
  color: var(--brand);
}
.blk-night .eyebrow::before {
  background: var(--brand);
}
.blk-night p,
.blk-night .muted {
  color: var(--night-muted);
}
.usp-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
@media (max-width: 780px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}
.icon-figure {
  display: grid;
  place-items: center;
  width: clamp(64px, 6vw, 76px);
  height: clamp(64px, 6vw, 76px);
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.usp-item h3 {
  margin-bottom: var(--space-2);
}
.usp-item p {
  color: var(--muted);
}
.offer-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border-top: 6px solid var(--brand);
  transition: transform var(--dur-normal) var(--ease-pop);
}
.offer-card:nth-child(2) {
  border-top-color: var(--sky);
}
.offer-card:nth-child(3) {
  border-top-color: var(--ink);
}
.offer-card:hover {
  transform: translateY(-5px);
}
.offer-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: var(--space-4);
  border-radius: 30%;
  background: var(--cream-tint);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
}
.offer-card h3 {
  margin-bottom: var(--space-2);
}
.offer-card p {
  color: var(--muted);
  flex: 1;
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  margin-top: var(--space-6);
  color: var(--ink);
  font-weight: 800;
  font-size: var(--text-sm);
  text-decoration-color: var(--line-strong);
}
.offer-link:hover {
  color: var(--muted);
}
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split > .split-media {
    order: 2;
  }
}
.split-media {
  position: relative;
}
.plaque {
  position: relative;
  border-radius: var(--radius-card);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  text-align: center;
  margin: 0;
}
.plaque .figure-portrait {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.plaque figcaption {
  margin-top: var(--space-4);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--muted);
}
.keyfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 2px dashed var(--line);
}
.keyfacts dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ink);
}
.keyfacts dd {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--subtle);
}
@media (max-width: 560px) {
  .keyfacts {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  max-width: 640px;
  margin-inline: auto;
}
.trust-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.trust-list .dot-mark {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 35%;
  background: var(--brand);
  transform: translateY(-1px) rotate(8deg);
}
.trust-list span:last-child {
  color: var(--muted);
  font-weight: 600;
}
.hours-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  color: var(--ink);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.hours-card .eyebrow {
  justify-content: center;
}
.hours-list-paper {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
}
.hours-list-paper li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-2);
  border-bottom: 1px dashed var(--line);
  font-size: var(--text-base);
}
.hours-list-paper li:last-child {
  border-bottom: none;
}
.hours-list-paper .day {
  font-weight: 800;
}
.hours-list-paper .dots {
  display: none;
}
.hours-list-paper .time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.hours-list-paper .time.closed {
  font-style: italic;
}
.hours-list-paper li.is-today {
  background: var(--brand-soft);
  border-radius: var(--radius-sm);
  border-bottom-color: transparent;
  padding-inline: var(--space-3);
}
.hours-list-paper li.is-today .day,
.hours-list-paper li.is-today .time {
  color: var(--ink);
}
.hours-note {
  margin-top: var(--space-4);
  font-style: italic;
  color: var(--subtle);
  font-size: var(--text-sm);
}
.quote {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h3);
  line-height: 1.35;
}
.quote cite {
  display: block;
  margin-top: var(--space-6);
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}
.faq {
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-q:hover {
  color: var(--muted);
}
.faq-q .faq-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 30%;
  background: var(--brand-soft);
  color: var(--ink);
  transition: transform var(--dur-fast) var(--ease-pop);
}
.faq-q[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 var(--space-6);
  color: var(--muted);
  max-width: 60ch;
}
.faq-a[hidden] {
  display: none;
}
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  color: var(--muted);
}
.cta-band .hero-actions {
  margin-top: var(--space-8);
}
.seo-text {
  max-width: 70ch;
  margin-inline: auto;
  color: var(--subtle);
  font-size: var(--text-sm);
  text-align: center;
}
.contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list .k {
  flex: none;
  width: 7.5rem;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--subtle);
  padding-top: 0.2rem;
}
.contact-list span:last-child {
  color: var(--muted);
}
.form-field {
  margin-bottom: var(--space-6);
}
.form-field label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2.5px solid var(--ink);
  outline-offset: 1px;
  border-color: var(--ink);
}
.form-hint {
  font-size: var(--text-sm);
  color: var(--subtle);
  margin-top: var(--space-2);
}
.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px dashed var(--line);
}
.menu-list li:last-child {
  border-bottom: none;
}
.menu-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-4px);
}
.menu-item-name {
  font-size: var(--text-lg);
  font-weight: 700;
}
.menu-item-name em {
  color: var(--muted);
  font-size: var(--text-base);
  font-style: italic;
  font-weight: 400;
}
.menu-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-note {
  margin-top: var(--space-6);
  font-style: italic;
  color: var(--subtle);
}
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(4rem, 3rem + 6vw, 7rem);
  background:
    linear-gradient(
      180deg,
      var(--cream-tint),
      var(--cream));
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  justify-content: center;
  margin-bottom: var(--space-4);
}
.page-hero p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: var(--text-lg);
}
.site-footer {
  background: var(--cream-tint);
  border-top: 1px solid var(--line);
  padding-block: var(--space-16) var(--space-8);
  font-size: var(--text-base);
}
.footer-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin-bottom: var(--space-12);
}
.footer-brand p {
  color: var(--muted);
  font-size: var(--text-base);
  max-width: 30ch;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col li {
  margin-bottom: var(--space-3);
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--ink);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: var(--text-sm);
}
.footer-bottom a {
  color: var(--muted);
}
.legal {
  max-width: 72ch;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.legal h1 {
  margin-bottom: var(--space-6);
}
.legal h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-12);
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal p,
.legal li,
.legal address {
  color: var(--muted);
}
.legal a {
  text-decoration: underline;
}
.error-404 {
  position: relative;
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem);
}
.error-404 .code {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 12vw, 8rem);
  color: var(--ink);
  line-height: 1;
}
.js-on:not(.rm) [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
.js-on:not(.rm) [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(14px);
}
.js-on:not(.rm) [data-pop] {
  opacity: 0;
  transform: scale(.55);
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .offer-card,
  .faq-q .faq-icon,
  .site-nav a::after {
    transition: none;
  }
  .offer-card:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .hero-actions,
  .blob-cluster,
  .scallop {
    display: none;
  }
}
.sk-shot {
  overflow: hidden;
  border-radius: var(--radius,12px);
  margin-bottom: 1.5rem;
}
.sk-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.sk-shot--portrait img {
  aspect-ratio: 4/5;
}
.sk-shot--breit img {
  aspect-ratio: 4/3;
}
