/* ============================================
   EMBER & OAK — Main Stylesheet
   ============================================ */

/* --- Reset & Base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:       #c8873a;
  --amber-light: #e0a060;
  --amber-dark:  #a06828;
  --charcoal:    #1a1a1a;
  --charcoal-2:  #242424;
  --charcoal-3:  #2e2e2e;
  --warm-white:  #f5f0e8;
  --warm-grey:   #b8b0a4;
  --mid-grey:    #4a4540;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--charcoal);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Utility ------------------------------------------------------- */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--amber-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-header--center { text-align: center; }

/* --- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: #fff;
  border: 2px solid var(--amber);
}
.btn--amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
}

.btn--outline {
  background: transparent;
  color: var(--warm-white);
  border: 2px solid rgba(245, 240, 232, 0.55);
}
.btn--outline:hover {
  border-color: var(--warm-white);
  background: rgba(245, 240, 232, 0.08);
}

.btn--lg { padding: 1.1rem 2.75rem; font-size: 0.9375rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(20, 18, 16, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 135, 58, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--warm-white);
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--amber-light); transition: color 0.2s; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--warm-white); }

.nav__cta {
  background: var(--amber) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--amber-light) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 1px;
  transition: all 0.25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(20, 18, 16, 0.97);
  border-top: 1px solid rgba(200, 135, 58, 0.2);
  padding: 1.5rem 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 0.875rem clamp(1.5rem, 5vw, 3rem);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  transition: color 0.2s, padding-left 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--amber-light); padding-left: calc(clamp(1.5rem, 5vw, 3rem) + 0.5rem); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.45) 0%,
    rgba(10, 8, 6, 0.62) 50%,
    rgba(10, 8, 6, 0.82) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-inline: clamp(1.5rem, 8vw, 6rem);
  padding-top: 72px;
  max-width: 820px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--warm-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.55;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero__scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   MENU HIGHLIGHTS
   ============================================================ */
.menu {
  padding-block: var(--section-pad);
  background: var(--charcoal-2);
  border-top: 1px solid rgba(200, 135, 58, 0.15);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.dish-card {
  background: var(--charcoal-3);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.04);
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.dish-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.dish-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.55s ease;
}
.dish-card:hover .dish-card__img-wrap img { transform: scale(1.06); }

.dish-card__body {
  padding: 1.5rem 1.625rem 1.875rem;
}

.dish-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.dish-card__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.2;
}

.dish-card__price {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--amber);
  flex-shrink: 0;
}

.dish-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--warm-grey);
}

.menu__footer {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.menu__note {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--mid-grey);
  letter-spacing: 0.02em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: var(--section-pad);
  background: var(--charcoal);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about__img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__img-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid rgba(200, 135, 58, 0.25);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}
.about__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about__img-frame:hover img { transform: scale(1.03); }

.about__text-col .section-title { margin-bottom: 2rem; }

.about__body { display: flex; flex-direction: column; gap: 1.25rem; }
.about__body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.72);
}

.about__awards {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.award {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.award__year {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  flex-shrink: 0;
  min-width: 2.5rem;
}
.award__name {
  font-size: 0.8125rem;
  color: var(--warm-grey);
  line-height: 1.4;
}

/* ============================================================
   VISIT (Hours & Location)
   ============================================================ */
.visit {
  padding-block: var(--section-pad);
  background: var(--charcoal-2);
  border-top: 1px solid rgba(200, 135, 58, 0.12);
  border-bottom: 1px solid rgba(200, 135, 58, 0.12);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.visit__block { padding-inline: clamp(1.5rem, 3vw, 2.5rem); }
.visit__block:first-child { padding-left: 0; }
.visit__block:last-child  { padding-right: 0; }

.visit__divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
  min-height: 160px;
}

.visit__block-title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table__day {
  color: var(--warm-grey);
  padding-right: 1.5rem;
  white-space: nowrap;
}
.hours-table__time {
  color: var(--warm-white);
  font-weight: 500;
  text-align: right;
}
.hours-table__closed td { opacity: 0.4; }

.visit__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--amber);
  font-style: italic;
  line-height: 1.5;
}

.visit__address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}
.visit__neighborhood {
  font-size: 0.8rem;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.visit__map-link {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber);
  transition: color 0.2s, letter-spacing 0.2s;
}
.visit__map-link:hover { color: var(--amber-light); letter-spacing: 0.09em; }

.visit__phone {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
}
.visit__phone a:hover { color: var(--amber-light); transition: color 0.2s; }

.visit__email {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.visit__email a {
  color: var(--warm-white);
  transition: color 0.2s;
}
.visit__email a:hover { color: var(--amber-light); }

.visit__parking {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--amber);
  font-style: italic;
}

/* ============================================================
   RESERVATIONS CTA
   ============================================================ */
.reservations {
  position: relative;
  padding-block: var(--section-pad);
  overflow: hidden;
  background: var(--charcoal-2);
}

.reservations::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200, 135, 58, 0.12) 0%, transparent 70%),
    linear-gradient(to bottom, var(--charcoal) 0%, var(--charcoal-2) 100%);
}

.reservations__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.reservations__heading {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.reservations__sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.reservations__phone-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--mid-grey);
}
.reservations__phone-note a {
  color: var(--warm-grey);
  transition: color 0.2s;
}
.reservations__phone-note a:hover { color: var(--amber-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111010;
  border-top: 1px solid rgba(200, 135, 58, 0.15);
  padding-block: 2.5rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--mid-grey);
  text-align: center;
}

.footer__links {
  display: flex;
  gap: 1.75rem;
}
.footer__links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--amber-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  .about__img-frame { aspect-ratio: 16 / 9; max-height: 420px; }

  .menu__grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }

  .visit__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .visit__block { padding-inline: 0; }
  .visit__divider {
    width: 100%;
    height: 1px;
    min-height: unset;
    align-self: auto;
  }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__copy { order: 3; }
  .footer__links { order: 2; }
}

/* Large tablet — 2 col menu */
@media (min-width: 600px) and (max-width: 900px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); max-width: unset; }
}

/* Mobile */
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; max-width: 280px; }
  .reservations__heading { font-size: clamp(3rem, 14vw, 5rem); }
  .hours-table td { font-size: 0.8125rem; }
  .menu__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero {
  padding-top: calc(72px + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--charcoal);
  text-align: center;
  border-bottom: 1px solid rgba(200, 135, 58, 0.15);
}
.page-hero .section-title { margin-bottom: 0.5rem; }
.page-hero__sub {
  font-size: 0.9375rem;
  color: var(--warm-grey);
  font-style: italic;
}

.menu-page {
  padding-block: var(--section-pad);
  background: var(--charcoal);
}

.menu-section {
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.menu-section:last-child { margin-bottom: 0; }

.menu-section__header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 135, 58, 0.2);
}
.menu-section__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--warm-white);
}
.menu-section__count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.menu-items { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { border-color: rgba(200, 135, 58, 0.2); }

.menu-item__info {}
.menu-item__name {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.menu-item__desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--warm-grey);
}
.menu-item__price {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   RESERVE PAGE
   ============================================================ */
.reserve-page {
  padding-top: calc(72px + clamp(3rem, 7vw, 6rem));
  padding-bottom: var(--section-pad);
  background: var(--charcoal);
  min-height: 100vh;
}

.reserve-page__inner {
  max-width: 560px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

.reserve-page__heading {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.reserve-page__sub {
  font-size: 0.9375rem;
  color: var(--warm-grey);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.6;
}

.reserve-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--charcoal-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 135, 58, 0.15);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8b0a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(10deg);
  cursor: pointer;
}

.form-field input::placeholder { color: var(--mid-grey); }

.reserve-form__submit {
  margin-top: 0.5rem;
}
.reserve-form__submit .btn { width: 100%; justify-content: center; }

.form-field--error input,
.form-field--error select {
  border-color: #c0504a;
}
.form-field--error input:focus,
.form-field--error select:focus {
  border-color: #c0504a;
  box-shadow: 0 0 0 3px rgba(192, 80, 74, 0.18);
}
.form-error {
  font-size: 0.775rem;
  color: #c0504a;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ============================================================
   CONFIRM PAGE
   ============================================================ */
.confirm-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  background: var(--charcoal);
}

.confirm-page__inner {
  text-align: center;
  max-width: 540px;
}

.confirm-page__icon {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: rgba(200, 135, 58, 0.12);
  border: 1px solid rgba(200, 135, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-page__heading {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.confirm-page__sub {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.confirm-page__details {
  font-size: 0.8125rem;
  color: var(--mid-grey);
  line-height: 1.7;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.confirm-page__details a {
  color: var(--warm-grey);
  transition: color 0.2s;
}
.confirm-page__details a:hover { color: var(--amber-light); }

.confirm-page__home {
  margin-top: 2rem;
}

.confirm-fade {
  opacity: 0;
  animation: confirmReveal 0.6s ease 0.8s forwards;
}
@keyframes confirmReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MENU FOOTER BUTTON SPACING
   ============================================================ */
.menu__footer { gap: 1.25rem; display: flex; flex-direction: column; align-items: center; }

/* Accessibility — respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .dish-card,
  .about__img-frame img,
  .hero__scroll-hint { animation: none; transition: none; }
}
