:root {
  color-scheme: dark;
  --ink: #121714;
  --ink-soft: #19201c;
  --paper: #f4f0e7;
  --muted: #aeb6ab;
  --copper: #c77b4a;
  --copper-bright: #e29a65;
  --olive: #6f7b3d;
  --line: rgba(244, 240, 231, 0.16);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% 12%, rgba(111, 123, 61, 0.1), transparent 28rem),
    var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 3rem, 90rem);
  margin-inline: auto;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: width 220ms ease, padding 220ms ease, background-color 220ms ease, border-radius 220ms ease;
}

.site-header.is-scrolled {
  width: min(100% - 2rem, 90rem);
  margin-top: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(244, 240, 231, 0.12);
  border-radius: 999px;
  background: rgba(16, 20, 17, 0.88);
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .brand-logo {
  width: 3.15rem;
  height: 3.15rem;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  display: inline-flex;
  width: 3.15rem;
  height: 3.15rem;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(244, 240, 231, 0.45);
  border-radius: 999px;
  background: #fff;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wordmark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-style: italic;
  letter-spacing: -0.035em;
}

.wordmark small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-cta,
.primary-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-left: auto;
}

.top-nav a {
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta {
  margin-left: 1.25rem;
  padding: 0.72rem 1.2rem;
  border: 1px solid rgba(244, 240, 231, 0.5);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  height: 175svh;
  min-height: 68rem;
}

.hero-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 15, 13, 0.9) 0%, rgba(12, 15, 13, 0.7) 26%, rgba(12, 15, 13, 0.24) 52%, transparent 72%),
    linear-gradient(0deg, rgba(12, 15, 13, 0.36) 0%, transparent 28%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-background {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.belt-scene {
  position: absolute;
  z-index: 3;
  inset: 0;
}

.plate {
  --plate-x: 80%;
  --plate-y: 32%;
  --plate-scale: 0.3;
  position: absolute;
  z-index: 3;
  left: var(--plate-x);
  top: var(--plate-y);
  width: clamp(15rem, 34vw, 34rem);
  aspect-ratio: 3 / 2;
  transform: translate(-50%, -50%) scale(var(--plate-scale)) rotate(-4deg);
  filter:
    drop-shadow(0 1.15rem 1.1rem rgba(0, 0, 0, 0.5))
    drop-shadow(0 0.15rem 0.35rem rgba(205, 130, 79, 0.18));
  pointer-events: none;
  will-change: transform, left, top;
}

.plate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-copy {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: max(1.5rem, calc((100vw - 90rem) / 2));
  width: min(40rem, 46vw);
  transform: translateY(-46%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
  color: var(--copper-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 8ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 8.5vw, 8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-text {
  max-width: 33ch;
  margin: 1.7rem 0 2rem;
  color: #c8cec6;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.primary-cta {
  gap: 1.1rem;
  padding: 1rem 1.2rem 1rem 1.35rem;
  border-radius: 999px;
  background: var(--copper);
  color: #171310;
  font-weight: 800;
  box-shadow: 0 1rem 2.5rem rgba(199, 123, 74, 0.16);
}

.primary-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: var(--copper-bright);
  transform: translateY(-2px);
}

.primary-cta:hover svg,
.primary-cta:focus-visible svg {
  transform: translateX(3px);
}

.header-cta:focus-visible,
.primary-cta:focus-visible,
.wordmark:focus-visible {
  outline: 3px solid var(--copper-bright);
  outline-offset: 4px;
}

.hero-location {
  position: absolute;
  z-index: 6;
  right: max(1.5rem, calc((100vw - 90rem) / 2));
  bottom: 1.8rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 1.8rem;
  left: max(1.5rem, calc((100vw - 90rem) / 2));
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 3.5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(244, 240, 231, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--copper-bright);
  transform: translateX(-100%);
  animation: cue 2.2s ease-in-out infinite;
}

.offers {
  position: relative;
  z-index: 7;
  padding: clamp(6rem, 12vw, 11rem) max(1.5rem, calc((100vw - 82rem) / 2));
  background:
    radial-gradient(circle at 8% 65%, rgba(111, 123, 61, 0.12), transparent 25rem),
    #e9e4d9;
  color: #151916;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) 1fr;
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading .eyebrow {
  margin-top: 0.85rem;
  color: #8f5637;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
}

.offer-card-offset {
  margin-top: clamp(4rem, 9vw, 9rem);
}

.offer-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #202620;
}

.offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 13, 11, 0.42));
  pointer-events: none;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.offer-card:first-child .offer-media img {
  object-position: 77% center;
}

.offer-card:hover .offer-media img {
  transform: scale(1.025);
}

.offer-number {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.1rem;
  color: rgba(244, 240, 231, 0.84);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.offer-copy {
  display: grid;
  grid-template-columns: 1fr minmax(14rem, 1.3fr);
  gap: 1.5rem;
  align-items: baseline;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(21, 25, 22, 0.24);
}

.offer-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.offer-copy p {
  margin: 0;
  color: #555d57;
  font-size: 0.98rem;
  line-height: 1.65;
}

.reservation {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(4rem, 10vw, 10rem);
  min-height: 72svh;
  align-items: end;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 11rem) max(1.5rem, calc((100vw - 82rem) / 2));
  background: #171c18;
}

.reservation-glow {
  position: absolute;
  top: -35rem;
  left: 4%;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(199, 123, 74, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 8rem rgba(199, 123, 74, 0.025),
    0 0 0 16rem rgba(199, 123, 74, 0.018);
}

.reservation-main,
.contact-grid {
  position: relative;
  z-index: 2;
}

.reservation-main h2 {
  margin-bottom: 2.5rem;
}

.primary-cta-light {
  background: var(--paper);
  color: var(--ink);
}

.primary-cta-light:hover,
.primary-cta-light:focus-visible {
  background: var(--copper-bright);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-grid > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-grid p,
.contact-grid a {
  margin: 0;
  color: #d5d8d2;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.contact-value {
  display: grid;
  gap: 0.55rem;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  color: var(--copper-bright);
}

.contact-grid .contact-label {
  color: #8f988f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prices {
  position: relative;
  z-index: 7;
  padding: clamp(6rem, 12vw, 11rem) max(1.5rem, calc((100vw - 82rem) / 2));
  background:
    radial-gradient(circle at 8% 65%, rgba(111, 123, 61, 0.12), transparent 25rem),
    #f3efe8;
  color: #151916;
}

.price-intro {
  margin: 0 0 2.5rem;
  color: #3b433e;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: clamp(1.3rem, 2vw, 1.8rem);
  border: 1px solid rgba(21, 25, 22, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.24);
}

.price-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.05em;
}

.price-group {
  display: grid;
  gap: 0.7rem;
}

.group-label {
  margin: 0;
  color: #7d685b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.price-list {
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(21, 25, 22, 0.12);
}

.price-row dt,
.price-row dd {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.price-row dt {
  flex: 1;
  color: #2a312d;
}

.price-row dd {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  color: #151916;
  font-weight: 700;
  text-align: right;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(199, 123, 74, 0.14);
  color: #7d685b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note {
  margin: 0;
  color: #5c625e;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
}

.price-card-compact {
  justify-content: center;
}

.price-card-compact p {
  margin: 0;
  color: #2a312d;
  line-height: 1.6;
}

.catering-links {
  display: grid;
  gap: 0.6rem;
}

.catering-links a {
  color: #7d685b;
  font-weight: 600;
  text-decoration: none;
}

.gratis-note {
  margin: 2rem 0 0;
  color: #5c625e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gratis-note span {
  display: inline-block;
  margin-left: 0.3rem;
}

.price-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.prices-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(5rem, 10vw, 8rem) max(1.5rem, calc((100vw - 82rem) / 2));
  background: #171d19;
  color: var(--paper);
}

.catering-page {
  background: #f3efe8;
  color: #171b18;
}

.catering-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 44rem;
  padding: 10rem max(1.5rem, calc((100vw - 82rem) / 2)) 5rem;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(111, 123, 61, 0.18), transparent 24rem),
    #f3efe8;
}

.catering-hero-copy {
  max-width: 38rem;
}

.catering-hero-copy .eyebrow,
.catering-section-heading .eyebrow,
.catering-contact .eyebrow {
  color: #7d685b;
}

.catering-hero h1 {
  margin: 0 0 1.5rem;
  color: #171b18;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.catering-hero-copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin: 0 0 2rem;
  color: #4b534e;
  font-size: 1.1rem;
  line-height: 1.7;
}

.catering-hero-media {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #6f7b3d;
}

.catering-slide {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  opacity: 0;
  animation: catering-fade 10s infinite;
}

.catering-slide-first {
  opacity: 1;
  animation-delay: 0s;
}

.catering-slide-second {
  animation-delay: 5s;
}

@keyframes catering-fade {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

.catering-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(5rem, 10vw, 9rem) max(1.5rem, calc((100vw - 82rem) / 2));
  background: #171d19;
  color: var(--paper);
}

.catering-section-heading h2,
.catering-contact h2 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.catering-services {
  display: grid;
  gap: 1.5rem;
}

.catering-services article {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  column-gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.catering-services article > span {
  color: var(--copper-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.catering-services h3 {
  margin: 0 0 0.5rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
}

.catering-services p {
  grid-column: 2;
  max-width: 32rem;
  margin: 0;
  color: #b8c0b6;
  line-height: 1.65;
}

.catering-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 2rem;
  padding: clamp(5rem, 10vw, 9rem) max(1.5rem, calc((100vw - 82rem) / 2));
  background: #c77b4a;
  color: #171310;
}

.catering-contact h2 {
  color: #171310;
}

.catering-contact-copy {
  align-self: end;
}

.catering-contact-copy > p {
  max-width: 24rem;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.catering-contact .catering-links a {
  color: #171310;
  text-decoration: none;
}

.prices-teaser h2 {
  margin: 0;
  color: var(--paper);
}

.prices-teaser .eyebrow {
  color: var(--copper-bright);
}

.prices-page {
  min-height: 100vh;
  padding: 7rem max(1.5rem, calc((100vw - 82rem) / 2)) 6rem;
  background:
    radial-gradient(circle at 90% 8%, rgba(199, 123, 74, 0.12), transparent 24rem),
    #f3efe8;
  color: #171b18;
}

.prices-shell {
  width: min(100%, 82rem);
  margin: 0 auto;
}

.prices-intro {
  max-width: 46rem;
  margin-bottom: 3rem;
}

.prices-intro .eyebrow {
  color: #7d685b;
}

.prices-intro h1 {
  margin: 0 0 1.2rem;
  color: #171b18;
  font-size: clamp(4rem, 9vw, 7.5rem);
}

.prices-intro > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: #4b534e;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}

.price-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.price-selector-card {
  display: grid;
  gap: 0.65rem;
  min-height: 10rem;
  padding: 1.3rem;
  border: 1px solid rgba(23, 27, 24, 0.15);
  border-radius: 1rem;
  color: #171b18;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.price-selector-card:hover,
.price-selector-card:focus-visible {
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-0.25rem);
}

.price-selector-number {
  color: #9b7867;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.price-selector-card strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
}

.price-selector-card > span:last-child {
  color: #7d685b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-sections {
  display: grid;
  gap: clamp(4rem, 8vw, 7rem);
}

.price-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  scroll-margin-top: 7rem;
}

.price-section + .price-section {
  padding-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid rgba(23, 27, 24, 0.12);
}

.price-section-heading h2 {
  margin: 0 0 1rem;
  color: #171b18;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.price-section-heading > p:last-child {
  max-width: 28rem;
  margin: 0;
  color: #4b534e;
  line-height: 1.7;
}

.price-section .price-card {
  background: rgba(255, 255, 255, 0.38);
}

.price-section-catering .price-card {
  min-height: 13rem;
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem max(1.5rem, calc((100vw - 82rem) / 2));
  background: #101411;
  border-top: 1px solid var(--line);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: #c8cec6;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--copper-bright);
}

.site-footer p {
  margin: 0;
  color: #899189;
  font-size: 0.75rem;
}

.site-header.legal-header {
  width: min(100% - 2rem, 90rem);
  margin-top: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(244, 240, 231, 0.12);
  border-radius: 999px;
  background: rgba(16, 20, 17, 0.88);
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.legal-page {
  min-height: 100vh;
  padding: 7rem max(1.5rem, calc((100vw - 82rem) / 2)) 4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(244, 239, 232, 0.9)),
    #f3efe8;
  color: #171b18;
}

.legal-shell {
  width: min(100%, 54rem);
  margin: 0 auto;
}

.legal-intro {
  margin-bottom: 1.75rem;
}

.legal-intro .eyebrow {
  margin-bottom: 0.8rem;
  color: #7d685b;
  letter-spacing: 0.18em;
}

.legal-content {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(23, 27, 24, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0.6rem 2rem rgba(21, 25, 22, 0.04);
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  margin: 0;
  color: #171b18;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.05em;
}

.legal-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 0.96;
}

.legal-content h2 {
  margin-top: 1.1rem;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.legal-content p,
.legal-content li,
.legal-content a {
  color: #2b302d;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content a {
  color: #7d685b;
}

.legal-content section {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(23, 27, 24, 0.08);
}

.legal-content section:first-of-type {
  padding-top: 0;
  border-top: none;
}

.legal-content ul,
.legal-content ol {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.legal-content section {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.legal-content section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .footer-meta {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .footer-links {
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-footer {
    align-items: flex-start;
  }

  .legal-page {
    padding-top: 6rem;
  }

  .legal-content {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .prices-page {
    padding-top: 6rem;
  }

  .catering-hero,
  .catering-offer,
  .catering-contact {
    grid-template-columns: 1fr;
  }

  .catering-hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .catering-hero-media,
  .catering-hero-media img {
    min-height: 13rem;
  }

  .catering-contact-copy {
    align-self: start;
  }

  .price-selector,
  .price-section {
    grid-template-columns: 1fr;
  }

  .price-selector {
    gap: 0.75rem;
  }

  .price-selector-card {
    min-height: 8rem;
  }

  .price-section {
    gap: 2rem;
  }
}

.mobile-reserve {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

@keyframes cue {
  45%, 100% { transform: translateX(100%); }
}

@media (max-width: 760px), (pointer: coarse) {
  .site-header {
    width: calc(100% - 2rem);
    padding-block: 1rem;
  }

  .wordmark small,
  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 3.15rem;
    height: 3.15rem;
  }

  .top-nav {
    gap: 0.85rem;
  }

  .hero {
    height: 100svh;
    min-height: 43rem;
  }

  .hero-stage {
    position: relative;
  }

  .hero-stage::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 23, 20, 0.12), transparent 36%, rgba(18, 23, 20, 0.96) 74%);
  }

  .hero-background {
    object-position: 68% center;
  }

  .belt-scene {
    z-index: 3;
  }

  .plate {
    --plate-x: 72%;
    --plate-y: 39%;
    --plate-scale: 0.52;
    width: min(58vw, 17rem);
  }

  .hero-copy {
    top: auto;
    right: 1rem;
    bottom: 3.1rem;
    left: 1rem;
    width: auto;
    transform: none;
  }

  .eyebrow {
    margin-bottom: 0.9rem;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .hero-text {
    margin-block: 1rem 1.25rem;
  }

  .primary-cta {
    width: 100%;
  }

  .hero-location,
  .scroll-cue {
    display: none;
  }

  .offers {
    padding-block: 6.5rem;
  }

  .prices-teaser {
    display: grid;
    gap: 2rem;
    padding-block: 5.5rem;
  }

  .prices-teaser .primary-cta {
    width: 100%;
  }

  .section-heading {
    display: block;
    margin-bottom: 3.5rem;
  }

  .section-heading .eyebrow {
    margin-bottom: 1.25rem;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .offer-card-offset {
    margin-top: 0;
  }

  .offer-media {
    aspect-ratio: 4 / 4.7;
  }

  .offer-copy {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .reservation {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    align-items: start;
    padding-block: 7rem 8.5rem;
  }

  .contact-grid > div {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }

  .site-footer .wordmark small {
    display: none;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 30;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--copper);
    color: #171310;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 1rem));
    transition: opacity 180ms ease, transform 240ms ease;
  }

  .mobile-reserve.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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