/* ============================================
   Mademoiselle Paris — Main Stylesheet
   Version: 1.0

   TABLE OF CONTENTS:
   1.  Variables (design tokens)
   2.  Reset & Base
   3.  Typography
   4.  Navigation
   5.  Mobile Drawer
   6.  Buttons
   7.  Hero
   8.  Awards Marquee
   9.  Ornaments & Dividers
   10. Layout Utilities
   11. Feature Section
   12. Menu Preview Cards
   13. Testimonials
   14. Locations Strip
   15. Newsletter
   16. Footer
   17. Page Header (inner pages)
   18. Menu Page
   19. About Page
   20. Reservations & Contact
   21. Reveal Animations
   22. Tablet (640px+)
   23. Desktop (1024px+)
   24. Wide (1280px+)
   ============================================ */


/* === 1. VARIABLES ========================== */

:root {
  /* Surfaces */
  --bg:    #F7F3ED;     /* warm parchment */
  --s1:    #FFFFFF;     /* pure white surface */
  --s2:    #EDE8DF;     /* secondary warm surface */
  --dark:  #1A1614;     /* near-black, warm toned */

  /* Borders */
  --rule:  #DDD5C6;     /* subtle warm border */
  --hi:    #8C2A1C;     /* wine red highlight */

  /* Text */
  --text:  #1A1614;     /* primary text */
  --t2:    #4A3C34;     /* body / secondary text */
  --t3:    #8A7A6D;     /* muted / label text */

  /* Brand */
  --primary:   #8C2A1C;  /* deep wine / burgundy */
  --secondary: #C49A6A;  /* antique gold */
  --accent:    #2B4A3C;  /* deep bistro green */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --px:       clamp(20px, 5vw, 80px);
  --section:  clamp(64px, 9vw, 112px);
  --container: 1200px;
}


/* === 2. RESET & BASE ====================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
}


/* === 3. TYPOGRAPHY ======================== */

/* Display headings use Cormorant Garamond */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  color: var(--t2);
  line-height: 1.75;
}

/* Label: small-caps style, DM Sans, generous spacing */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 0.85rem;
}

.label--gold  { color: var(--secondary); }
.label--light { color: rgba(255, 255, 255, 0.55); }
.label--wine  { color: var(--primary); }


/* === 4. NAVIGATION ======================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--px);
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.35s ease,
    color 0.3s ease;
}

/* Transparent state — used on dark hero pages */
.site-nav.is-transparent {
  background: transparent;
  color: #fff;
  box-shadow: none;
}

/* Solid frosted glass state — scrolled, or light pages */
.site-nav.is-solid {
  background: rgba(247, 243, 237, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--rule);
  color: var(--text);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo block */
.nav__logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav__fleur-logo {
  display: block;
  flex-shrink: 0;
  opacity: 0.88;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Remove old inline fleur helper — replaced by nav__fleur-logo */
.nav__fleur {
  display: none;
}

.nav__logo-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* Desktop nav links — hidden on mobile */
.nav__links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
  position: relative;
}

.nav__links a:hover { opacity: 1; }

/* Active page indicator */
.nav__links a.is-active {
  opacity: 1;
}

.nav__links a.is-active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}

/* Reserve button in nav */
.nav__cta {
  display: none;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid currentColor;
  border-radius: 100px;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
}

/* Hover states vary by nav mode */
.site-nav.is-transparent .nav__cta:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

.site-nav.is-solid .nav__cta:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Hamburger menu — mobile only */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

/* White hamburger lines on dark/hero pages */
.site-nav.is-transparent .nav__hamburger span {
  background: #fff;
}


/* === 5. MOBILE DRAWER ===================== */

/* Dimmed overlay behind the drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* The drawer panel — slides in from the right */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--dark);
  color: #fff;
  z-index: 200;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.nav-drawer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
}

.nav-drawer__close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
}

.nav-drawer__close:hover { color: #fff; }

/* Large elegant link list inside the drawer */
.nav-drawer__links {
  display: flex;
  flex-direction: column;
}

.nav-drawer__links a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s, padding-left 0.25s;
}

.nav-drawer__links a:last-child { border-bottom: none; }

.nav-drawer__links a:hover {
  color: var(--secondary);
  padding-left: 0.5rem;
}

/* CTA at the bottom of the drawer */
.nav-drawer__footer {
  margin-top: auto;
  padding-top: 2.5rem;
}

.nav-drawer__footer a {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.8rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  transition: background 0.22s, border-color 0.22s;
}

.nav-drawer__footer a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
}


/* === 6. BUTTONS =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: #6f1f12;
  border-color: #6f1f12;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--rule);
}

.btn--outline:hover {
  border-color: var(--text);
}

/* White-filled button (for use on dark backgrounds) */
.btn--light {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

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

/* Outlined white button (for use on dark backgrounds) */
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}


/* === 7. HERO ============================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--dark);
  color: #fff;
  padding: var(--section) var(--px);
  overflow: hidden;
}

/* Film grain texture via SVG filter */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* Warm radial glow for depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 65% at 50% 40%, rgba(140, 42, 28, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

/* Gold ornament above heading */
.hero__ornament {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

/* The big typographic statement */
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 13vw, 10rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.75rem;
}

.hero__heading em {
  font-style: italic;
  font-weight: 300;
  display: block;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animated scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}


/* === 8. AWARDS MARQUEE ==================== */

.awards {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
}

/* The track holds the items twice for a seamless loop */
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}

.marquee__item {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

/* Gold diamond separator between items */
.marquee__sep {
  color: var(--secondary);
  font-size: 0.45rem;
  opacity: 0.65;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}


/* === 9. ORNAMENTS & DIVIDERS ============== */

/* The diamond-and-line ornament used between section elements */
.ornament {
  display: flex;
  justify-content: center;
  color: var(--secondary);
  margin: 1.1rem auto;
}

.ornament--muted {
  color: var(--rule);
}

.ornament--light {
  color: rgba(255, 255, 255, 0.3);
}


/* === 10. LAYOUT UTILITIES ================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section-pad {
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.text-center { text-align: center; }


/* === 11. FEATURE SECTION ================== */

.feature {
  background: var(--bg);
}

.feature__grid {
  display: grid;
  gap: 0;
}

.feature__text {
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.feature__text h2 {
  margin-bottom: 1.25rem;
}

.feature__text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.feature__text p:last-of-type {
  margin-bottom: 1.75rem;
}

/* Dark panel — visual counterpart to the text column */
.feature__visual {
  background-color: var(--dark);
  background-image: url(../img/MP_Plate.png);
  background-size: cover;
  background-position: center 38%;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

/* Dark gradient overlay — heavier at bottom where stats/quote sit */
.feature__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 7, 5, 0.55) 0%,
    rgba(10, 7, 5, 0.75) 55%,
    rgba(10, 7, 5, 0.90) 100%
  );
  pointer-events: none;
}

.feature__stat {
  position: relative;
  z-index: 1;
}

/* Large number typographic display */
.feature__stat-number {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.feature__stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 0.4rem;
}

/* Italicized pull quote inside the dark panel */
.feature__quote {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}


/* === 12. MENU PREVIEW CARDS =============== */

.menu-preview {
  background: var(--s1);
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-heading h2 {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.section-heading p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}

.menu-preview__grid {
  display: grid;
  gap: 1.25rem;
}

.menu-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 2.25rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

/* Wine-red left border that reveals on hover */
.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.menu-card:hover {
  box-shadow: 0 6px 28px rgba(26, 22, 20, 0.08);
  transform: translateY(-3px);
}

.menu-card:hover::before {
  transform: scaleY(1);
}

.menu-card__cat {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.menu-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.menu-card__desc {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.68;
  margin-bottom: 1.5rem;
}

.menu-card__link {
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.menu-card__link:hover { gap: 0.75rem; }


/* === 13. TESTIMONIALS ===================== */

.testimonials {
  background: var(--bg);
}

.testimonials__grid {
  display: grid;
  gap: 1.25rem;
}

.testimonial {
  background: var(--s1);
  border: 1px solid var(--rule);
  padding: 2.25rem;
}

/* Large decorative quotation mark */
.testimonial__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.85;
  color: var(--secondary);
  opacity: 0.35;
  margin-bottom: 0.75rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.testimonial__author {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
}


/* === 14. LOCATIONS STRIP ================== */

.locations {
  background: var(--s1);
}

.locations__grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.location-card {
  background: var(--s1);
  padding: 2.25rem;
  transition: background 0.25s;
}

.location-card:hover {
  background: var(--bg);
}

.location-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.location-card__address {
  font-size: 0.85rem;
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.location-card__hours {
  font-size: 0.8rem;
  color: var(--t3);
  margin-bottom: 1.1rem;
}

.location-card__link {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  transition: text-decoration 0.2s;
}

.location-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* === 15. NEWSLETTER ======================= */

.newsletter {
  background: var(--dark);
  text-align: center;
}

.newsletter__inner {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter h2 {
  color: #fff;
  margin: 0.75rem 0 1rem;
}

.newsletter > .container > .newsletter__inner > p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.25rem;
  font-size: 0.9rem;
}

/* Pill-shaped inline form */
.newsletter__form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}

.newsletter__form:focus-within {
  border-color: rgba(255, 255, 255, 0.5);
}

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  min-width: 0;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.newsletter__submit {
  background: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.22s;
  white-space: nowrap;
}

.newsletter__submit:hover { background: #d4aa7a; }

.newsletter__success {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--secondary);
  margin-top: 0.5rem;
}

.newsletter__success.is-visible { display: block; }


/* === 16. FOOTER =========================== */

.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__main {
  padding: clamp(3rem, 5vw, 5rem) var(--px);
  display: grid;
  gap: 2.5rem;
}

.footer__brand .nav__logo-name {
  font-size: 1.3rem;
  color: #fff;
}

.footer__brand .nav__logo {
  color: #fff;
}

.footer__brand .nav__fleur-logo {
  color: #fff;
  opacity: 0.9;
}

.footer__brand .nav__logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.85rem;
  max-width: 260px;
  line-height: 1.7;
}

.footer__col-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1.1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer__links a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem var(--px);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.28);
}


/* === 17. PAGE HEADER (inner pages) ======== */

.page-header {
  background: var(--dark);
  color: #fff;
  padding: calc(var(--section) + 5rem) var(--px) clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grain texture (same as hero) */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* Warm radial glow from the bottom */
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 110%, rgba(140, 42, 28, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-header__inner {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #fff;
  margin-top: 0.75rem;
}

/* Eyebrow above page headings — matches hero__eyebrow style */
.page-header__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

/* Section eyebrow (used on light and dark backgrounds) */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

/* Section header block with eyebrow + h2 + optional sub */
.section-header {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-header h2 {
  margin-top: 0.35rem;
  margin-bottom: 0.75rem;
}

.page-header__sub {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.75rem;
  font-size: 1.1rem;
}


/* === 18. MENU PAGE ======================== */

.menu-content {
  background: var(--bg);
}

.menu-section {
  padding-bottom: clamp(3rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--rule);
}

.menu-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Section header with French translation */
.menu-section__heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--rule);
  position: relative;
}

.menu-section__heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--secondary);
}

.menu-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
}

.menu-section__fr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--t3);
}

/* Menu item rows */
.menu-items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  margin-bottom: 0;
}

.menu-item {
  background: transparent;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s;
}

.menu-item:hover {
  background: var(--s1);
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.menu-item__info { flex: 1; }

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.menu-item__desc {
  font-size: 0.82rem;
  color: var(--t3);
  line-height: 1.65;
  max-width: 56ch;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--primary);
  white-space: nowrap;
  padding-top: 3px;
  flex-shrink: 0;
}

/* Wine list specific: region label */
.menu-item__region {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.2rem;
  display: block;
}

/* Reservation CTA bar at bottom of menu page */
.menu-cta {
  background: var(--dark);
  padding: clamp(3rem, 5vw, 4rem) var(--px);
  text-align: center;
  color: #fff;
}

.menu-cta h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.menu-cta p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* === 19. ABOUT PAGE ======================= */

.about-story {
  background: var(--bg);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-grid__text h2 {
  margin-bottom: 1.25rem;
}

.about-grid__text p {
  margin-bottom: 1rem;
}

/* Pull quote panel on the about page */
.about-grid__panel {
  background: var(--dark);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.about-grid__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(196, 154, 106, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.about-grid__panel blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.about-grid__panel cite {
  display: block;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 1.5rem;
}

/* Awards grid */
.about-awards {
  background: var(--s1);
}

.awards-grid {
  display: grid;
  gap: 1.25rem;
}

.award-card {
  border: 1px solid var(--rule);
  padding: 1.75rem;
  background: var(--bg);
  text-align: center;
}

.award-card__year {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.award-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}

.award-card__org {
  font-size: 0.78rem;
  color: var(--t3);
  margin-top: 0.3rem;
}

/* Philosophy section: centered, large italic quote */
.about-philosophy {
  background: var(--bg);
  text-align: center;
}

.about-philosophy__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto 1.5rem;
}

.about-philosophy__attr {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t3);
}


/* === 20. RESERVATIONS & CONTACT =========== */

.reservations-intro {
  background: var(--bg);
}

.reservations-grid {
  display: grid;
  gap: 3rem;
}

.reservations-grid h2 {
  margin-bottom: 1rem;
}

.reservations-grid p {
  margin-bottom: 1rem;
}

/* Hours table inside reservations */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--t2);
}

.hours-table td:first-child {
  color: var(--text);
  font-weight: 500;
  width: 140px;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

/* Form elements */
.form-grid {
  display: grid;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.925rem;
  color: var(--text);
  background: var(--s1);
  border: 1px solid var(--rule);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(140, 42, 28, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

/* Contact / locations page */
.contact-page {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-locations {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-location {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.contact-location:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-location h3 {
  margin-bottom: 0.25rem;
}

.contact-location__detail {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.contact-location__hours {
  font-size: 0.85rem;
  color: var(--t3);
  margin: 0.5rem 0 1rem;
}

.contact-location__maplink {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}

.contact-location__maplink:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* === 21. REVEAL ANIMATIONS ================ */

/* Elements start hidden and translate up */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grouped items */
.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.3s; }


/* === 22. TABLET (640px+) ================== */

@media (min-width: 640px) {
  .menu-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Full-width form fields (e.g. textarea, message) */
  .form-field--full {
    grid-column: 1 / -1;
  }

  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}


/* === 23. DESKTOP (1024px+) ================ */

@media (min-width: 1024px) {
  /* Show desktop nav, hide hamburger */
  .nav__links,
  .nav__cta {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  /* Feature section: two columns side by side */
  .feature__grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .feature__text {
    padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem) var(--px);
    max-width: none;
  }

  .feature__visual {
    min-height: auto;
  }

  .menu-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .locations__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* About page two columns */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .about-grid__text {
    padding-right: clamp(2rem, 4vw, 5rem);
  }

  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Reservations page: form left, hours right */
  .reservations-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact page: locations left, form right */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__main {
    grid-template-columns: 2fr 1fr 1fr;
  }
}


/* === 24. WIDE (1280px+) =================== */

@media (min-width: 1280px) {
  .feature__grid {
    grid-template-columns: 55% 45%;
  }
}


/* === 25. ABOUT PAGE (full) ================ */

/* Two-column story layout */
.about-story__grid {
  display: grid;
  gap: 3rem;
}

.about-story__text {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.about-story__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.about-story__text p {
  color: var(--t2);
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* Dark panel: pastry photo behind quote + stats */
.about-story__panel {
  background-color: var(--dark);
  background-image: url(../img/mademoiselle_pastry.jpg);
  background-size: cover;
  background-position: center 30%;
  padding: clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.about-story__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 7, 5, 0.82) 0%,
    rgba(10, 7, 5, 0.70) 50%,
    rgba(10, 7, 5, 0.86) 100%
  );
  pointer-events: none;
}

.about-story__quote {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-story__quote .ornament {
  color: var(--secondary);
  display: block;
  margin-bottom: 1rem;
}

.about-story__quote blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.about-story__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.about-story__stat .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1;
}

.about-story__stat .stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.4rem;
}

/* Philosophy centered quote block */
.philosophy {
  background: var(--s2);
  text-align: center;
}

.philosophy__inner {
  max-width: 820px;
  margin: 0 auto;
}

.philosophy__inner .ornament,
.philosophy__inner .ornament--gold {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.philosophy__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 1.75rem;
}

.philosophy__rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--secondary);
  margin: 0 auto 1.25rem;
  opacity: 0.6;
}

.philosophy__attribution {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t3);
}

/* Awards grid on about page */
.about-awards {
  background: var(--s1);
}

.award-card {
  border: 1px solid var(--rule);
  padding: 2rem 1.75rem;
  background: var(--bg);
  text-align: center;
  transition: border-color 0.25s;
}

.award-card:hover {
  border-color: var(--secondary);
}

.award-card__icon {
  color: var(--secondary);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.award-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.award-card__source {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.award-card__note {
  font-size: 0.875rem;
  color: var(--t3);
  line-height: 1.65;
}

/* About CTA block */
.about-cta {
  background: var(--dark);
}

.about-cta__inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.about-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.75rem;
}

.about-cta__sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.about-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* btn--outline is for light backgrounds; on dark sections override to white */
.about-cta .btn--outline,
.newsletter .btn--outline,
.menu-cta .btn--outline {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
}

.about-cta .btn--outline:hover,
.newsletter .btn--outline:hover,
.menu-cta .btn--outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

/* Gold ornament color override */
.ornament--gold {
  color: var(--secondary);
}

/* Inline body copy link */
.inline-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--text);
}

/* Section header centered variant */
.section-header--centered {
  text-align: center;
}

.section-header--centered .section-sub {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--t2);
  margin-top: 0.5rem;
  line-height: 1.7;
}

/* Button size variants */
.btn--sm {
  font-size: 0.6rem;
  padding: 0.6rem 1.4rem;
}

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

/* Desktop two-column for about story */
@media (min-width: 1024px) {
  .about-story__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }

  .about-story__text {
    padding-right: clamp(2.5rem, 5vw, 5rem);
  }

  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* === 26. RESERVATIONS PAGE ================ */

.reservations__grid {
  display: grid;
  gap: 4rem;
}

.reservations__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.reservations__intro {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.reservations__hours-note {
  font-size: 0.9rem;
  color: var(--t2);
  margin-bottom: 1.25rem;
}

/* Form field wrapper */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-group:last-of-type {
  margin-bottom: 1.5rem;
}

/* Side-by-side field pairs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--t3);
  text-align: center;
  margin-top: 0.75rem;
}

.form-optional {
  font-size: 0.75em;
  color: var(--t3);
  font-weight: 400;
}

/* Success state shown after form submission */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--rule);
  background: var(--s1);
}

.form-success__icon {
  color: var(--accent);
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.7;
}

/* Hours block in reservations sidebar */
.hours-block {
  border: 1px solid var(--rule);
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: var(--s1);
}

.hours-block__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--t2);
  padding: 0.4rem 0;
}

.hours-block__row--highlight {
  font-weight: 500;
  color: var(--text);
}

.hours-block__note {
  font-size: 0.78rem;
  color: var(--t3);
  margin-top: 0.75rem;
}

/* Location list in reservations sidebar */
.location-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-list__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.location-list__item:first-child {
  border-top: 1px solid var(--rule);
}

.location-list__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.location-list__address {
  font-size: 0.85rem;
  color: var(--t2);
  font-style: normal;
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.location-list__map {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.location-list__map:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Reservation policy notes */
.reservations__policy {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}

.reservations__policy-heading {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 0.75rem;
}

.reservations__policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reservations__policy-list li {
  font-size: 0.85rem;
  color: var(--t2);
  padding-left: 1rem;
  position: relative;
}

.reservations__policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  transform: rotate(45deg);
}

/* Desktop: two columns */
@media (min-width: 1024px) {
  .reservations__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
  }
}


/* === 27. CONTACT PAGE ===================== */

/* Four-card locations grid */
.contact-locations__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-loc-card {
  border: 1px solid var(--rule);
  padding: 2.25rem 2rem;
  background: var(--s1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 280px;
  transition: border-color 0.25s;
}

.contact-loc-card:hover {
  border-color: var(--secondary);
}

.contact-loc-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-loc-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
}

.contact-loc-card__address {
  font-size: 0.9rem;
  color: var(--t2);
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.contact-loc-card__hours {
  font-size: 0.82rem;
  color: var(--t3);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-loc-card__hours-label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
}

/* Contact form section */
.contact-form__grid {
  display: grid;
  gap: 4rem;
}

.contact-form__context p {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.contact-form__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-form__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__detail-item {
  padding-left: 1rem;
  border-left: 2px solid var(--secondary);
}

.contact-form__detail-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.contact-form__detail-item p {
  font-size: 0.875rem;
  color: var(--t2);
  line-height: 1.65;
}

/* Desktop layout */
@media (min-width: 640px) {
  .contact-locations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-locations__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}


/* === 28. LOCATION PICKER PAGES ============
   Shared layout for order.html, menu.html,
   and reservations.html — all use the same
   location-card picker pattern.
=========================================== */

.loc-picker {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.loc-pick-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.25rem 2rem;
  background: var(--s1);
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.loc-pick-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.loc-pick-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.loc-pick-card:hover::before {
  transform: scaleY(1);
}

.loc-pick-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.loc-pick-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.loc-pick-card__address {
  font-size: 0.875rem;
  color: var(--t2);
  font-style: normal;
  line-height: 1.6;
}

.loc-pick-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  transition: gap 0.2s;
}

.loc-pick-card:hover .loc-pick-card__action {
  gap: 0.9rem;
}

.loc-pick-card__action svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.loc-pick-card:hover .loc-pick-card__action svg {
  transform: translateX(3px);
}

/* Intro copy below the page header */
.picker-intro {
  max-width: 560px;
}

.picker-intro p {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.75;
}

@media (min-width: 640px) {
  .loc-picker {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .loc-picker {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}


/* === 29. ORDER PAGE — VERTICAL BUTTONS ====
   Stacked full-width location buttons for
   the online ordering page.
=========================================== */

.order-btn-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 680px;
  margin-top: 2.5rem;
}

.order-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--s1);
  border: 1px solid var(--rule);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.22s, border-color 0.22s;
}

.order-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.28s ease;
}

.order-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.order-btn:hover::before {
  transform: scaleY(1);
  background: rgba(255, 255, 255, 0.25);
}

.order-btn__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.order-btn__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  transition: color 0.22s;
}

.order-btn:hover .order-btn__name {
  color: #fff;
}

.order-btn__address {
  font-size: 0.82rem;
  color: var(--t3);
  font-style: normal;
  line-height: 1.5;
  transition: color 0.22s;
}

.order-btn:hover .order-btn__address {
  color: rgba(255, 255, 255, 0.65);
}

.order-btn__arrow {
  flex-shrink: 0;
  color: var(--secondary);
  transition: color 0.22s, transform 0.22s;
}

.order-btn:hover .order-btn__arrow {
  color: #fff;
  transform: translateX(4px);
}


/* === 30. MENU PAGE — SUBSECTION STYLES ==== */

.menu-subsection-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}

.menu-subsection-note {
  font-size: 0.82rem;
  color: var(--t3);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}


/* === 31. TESTIMONIAL CITE ================= */

.testimonial__cite {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}

.testimonial__author {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.testimonial__location {
  font-size: 0.75rem;
  color: var(--t3);
}


/* === 32. MENU TAB NAV =====================
   Sticky anchor-link navigation bar that
   sits below the page header on menu pages.
=========================================== */

.menu-tab-nav {
  background: var(--s1);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 90;
}

.menu-tab-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-tab-nav__inner::-webkit-scrollbar { display: none; }

.menu-tab-nav__inner a {
  display: block;
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.menu-tab-nav__inner a:hover {
  color: var(--text);
  border-bottom-color: var(--secondary);
}


/* === 33. LOCATION HOURS TABLE =============
   Used inside location cards on contact,
   menu, order, and reservations pages.
=========================================== */

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.35rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--t2);
  line-height: 1.5;
}

.hours-row span:first-child {
  color: var(--t3);
  flex-shrink: 0;
}


/* === 34. SOCIAL MEDIA LINKS =============== */

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--rule);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.social-link svg {
  flex-shrink: 0;
}

/* Contact info block */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  font-family: var(--font-body);
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
}

.contact-info-value:hover { color: var(--primary); }

/* Hours font compressed for loc cards */
.contact-loc-card .hours-row {
  font-size: 0.72rem;
  gap: 0.5rem;
}

/* === 35. WINE TASTING PAGE ================ */

.wine-hero {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 7rem) var(--px);
  position: relative;
  overflow: hidden;
}

.wine-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(140, 42, 28, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.wine-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.wine-hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.wine-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.wine-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}

.wine-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.wine-feature {
  padding: 1.75rem 2rem;
  background: var(--s1);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--secondary);
}

.wine-feature__label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.4rem;
  display: block;
}

.wine-feature__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
}

.wine-feature__note {
  font-size: 0.82rem;
  color: var(--t3);
  margin-top: 0.3rem;
  line-height: 1.55;
}

.upcoming-event {
  background: var(--dark);
  border: 1px solid rgba(196,154,106,0.3);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.upcoming-event::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(140,42,28,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.upcoming-event__inner { position: relative; z-index: 1; }

.upcoming-event__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.upcoming-event__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.upcoming-event__details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.upcoming-event__detail {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.upcoming-event__detail strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.upcoming-event__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .wine-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wine-features {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* === 36. GRAND OPENING NAV LINK ===========
   Gold accent link that draws the eye
   without breaking the design.
=========================================== */

.nav__links .nav__link--event {
  color: var(--primary);
  font-style: italic;
  letter-spacing: 0.05em;
  position: relative;
}

/* Gold in mobile drawer — readable on dark background */
.nav-drawer__links .nav__link--event {
  color: var(--secondary);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* Gold on dark/transparent nav so it reads against dark backgrounds */
.site-nav.is-transparent .nav__links .nav__link--event {
  color: var(--secondary);
}

.site-nav.is-transparent .nav__links .nav__link--event::after {
  background: var(--secondary);
  opacity: 0.6;
}

/* Subtle spark + underline */
.nav__links .nav__link--event::before {
  content: '✦';
  font-style: normal;
  font-size: 0.5em;
  vertical-align: super;
  margin-right: 0.3em;
  color: var(--secondary);
  letter-spacing: 0;
}

.nav__links .nav__link--event::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  opacity: 0.4;
  transform: scaleX(1);
}


/* === 37. GRAND OPENING PAGE =============== */

.grand-hero {
  background: #0c0a08;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) var(--px) clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Diagonal champagne-gold light from top-right */
.grand-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196,154,106,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(140,42,28,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle vignette */
.grand-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.grand-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.grand-hero__prelude {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.grand-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.grand-hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.grand-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* Decorative horizontal rule with diamond */
.grand-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 320px;
  color: var(--secondary);
  opacity: 0.6;
}

.grand-rule::before,
.grand-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
}

/* Event detail cards */
.grand-details {
  display: grid;
  gap: 1.25rem;
}

.grand-detail-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,154,106,0.25);
  padding: 2rem 2.25rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.25s, background 0.25s;
}

.grand-detail-card:hover {
  border-color: rgba(196,154,106,0.55);
  background: rgba(255,255,255,0.07);
}

.grand-detail-card__icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.grand-detail-card__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.grand-detail-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
}

.grand-detail-card__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
  line-height: 1.55;
}

/* Schedule timeline */
.grand-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(196,154,106,0.3);
  padding-left: 2rem;
  margin-left: 1rem;
}

.grand-timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.grand-timeline__item:last-child {
  padding-bottom: 0;
}

.grand-timeline__item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 6px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--secondary);
  background: var(--secondary);
  transform: rotate(45deg);
}

.grand-timeline__time {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.grand-timeline__event {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
}

.grand-timeline__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

/* Dress code banner */
.grand-dress {
  background: linear-gradient(135deg, rgba(196,154,106,0.12) 0%, rgba(196,154,106,0.06) 100%);
  border: 1px solid rgba(196,154,106,0.35);
  padding: 2.5rem;
  text-align: center;
}

.grand-dress__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
}

.grand-dress__note {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

/* Grand section headings */
.grand-section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.grand-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .grand-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grand-details {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* === MOBILE NAV ===========================
   Applied below the desktop breakpoint (< 1024px).
=========================================== */
@media (max-width: 1023px) {

  /* Fleur 15% larger than desktop (20x31 → 23x36) */
  .nav__fleur-logo {
    width: 23px;
    height: 36px;
  }

  /* Hide brand name inside the pop-out drawer only */
  .nav-drawer__brand {
    display: none;
  }

  /* Drawer links 30% smaller than desktop (1.9rem → 1.33rem) */
  .nav-drawer__links a {
    font-size: 1.33rem;
    padding: 0.5rem 0;
  }

  /* Contact locations page — single column on mobile */
  .contact-locations .contact-locations__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Override --px so container padding shrinks and cards fill more screen width */
  .contact-locations {
    --px: 0.5rem;
  }

  .contact-loc-card {
    min-height: unset;
    padding: 1.5rem;
  }
}


/* === LOCATION CARD PHONE NUMBER ===========
   Space between phone and hours block.
=========================================== */
.contact-loc-card__phone {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 1rem;  /* gap before hours */
  font-size: 0.875rem;
  color: var(--t2);
  text-decoration: none;
}

.contact-loc-card__phone:hover {
  color: var(--primary);
}
