.theme-restaurant-bold {
  --restaurant-charcoal: #111110;
  --restaurant-charcoal-2: #1c1714;
  --restaurant-cream: #fff5e8;
  --restaurant-paper: #fffdf9;
  --restaurant-sand: #f4e3cc;
  --restaurant-ink: #181411;
  --restaurant-muted: #74675d;
  --restaurant-flame: #e4582e;
  --restaurant-sage: #68745b;
  --restaurant-olive: #243025;
  --restaurant-line: rgba(24, 20, 17, 0.14);
  --restaurant-shadow: 0 24px 60px rgba(24, 20, 17, 0.16);
  --accent: var(--restaurant-flame);
  --dark: var(--restaurant-charcoal);
  --text: var(--restaurant-ink);
  --muted: var(--restaurant-muted);
  --body-font: "Inter", system-ui, sans-serif;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --bg: var(--restaurant-paper);
  --card-bg: #ffffff;
  --card-border: var(--restaurant-line);
  background: var(--restaurant-paper);
  color: var(--restaurant-ink);
  font-family: var(--body-font);
}

.theme-restaurant-bold .container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.theme-restaurant-bold h1,
.theme-restaurant-bold h2,
.theme-restaurant-bold h3 {
  margin: 0;
  color: var(--restaurant-ink);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

.theme-restaurant-bold p {
  margin: 0;
}

.restaurant-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 17, 16, 0.9);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.restaurant-header-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.restaurant-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.restaurant-brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--restaurant-flame);
}

.restaurant-brand-mark::before,
.restaurant-brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 20px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 80%;
}

.restaurant-brand-mark::before {
  transform: translateX(-50%) rotate(42deg);
}

.restaurant-brand-mark::after {
  transform: translateX(-50%) rotate(-42deg);
}

.restaurant-header .site-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 38px);
  padding: 0;
}

.restaurant-header .site-nav a {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.restaurant-header .site-nav a:last-child {
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.theme-restaurant-bold .nav-toggle {
  display: none;
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-contact-bar {
  display: none;
}

.restaurant-hero {
  position: relative;
  min-height: min(590px, calc(100vh - 170px));
  display: grid;
  overflow: hidden;
  align-items: center;
  color: #fff;
}

.restaurant-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 16, 0.8), rgba(17, 17, 16, 0.48) 48%, rgba(17, 17, 16, 0.78)),
    radial-gradient(circle at 50% 44%, rgba(228, 88, 46, 0.18), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: clamp(36px, 5.5vw, 62px) 0 clamp(42px, 5.5vw, 66px);
  text-align: center;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--restaurant-flame);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.restaurant-hero .section-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.hero-seal {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(2.9rem, 5.5vw, 5rem);
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-content p:not(.section-kicker) {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.theme-restaurant-bold .button {
  min-height: 52px;
  border-radius: 999px;
  padding: 0 30px;
  font-family: var(--body-font);
  font-weight: 900;
  text-decoration: none;
}

.button-flame {
  border-color: var(--restaurant-flame);
  background: var(--restaurant-flame);
  color: #fff;
  box-shadow: 0 18px 38px rgba(228, 88, 46, 0.3);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-outline-dark {
  border-color: var(--restaurant-flame);
  background: transparent;
  color: var(--restaurant-flame);
}

.button-full {
  width: 100%;
}

.section {
  padding: clamp(72px, 8.5vw, 124px) 0;
}

.commitment-section {
  padding-top: clamp(34px, 4vw, 52px);
}

.narrow {
  max-width: 840px;
  text-align: center;
}

.narrow h2,
.center-heading h2,
.story-copy h2,
.catering-copy h2,
.reservation-heading h2 {
  font-size: clamp(2.75rem, 5vw, 4.9rem);
  text-wrap: balance;
}

.narrow p:not(.section-kicker),
.story-copy p,
.catering-copy p,
.dish-card p,
.reservation-heading p:not(.section-kicker),
.restaurant-footer p {
  color: var(--restaurant-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.narrow p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px auto 0;
}

.feature-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(42px, 5vw, 70px);
}

.feature-image-grid img,
.story-media img,
.catering-image img,
.reservation-collage img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.feature-image-grid img {
  height: clamp(240px, 27vw, 340px);
  border-radius: 2px;
  box-shadow: var(--restaurant-shadow);
}

.menu-highlights {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(228, 88, 46, 0.08), transparent 22%),
    radial-gradient(circle at 92% 82%, rgba(104, 116, 91, 0.12), transparent 22%),
    var(--restaurant-cream);
}

.menu-highlights::before,
.menu-highlights::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 3px solid rgba(24, 20, 17, 0.04);
  border-radius: 44% 56% 50% 50%;
  pointer-events: none;
}

.menu-highlights::before {
  left: -72px;
  top: 90px;
  transform: rotate(24deg);
}

.menu-highlights::after {
  right: -90px;
  bottom: 80px;
  transform: rotate(-18deg);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto clamp(52px, 6vw, 82px);
  text-align: center;
}

.menu-highlights .center-heading h2 {
  font-size: clamp(2.45rem, 4.1vw, 4.05rem);
}

.dish-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 7vw, 84px) clamp(36px, 7vw, 92px);
}

.dish-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.dish-card:nth-child(4) {
  grid-column: 1 / span 1;
  margin-left: 46%;
}

.dish-card:nth-child(5) {
  grid-column: 3 / span 1;
  margin-left: -46%;
}

.dish-visual {
  position: relative;
  display: block;
  width: clamp(156px, 17vw, 214px);
  aspect-ratio: 1;
  border: 12px solid #fff;
  border-radius: 50%;
  box-shadow:
    0 16px 28px rgba(24, 20, 17, 0.14),
    inset 0 0 0 10px rgba(255, 255, 255, 0.26);
}

.dish-visual::before,
.dish-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.dish-visual::before {
  inset: 19%;
  background: rgba(255, 255, 255, 0.26);
}

.dish-visual::after {
  right: 20%;
  top: 18%;
  width: 23%;
  height: 23%;
  background: rgba(255, 255, 255, 0.48);
}

.dish-ember {
  background:
    radial-gradient(circle at 30% 28%, #f8d874 0 9%, transparent 10%),
    radial-gradient(circle at 68% 34%, #e4582e 0 12%, transparent 13%),
    radial-gradient(circle at 42% 64%, #7f3620 0 16%, transparent 17%),
    radial-gradient(circle at 68% 70%, #325438 0 10%, transparent 11%),
    #f3b95e;
}

.dish-sage {
  background:
    radial-gradient(circle at 34% 37%, #6d8a58 0 16%, transparent 17%),
    radial-gradient(circle at 63% 28%, #f4ead0 0 12%, transparent 13%),
    radial-gradient(circle at 64% 68%, #c6763f 0 15%, transparent 16%),
    radial-gradient(circle at 36% 72%, #2f5136 0 11%, transparent 12%),
    #efe0be;
}

.dish-ruby {
  background:
    radial-gradient(circle at 30% 34%, #a6282d 0 13%, transparent 14%),
    radial-gradient(circle at 69% 30%, #f7a14f 0 12%, transparent 13%),
    radial-gradient(circle at 58% 70%, #6f7b44 0 17%, transparent 18%),
    radial-gradient(circle at 34% 70%, #f4f0df 0 10%, transparent 11%),
    #d96544;
}

.dish-smoke {
  background:
    radial-gradient(circle at 28% 30%, #2c251f 0 14%, transparent 15%),
    radial-gradient(circle at 68% 38%, #e8c56d 0 12%, transparent 13%),
    radial-gradient(circle at 42% 70%, #587a54 0 15%, transparent 16%),
    radial-gradient(circle at 72% 72%, #f5e6cd 0 11%, transparent 12%),
    #b99a7b;
}

.dish-gold {
  background:
    radial-gradient(circle at 34% 28%, #f7df83 0 17%, transparent 18%),
    radial-gradient(circle at 66% 33%, #fff8df 0 12%, transparent 13%),
    radial-gradient(circle at 66% 70%, #cf4f3a 0 12%, transparent 13%),
    radial-gradient(circle at 38% 72%, #7d5d2d 0 14%, transparent 15%),
    #f0bd54;
}

.dish-card h3 {
  margin-top: 26px;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.dish-card p {
  max-width: 260px;
  margin-top: 10px;
}

.story-grid,
.catering-grid,
.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 82px);
}

.story-copy {
  max-width: 470px;
}

.story-copy p:not(.section-kicker),
.catering-copy p {
  margin: 22px 0 30px;
}

.story-media {
  position: relative;
}

.story-media img {
  aspect-ratio: 1.34 / 1;
  border-radius: 2px;
  box-shadow: var(--restaurant-shadow);
}

.story-note {
  position: absolute;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(-26px, -2vw, -18px);
  max-width: 250px;
  padding: 22px;
  border-left: 5px solid var(--restaurant-flame);
  background: #fff;
  box-shadow: 0 18px 40px rgba(24, 20, 17, 0.16);
}

.story-note strong,
.story-note span {
  display: block;
}

.story-note span {
  margin-top: 8px;
  color: var(--restaurant-muted);
  line-height: 1.55;
}

.catering-section {
  background: var(--restaurant-charcoal);
  color: #fff;
}

.catering-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.catering-image img {
  aspect-ratio: 1.35 / 1;
  border-radius: 2px;
}

.catering-copy h2,
.catering-copy p {
  color: #fff;
}

.catering-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.catering-copy .button-outline-dark {
  border-color: var(--restaurant-flame);
  color: #fff;
}

.reservation-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(228, 88, 46, 0.1), transparent 22%),
    var(--restaurant-cream);
}

.reservation-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 5vw, 66px);
  text-align: center;
}

.reservation-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: start;
}

.reservation-collage {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 18px;
  padding-top: 28px;
}

.reservation-collage img:first-child {
  height: 430px;
  border-radius: 2px;
}

.reservation-collage img:nth-child(2) {
  height: 330px;
  margin-top: 88px;
  border-radius: 2px;
}

.collage-card {
  position: absolute;
  left: 32px;
  bottom: 30px;
  display: grid;
  gap: 8px;
  width: min(270px, calc(100% - 64px));
  padding: 22px;
  border-radius: 2px;
  background: var(--restaurant-charcoal);
  color: #fff;
  box-shadow: var(--restaurant-shadow);
}

.collage-card span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.reservation-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(24, 20, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 24px 64px rgba(24, 20, 17, 0.1);
}

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

.field {
  display: grid;
  gap: 8px;
}

.reservation-form label {
  color: var(--restaurant-ink);
  font-weight: 900;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(24, 20, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--restaurant-ink);
  font: inherit;
  padding: 0 18px;
  outline: none;
}

.reservation-form textarea {
  min-height: 130px;
  border-radius: 8px;
  padding: 16px 18px;
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
  border-color: var(--restaurant-flame);
  box-shadow: 0 0 0 4px rgba(228, 88, 46, 0.12);
}

.form-note,
.form-message {
  color: var(--restaurant-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-message.success {
  color: #1f6b47;
}

.form-message.error {
  color: #a83723;
}

.restaurant-footer {
  background: var(--restaurant-charcoal);
  color: #fff;
  padding: clamp(64px, 7vw, 96px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: clamp(34px, 6vw, 76px);
}

.footer-brand {
  margin-bottom: 22px;
}

.restaurant-footer p {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.7);
}

.restaurant-footer nav {
  display: grid;
  gap: 14px;
}

.restaurant-footer a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.restaurant-footer h2 {
  margin-bottom: 18px;
  color: var(--restaurant-flame);
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

  .theme-restaurant-bold .nav-toggle {
    display: inline-flex;
  }

  .restaurant-header .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(18, 17, 16, 0.97);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  }

  .restaurant-header .site-nav.open {
    display: flex;
  }

  .restaurant-header .site-nav a,
  .restaurant-header .site-nav a:last-child {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px;
    border-radius: 6px;
  }

  .mobile-contact-bar {
    position: sticky;
    top: 82px;
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--restaurant-flame);
  }

  .mobile-contact-bar a {
    min-height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.24);
  }

  .restaurant-hero {
    min-height: min(560px, calc(100vh - 170px));
  }

  .hero-seal {
    width: 84px;
    height: 84px;
    margin-bottom: 16px;
    font-size: 0.56rem;
  }

  .feature-image-grid,
  .dish-grid,
  .story-grid,
  .catering-grid,
  .reservation-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dish-card:nth-child(4),
  .dish-card:nth-child(5) {
    grid-column: auto;
    margin-left: 0;
  }

  .story-copy {
    max-width: none;
  }

  .catering-grid {
    gap: 34px;
  }

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

}

@media (max-width: 620px) {
  .theme-restaurant-bold .container {
    width: min(100% - 28px, 1120px);
  }

  .restaurant-header-row {
    min-height: 76px;
  }

  .restaurant-brand {
    max-width: 220px;
    font-size: 1.72rem;
  }

  .mobile-contact-bar {
    top: 76px;
  }

  .restaurant-hero {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .hero-content h1 {
    font-size: clamp(2.05rem, 10vw, 2.55rem);
  }

  .hero-content p:not(.section-kicker) {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-content .section-kicker {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero-content .button-row {
    margin-top: 22px;
  }

  .button-row,
  .theme-restaurant-bold .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .narrow h2,
  .center-heading h2,
  .story-copy h2,
  .catering-copy h2,
  .reservation-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .feature-image-grid {
    gap: 16px;
  }

  .feature-image-grid img {
    height: 230px;
  }

  .dish-grid {
    gap: 44px;
  }

  .story-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 14px;
  }

  .reservation-collage {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .reservation-collage img:first-child,
  .reservation-collage img:nth-child(2) {
    height: 240px;
    margin-top: 0;
  }

  .collage-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
  }

  .reservation-form {
    padding: 22px;
  }
}
