:root {
  --red: #9f1f16;
  --red-dark: #70150f;
  --yellow: #cbd3d6;
  --cream: #fff7e8;
  --paper: #fffdf6;
  --ink: #15120f;
  --muted: #665b50;
  --line: rgba(21, 18, 15, 0.18);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Josefin Sans", Karla, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

button,
input,
select {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  display: grid;
  place-items: center;
  min-width: 156px;
  color: inherit;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.logo strong {
  color: var(--yellow);
  font-size: 24px;
  line-height: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.main-nav a,
.main-nav button,
.site-footer a,
.site-footer button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
}

.nav-button {
  padding: 12px 16px;
  border: 2px solid currentColor !important;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-gallery,
.hero-gallery img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-gallery img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 4000ms ease;
}

.hero-gallery img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  width: min(920px, calc(100% - 40px));
  padding-top: 80px;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split-copy .eyebrow,
.location-section .eyebrow {
  color: var(--red);
}

.hero h1 {
  display: grid;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 12vw, 156px);
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.hero h1 strong {
  color: var(--paper);
  font-size: 0.52em;
}

.hero h1.barosa-title {
  font-size: clamp(64px, 10vw, 140px);
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 2px solid transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-yellow {
  background: var(--yellow);
}

.button-red {
  background: var(--red);
  color: white;
}

.button-red:hover {
  background: var(--red-dark);
}

.button-outline {
  border-color: white;
  color: white;
}

.motion-toggle {
  margin-top: 24px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  cursor: pointer;
}

.embed-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
}

.embed-strip a,
.embed-strip button {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 0;
  border-right: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.embed-strip > :last-child {
  border-right: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--cream);
}

.split-alt .split-copy {
  order: 2;
}

.split-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(42px, 6vw, 80px);
}

.split-copy h2,
.location-section h2,
.modal h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  text-transform: uppercase;
}

.split-copy p,
.location-section p {
  max-width: 520px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.split-image {
  min-height: 420px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  min-height: 560px;
  background: var(--ink);
  overflow: hidden;
}

.catering-grid img {
  min-width: 0;
  min-height: 0;
}

.lunch-section {
  display: grid;
  justify-items: center;
  gap: 34px;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 70px);
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.lunch-heading {
  text-align: center;
}

.lunch-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 12vw, 72px);
  line-height: 0.82;
  text-transform: uppercase;
}

.lunch-heading p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.lunch-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2.3vw, 28px);
  width: min(var(--max), 100%);
}

.lunch-gallery img {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  background: #eef0f2;
  object-fit: cover;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.location-copy {
  align-self: center;
}

.location-copy .button {
  margin-top: 12px;
}

.map-wrap {
  min-height: 430px;
  border: 2px solid var(--ink);
  background: var(--cream);
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.mobile-footer {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 54px);
  background: var(--red);
  color: white;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.social-block {
  display: grid;
  gap: 12px;
}

.social-block p {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transition: background 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.social-links img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.location-social-links {
  margin: 24px 0 8px;
}

.location-social-links a {
  border-color: var(--red);
}

.location-social-links a:hover {
  background: var(--red);
}

.location-social-links img {
  filter: none;
}

.location-social-links a:hover img {
  filter: invert(1);
}

.app-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.app-badges a {
  display: inline-flex;
  line-height: 0;
}

.app-badges img {
  width: auto;
  height: 40px;
}

.app-badges a:nth-child(2) img {
  height: 52px;
}

.modal {
  width: min(520px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.modal-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--cream);
  border: 3px solid var(--ink);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}

.modal label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal input,
.modal select {
  min-height: 48px;
  border: 2px solid var(--ink);
  padding: 10px 12px;
  background: white;
}

.menu-main {
  padding-top: 82px;
}

.menu-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  justify-items: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 94px) 20px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.menu-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.58)),
    url("assets/barosa-menu-daytime.png") center center / cover no-repeat;

  transform: scale(1);
  transform-origin: center center;
}

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

.menu-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 11vw, 142px);
  line-height: 0.86;
  text-transform: uppercase;
}

.menu-hero > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
}

.menu-jump-nav {
  position: sticky;
  z-index: 20;
  top: 82px;
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 0 clamp(12px, 3vw, 36px);
  background: var(--ink);
  color: white;
}

.menu-jump-nav a {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px clamp(12px, 2.5vw, 32px);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-jump-nav a:hover {
  background: var(--red);
}

.menu-group {
  scroll-margin-top: 150px;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 70px);
}

.menu-group-tinted {
  background: var(--cream);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.menu-group-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.menu-group-heading-small {
  margin-top: 92px;
}

.menu-group-heading h2,
.menu-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 92px);
  line-height: 0.92;
  text-transform: uppercase;
}

.menu-group-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 30px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.menu-category {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 2px solid var(--ink);
  background: var(--paper);
}

.menu-category h3,
.package-card h3,
.children-card h3 {
  margin: 0 0 22px;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.menu-subheading {
  margin-top: 42px !important;
  padding-top: 30px;
  border-top: 2px solid var(--ink);
}

.menu-note,
.choice-note,
.menu-disclaimer {
  margin: -8px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.choice-note {
  padding: 16px;
  background: var(--cream);
}

.choice-note p {
  margin: 5px 0 0;
}

.menu-list {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-item:first-child {
  border-top: 0;
}

.menu-item h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}

.menu-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.menu-item > strong {
  color: var(--red);
  font-size: 15px;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

.spicy {
  display: inline-flex;
  margin-left: 5px;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-family: var(--sans);
  font-size: 9px;
  line-height: 1;
  vertical-align: middle;
}

.compact-list .menu-item {
  padding: 12px 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.package-card,
.children-card {
  padding: clamp(24px, 3vw, 36px);
  border: 2px solid var(--ink);
  background: var(--paper);
}

.featured-package {
  background: var(--yellow);
}

.package-price {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
}

.package-fee {
  margin: 6px 0 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card dl {
  margin: 0;
}

.package-card dt {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.party-extras {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  align-items: start;
  gap: 30px;
  width: min(var(--max), 100%);
  margin: 30px auto 0;
}

.children-card p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.catering-menu-grid {
  align-items: stretch;
}

.menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(54px, 7vw, 86px) clamp(20px, 5vw, 70px);
  background: var(--yellow);
  border-top: 2px solid var(--ink);
}

.menu-cta .button-row {
  margin-top: 0;
}

.about-hero {
  min-height: min(720px, 78vh);
  display: grid;
  align-content: end;
  justify-items: center;
  padding: 150px 20px 92px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    url("assets/barosa-dining-room.jpg") center center / cover no-repeat;
  color: white;
  text-align: center;
}

.about-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 11vw, 146px);
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.about-intro {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0;
  text-align: center;
}

.about-intro .eyebrow,
.about-values .eyebrow {
  color: var(--red);
}

.about-intro p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.about-intro .about-lead {
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.24;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.about-values article {
  padding: clamp(54px, 7vw, 96px);
  background: var(--cream);
}

.about-values article + article {
  border-left: 2px solid var(--ink);
  background: var(--yellow);
}

.about-values h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  text-transform: uppercase;
}

.about-values article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.about-closing {
  display: grid;
  justify-items: center;
  padding: clamp(78px, 11vw, 150px) 20px;
  background: var(--red);
  color: white;
  text-align: center;
}

.about-closing > p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(86px, 16vw, 210px);
  font-style: italic;
  line-height: 0.8;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
  }

  .menu-main {
    padding-top: 74px;
  }

  .menu-jump-nav {
    top: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    background: var(--cream);
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    min-height: 44px;
    text-align: left;
  }

  .embed-strip,
  .split,
  .location-section {
    grid-template-columns: 1fr;
  }

  .embed-strip a,
  .embed-strip button {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .split-alt .split-copy {
    order: 0;
  }

  .location-section {
    padding: 70px 0 110px;
  }

  .mobile-footer {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 2px solid var(--ink);
  }

  .mobile-footer button,
  .mobile-footer a {
    display: grid;
    place-items: center;
    min-height: 58px;
    border: 0;
    border-right: 2px solid var(--ink);
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-footer button:last-child,
  .mobile-footer a:last-child {
    border-right: 0;
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }

  .menu-category-grid,
  .package-grid,
  .party-extras,
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values article + article {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .menu-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  .logo {
    min-width: 122px;
    font-size: 17px;
  }

  .hero h1 {
    font-size: clamp(54px, 19vw, 86px);
  }

  .hero h1.barosa-title {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-actions,
  .button-row {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .menu-jump-nav {
    justify-content: stretch;
    padding: 0;
  }

  .menu-jump-nav a {
    flex: 1;
    padding: 8px 7px;
    font-size: 10px;
  }

  .menu-item {
    gap: 12px;
  }

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

  .tray-list .menu-item > strong {
    text-align: left;
  }

  .split-copy {
    padding: 50px 22px;
  }

  .lunch-gallery {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }
}

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

  .hero-gallery img {
    transition: none;
  }
}
