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

:root {
  --ink:        #100D09;
  --ink-soft:   #3C3228;
  --red:        #8B1A1A;
  --gold:       #C9A84C;
  --cream:      #F5EFE3;
  --cream-mid:  #DDD4BE;
  --muted:      #8A8278;
  --serif:      'DM Sans', system-ui, sans-serif;
  --sans:       'Inter', system-ui, sans-serif;
  --nav-h:      68px;
}

html { scroll-behavior: smooth; }

/* ── Page transitions ── */
#page-curtain {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  opacity: 1;
  transition: opacity .18s ease;
}
#page-curtain.clear {
  opacity: 0;
  pointer-events: none;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { max-width: 68ch; }
em { font-style: italic; }

/* ── Type ── */
.display {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ── */
.wrap { width: min(1160px, 100% - 3rem); margin-inline: auto; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background .3s, border-color .3s;
}

#navbar.solid { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.07); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2.5rem;
  max-width: 1360px;
  margin-inline: auto;
}

.logo {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

#nav {
  display: flex;
  align-items: center;
}

#nav-links {
  list-style: none;
  display: flex;
  gap: 2.6rem;
  align-items: center;
}

#nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s;
}

#nav-links a:hover, #nav-links a.current { color: #fff; }
#nav-links a.current { border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

.nav-cta {
  border: 1px solid rgba(255,255,255,.35) !important;
  padding: .38rem 1.1rem !important;
  color: #fff !important;
  transition: border-color .2s, background .2s !important;
}
.nav-cta:hover { border-color: rgba(255,255,255,.8) !important; background: rgba(255,255,255,.07) !important; }
.nav-cta.current { border-bottom: 1px solid rgba(255,255,255,.35) !important; padding-bottom: .38rem !important; }

#hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
}
#hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 1px; transition: .3s; }

/* ── Footer ── */
footer {
  background: var(--ink);
  color: rgba(245,239,227,.65);
}

.footer-body {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 5rem 0 3.5rem;
}

.footer-brand .logo { display: block; margin-bottom: .7rem; font-size: 1.9rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; max-width: none; }
.footer-brand em { color: var(--gold); }

.footer-cols { display: flex; gap: 4rem; }

.footer-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: var(--sans);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }

.footer-base {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
}

.footer-base p { font-size: .75rem; color: rgba(245,239,227,.28); max-width: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border: 1px solid currentColor;
  cursor: pointer;
  background: transparent;
  transition: background .2s, color .2s;
}

.btn-outline-light { color: rgba(255,255,255,.8); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }

.btn-outline-dark { color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: #701212; border-color: #701212; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: gap .2s;
}
.arrow-link::after { content: '→'; }
.arrow-link:hover { gap: .85rem; }

/* ═══════════════════════════
   HOME
═══════════════════════════ */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('hero-pizza.png')
    center/cover no-repeat;
}

.hero-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(16,13,9,.6) 0%,
    rgba(16,13,9,.3) 45%,
    rgba(16,13,9,.72) 100%
  );
}

.hero-text {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-inline: max(2.5rem, 8vw);
}

.hero-text .eyebrow { color: var(--gold); margin-bottom: 1rem; display: block; }

.hero-text .display { color: #fff; display: block; margin-bottom: .4rem; }

.hero-italic {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
  display: block;
}

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


/* ── Home intro: centered text section ── */
.home-intro {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-mid);
  padding: 6rem 1.5rem;
}

.home-intro-text {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.home-intro-text .eyebrow { margin-bottom: .1rem; }

.home-intro-lead-p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  max-width: 36ch;
}

.home-intro-rule {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: .25rem 0;
  flex-shrink: 0;
}

.home-intro-text p {
  font-size: .97rem;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 60ch;
}

.home-intro-actions {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .75rem;
}

/* Split: dough photo + dark text block */
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.home-split-img {
  background:
    url('https://mymidici.com/devsite/wp-content/uploads/2018/11/HOMEPAGE-ingredients-desktop-800px.jpg')
    center/cover no-repeat;
  min-height: 560px;
}

.home-split-text {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 5vw 6rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}

.home-split-text .eyebrow { margin-bottom: .3rem; }

.home-split-text h2 { color: var(--cream); max-width: 15ch; }

.home-split-text p { color: rgba(245,239,227,.65); font-size: .97rem; max-width: 40ch; }

.home-split-text .arrow-link { color: var(--gold); }

/* Featured pizza — the prosciutto shot */
.home-featured {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-featured-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://mymidici.com/devsite/wp-content/uploads/AUG-PotM-hmpg-desktop.jpg')
    center 30%/cover no-repeat;
}

.home-featured-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(16,13,9,.88) 38%,
    rgba(16,13,9,.15) 100%
  );
}

.home-featured-text {
  position: relative;
  z-index: 1;
  color: var(--cream);
  padding: 5rem max(2.5rem, 8vw);
  max-width: 660px;
}

.home-featured-text .eyebrow { margin-bottom: 1rem; }
.home-featured-text h2 { color: var(--cream); margin-bottom: 1rem; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.home-featured-text p { color: rgba(245,239,227,.7); font-size: .97rem; margin-bottom: 2rem; max-width: 46ch; }


/* ═══════════════════════════
   INNER PAGE HEADER
═══════════════════════════ */
/* Dark header with optional background image */
.pg-header {
  padding-top: var(--nav-h);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.pg-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pg-header-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,13,9,.93) 30%, rgba(16,13,9,.5) 100%);
}

.pg-header-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 5rem;
}

.pg-header-content .eyebrow { display: block; margin-bottom: 1rem; }
.pg-header-content h1 { color: var(--cream); }
.pg-header-content p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245,239,227,.7);
  margin-top: 1rem;
  max-width: 52ch;
}

/* ═══════════════════════════
   MENU PAGE
═══════════════════════════ */
.menu-body { background: var(--cream); position: relative; }

.menu-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 0;
  align-items: start;
  padding: 4rem 0 6rem;
}

.menu-nav {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  padding-right: 3rem;
  border-right: 1px solid var(--cream-mid);
}

.menu-nav ul { list-style: none; display: flex; flex-direction: column; }

.menu-nav a {
  display: block;
  padding: .65rem 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--cream-mid);
  transition: color .2s;
}

.menu-nav a:hover, .menu-nav a.here { color: var(--red); }

.menu-sections { padding-left: 4rem; }

.menu-cat {
  padding: 0 0 4rem;
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}

.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
  border-bottom: 2px solid var(--ink);
}

.menu-cat-head h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.menu-cat-head .eyebrow { color: var(--muted); }

.menu-cat-note {
  font-size: .88rem;
  color: var(--muted);
  margin: 1.2rem 0 .5rem;
  font-style: italic;
  font-family: var(--serif);
  max-width: 55ch;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--cream-mid);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-left { flex: 1; min-width: 0; }

.menu-item-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .25rem;
  color: var(--ink);
}

.menu-item-desc {
  font-size: .87rem;
  color: var(--muted);
  max-width: 52ch;
}

.menu-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid currentColor;
  padding: .18rem .55rem;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: .2rem;
}

/* ═══════════════════════════
   ABOUT PAGE
═══════════════════════════ */
.about-body { background: var(--cream); }

.about-lead {
  padding: 5.5rem 0 4rem;
  border-bottom: 1px solid var(--cream-mid);
}

.about-lead blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 46ch;
  font-weight: 600;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--cream-mid);
}

.about-split-main {
  padding: 5rem 4rem 5rem 0;
  border-right: 1px solid var(--cream-mid);
}

.about-split-main h2 { margin-bottom: 1.4rem; }
.about-split-main p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 1.2rem; }
.about-split-main em { color: var(--red); }
.about-split-main strong { color: var(--ink); font-weight: 600; }

.about-split-aside {
  padding: 5rem 0 5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.aside-fact {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--cream-mid);
}

.aside-fact:last-child { border-bottom: none; padding-bottom: 0; }
.aside-fact .eyebrow { display: block; margin-bottom: .5rem; }
.aside-fact p { font-size: .92rem; color: var(--ink-soft); }

/* Neapolitan dark section on about page */
.about-dark {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 0;
}

.about-dark .eyebrow { display: block; margin-bottom: 1.2rem; }
.about-dark h2 { color: var(--cream); margin-bottom: 1.4rem; }
.about-dark p { color: rgba(245,239,227,.7); font-size: .97rem; margin-bottom: 1.1rem; }

.about-facts {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.09);
}

.about-fact {
  padding: 2.4rem 2rem 2.4rem 0;
  border-right: 1px solid rgba(255,255,255,.09);
}

.about-fact:last-child { border-right: none; }

.about-fact .big {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  display: block;
}

.about-fact .unit {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin: .3rem 0 .8rem;
}

.about-fact p { font-size: .87rem; color: rgba(245,239,227,.55); max-width: none; }

/* ═══════════════════════════
   CULTURE PAGE
═══════════════════════════ */
.culture-body { background: var(--cream); }

.culture-lead {
  padding: 5.5rem 0 4rem;
  border-bottom: 1px solid var(--cream-mid);
}

.culture-lead blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 50ch;
  font-weight: 600;
}

.ingredient {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--cream-mid);
}

.ingredient:nth-child(even) { background: #EDE6D5; }

.ingredient-num {
  padding: 3.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--cream-mid);
}

.ingredient-num span {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(16,13,9,.08);
  line-height: 1;
}

.ingredient-body {
  padding: 3.5rem 3rem 3.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.ingredient-name-block h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: .4rem;
}

.ingredient-origin {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.ingredient-desc {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

/* ═══════════════════════════
   VIBE PAGE
═══════════════════════════ */
.vibe-page {
  background: var(--ink);
  color: var(--cream);
}

.vibe-intro {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.vibe-intro p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.5;
  color: rgba(245,239,227,.75);
  max-width: 48ch;
  font-style: italic;
}

.vibe-entry {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.vibe-entry-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.vibe-num {
  padding: 4.5rem 3rem 4.5rem 0;
  border-right: 1px solid rgba(255,255,255,.07);
}

.vibe-num-big {
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.05);
  line-height: 1;
  display: block;
  margin-bottom: .5rem;
}

.vibe-num .eyebrow { color: var(--gold); }

.vibe-entry-body {
  padding: 4.5rem 0 4.5rem 4rem;
}

.vibe-entry-body h2 { color: var(--cream); margin-bottom: 1.1rem; }
.vibe-entry-body p { color: rgba(245,239,227,.6); font-size: .97rem; max-width: 54ch; }

/* ═══════════════════════════
   VISIT PAGE
═══════════════════════════ */
.visit-body { background: var(--cream); }

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 5rem 0 6rem;
}

.visit-info {
  padding-right: 5rem;
  border-right: 1px solid var(--cream-mid);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.visit-block {}

.visit-block h3 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
  margin-bottom: 1rem;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .93rem;
  color: var(--ink-soft);
  padding: .55rem 0;
  border-bottom: 1px solid var(--cream-mid);
}

.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { font-weight: 600; color: var(--ink); }

.visit-contact a {
  display: block;
  font-size: 1rem;
  color: var(--red);
  margin-bottom: .4rem;
  transition: color .2s;
}

.visit-contact a:hover { color: #6B1212; }

.social-row { display: flex; gap: 1.6rem; margin-top: 1rem; }

.social-row a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}

.social-row a:hover { color: var(--red); }

.visit-right {
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Map graphic — vintage travel poster style */
.map-graphic {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .3s;
  box-shadow: 0 4px 24px rgba(16,13,9,.18);
}

.map-graphic:hover { box-shadow: 0 4px 32px rgba(139,26,26,.15); }

.map-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.2) sepia(0.18) blur(1px);
  transition: transform .4s ease, filter .4s ease;
}

.map-graphic:hover .map-photo {
  transform: scale(1.03);
  filter: brightness(0.92) saturate(1.25) sepia(0.15) blur(0px);
}

.map-graphic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,13,9,0.08) 0%, rgba(16,13,9,0.48) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Bottom "Open in Maps" strip */
.map-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .7rem 1rem;
  z-index: 3;
  transition: background .2s;
}

.map-graphic:hover .map-cta { background: #6B1212; }

/* ═══════════════════════════
   MOBILE
═══════════════════════════ */
@media (max-width: 900px) {
  .home-split { grid-template-columns: 1fr; }
  .home-split-img { min-height: 320px; }
  .home-split-text { padding: 4rem 2rem; }

  .menu-layout { grid-template-columns: 1fr; }
  .menu-nav {
    position: static;
    padding-right: 0;
    padding-bottom: 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--cream-mid);
    margin-bottom: 2rem;
  }
  .menu-nav ul { flex-direction: row; flex-wrap: wrap; gap: .4rem; }
  .menu-nav a {
    border: 1px solid var(--cream-mid);
    padding: .3rem .85rem;
    border-radius: 20px;
    border-bottom: 1px solid var(--cream-mid);
  }
  .menu-sections { padding-left: 0; }

  .about-split { grid-template-columns: 1fr; }
  .about-split-main { padding: 4rem 0; border-right: none; border-bottom: 1px solid var(--cream-mid); }
  .about-split-aside { padding: 3rem 0; }

  .about-facts { grid-template-columns: 1fr 1fr; }

  .ingredient { grid-template-columns: 1fr; }
  .ingredient-num { display: none; }
  .ingredient-body { grid-template-columns: 1fr; gap: 1rem; padding: 2.5rem 0; }

  .vibe-entry-inner { grid-template-columns: 1fr; }
  .vibe-num { padding: 2rem 0 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .vibe-num-big { font-size: 3.5rem; }
  .vibe-entry-body { padding: 2rem 0 3rem; }

  .visit-layout { grid-template-columns: 1fr; }
  .visit-info { padding-right: 0; border-right: none; border-bottom: 1px solid var(--cream-mid); padding-bottom: 3rem; }
  .visit-right { padding-left: 0; padding-top: 3rem; }

  .footer-body { flex-direction: column; gap: 2.5rem; }
  .footer-cols { flex-wrap: wrap; gap: 2.5rem; }
  .footer-base { flex-direction: column; gap: .4rem; }
}

@media (max-width: 620px) {
  :root { --nav-h: 60px; }

  #hamburger { display: flex; }

  #nav {
    position: fixed;
    inset: 0 0 0 28%;
    background: var(--ink);
    border-left: 1px solid rgba(255,255,255,.07);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 199;
  }
  #nav.open { transform: translateX(0); }

  #nav-links {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  #nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }
  #nav-links a { display: block; padding: 1rem 0; font-size: .85rem; }
  .nav-cta { border: none !important; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { text-align: center; }

  .about-facts { grid-template-columns: 1fr; }

  .home-featured-text { padding: 4rem 1.5rem; }

  .footer-body { padding: 3.5rem 0 2.5rem; }

  .menu-item { gap: 1rem; }

  .display { font-size: clamp(2.6rem, 13vw, 9rem); }
}
