/* ==========================================================================
   La Tavola â€” homepage styles
   Display: Fraunces (Italian-flavoured, high-contrast serif with a real italic)
   Body:    Manrope (quiet, geometric, doesn't compete with the serif)
   ========================================================================== */

:root {
  /* ---- color tokens ---- */
  --ink:        #16241d;   /* deep bottle-green, near-black â€” primary dark */
  --ink-soft:   #1f3229;   /* lighter panel green */
  --linen:      #efe6d2;   /* warm aged linen â€” primary light */
  --linen-dim:  #e5d9bd;   /* slightly deeper linen for borders/hairlines */
  --wine:       #7a2331;   /* deep wine red â€” secondary accent */
  --wine-deep:  #5a1a25;
  --gold:       #bf9b5d;   /* aged brass gold â€” primary accent */
  --gold-bright:#d8b877;
  --charcoal:   #2a2521;   /* body text on light */

  /* ---- type scale ---- */
  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;

  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --step-3: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  --step-4: clamp(3.25rem, 2.4rem + 3.5vw, 5.5rem);

  --container: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--linen);
  font-size: var(--step-0);
  line-height: 1.6;
}

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

.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

h1, h2, h3, .eyebrow-serif {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.italic { font-style: italic; font-weight: 400; }

/* ---- focus visibility (accessibility floor) ---- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding: 1.1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; }

.site-nav.is-scrolled {
  background: rgba(22, 36, 29, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.7rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--linen);
  text-decoration: none;
}
.brand img { height: 80px; width: auto; }
.brand-fallback { font-style: italic; letter-spacing: 0.02em; }

.nav-links {
  display: flex;
  gap: clamp(1rem, 2vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--linen);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }

.nav-cta {
  display: none;
}
@media (min-width: 860px) {
  .nav-cta {
    display: inline-flex;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .nav-cta:hover { background: var(--gold); color: var(--ink); }
}

.nav-links { display: none; }
@media (min-width: 860px) { .nav-links { display: flex; } }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 1px solid var(--linen-dim);
  color: var(--linen);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
  cursor: pointer;
}
@media (min-width: 860px) { .nav-toggle { display: none; } }

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--ink);
  padding: 6rem 2rem 2rem;
}
.mobile-panel.is-open { display: block; }
.mobile-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.mobile-panel a { color: var(--linen); text-decoration: none; font-family: var(--font-display); font-size: 1.6rem; font-style: italic; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  background:
          radial-gradient(ellipse at 70% 20%, rgba(191,155,93,0.14), transparent 55%),
          radial-gradient(ellipse at 15% 85%, rgba(122,35,49,0.25), transparent 50%),
          linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--linen);
  overflow: hidden;
  padding-top: 6rem;
}

/* Landscape photo of the restaurant exterior, dissolving into the hero's
   own background colour so there's no hard seam between photo and page. */
.hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(420px, 64vh, 760px);
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
  rgba(22,36,29,0.1) 0%,
  rgba(22,36,29,0.3) 45%,
  rgba(22,36,29,0.72) 72%,
  var(--ink) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Sits the logo + copy right on the dissolve line between photo and background */
.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(160px, 30vh, 440px);
  max-width: var(--container);
  width: 100%;
}

.hero-logo {
  flex: 0 1 35%;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.hero-logo img {
  width: min(100%, 420px);
  height: auto;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.eyebrow-serif {
  color: var(--gold-bright);
  font-style: italic;
  font-size: var(--step-1);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero h1 {
  font-size: var(--step-4);
  line-height: 0.98;
  color: var(--linen);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}

.hero p.lede {
  font-size: var(--step-1);
  max-width: 46ch;
  color: rgba(239, 230, 210, 0.82);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: var(--gold);
  color: var(--ink);
}
.btn-solid:hover { background: var(--gold-bright); box-shadow: 0 10px 24px rgba(191,155,93,0.35); }

.btn-outline {
  border-color: rgba(239,230,210,0.5);
  color: var(--linen);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }

/* Signature element: hand-drawn olive branch, traced on load */
.olive-branch {
  position: absolute;
  right: -2%;
  bottom: -4%;
  width: min(48vw, 640px);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}
.olive-branch path,
.olive-branch ellipse {
  stroke: var(--gold);
  stroke-width: 1.4;
  fill: none;
}
.olive-branch .leaf {
  fill: rgba(191,155,93,0.16);
  stroke: var(--gold);
}
.olive-branch .stem {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 2.4s ease 0.4s forwards;
}
.olive-branch .leaf {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw 1.2s ease forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  color: rgba(239,230,210,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head .eyebrow {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--wine);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.section-head h2 {
  font-size: var(--step-3);
  color: var(--ink);
}
.section-head p { margin-top: 0.9rem; color: rgba(42,37,33,0.72); font-size: var(--step-0); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Story / welcome
   ========================================================================== */
.story {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 880px) { .story { grid-template-columns: 1fr 1fr; } }

.story-art {
  aspect-ratio: 4/5;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.story-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22,36,29,0.55) 100%);
  pointer-events: none;
}
.story-art .caption {
  position: absolute;
  left: 1.5rem; bottom: 1.5rem;
  z-index: 1;
  color: var(--linen);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}

.story-copy h2 { margin-bottom: 1.1rem; }
.story-copy p { color: rgba(42,37,33,0.78); margin: 0 0 1rem; }
.story-copy p:last-of-type { margin-bottom: 0; }
.signoff {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wine);
}

/* ==========================================================================
   Menu preview (organised by real course order â€” not a decorative 01/02/03)
   ========================================================================== */
.menu-section { background: var(--ink); color: var(--linen); }
.menu-section .section-head .eyebrow { color: var(--gold-bright); }
.menu-section .section-head h2 { color: var(--linen); }
.menu-section .section-head p { color: rgba(239,230,210,0.7); }

.course-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(239,230,210,0.15);
  padding-bottom: 0.75rem;
}
.course-tab {
  background: none;
  border: none;
  color: rgba(239,230,210,0.55);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.course-tab:hover { color: var(--linen); }
.course-tab[aria-selected="true"] {
  color: var(--ink);
  background: var(--gold);
}

.dish-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.dish-grid[hidden] { display: none; }

.dish {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(239,230,210,0.12);
}
.dish-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.dish-row h3 { font-size: 1.2rem; font-weight: 500; }
.dish-price { color: var(--gold-bright); font-family: var(--font-display); font-style: italic; white-space: nowrap; }
.dish p { margin: 0.5rem 0 0; font-size: 0.92rem; color: rgba(239,230,210,0.62); }

/* ==========================================================================
   Quote
   ========================================================================== */
.quote-band {
  background: var(--linen-dim);
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 780px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-2);
  color: var(--ink);
}
.quote-band cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
}

/* ==========================================================================
   Gallery carousels
   ========================================================================== */
.gallery-carousel-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .gallery-carousel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .gallery-carousel-grid { grid-template-columns: 1fr; }
}

.gallery-carousel-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.gallery-carousel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.slideshow {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(22,36,29,0.14);
  border: 1px solid rgba(229,217,189,0.65);
}

.slideshow-track {
  display: flex;
  height: clamp(220px, 32vw, 280px);
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.slideshow--compact .slideshow-track {
  height: clamp(190px, 28vw, 240px);
}

.slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gentle Ken-Burns drift on the active slide only */
.slide.is-active img {
  animation: slideZoom 8s ease-out forwards;
}
@keyframes slideZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
  rgba(22,36,29,0) 50%,
  rgba(22,36,29,0.5) 80%,
  rgba(22,36,29,0.82) 100%);
}

.slide-caption {
  position: absolute;
  left: clamp(0.85rem, 2.5vw, 1.25rem);
  right: clamp(0.85rem, 2.5vw, 1.25rem);
  bottom: clamp(0.85rem, 2vw, 1.15rem);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}
.slide.is-active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.slide-count {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.slide-caption p {
  margin: 0;
  color: var(--linen);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 500;
  max-width: 28ch;
  line-height: 1.25;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(239,230,210,0.35);
  background: rgba(22,36,29,0.45);
  backdrop-filter: blur(4px);
  color: var(--linen);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.slide-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}
.slide-prev { left: 0.55rem; }
.slide-next { right: 0.55rem; }

.slide-dots {
  position: absolute;
  bottom: clamp(0.85rem, 2vw, 1.15rem);
  right: clamp(0.85rem, 2.5vw, 1.25rem);
  z-index: 3;
  display: flex;
  gap: 0.35rem;
  max-width: 55%;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(239,230,210,0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease, border-color 0.25s ease;
}
.slide-dot:hover { border-color: var(--gold-bright); }
.slide-dot.is-active {
  width: 16px;
  border-radius: 999px;
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 640px) {
  .slide-arrow { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .slide.is-active img { animation: none; }
}

/* ==========================================================================
   Reservation banner
   ========================================================================== */
.reserve-band {
  background: linear-gradient(120deg, var(--wine-deep), var(--wine));
  color: var(--linen);
  text-align: center;
}
.reserve-band h2 { font-size: var(--step-3); color: var(--linen); margin-bottom: 0.75rem; }
.reserve-band p { color: rgba(239,230,210,0.82); margin-bottom: 2rem; }
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.reserve-band .btn-solid { background: var(--linen); color: var(--wine-deep); }
.reserve-band .btn-solid:hover { background: #fff; }

/* ==========================================================================
   Hours & location
   ========================================================================== */
.info-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 880px) { .info-grid { grid-template-columns: 1fr 1fr; } }

.info-card {
  background: #fff;
  border: 1px solid var(--linen-dim);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.hours-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.95rem; }
.hours-list li span:first-child { color: rgba(42,37,33,0.6); }
.hours-list li span:last-child { font-weight: 600; }

.map-placeholder {
  aspect-ratio: 16/10;
  border-radius: 12px;
  margin-top: 1.25rem;
  overflow: hidden;
  background: var(--linen);
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Inner pages: fixed dark nav + content offset (home uses transparent nav over hero) */
.page-inner .site-nav {
  background: rgba(22, 36, 29, 0.96);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.page-inner main {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
  min-height: 50vh;
}
.page-inner main h1 {
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 1rem;
}
.page-inner main p {
  color: rgba(42,37,33,0.78);
  max-width: 65ch;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--ink);
  color: rgba(239,230,210,0.7);
  padding: 3.5rem 0 2rem;
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(239,230,210,0.12);
}
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-top h4 {
  color: var(--linen);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}
.footer-top ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; font-size: 0.92rem; }
.footer-top ul a { text-decoration: none; color: rgba(239,230,210,0.7); transition: color .2s ease; }
.footer-top ul a:hover { color: var(--gold-bright); }
.footer-brand p { max-width: 32ch; font-size: 0.9rem; }
.social-row { display: flex; gap: 0.9rem; margin-top: 1.25rem; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid rgba(239,230,210,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--linen);
  transition: border-color .2s ease, color .2s ease;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-bright); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(239,230,210,0.45);
}

/* ==========================================================================
   Responsive — phones, tablets, and small laptops
   ========================================================================== */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.85rem; }
}

/* Tablets and large phones */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    margin-top: clamp(140px, 28vh, 320px);
  }

  .hero-logo {
    flex: none;
    width: 100%;
  }

  .hero-logo img {
    width: min(72vw, 280px);
  }

  .hero-text {
    width: 100%;
  }

  .hero p.lede {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .olive-branch {
    width: min(62vw, 420px);
    opacity: 0.45;
    right: -8%;
    bottom: 0;
  }
}

@media (max-width: 860px) {
  .brand img { height: 36px; }
  .brand { font-size: 1.2rem; }
}

/* Phones */
@media (max-width: 640px) {
  section { padding: clamp(3rem, 8vw, 5rem) 0; }

  .page-inner main {
    padding-top: 4.75rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 4.5rem;
  }

  .hero-photo {
    height: clamp(280px, 52vw, 420px);
  }

  .hero-content {
    margin-top: clamp(120px, 36vw, 220px);
    gap: 1.5rem;
  }

  .hero-logo img {
    width: min(68vw, 220px);
  }

  .hero h1 br { display: none; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas .btn {
    justify-content: center;
    width: 100%;
  }

  .scroll-cue { display: none; }

  .olive-branch { display: none; }

  .section-head h2 br { display: none; }

  .story-art {
    aspect-ratio: 16/11;
    max-height: 340px;
  }

  .story-art .caption {
    left: 1rem;
    bottom: 1rem;
    font-size: 1rem;
  }

  .story-copy h2 {
    font-size: var(--step-2);
  }

  .course-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.4rem;
    margin-inline: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    padding-bottom: 0.85rem;
  }

  .course-tabs::-webkit-scrollbar { display: none; }

  .course-tab {
    flex: 0 0 auto;
    font-size: 1rem;
    padding: 0.45rem 0.85rem;
    white-space: nowrap;
  }

  .dish-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .dish-row {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.35rem 1rem;
  }

  .dish-row h3 {
    flex: 1 1 12rem;
    min-width: 0;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .dish-price {
    margin-left: auto;
  }

  .quote-band blockquote {
    font-size: var(--step-1);
    padding-inline: 0.25rem;
  }

  .reserve-band p {
    margin-bottom: 1.5rem;
  }

  .reserve-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .reserve-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .hours-list li span:last-child {
    font-size: 0.9rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-panel {
    padding: 5.5rem 1.5rem 2rem;
  }

  .mobile-panel a {
    font-size: 1.35rem;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .reserve-actions .btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 11rem;
    justify-content: center;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .wrap {
    padding-inline: 1rem;
  }

  .btn {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .brand img { height: 32px; }

  .nav-toggle {
    padding: 0.35rem 0.5rem;
  }
}