/* ==========================================================================
   À la bonne Franquette
   Palette: observed room, June 2025
   Skill: ui-ux-pro-max confirmed terracotta + warm cream palette
   Typography: Georgia (serif headings) + system sans (body)
   Mobile-first, self-contained, no CDN dependencies
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET + BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Observed palette -- from Lens photo report, June 2025 */
  --terra:       #C4522A;   /* dominant accent wall */
  --terra-dk:    #9A3412;   /* darker terra for text/hover */
  --cream:       #F0EEEA;   /* opposing walls and ceiling */
  --cream-warm:  #FDFAF6;   /* page background */
  --dark:        #1A0F0A;   /* near-black body text, warm undertone */
  --trim:        #4A4A52;   /* skirting boards, door frames */
  --gold:        #D4AE10;   /* yellow cone lamp, used sparingly */
  --stone:       #C8BEA8;   /* bar counter surface */
  --wood:        #B89060;   /* rush-seat chair wood */
  --walnut:      #6B4226;   /* dark bistro chair frames */
  --chalk:       #1A1210;   /* footer and chalkboard section */

  /* Typography */
  --font-serif: Georgia, "Times New Roman", "Palatino Linotype", Palatino, serif;
  --font-sans:  "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;

  /* Layout */
  --max-w: 1100px;
  --radius: 4px;
  --touch:  44px;
}

/* --------------------------------------------------------------------------
   3. BASE
   -------------------------------------------------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream-warm);
  color: var(--dark);
  line-height: 1.65;
  min-height: 100vh;
}

/* --------------------------------------------------------------------------
   4. SKIP LINK
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--chalk);
  color: var(--cream);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   5. CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--sp-3);
  padding-right: var(--sp-3);
}

/* --------------------------------------------------------------------------
   6. FOCUS STYLES
   -------------------------------------------------------------------------- */
:focus { outline: none; }

:focus-visible {
  outline: 3px solid var(--terra-dk);
  outline-offset: 3px;
  border-radius: 2px;
}

/* On dark or terracotta backgrounds, swap to cream outline */
.section--terra :focus-visible,
.section--chalk :focus-visible,
.site-header :focus-visible {
  outline-color: var(--cream);
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0.625rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}

.btn--white {
  background: #fff;
  color: var(--terra-dk);
  border-color: #fff;
}
.btn--white:hover { background: var(--cream); }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.12); }

/* --------------------------------------------------------------------------
   8. SITE HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--terra);
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
  gap: var(--sp-2);
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-height: 44px;
  min-width: 44px;
  padding: 0 4px;
}

.site-logo {
  height: 38px;
  width: auto;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: var(--touch);
  min-width: var(--touch);
  padding: 0 0.875rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 200ms ease;
  white-space: nowrap;
}
.site-header__cta:hover { background: rgba(255, 255, 255, 0.24); }

/* Hide phone text on very small screens, keep icon + number */
@media (max-width: 360px) {
  .site-header__phone { display: none; }
}

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero {
  background: var(--terra);
  color: #fff;
}

/* Mobile: stacked column */
.hero-grid {
  display: flex;
  flex-direction: column;
}

.hero__content {
  padding: var(--sp-8) var(--sp-3) var(--sp-6);
  max-width: var(--max-w);
  width: 100%;
}

.hero__eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-bottom: var(--sp-2);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--sp-2);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: var(--sp-3);
}

.hero__address {
  font-style: normal;
  font-size: 0.9375rem;
  opacity: 0.82;
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}
.hero__address a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch);
  color: inherit;
  text-underline-offset: 3px;
}
.hero__address a:hover { opacity: 1; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* --------------------------------------------------------------------------
   10. PHOTO SLOTS
   -------------------------------------------------------------------------- */
.photo-slot {
  position: relative;
  overflow: hidden;
  background: var(--walnut);
}

/* Diagonal hatching texture */
.photo-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.035) 0px,
    rgba(0, 0, 0, 0.035) 1px,
    transparent 1px,
    transparent 12px
  );
  z-index: 1;
  pointer-events: none;
}

.photo-slot__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-3) calc(var(--sp-4) + 40px);
}

/* Large monogram watermark */
.photo-slot__mono {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 700;
  color: rgba(240, 238, 234, 0.14);
  letter-spacing: 0.08em;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

/* Decorative SVG inside slot */
.photo-slot__deco {
  opacity: 0.9;
  flex-shrink: 0;
}

/* Caption band at bottom */
.photo-slot__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(26, 12, 8, 0.84);
  color: var(--cream);
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-style: italic;
}

/* "Photo a venir" badge — hero slot only, replaces visible filing-instruction caption */
.photo-slot__badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(26, 12, 8, 0.52);
  color: rgba(240, 238, 234, 0.82);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 2px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* Aspect ratios */
.photo-slot--hero     { aspect-ratio: 16 / 9; }
.photo-slot--interior { aspect-ratio: 4 / 3;  }
.photo-slot--square   { aspect-ratio: 4 / 3;  }
.photo-slot--terrace  { aspect-ratio: 16 / 9; }

/* --------------------------------------------------------------------------
   11. MOSAIC DIVIDER
   (references the circular-mosaic room divider in the actual restaurant)
   -------------------------------------------------------------------------- */
.mosaic-divider {
  display: flex;
  align-items: center;
  padding: var(--sp-4) var(--sp-3);
  max-width: var(--max-w);
  margin: 0 auto;
}

.mosaic-divider::before,
.mosaic-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--stone);
  opacity: 0.6;
}

.mosaic-divider__dots {
  display: flex;
  gap: 5px;
  padding: 0 var(--sp-2);
}

.mosaic-divider__dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. SECTION BASE + VARIANTS
   -------------------------------------------------------------------------- */
.section {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.section--cream { background: var(--cream-warm); }
.section--stone { background: var(--stone); }

.section--terra {
  background: var(--terra);
  color: #fff;
}

.section--chalk {
  background: var(--chalk);
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   13. SECTION HEADERS (h2 + eyebrow tag)
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: var(--sp-4);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terra-dk);
  margin-bottom: 0.375rem;
}

/* Section-tag overrides per background */
.section--stone .section-tag  { color: var(--walnut); }
.section--terra .section-tag  { color: rgba(255, 255, 255, 0.8); }
.section--chalk .section-tag  { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-title--light { color: #fff; }

/* --------------------------------------------------------------------------
   14. ABOUT
   -------------------------------------------------------------------------- */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.about__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--dark);
  margin-top: var(--sp-3);
}

.about__detail {
  margin-top: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--trim);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   15. HOURS
   -------------------------------------------------------------------------- */
.hours-confirm-box {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  background: #FFF7F0;
  border: 1px solid var(--stone);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-3);
  margin-bottom: var(--sp-4);
  color: var(--dark);
}

.hours-confirm-box__icon {
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 2px;
}

.hours-confirm-box__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 0.375rem;
}

.hours-confirm-box__cta a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch);
  color: var(--terra-dk);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}
.hours-confirm-box__cta a:hover { text-decoration: underline; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.hours-card {
  background: #fff;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius);
  padding: var(--sp-3);
  border-left-width: 4px;
}

.hours-card--open   { border-left-color: var(--terra); }
.hours-card--tbc    { border-left-color: var(--gold); background: #FFFDF0; }
.hours-card--closed { border-left-color: var(--trim); background: #F5F3F0; }

.hours-card__day {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trim);
  margin-bottom: 0.375rem;
}

.hours-card__time {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.hours-card--closed .hours-card__time { color: var(--trim); }

.hours-card__note {
  font-size: 0.8125rem;
  color: var(--trim);
  margin-top: 0.25rem;
  font-style: italic;
}

.hours-coffee {
  font-size: 0.9375rem;
  color: var(--trim);
  padding: var(--sp-2) var(--sp-3);
  background: var(--cream);
  border-radius: var(--radius);
  border: 1.5px solid var(--stone);
}
.hours-coffee strong { color: var(--terra-dk); }

/* --------------------------------------------------------------------------
   16. MENU
   -------------------------------------------------------------------------- */
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.menu-main {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Plat du jour feature card */
.plat-card {
  background: var(--terra);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--sp-4);
}

.plat-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: var(--sp-2);
}

.plat-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: var(--sp-1);
  color: #fff;
}

.plat-card__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
}

.plat-card__price {
  margin-top: var(--sp-3);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

/* Specialities list */
.menu-subhead {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-2);
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stone);
  font-size: 1rem;
}
.menu-list li:last-child { border-bottom: none; }

.menu-list__name { font-weight: 500; }

.menu-list__badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--terra);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Cafe feature */
.cafe-special {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #fff;
  border: 2px solid var(--stone);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-3);
}

.cafe-special__price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  flex-shrink: 0;
}

.cafe-special__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.cafe-special__note {
  font-size: 0.8125rem;
  color: var(--trim);
  margin-top: 0.15rem;
}

.menu-price-band {
  margin-top: var(--sp-2);
  font-size: 0.875rem;
  color: var(--trim);
  font-style: italic;
  text-align: center;
}

.menu-list__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--terra-dk);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-list__price--tbc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--trim);
}

.menu-list__indic {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--trim);
  margin-left: 0.2rem;
}

.menu-chalkboard-note {
  font-size: 0.8125rem;
  color: var(--trim);
  font-style: italic;
  margin-top: 0.375rem;
  margin-bottom: var(--sp-2);
}

/* --------------------------------------------------------------------------
   17. A PARTAGER (chalkboard section)
   -------------------------------------------------------------------------- */
.chalk-intro {
  font-size: 0.875rem;
  color: rgba(240, 238, 234, 0.6);
  margin-top: 0.375rem;
  font-style: italic;
}

.chalk-items {
  display: flex;
  flex-direction: column;
  margin-top: var(--sp-3);
}

.chalk-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-2);
  padding: 0.875rem 0;
  border-bottom: 1px dashed rgba(240, 238, 234, 0.18);
}
.chalk-item:last-child { border-bottom: none; }

.chalk-item__name {
  font-size: 1.0625rem;
  color: var(--cream);
  font-weight: 500;
}

.chalk-item__note {
  display: block;
  font-size: 0.8125rem;
  color: rgba(240, 238, 234, 0.52);
  font-style: italic;
  margin-top: 0.2rem;
}

.chalk-item__price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.chalk-wine-section {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(240, 238, 234, 0.12);
}

.chalk-wine-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.chalk-footer-note {
  margin-top: var(--sp-3);
  font-size: 0.875rem;
  color: rgba(240, 238, 234, 0.55);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   18. SERVICES
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.service-card {
  background: #fff;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
  transition: border-color 200ms, box-shadow 200ms;
}
.service-card:hover {
  border-color: var(--terra);
  box-shadow: 0 2px 8px rgba(196, 82, 42, 0.08);
}

.service-card__icon {
  color: var(--terra);
  margin-bottom: var(--sp-1);
  display: flex;
  justify-content: center;
}

.service-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
}

.service-card__sub {
  font-size: 0.8125rem;
  color: var(--trim);
  margin-top: 0.2rem;
  font-style: italic;
}

/* Payment */
.payment-info {
  padding-top: var(--sp-3);
  border-top: 1.5px solid var(--stone);
}

.payment-info__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--dark);
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
}

.payment-tag {
  display: inline-block;
  background: var(--stone);
  color: var(--dark);
  padding: 0.35rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.payment-tag--accent {
  background: var(--terra);
  color: #fff;
}

/* --------------------------------------------------------------------------
   19. LOCATION
   -------------------------------------------------------------------------- */
.location-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.location__address {
  font-style: normal;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--dark);
}

.location__transit {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(107, 66, 38, 0.25);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-3);
  color: var(--dark);
}

.location__transit svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--walnut);
}

.location__transit p {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--walnut);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  min-height: var(--touch);
  transition: color 200ms;
}
.map-link:hover { color: var(--dark); text-decoration: underline; }

/* --------------------------------------------------------------------------
   20. CONTACT
   -------------------------------------------------------------------------- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.contact-item a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  transition: opacity 200ms;
}
.contact-item a:hover { opacity: 0.82; text-decoration: underline; }

.contact-booking-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: var(--sp-2);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--chalk);
  color: rgba(240, 238, 234, 0.6);
  padding: var(--sp-4) 0;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
}

.site-footer__copy { font-size: 0.875rem; }

.site-footer__links {
  display: flex;
  gap: var(--sp-3);
}

.site-footer__link {
  color: rgba(240, 238, 234, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 200ms;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
}
.site-footer__link:hover { color: var(--cream); }

/* --------------------------------------------------------------------------
   22. DESKTOP BREAKPOINT (768px+)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {

  /* Hero: side by side */
  .hero-grid {
    flex-direction: row;
    min-height: 480px;
  }

  .hero__content {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-8) var(--sp-6);
  }

  .hero-grid .photo-slot--hero {
    flex: 0 0 50%;
    max-width: 50%;
    aspect-ratio: unset;
    min-height: 400px;
  }

  /* About: text left, photo right */
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--sp-6);
  }

  .about__text  { flex: 1; }
  .about-grid .photo-slot { flex: 0 0 45%; max-width: 45%; }

  /* Menu: items left, photo right */
  .menu-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--sp-6);
  }

  .menu-main { flex: 1; }
  .menu-grid > div:last-child { flex: 0 0 42%; max-width: 42%; }

  /* Location: address left, photo right */
  .location-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--sp-6);
  }

  .location__info { flex: 1; }
  .location-grid .photo-slot { flex: 0 0 46%; max-width: 46%; }

  /* Hours: three cards in one row */
  .hours-grid { grid-template-columns: repeat(3, 1fr); }

  /* Services: allow 5 cards in a row */
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  /* Contact items in a row */
  .contact-list { flex-direction: row; flex-wrap: wrap; gap: var(--sp-4); }
}

/* --------------------------------------------------------------------------
   23. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
