/* ============================================================
   The Loaf — Editorial Minimal
   Type: Fraunces (display, variable) + Instrument Sans (body)
   Palette: warm paper cream, deep ink brown, single olive accent
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Paper palette */
  --paper:        #F3ECDE;   /* warm cream, primary surface */
  --paper-deep:   #E8DEC9;   /* darker paper for inset cards */
  --paper-soft:   #FBF6EA;   /* lightest, headers */

  /* Ink */
  --ink:          #2A1A0E;   /* primary text */
  --ink-soft:     #5C463A;   /* secondary text */
  --ink-faint:    #8B7561;   /* descriptions / labels */
  --rule:         #C7B79A;   /* hairlines */

  /* Accent */
  --olive:        #6E7A3E;   /* hover, micro-detail */
  --burgundy:     #6B2C1F;   /* deep accent for prices */

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:    'Instrument Sans', 'Helvetica Neue', 'Helvetica', sans-serif;

  /* Spatial */
  --gutter: clamp(22px, 5vw, 64px);
  --maxw:   1240px;
  --section-y: clamp(72px, 12vw, 180px);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
html, body { background: var(--paper); color: var(--ink); }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02";
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.1  0 0 0 0 0.05  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
}

::selection { background: var(--ink); color: var(--paper); }

/* ---------- Containers ---------- */
.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 880px; margin: 0 auto; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.display {
  font-family: var(--display);
  font-weight: 360;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}

.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--burgundy);
}

h1 { font-size: clamp(48px, 9vw, 132px); }
h2 { font-size: clamp(36px, 6vw, 72px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }

/* Editorial body lead */
.lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 36, "SOFT" 100;
}

/* Decorative hairline */
.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* Tiny ornament dot */
.dot::before {
  content: "·";
  display: inline-block;
  margin: 0 0.6em;
  color: var(--rule);
}

/* ---------- Buttons / Links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--ink {
  background: var(--ink);
  color: var(--paper);
}
.btn--ink:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.btn .arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.linklike {
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color .25s var(--ease);
}
.linklike:hover { color: var(--burgundy); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 50%, transparent);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.site-header__brand {
  display: flex;
  align-items: center;
}
.site-header__brand img {
  width: 78px;
  height: auto;
  display: block;
  transition: transform .35s var(--ease);
}
.site-header__brand:hover img { transform: scale(1.03); }
@media (max-width: 760px) {
  .site-header__brand img { width: 62px; }
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
}
.site-nav a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-header__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Hamburger — hidden on desktop, visible under 760px */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 999px;
  transition: background-color .25s var(--ease);
}
.nav-toggle:hover { background: color-mix(in srgb, var(--ink) 6%, transparent); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 380px);
  height: 100dvh;
  background: var(--paper-soft);
  border-left: 1px solid var(--rule);
  z-index: 60;
  padding: 32px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav__brand {
  display: flex;
  justify-content: center;
  padding: 8px 0 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 50%, transparent);
}
.mobile-nav__brand img { width: 72px; height: auto; display: block; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav ul a {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 360;
  line-height: 1.15;
  letter-spacing: -0.015em;
  padding: 10px 0;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 60%, transparent);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.mobile-nav ul a:hover,
.mobile-nav ul a:focus-visible {
  color: var(--burgundy);
  padding-left: 6px;
}
.mobile-nav__cta {
  align-self: flex-start;
  margin-top: auto;
  color: var(--paper);
}
.mobile-nav__cta:hover { color: var(--paper); }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, var(--ink) 35%, transparent);
  backdrop-filter: blur(2px);
  z-index: 55;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
body.mobile-nav-open { overflow: hidden; }

@media (max-width: 760px) {
  .site-header__inner { grid-template-columns: auto 1fr; }
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--ink-soft);
}
.hero__headline {
  margin-top: 24px;
  max-width: 14ch;
}
.hero__lead {
  margin-top: 32px;
  max-width: 56ch;
}
.hero__cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__wreath {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-55%);
  width: clamp(280px, 38vw, 520px);
  opacity: 0.14;
  filter: sepia(20%);
  pointer-events: none;
  user-select: none;
}
.hero__meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero__meta dt {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  color: var(--ink);
}

@media (max-width: 760px) {
  .hero__meta { grid-template-columns: 1fr; gap: 20px; }
  .hero__wreath { width: 80vw; opacity: 0.08; }
}

/* ---------- Story / Two-column ---------- */
.story {
  padding: var(--section-y) 0;
  position: relative;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.story__label {
  position: sticky;
  top: 120px;
}
.story__body p {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 320;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  color: var(--ink);
  margin-bottom: 1em;
}
.story__body p:last-child { margin-bottom: 0; }
.story__body em {
  font-style: italic;
  color: var(--burgundy);
  font-variation-settings: "opsz" 60, "SOFT" 100, "WONK" 1;
}

@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; gap: 32px; }
  .story__label { position: static; }
}

/* ---------- Brunch hero callout ---------- */
.brunch {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(70px, 10vw, 130px) 0;
}
.brunch__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.brunch__copy h2 { margin-bottom: 32px; }
.brunch__copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 1.2em;
}
.brunch__hours {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--rule) 80%, transparent);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.brunch__hours dt {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.brunch__hours dd {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.brunch__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  overflow: hidden;
  isolation: isolate;
}
.brunch__visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in srgb, var(--paper-soft) 70%, transparent);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
}
.brunch__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: saturate(0.92) contrast(1.02);
}
.brunch__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 60%,
    color-mix(in srgb, var(--ink) 55%, transparent) 100%);
  pointer-events: none;
}
.brunch__visual .caption {
  position: absolute;
  bottom: 22px;
  left: 26px;
  right: 26px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 92%, transparent);
  display: flex;
  justify-content: space-between;
  z-index: 4;
}

@media (max-width: 880px) {
  .brunch__inner { grid-template-columns: 1fr; }
}

/* ---------- Menu ---------- */
.menu {
  padding: var(--section-y) 0;
}
.menu__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}
.menu__header h2 { line-height: 0.95; }
.menu__tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 320px;
  text-align: right;
  justify-content: flex-end;
}
.menu__tags li {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.menu__tags li b {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2em;
}

.menu-section {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.menu-section:first-of-type { border-top: 0; padding-top: 0; }
.menu-section__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-bottom: 40px;
}
.menu-section__title {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 360;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.menu-section__title em {
  font-style: italic;
  color: var(--burgundy);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.menu-section__meta {
  padding-top: 14px;
}
.menu-section__note {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 24, "SOFT" 100;
}
.menu-section__intro {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.45;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  color: var(--ink);
  margin-bottom: 8px;
}

.dishes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 56px;
}
.dish {
  padding: 22px 0;
  border-bottom: 1px dotted var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: baseline;
}
.dish__name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 460;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  color: var(--ink);
}
.dish__price {
  font-family: var(--display);
  font-size: 17px;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  color: var(--burgundy);
  letter-spacing: 0;
  white-space: nowrap;
  font-feature-settings: "tnum";
}
.dish__price::before {
  content: "$";
  font-size: 11px;
  vertical-align: 0.4em;
  margin-right: 1px;
  color: var(--ink-faint);
}
.dish__desc {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-faint);
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
}
.dish__tags {
  margin-left: 8px;
  display: inline-flex;
  gap: 6px;
  vertical-align: middle;
}
.dish__tags span {
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 2px 6px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-family: var(--body);
}

@media (max-width: 760px) {
  .menu-section__head { grid-template-columns: 1fr; gap: 16px; }
  .dishes { grid-template-columns: 1fr; gap: 4px; }
  .menu__header { grid-template-columns: 1fr; }
  .menu__tags { justify-content: flex-start; text-align: left; max-width: none; }
}

/* Extras / sub-blocks */
.extras {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
}
.extras__title {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}
.extras__subtitle {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.extras__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 6px 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.extras__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px dotted color-mix(in srgb, var(--rule) 70%, transparent);
}
.extras__list li span:last-child {
  color: var(--burgundy);
  font-family: var(--display);
  font-feature-settings: "tnum";
}
.extras__notes {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
  line-height: 1.5;
}
.extras__notes li { margin-top: 2px; }

/* Coffee subsections */
.subsection { margin-bottom: 32px; }
.subsection__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 14px;
}
.subsection__title {
  font-family: var(--display);
  font-size: 22px;
  font-variation-settings: "opsz" 24, "SOFT" 50;
}
.subsection__note {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faint);
}
.subsection__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px 32px;
  font-size: 15px;
}
.subsection__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}
.subsection__list .name { color: var(--ink); }
.subsection__list .price {
  color: var(--burgundy);
  font-family: var(--display);
  font-feature-settings: "tnum";
}
.subsection__desc {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faint);
  display: block;
  margin-top: 2px;
}

/* ---------- Visit ---------- */
.visit {
  padding: var(--section-y) 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--rule);
}
.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
}
.visit__copy h2 { margin-bottom: 28px; }
.visit__group { margin-bottom: 36px; }
.visit__group:last-child { margin-bottom: 0; }
.visit__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.visit__value {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.35;
  font-variation-settings: "opsz" 36, "SOFT" 75;
  color: var(--ink);
}
.visit__value a:hover { color: var(--burgundy); }
.visit__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 24px;
}
.visit__hours dt { color: var(--ink-soft); font-family: var(--body); font-size: 14px; letter-spacing: 0.06em; }
.visit__hours dd {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-feature-settings: "tnum";
}

.visit__map {
  position: relative;
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  min-height: 480px;
  overflow: hidden;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
  filter: grayscale(35%) sepia(8%) contrast(0.95) brightness(0.98);
}

@media (max-width: 880px) {
  .visit__inner { grid-template-columns: 1fr; }
  .visit__map { min-height: 360px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0 32px;
  position: relative;
  z-index: 1;
}
.site-footer .shell { position: relative; }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.site-footer__brand img {
  width: 72px;
  height: auto;
  margin-bottom: 24px;
  /* Convert dark brown art to cream paper tone for dark background */
  filter: brightness(0) invert(1) sepia(40%) saturate(200%) hue-rotate(355deg) brightness(0.95);
  opacity: 0.92;
}
.site-footer__brand .mark {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  margin-bottom: 14px;
}
.site-footer__brand p {
  color: color-mix(in srgb, var(--paper) 70%, transparent);
  font-size: 14px;
  line-height: 1.6;
  max-width: 32ch;
}
.site-footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--body);
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--paper) 60%, transparent);
}
.site-footer__col li, .site-footer__col p {
  font-family: var(--display);
  font-size: 18px;
  font-variation-settings: "opsz" 24, "SOFT" 75;
  margin-bottom: 8px;
  color: var(--paper);
}
.site-footer__col a:hover { color: color-mix(in srgb, var(--paper) 60%, transparent); }

.site-footer__bottom {
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: color-mix(in srgb, var(--paper) 50%, transparent);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reveal Animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Small-screen refinements
   Tighten type sizes, give headlines room to breathe,
   and stop the hero eyebrow from wrapping awkwardly.
   ============================================================ */
@media (max-width: 600px) {
  body { font-size: 16px; }

  h1 {
    font-size: clamp(40px, 11.5vw, 56px);
    letter-spacing: -0.025em;
  }
  h2 {
    font-size: clamp(30px, 8.5vw, 44px);
    letter-spacing: -0.02em;
    line-height: 1.02;
  }
  h3 { font-size: clamp(20px, 5.5vw, 26px); }

  .lead { font-size: 17px; line-height: 1.45; }

  /* Hero polish */
  .hero { padding: 56px 0 80px; }
  .hero__eyebrow {
    flex-wrap: wrap;
    font-size: 11px;
    letter-spacing: 0.18em;
    line-height: 1.4;
  }
  .hero__eyebrow::after { display: none; }
  .hero__headline { margin-top: 20px; max-width: 12ch; }
  .hero__lead { margin-top: 24px; max-width: none; }
  .hero__cta { margin-top: 32px; gap: 12px; }
  .hero__cta .btn { padding: 12px 20px; font-size: 12px; }
  .hero__meta { margin-top: 48px; padding-top: 22px; gap: 18px; }
  .hero__wreath { width: 80vw; opacity: 0.07; right: -10vw; top: 60%; }

  /* Brunch callout */
  .brunch { padding: 64px 0; }
  .brunch__copy h2 { margin-bottom: 22px; line-height: 1.04; }
  .brunch__hours { gap: 24px; }

  /* Menu */
  .menu__header { margin-bottom: 40px; gap: 16px; }
  .menu__header h2 { line-height: 1.02; }
  .menu-section { padding: 44px 0; }
  .menu-section__head { margin-bottom: 28px; }
  .menu-section__title { font-size: clamp(30px, 9vw, 48px); }
  .menu-section__intro,
  .menu-section__note { font-size: 16px; }
  .extras { padding: 20px; }

  /* Visit */
  .visit__value { font-size: 22px; }
  .visit__hours { grid-template-columns: 1fr; gap: 2px; }

  /* Site header — extra side padding so logo + ORDER button don't hug the edges */
  .site-header .shell { padding-left: calc(var(--gutter) + 8px); padding-right: calc(var(--gutter) + 8px); }
  .site-header__inner { padding: 14px 0; gap: 12px; }
  .site-header__cta .btn { padding: 10px 16px; font-size: 11px; }
}
