:root {
  --turquoise: #1f8b8b;
  --turquoise-dark: #116d70;
  --coral: #ff6b4a;
  --mustard: #ffb41c;
  --peach: #ffc7a1;
  --sunshine: #ffe082;
  --cream: #fff6ea;
  --rust: #a94f3a;
  --ink: #38251f;
  --muted: #76645b;
  --line: #efd9c4;
  --white: #fffdfa;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito Sans", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 107, 74, .35) 0 8px, transparent 9px),
    radial-gradient(circle at 92% 14%, rgba(255, 180, 28, .45) 0 12px, transparent 13px),
    radial-gradient(circle at 84% 78%, rgba(31, 139, 139, .28) 0 10px, transparent 11px),
    var(--cream);
  background-size: 140px 140px, 220px 220px, 180px 180px, auto;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 24px solid var(--mustard);
  box-shadow:
    0 0 0 24px var(--cream),
    0 0 0 48px var(--coral),
    0 0 0 72px var(--cream),
    0 0 0 96px var(--turquoise);
  opacity: .18;
  pointer-events: none;
}

body::before { left: -190px; top: 24%; }
body::after { right: -200px; bottom: -100px; }

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

input,
select,
textarea,
button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 2px solid rgba(239, 217, 196, .9);
  background: rgba(255, 246, 234, .92);
  backdrop-filter: blur(14px);
}

.logo-link img {
  width: 142px;
  height: 74px;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
}

.desktop-nav a,
.mobile-nav a,
.text-link {
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--turquoise-dark);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border: 2px solid var(--turquoise);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--cream);
  color: var(--turquoise-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--turquoise-dark);
  transition: transform .18s ease, opacity .18s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  z-index: 1001;
  left: 18px;
  right: 18px;
  top: calc(100% + 10px);
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 3px solid var(--turquoise);
  border-radius: 24px;
  background: rgba(255, 253, 250, .98);
  box-shadow: 8px 10px 0 rgba(31, 139, 139, .18);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  background: var(--cream);
}

.mobile-nav a::after {
  content: "→";
  color: var(--coral);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  box-shadow: 5px 6px 0 rgba(169, 79, 58, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 7px 8px 0 rgba(169, 79, 58, .2);
}

.button.small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 12px;
}

.button.ghost {
  border-color: var(--turquoise);
  background: var(--cream);
  color: var(--turquoise-dark);
}

.button.ghost-dark {
  border-color: var(--turquoise-dark);
  background: transparent;
  color: var(--turquoise-dark);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 72px) 48px;
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(16px, 4vw, 50px);
  bottom: 28px;
  width: 130px;
  height: 68px;
  border: 12px solid var(--turquoise);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom: 0;
  box-shadow:
    0 0 0 12px var(--cream),
    0 0 0 24px var(--mustard),
    0 0 0 36px var(--cream),
    0 0 0 48px var(--coral);
  opacity: .38;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font: 900 18px/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .035em;
}

h1 {
  max-width: 690px;
  color: var(--turquoise-dark);
  font-size: clamp(70px, 10vw, 132px);
  line-height: .82;
}

h2 {
  color: var(--turquoise-dark);
  font-size: clamp(48px, 7vw, 82px);
  line-height: .86;
}

h3 {
  color: var(--rust);
  font-size: 34px;
  line-height: .9;
}

.lead,
.section-heading p,
.photo-copy p,
.location-card p,
.menu-card p,
footer p {
  color: var(--muted);
  line-height: 1.6;
}

.lead {
  max-width: 520px;
  margin: 22px 0 28px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  position: relative;
  border: 3px solid var(--turquoise);
  border-radius: 34px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 14px 16px 0 rgba(31, 139, 139, .18);
  transform: rotate(1.5deg);
}

.hero-card img {
  width: 100%;
  height: min(58vw, 620px);
  object-fit: cover;
}

.burst {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--rust);
  text-align: center;
  font: 900 23px/.9 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 0 0 8px rgba(255, 246, 234, .92);
}

.marquee {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 58px);
  flex-wrap: wrap;
  padding: 20px;
  border-block: 3px solid var(--turquoise);
  background: var(--turquoise);
  color: var(--cream);
  font: 900 clamp(28px, 4vw, 48px)/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.marquee span:nth-child(even) {
  color: var(--sunshine);
}

.section {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p {
  margin: 14px auto 0;
  max-width: 520px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.page-hero img {
  width: 100%;
  height: min(48vw, 520px);
  min-height: 330px;
  border: 3px solid var(--turquoise);
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 12px 14px 0 rgba(31, 139, 139, .18);
}

.page-hero.compact {
  grid-template-columns: 1fr;
  text-align: center;
}

.page-hero.compact .lead {
  margin-inline: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.content-card,
.form-card,
.pdf-card,
.pos-card {
  border: 2px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 250, .94);
  box-shadow: 7px 8px 0 rgba(255, 180, 28, .2);
}

.content-card {
  padding: 26px;
}

.full-menu-section .content-grid {
  display: block;
  columns: 3 320px;
  column-gap: 22px;
}

.full-menu-section .content-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
}

.content-card h3 {
  margin-bottom: 10px;
}

.content-card p,
.content-card li,
.form-card p,
.pdf-card p,
.pos-card p {
  color: var(--muted);
  line-height: 1.6;
}

.menu-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding-bottom: 15px;
  border-bottom: 2px dashed var(--line);
}

.menu-list strong,
.menu-list span {
  color: var(--ink);
}

.menu-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  padding: clamp(54px, 8vw, 90px) clamp(18px, 5vw, 72px);
}

.form-card,
.pdf-card,
.pos-card {
  padding: clamp(22px, 4vw, 36px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(31, 139, 139, .12);
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.menu-disclaimer {
  max-width: 1180px;
  margin: 24px auto 0;
  text-align: center;
}

.pdf-frame {
  display: grid;
  place-items: center;
  min-height: 460px;
  margin: 22px 0;
  border: 3px dashed var(--peach);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 199, 161, .42), rgba(255, 224, 130, .36)),
    var(--cream);
  text-align: center;
}

.pdf-frame strong {
  display: block;
  color: var(--rust);
  font: 900 34px/.9 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.catering-menu-section {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, .7), rgba(255, 244, 223, .9)),
    var(--cream);
}

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 24px;
}

.menu-jump a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--turquoise-dark);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 5px 0 rgba(255, 180, 28, .2);
}

.catering-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.catering-info-card,
.menu-panel {
  border: 2px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 250, .96);
  box-shadow: 7px 8px 0 rgba(255, 180, 28, .18);
}

.catering-info-card {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.catering-info-card p,
.menu-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 24px;
  color: var(--ink);
  font-weight: 800;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, .16);
}

.info-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.catering-menu-list {
  display: grid;
  gap: 18px;
}

.menu-panel {
  padding: clamp(22px, 4vw, 34px);
  scroll-margin-top: 110px;
}

.menu-panel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(31, 139, 139, .18);
}

.menu-panel-header h3 {
  margin: 0;
  color: var(--rust);
  font-size: clamp(36px, 5vw, 58px);
}

.menu-panel-header h3 span,
.menu-items h4 span {
  color: var(--mustard);
  white-space: nowrap;
}

.package-grid,
.menu-items.two-column,
.mix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.menu-items.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-grid article,
.menu-items article,
.mix-grid article {
  padding: 16px;
  border: 2px solid rgba(31, 139, 139, .16);
  border-radius: 20px;
  background: var(--white);
}

.package-grid h4,
.menu-items h4,
.mix-grid h4 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 7px;
  color: var(--turquoise-dark);
  font-size: 22px;
}

.package-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--mustard);
  font: 900 34px/.9 "Barlow Condensed", sans-serif;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.pill-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff0e3;
  color: var(--rust);
  font-weight: 900;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.price-list span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 2px dashed rgba(31, 139, 139, .2);
  color: var(--ink);
  font-weight: 900;
}

.price-list strong {
  color: var(--rust);
}

.price-list.compact {
  margin-top: 16px;
}

.pos-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 180, 28, .28) 0 54px, transparent 55px),
    rgba(255, 253, 250, .96);
}

.pos-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(54px, 8vw, 90px);
}

.photo-band img {
  width: 100%;
  height: 260px;
  border-radius: 24px;
  object-fit: cover;
}

.photo-band img:nth-child(even) {
  margin-top: 28px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 220px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 250, .9);
  box-shadow: 7px 8px 0 rgba(255, 180, 28, .22);
}

.menu-card.featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.menu-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 22px;
  object-fit: cover;
}

.menu-card.featured img {
  height: 430px;
}

.tag {
  margin: 0 0 10px;
  color: var(--turquoise-dark) !important;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(360px, 1.3fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--sunshine);
}

.photo-story img {
  width: 100%;
  max-height: 620px;
  border: 3px solid var(--coral);
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 12px 14px 0 rgba(255, 107, 74, .2);
}

.photo-copy {
  padding: clamp(18px, 4vw, 44px);
}

.photo-copy p {
  max-width: 460px;
}

.locations {
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.location-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 9px 10px 0 rgba(255, 180, 28, .18);
}

.location-card::after {
  display: none;
}

.location-card.accent {
  border-color: var(--coral);
  background: #fff0e3;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-body {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.location-card h3 {
  color: var(--rust);
  font-size: clamp(40px, 5vw, 58px);
}

.location-card p {
  margin: 0;
}

.location-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.location-details div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 2px dashed rgba(31, 139, 139, .18);
}

.location-details dt {
  color: var(--turquoise-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.location-details dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.location-details a {
  color: var(--rust);
  font-weight: 900;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.locations-page .location-grid {
  grid-template-columns: 1fr;
}

.locations-page .location-card {
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
  grid-template-rows: none;
  min-height: 0;
}

.locations-page .location-card img {
  min-height: 430px;
}

.locations-page .location-card-body {
  align-content: center;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 180, 28, .16) 0 88px, transparent 89px),
    var(--white);
}

.locations-page .location-card.accent .location-card-body {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 104, 74, .15) 0 88px, transparent 89px),
    #fff0e3;
}

.home-locations .location-card {
  grid-template-columns: 1fr;
  grid-template-rows: 300px 1fr;
}

.home-locations .location-card-body {
  background: var(--white);
}

.home-locations .location-card.accent .location-card-body {
  background: #fff0e3;
}

.home-locations .location-card h3 {
  font-size: clamp(36px, 4vw, 50px);
}

.home-locations .location-actions .button {
  flex: 1 1 150px;
}

.waitlist-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 180, 28, .24) 0 72px, transparent 73px),
    rgba(255, 253, 250, .68);
}

.waitlist-section {
  background: rgba(255, 253, 250, .72);
}

.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.waitlist-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 9px 10px 0 rgba(255, 180, 28, .18);
}

.waitlist-card.accent {
  border-color: var(--coral);
  background: #fff0e3;
}

.waitlist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waitlist-card div {
  padding: 26px;
}

.waitlist-card h3 {
  color: var(--rust);
}

.waitlist-card p {
  color: var(--muted);
  line-height: 1.55;
}

.visit-cta {
  margin: 0 clamp(18px, 5vw, 72px) clamp(44px, 6vw, 82px);
  padding: clamp(36px, 6vw, 70px) 22px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(31, 139, 139, .96), rgba(17, 109, 112, .98)),
    var(--turquoise-dark);
  color: white;
  text-align: center;
  box-shadow: 12px 14px 0 rgba(31, 139, 139, .18);
}

.visit-cta img {
  width: 220px;
  height: 116px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, .12));
}

.visit-cta h2,
.visit-cta .eyebrow {
  color: white;
}

.visit-cta .eyebrow {
  color: var(--sunshine);
}

.visit-cta .hero-actions {
  justify-content: center;
  margin-top: 26px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-top: 2px solid var(--line);
  background: var(--white);
}

footer p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

footer a {
  text-decoration: none;
}

/* Denser restaurant-site layout pass */
.site-header {
  gap: 18px;
  padding: 10px clamp(16px, 3vw, 38px);
}

.logo-link img {
  width: 124px;
  height: 62px;
}

.desktop-nav {
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
}

.hero {
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(320px, .78fr) minmax(420px, 1.22fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: var(--turquoise-dark);
}

.hero::before {
  left: 28px;
  bottom: 22px;
  opacity: .22;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding: clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 180, 28, .28) 0 54px, transparent 55px),
    linear-gradient(145deg, rgba(255, 246, 234, .98), rgba(255, 240, 227, .96));
}

.hero .eyebrow {
  margin-bottom: 10px;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(64px, 8vw, 118px);
}

.hero .lead {
  max-width: 460px;
  margin: 18px 0 24px;
}

.hero-card {
  min-height: 620px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.hero-card img {
  height: 100%;
  min-height: 620px;
}

.burst {
  right: auto;
  left: 22px;
  bottom: 22px;
}

.marquee {
  justify-content: flex-start;
  padding: 14px clamp(18px, 5vw, 72px);
  gap: clamp(14px, 3vw, 42px);
  font-size: clamp(24px, 3vw, 40px);
}

.section {
  padding: clamp(38px, 5vw, 64px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: end;
  max-width: 1180px;
  margin-bottom: 24px;
  text-align: left;
}

.section-heading p {
  margin: 0;
}

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

.menu-card,
.menu-card.featured {
  grid-row: auto;
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 12px;
}

.menu-card img,
.menu-card.featured img {
  height: 260px;
  min-height: 260px;
}

.menu-card div {
  padding: 4px 6px 8px;
}

.photo-story {
  grid-template-columns: minmax(320px, .92fr) minmax(420px, 1.08fr);
  gap: 0;
  padding: 0;
}

.photo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(34px, 6vw, 78px);
}

.photo-story img {
  height: 520px;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.locations {
  background: rgba(255, 253, 250, .62);
}

.location-grid {
  max-width: 1180px;
}

.location-card {
  min-height: 220px;
}

.visit-cta {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.ordering-map {
  padding: clamp(18px, 4vw, 42px) clamp(18px, 5vw, 72px) 0;
  background: rgba(255, 253, 250, .68);
}

.map-card {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  min-height: 390px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 34px;
  background: var(--cream);
  box-shadow: 9px 10px 0 rgba(31, 182, 186, .16);
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 180, 28, .32) 0 54px, transparent 55px),
    linear-gradient(135deg, var(--cream), #fff4df);
}

.map-copy h1 {
  max-width: 360px;
  font-size: clamp(44px, 5vw, 74px);
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--turquoise-dark);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 5px 0 rgba(255, 180, 28, .2);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.ordering-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 22px;
  padding: clamp(24px, 5vw, 52px) clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 250, .68);
}

.order-sidebar,
.order-location {
  border: 2px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 7px 8px 0 rgba(255, 180, 28, .18);
}

.order-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 24px;
}

.order-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0;
  padding: 7px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

.order-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--turquoise-dark);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.order-toggle button.active {
  background: var(--turquoise);
  color: white;
}

.order-search {
  margin-top: 12px;
}

.order-main {
  display: grid;
  gap: 18px;
}

.order-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 4px;
}

.order-location {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.order-location-photo {
  width: 100%;
  height: 132px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid var(--line);
}

.order-location.accent {
  border-color: var(--coral);
  background: #fff0e3;
}

.order-location p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.5;
}

.order-location small {
  color: var(--turquoise-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    position: sticky;
  }

  .site-header .desktop-nav,
  .site-header .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .photo-story,
  .menu-grid,
  .map-card,
  .ordering-shell,
  .page-hero,
  .split-section,
  .catering-layout {
    grid-template-columns: 1fr;
  }

  .order-sidebar,
  .catering-info-card {
    position: static;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    min-height: auto;
    padding: 38px 24px 34px;
  }

  .hero-card {
    min-height: 0;
  }

  .section-heading {
    display: block;
    text-align: center;
  }

  .section-heading p {
    margin: 12px auto 0;
  }

  .content-grid,
  .package-grid,
  .menu-items.two-column,
  .mix-grid,
  .photo-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card img {
    height: 520px;
    min-height: 0;
  }

  .menu-card.featured {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  body::before,
  body::after {
    display: none;
  }

  .logo-link img {
    width: 118px;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    padding-top: 0;
    background: var(--cream);
  }

  .hero-copy {
    padding: 24px 20px 22px;
  }

  .hero h1,
  h1 {
    font-size: 48px;
  }

  .hero .lead {
    margin: 14px 0 18px;
    font-size: 17px;
  }

  .hero-card {
    transform: none;
  }

  .hero-card img {
    height: 280px;
  }

  .photo-copy {
    min-height: auto;
    padding: 32px 22px;
  }

  .photo-story img {
    height: 320px;
  }

  .burst {
    width: 106px;
    height: 106px;
    font-size: 19px;
  }

  .menu-card,
  .order-location,
  .location-grid,
  .content-grid,
  .waitlist-grid,
  .package-grid,
  .menu-items.two-column,
  .mix-grid,
  .price-list,
  .form-grid,
  .photo-band {
    grid-template-columns: 1fr;
  }

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

  .locations-page .location-card img {
    min-height: 240px;
    height: 280px;
  }

  .menu-jump {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .menu-jump a {
    flex: 0 0 auto;
  }

  .menu-panel-header {
    display: block;
  }

  .map-copy h1 {
    font-size: 48px;
  }

  .map-card iframe {
    min-height: 330px;
  }

  .order-heading {
    display: block;
  }

  .order-location {
    align-items: stretch;
  }

  .order-location-photo {
    height: 190px;
  }

  .order-location .button {
    width: 100%;
  }

  .page-hero img {
    height: 360px;
  }

  .photo-band img,
  .photo-band img:nth-child(even) {
    height: 240px;
    margin-top: 0;
  }

  .menu-card.featured img,
  .menu-card img {
    height: 210px;
    min-height: 210px;
  }

  footer {
    display: block;
    text-align: center;
  }

  footer p + p {
    margin-top: 8px;
  }
}
