/* ==========================================================================
   GOLDIE'S — brand tokens
   ========================================================================== */
:root {
  --ivory: #F4EADA;
  --ivory-soft: #FAF4EA;
  --ivory-deep: #EDE0CB;
  --brown: #3A2313;
  --brown-2: #4E2F19;
  --gold: #B98A4A;
  --gold-dark: #97703A;
  --gold-light: #D8B583;
  --cream-line: rgba(58, 35, 19, 0.12);

  --font-display: 'Archivo Black', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  --container: 1180px;
  --radius: 18px;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--brown);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

/* <picture> wraps every image for WebP support. `display: contents` keeps it
   out of the layout so the <img> still behaves as a direct child of its
   container (aspect-ratio boxes, flex and grid all keep working). */
picture { display: contents; }

a { color: inherit; text-decoration: none; }

/* Visible keyboard focus — required for accessible navigation (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--brown);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brown);
  color: var(--ivory);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--brown);
  color: var(--ivory-soft);
}
.btn-primary:hover { background: var(--brown-2); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--ivory-soft); }

.btn-on-dark.btn-primary {
  background: var(--gold);
  color: var(--brown);
}
.btn-on-dark.btn-primary:hover { background: var(--gold-light); }

.btn-small { padding: 11px 22px; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 234, 218, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-line);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mark { display: flex; align-items: center; }
.brand-logo { height: 22px; width: auto; }

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 18px; }

/* Cart in the header — the only order entry point up here */
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--brown);
  transition: color 0.2s ease;
}
.cart-link:hover { color: var(--gold-dark); }
.cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

/* ==========================================================================
   Hero — full-width photo banner, wordmark + tagline overlaid
   ========================================================================== */
.hero { padding: 0; }

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
/* Only the background photo — the direct child. Must not catch the wordmark
   that sits inside .hero-overlay. */
.hero-media > picture > img { width: 100%; height: 100%; object-fit: cover; }

/* Hero video is mobile-only; desktop keeps the photo. */
.hero-video { display: none; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--ivory) 0%, rgba(244, 234, 218, 0.92) 30%, rgba(244, 234, 218, 0.5) 48%, rgba(244, 234, 218, 0.08) 64%, rgba(244, 234, 218, 0) 80%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5.7vw 6vw 0 2.5vw;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-textbox {
  width: 37vw;
  max-width: 620px;
  min-width: 280px;
}

.hero-wordmark {
  width: 100%;
  height: auto;
  display: block;
}

/* Handwritten tagline hangs off the wordmark's bottom-right corner,
   the way a signature sits under a logo. */
.hero-tagline {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: clamp(1.35rem, 2.9vw, 2.5rem);
  line-height: 0.95;
  margin: -14px 0 0;
  text-align: right;
  transform: rotate(-4deg);
  transform-origin: right top;
  position: relative;
}

.hero-swash {
  display: block;
  width: clamp(90px, 11vw, 165px);
  height: auto;
  color: var(--gold);
  margin: 6px 0 34px auto;
  transform: rotate(-4deg);
  transform-origin: right top;
}

.hero-ctas { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: clamp(240px, 30vw, 360px); margin-top: 8px; }
.hero-ctas .btn { justify-content: space-between; gap: 20px; }
.btn-arrow { flex-shrink: 0; }

@media (min-width: 981px) {
  .hero-ctas { max-width: clamp(320px, 32vw, 420px); margin-top: 40px; }
  .hero-ctas .btn { padding: 20px 32px; font-size: 1.05rem; }
}

/* ==========================================================================
   USP strip
   ========================================================================== */
.usp-strip {
  margin-top: 56px;
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
  background: var(--ivory-deep);
}
.usp-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 0 16px;
  border-left: 1px solid var(--cream-line);
}
.usp-item:first-child { border-left: none; }
.usp-item svg { color: var(--gold-dark); }
.usp-item span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brown-2);
  line-height: 1.4;
}

/* ==========================================================================
   Section shells
   ========================================================================== */
.section { padding: 96px 24px; }
.section-tight { padding: 64px 24px; }
.section-inner { max-width: var(--container); margin: 0 auto; }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p {
  margin: 16px 0 0;
  color: var(--brown-2);
  font-size: 1.05rem;
}
.section-head-light p { color: var(--brown-2); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ==========================================================================
   Products
   ========================================================================== */
.products {
  display: grid;
  /* Adapts to however many flavours are on the menu */
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--ivory-soft);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-line);
  display: flex;
  flex-direction: column;
}

.product-media { aspect-ratio: 1 / 1; overflow: hidden; }
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }

.product-body { padding: 22px 24px 26px; }

.product-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 0 0 6px;
}

.product-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 10px;
  min-height: 2.6em;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 18px;
  color: var(--brown);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--brown);
  border-radius: 999px;
  overflow: hidden;
}
.qty-btn {
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--brown);
  cursor: pointer;
  font-family: var(--font-body);
}
.qty-btn:hover { background: var(--brown); color: var(--ivory-soft); }
.qty-value {
  min-width: 34px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

/* ==========================================================================
   Pickup / delivery
   ========================================================================== */
.info-block h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 800;
  font-size: 1.35rem;
  margin: 8px 0 12px;
}
.info-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin: 0;
}
.info-block p:not(.info-eyebrow) { color: var(--brown-2); margin: 0; }

/* ==========================================================================
   Catering (beige section)
   ========================================================================== */
.section-dark {
  background: var(--ivory);
  color: var(--brown);
}
.section-dark h2, .section-dark h3 { color: var(--brown); }

.catering-scenarios {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-bottom: 64px;
}

.catering-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 56px;
}
.catering-row-reverse .catering-row-photo { order: 2; }
.catering-row-reverse .catering-row-text { order: 1; }

.catering-row-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.catering-row-photo img { width: 100%; height: 100%; object-fit: cover; }

.catering-row-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 0 0 12px;
}
.catering-row-text h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 800;
  font-size: 1.7rem;
  margin: 0 0 14px;
}
.catering-row-text p:not(.catering-row-eyebrow) {
  color: var(--brown-2);
  font-size: 1.02rem;
  margin: 0;
  max-width: 42ch;
}

.catering-cta {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
  gap: 48px;
  border-top: 1px solid var(--cream-line);
  padding-top: 48px;
}

.catering-form {
  background: var(--ivory-soft);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.catering-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.catering-success {
  background: var(--ivory-deep);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
}
.catering-success p { margin: 0 0 6px; font-size: 0.92rem; color: var(--brown-2); }
.catering-success p:last-child { margin-bottom: 0; }
.catering-success strong { color: var(--brown); }
.catering-cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  margin: 0 0 10px;
}
.catering-cta h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.7rem;
  margin: 0;
}
.catering-cta-note {
  margin: 10px 0 0;
  font-size: 0.92rem;
  color: var(--brown-2);
}

/* ==========================================================================
   About
   ========================================================================== */
.about-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.3; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-script {
  font-family: var(--font-script);
  color: var(--gold-dark);
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.about-copy p:last-child { color: var(--brown-2); font-size: 1.05rem; max-width: 44ch; }

/* ==========================================================================
   Order
   ========================================================================== */
.section-order { background: var(--ivory-deep); }

.order-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.order-summary {
  background: var(--ivory-soft);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--cream-line);
  position: sticky;
  top: 90px;
}
.order-summary h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.order-summary-list { display: flex; flex-direction: column; gap: 10px; min-height: 24px; }
.order-empty { color: var(--brown-2); font-size: 0.9rem; margin: 0; }

.order-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  gap: 12px;
}
.order-line-name { font-weight: 600; }
.order-line-meta { color: var(--brown-2); }

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.3rem;
  border-top: 1px solid var(--cream-line);
  margin-top: 18px;
  padding-top: 18px;
}

.order-summary-note {
  font-size: 0.78rem;
  color: var(--brown-2);
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.order-summary-note li { position: relative; padding-left: 15px; }
.order-summary-note li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.order-form {
  background: var(--ivory-soft);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--cream-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row-split > div { display: flex; flex-direction: column; gap: 8px; }

label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brown-2);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--cream-line);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--brown);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; font-family: var(--font-body); }

.form-fineprint {
  font-size: 0.78rem;
  color: var(--brown-2);
  text-align: center;
  margin: 0;
}

.field-hint {
  font-size: 0.74rem;
  color: var(--brown-2);
  opacity: 0.85;
}

/* Order failure notice — must read as a problem, not decoration */
.form-error {
  background: #FBE9E4;
  border: 1.5px solid #C4553A;
  border-radius: 12px;
  padding: 18px 20px;
  color: #7A2E1B;
}
.form-error p { margin: 0 0 10px; font-size: 0.92rem; }
.form-error-title { font-weight: 800; }
.form-error-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.form-error-actions .btn-outline { color: #7A2E1B; border-color: #7A2E1B; }
.form-error-actions .btn-outline:hover { background: #7A2E1B; color: #FBE9E4; }

/* WhatsApp inline link (pickup block) */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.whatsapp-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ==========================================================================
   Confirmation
   ========================================================================== */
.confirmation {
  padding: 120px 24px;
  text-align: center;
  background: var(--brown);
  color: var(--ivory-soft);
}
.confirmation-inner { max-width: 560px; margin: 0 auto; }
.confirmation-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin: 0 0 14px;
}
.confirmation h2 { color: var(--ivory-soft); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.confirmation p { color: rgba(244,234,218,0.82); margin: 0 0 28px; }
.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.confirmation .btn-outline { border-color: var(--ivory-soft); color: var(--ivory-soft); }
.confirmation .btn-outline:hover { background: var(--ivory-soft); color: var(--brown); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-item {
  background: var(--ivory-soft);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease;
}
.contact-item:hover { border-color: var(--gold); }
.contact-item-primary {
  background: var(--brown);
  border-color: var(--brown);
}
.contact-item-primary .contact-label { color: var(--gold-light); }
.contact-item-primary .contact-value { color: var(--ivory-soft); }

.contact-note {
  text-align: center;
  margin: 24px 0 0;
  font-size: 0.9rem;
  color: var(--brown-2);
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
}
.contact-value { font-size: 1.1rem; font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--brown);
  color: var(--ivory-soft);
  padding: 48px 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 0;
}
.footer-meta {
  font-size: 0.85rem;
  color: rgba(244, 234, 218, 0.6);
  margin: 0;
}

/* ==========================================================================
   Mobile bottom nav — app-style, sits in the thumb zone.
   Hidden on desktop, where the header nav does the job.
   ========================================================================== */
.bottom-nav { display: none; }

@media (max-width: 720px) {
  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(250, 244, 234, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--cream-line);
    /* Keep clear of the iPhone home indicator */
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -2px 16px rgba(58, 35, 19, 0.07);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 9px;
    color: var(--brown-2);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    /* Comfortable tap target */
    min-height: 56px;
    transition: color 0.2s ease;
  }
  .bottom-nav-item:active { color: var(--gold-dark); }
  .bottom-nav-item.is-active { color: var(--brown); }
  .bottom-nav-item.is-active svg { color: var(--gold-dark); }

  .bottom-nav-icon-wrap { position: relative; display: flex; }
  .bottom-nav-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--brown);
    font-size: 0.62rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  /* Stop the fixed bar from covering the end of the page */
  body { padding-bottom: 72px; }
  .site-footer { padding-bottom: 28px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .two-col { grid-template-columns: 1fr; }
  .about-grid .about-photo { order: -1; }
  .catering-cta { grid-template-columns: 1fr; gap: 28px; }
  .catering-row { grid-template-columns: 1fr; gap: 24px; }
  .catering-row-reverse .catering-row-photo { order: 1; }
  .catering-row-reverse .catering-row-text { order: 2; }
  .catering-scenarios { gap: 48px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .usp-item:nth-child(3) { border-left: none; }
}

@media (max-width: 720px) {
  /* Navigation and the cart both live in the bottom bar on mobile, so the
     header is just the logo. No hamburger, no duplicate cart. */
  .main-nav { display: none; }
  .nav-toggle { display: none; }
  .cart-link { display: none; }

  /* On mobile the hero is pure product photography: the wordmark already
     sits in the header and the actions live in the bottom nav, so the
     overlay would only repeat them and cover the food. */
  .hero-overlay { display: none; }
  .hero-scrim { display: none; }

  .products { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .product-name { min-height: 0; }

  .hero-media { aspect-ratio: 3 / 4; }
  /* Frame on the bun (roughly 68% across the source photo) instead of the
     empty table on the left. */
  .hero-media > picture > img { object-position: 68% center; }

  /* Video covers the photo on mobile; the photo stays underneath as the
     fallback if the video can't play. */
  .hero-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Respect people who ask for less motion: show the still poster instead. */
  @media (prefers-reduced-motion: reduce) {
    .hero-video { display: none; }
  }
  .section { padding: 64px 20px; }
  .section-head { margin-bottom: 36px; }
  .form-row-split { grid-template-columns: 1fr; }
  .catering-form-grid { grid-template-columns: 1fr; }
  .header-actions .btn-small span.label { display: none; }
}

@media (max-width: 420px) {
  .brand-logo { height: 18px; }
}
