:root {
  --black: #0b0b0b;
  --ink: #17120d;
  --orange: #f47a06;
  --orange-dark: #b94b00;
  --green: #087236;
  --cream: #fff6e8;
  --cream-2: #ffe5bc;
  --paper: #fffaf1;
  --muted: #756b5f;
  --line: rgba(11, 11, 11, .13);
  --line-strong: rgba(11, 11, 11, .22);
  --shadow: 0 28px 80px rgba(11, 11, 11, .17);
  --soft-shadow: 0 18px 50px rgba(11, 11, 11, .1);
  --radius: 22px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 122, 6, .2), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(8, 114, 54, .12), transparent 28rem),
    linear-gradient(180deg, #fff4df 0%, var(--cream) 46%, #ffedd0 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.drawer-open,
body.modal-open,
body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .48; }
input, select, textarea { width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 220;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--paper);
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(11, 11, 11, .9);
  color: var(--paper);
  box-shadow: 0 18px 50px rgba(11, 11, 11, .18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navlinks a,
.navlinks button,
.topbar-cta,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 250, 241, .78);
  font-weight: 850;
}
.navlinks a:hover,
.navlinks button:hover { background: rgba(255,255,255,.09); color: var(--paper); }
.navlinks button { border: 0; background: transparent; }
.nav-basket { display: none !important; }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.topbar-cta,
.cart-button {
  border: 0;
  background: var(--orange);
  color: var(--black);
  font-weight: 950;
}
.cart-button span,
.nav-basket span {
  min-width: 24px;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--black);
  color: var(--paper);
}
.nav-basket span { background: var(--orange); color: var(--black); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--paper);
}

section[id] { scroll-margin-top: 120px; }
.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 106px) 0;
}
.section-narrow {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow,
.label {
  display: block;
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  line-height: .88;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  line-height: .93;
  letter-spacing: -.035em;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}
p { line-height: 1.65; }
.hero-text,
.section-heading p,
.quick-panel span,
.menu-card p,
.market-card p,
.info-grid p,
.story-copy p,
.review-grid p,
.faq-list p,
.newsletter-section p,
.footer,
.form-message,
.quote-panel small,
.calendar-note { color: var(--muted); }
.section-heading { max-width: 800px; margin-bottom: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  text-align: center;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--black); color: var(--paper); box-shadow: 0 18px 34px rgba(11,11,11,.18); }
.btn.primary:hover { background: var(--orange); color: var(--black); }
.btn.light { background: var(--orange); color: var(--black); }
.btn.ghost { border: 1px solid var(--line); background: rgba(255,250,241,.55); color: var(--black); }
.btn.ghost.on-dark { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: var(--paper); }
.btn.dark { background: var(--black); color: var(--paper); }
.btn.full { width: 100%; }
.btn.compact { min-height: 44px; padding-inline: 17px; }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .85fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.hero-actions { margin: 30px 0 22px; }
.trust-row span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,250,241,.62);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
}
.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--black);
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-ticket {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(11,11,11,.8);
  color: var(--paper);
  backdrop-filter: blur(14px);
}
.hero-ticket span,
.hero-ticket small { display: block; color: rgba(255,250,241,.7); }
.hero-ticket strong { display: block; margin: 4px 0; font-size: 1.2rem; }
.mini-link {
  margin-top: 12px;
  border: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-size: .9rem;
  font-weight: 950;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.quick-panel a,
.menu-card,
.market-card,
.enquiry-card,
.quote-panel,
.info-grid article,
.review-grid article,
.faq-list details,
.newsletter-section,
.market-feature,
.calendar-shell {
  border: 1px solid var(--line);
  background: rgba(255,250,241,.68);
  box-shadow: var(--soft-shadow);
}
.quick-panel a {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 18px;
}
.quick-panel a:hover { transform: translateY(-2px); }

.menu-tools {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.segmented button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,250,241,.72);
  font-weight: 900;
}
.segmented button.is-active {
  background: var(--black);
  color: var(--paper);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.menu-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
}
.menu-card img {
  width: 100%;
  aspect-ratio: 1.25 / .8;
  border-radius: 16px;
  object-fit: cover;
  background: var(--black);
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}
.price { font-size: 1.3rem; font-weight: 950; color: var(--orange-dark); white-space: nowrap; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-row span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(244,122,6,.12);
  color: var(--orange-dark);
  font-size: .76rem;
  font-weight: 900;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 22px;
}
.market-feature {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(11,11,11,.94), rgba(39,25,12,.94));
  color: var(--paper);
}
.market-feature .label { color: #ffb15c; }
.market-feature p { color: rgba(255,250,241,.72); }
.market-actions { display: grid; gap: 10px; margin-top: 24px; }
.market-list { display: grid; gap: 14px; }
.market-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
}
.date-badge {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--orange);
  font-weight: 950;
}
.date-badge span { display: block; font-size: 1.6rem; line-height: 1; }
.date-badge small { text-transform: uppercase; }

.calendar-shell {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 28px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.calendar-head h3 { margin: 0; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.calendar-weekday {
  padding: 6px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}
.calendar-day {
  min-height: 86px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.45);
  text-align: left;
  color: var(--muted);
}
.calendar-day span { display: block; font-weight: 950; color: var(--black); }
.calendar-day small { display: block; margin-top: 6px; font-weight: 900; color: var(--orange-dark); }
.calendar-day.has-event {
  background: linear-gradient(145deg, rgba(244,122,6,.2), rgba(255,250,241,.88));
  border-color: rgba(244,122,6,.5);
  color: var(--black);
  box-shadow: 0 12px 32px rgba(244,122,6,.12);
}
.calendar-day.has-event:hover { transform: translateY(-2px); }
.calendar-day.is-empty { visibility: hidden; }
.calendar-note { margin: 14px 0 0; font-weight: 800; }

.catering-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
  gap: 24px;
  align-items: start;
}
.enquiry-card,
.quote-panel {
  padding: clamp(24px, 3.5vw, 38px);
  border-radius: 28px;
}
.form-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.form-grid { display: grid; gap: 16px; margin-bottom: 16px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 900;
}
.form-field span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.form-field em {
  color: var(--orange-dark);
  font-size: .68rem;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
}
input, select, textarea {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255,255,255,.66);
  color: var(--black);
  outline: 0;
}
input, select { height: 56px; padding: 0 15px; }
textarea { min-height: 132px; padding: 15px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(244,122,6,.2);
}
input:focus, select:focus, textarea:focus { border-color: var(--orange); }
.was-validated input:invalid,
.was-validated textarea:invalid {
  border-color: #ba3500;
  box-shadow: 0 0 0 4px rgba(186,53,0,.12);
}
.checkbox-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.checkbox-fieldset legend { padding: 0 8px; font-weight: 950; }
.checkbox-fieldset label,
.check-line { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-weight: 800; }
.checkbox-fieldset input,
.check-line input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); }
.form-message { min-height: 26px; margin: 12px 0 0; font-weight: 850; }
.form-message.success { color: var(--green); }
.form-message.error { color: #b93100; }
.hidden-field { display: none; }

.quote-panel {
  position: sticky;
  top: 108px;
  background: var(--black);
  color: var(--paper);
}
.quote-panel .label { color: #ffb15c; }
.quote-panel h3 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.quote-panel p,
.quote-panel small { color: rgba(255,250,241,.72); }
.quote-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.quote-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.quote-lines span { color: rgba(255,250,241,.62); }

.info-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-grid article,
.review-grid article {
  padding: 24px;
  border-radius: var(--radius);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.stats-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,250,241,.62);
}
.stats-row strong { display: block; font-size: 2rem; }
.stats-row span { color: var(--muted); font-weight: 800; }
.gallery-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gallery-stack img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}
.gallery-stack img:last-child { margin-top: 44px; }

.review-grid article p {
  color: var(--black);
  font-size: 1.22rem;
  font-weight: 850;
}
.review-grid span { color: var(--muted); font-weight: 900; }

.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-list details { padding: 20px 22px; border-radius: 18px; }
.faq-list summary { cursor: pointer; font-weight: 950; font-size: 1.1rem; }
.faq-list p { margin: 14px 0 0; }

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 22px;
  align-items: center;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 50px);
  background: linear-gradient(140deg, rgba(244,122,6,.2), rgba(255,250,241,.76));
}
.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.footer div { display: grid; gap: 6px; }
.footer-links { display: flex; flex-direction: row !important; gap: 14px; font-weight: 900; }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  justify-content: flex-end;
  background: rgba(11,11,11,.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}
.cart-drawer.is-open { opacity: 1; pointer-events: auto; }
.cart-panel {
  width: min(460px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .25s var(--ease);
}
.cart-drawer.is-open .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}
.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--paper);
  font-size: 1.25rem;
  font-weight: 950;
}
.light-icon { background: var(--orange); color: var(--black); }
.cart-items { display: grid; gap: 12px; }
.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.cart-line p { margin: 6px 0 0; color: var(--muted); }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  font-weight: 950;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
  font-weight: 950;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(11,11,11,.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
}
.modal-overlay.is-visible { opacity: 1; pointer-events: auto; }
.market-modal {
  position: relative;
  width: min(660px, 100%);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; top: 16px; right: 16px; }
.modal-event-list { display: grid; gap: 10px; margin-bottom: 18px; }
.modal-event {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.52);
}
.modal-event strong,
.modal-event span { display: block; }
.modal-event span { margin-top: 4px; color: var(--muted); font-weight: 850; }
.modal-event p { margin: 8px 0 0; color: var(--muted); }
.modal-form { display: grid; gap: 10px; }
.discount-card {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--black);
  color: var(--paper);
  text-align: center;
}
.discount-card[hidden] { display: none; }
.discount-card strong { color: #ffb15c; font-size: clamp(1.5rem, 6vw, 2.2rem); overflow-wrap: anywhere; }

.toast,
.noscript {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  max-width: min(420px, calc(100vw - 36px));
  padding: 15px 17px;
  border-radius: 16px;
  background: var(--black);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.toast[hidden] { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .16s; }

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.simple-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 241, .78);
  box-shadow: var(--shadow);
  text-align: center;
}
.simple-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--orange);
}
.simple-card h1 {
  margin-inline: auto;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}
.simple-card p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.7;
}
.simple-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

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

@media (max-width: 1040px) {
  .navlinks a,
  .navlinks button { padding-inline: 10px; }
  .topbar-actions { display: none; }
  .nav-basket { display: inline-flex !important; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; margin-left: auto; }
  .navlinks {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(11,11,11,.96);
  }
  .navlinks.is-open { display: flex; }
  .navlinks a,
  .navlinks button { justify-content: flex-start; min-height: 48px; color: var(--paper); }
  .hero,
  .market-layout,
  .catering-layout,
  .story-section,
  .newsletter-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 58px; }
  .quick-panel,
  .menu-grid,
  .info-grid,
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-panel { position: static; }
}

@media (max-width: 720px) {
  .section-pad,
  .section-narrow,
  .footer,
  .topbar { width: min(100% - 24px, 1180px); }
  .section-pad { padding: 58px 0; }
  .topbar { top: 10px; margin-top: 10px; border-radius: 24px; }
  .brand span { font-size: .9rem; }
  h1 { font-size: clamp(2.75rem, 16vw, 4rem); line-height: .9; }
  h2 { font-size: clamp(2.1rem, 11vw, 3rem); }
  .hero-media { border-radius: 24px; }
  .quick-panel,
  .menu-grid,
  .info-grid,
  .review-grid,
  .form-grid.two,
  .form-grid.three,
  .checkbox-fieldset,
  .stats-row,
  .gallery-stack,
  .newsletter-form { grid-template-columns: 1fr; }
  .market-card { grid-template-columns: 1fr; }
  .menu-tools,
  .form-head,
  .footer { flex-direction: column; align-items: flex-start; }
  .menu-tools .btn,
  .newsletter-form .btn { width: 100%; }
  .gallery-stack img { height: 280px; }
  .gallery-stack img:last-child { margin-top: 0; }
  .hero-actions .btn { width: 100%; }
  .calendar-grid { gap: 5px; }
  .calendar-day { min-height: 58px; padding: 7px; border-radius: 12px; }
  .calendar-day small { font-size: .64rem; }
  .calendar-weekday { font-size: .68rem; padding-inline: 0; }
  .quote-lines div { flex-direction: column; gap: 4px; }
  .cart-panel { padding: 20px; }
}

@media (max-width: 420px) {
  .brand img { width: 38px; height: 38px; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-ticket { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
  .calendar-day { min-height: 52px; }
  .date-badge { width: 64px; height: 64px; }
}
