/* ==========================================================================
   Loaf & Crumb Bakery v2 — DESIGN.md-driven design system
   Adapted from Claude (Anthropic) · Literary salon / artisan bakery
   ========================================================================== */

/* --- Custom properties ------------------------------------------- */
:root {
  /* Primary palette */
  --parchment: #f5f4ed;
  --ivory: #faf9f5;
  --pure-white: #ffffff;
  --warm-sand: #e8e6dc;
  --near-black: #141413;
  --dark-surface: #30302e;
  --terracotta: #c96442;
  --coral: #d97757;

  /* Neutrals — all warm-toned, no cool grays */
  --charcoal-warm: #4d4c48;
  --olive-gray: #5e5d59;
  --stone-gray: #87867f;
  --dark-warm: #3d3d3a;
  --warm-silver: #b0aea5;

  /* Borders & rings */
  --border-cream: #f0eee6;
  --border-warm: #e8e6dc;
  --border-dark: #30302e;
  --ring-warm: #d1cfc5;
  --ring-subtle: #dedc01;
  --ring-deep: #c2c0b6;

  /* Semantic */
  --focus-blue: #3898ec;
  --error-crimson: #b53333;

  /* Typography */
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Spacing — 8px base */
  --space-3xs: 3px;
  --space-2xs: 4px;
  --space-xs: 6px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 24px;
  --space-3xl: 30px;
  --space-4xl: 48px;
  --space-5xl: 64px;
  --space-6xl: 80px;
  --space-7xl: 100px;
  --space-8xl: 120px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.85, 0.25, 1);
  --ease-exit: cubic-bezier(0.33, 0, 0.42, 1);
  --duration-fast: 160ms;
  --duration-base: 240ms;
  --duration-slow: 400ms;

  /* Layout */
  --max-width: 1200px;
  --content-width: 720px;
  --measure: 65ch;

  /* Radii */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
}

/* --- 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(--sans);
  font-size: 16px;
  line-height: 1.60;
  color: var(--near-black);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--duration-base) var(--ease);
}

a:hover {
  color: var(--coral);
}

a:focus-visible {
  outline: 3px solid var(--focus-blue);
  outline-offset: 2px;
}

/* --- Typography -------------------------------------------------- */

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.20;
  letter-spacing: normal;
  color: var(--near-black);
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.10;
  font-weight: 500;
}

h2 {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  line-height: 1.20;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.10;
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.20;
}

.body-large {
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1.60;
}

.body-standard {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.60;
}

.body-small {
  font-family: var(--sans);
  font-size: 0.94rem;
  line-height: 1.60;
}

.label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  color: var(--olive-gray);
}

.overline {
  font-family: var(--sans);
  font-size: 0.625rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--stone-gray);
}

.caption {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.43;
  color: var(--stone-gray);
}

.measure {
  max-width: var(--measure);
}

/* --- Skip link --------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-lg);
  z-index: 1000;
  background: var(--terracotta);
  color: var(--ivory);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-base);
  font-family: var(--sans);
  font-size: 0.88rem;
  transition: top var(--duration-base) var(--ease);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* --- Navigation -------------------------------------------------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 1px solid var(--border-cream);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-2xl);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--near-black);
  letter-spacing: -0.02em;
  border: none;
}

.nav-logo:hover {
  color: var(--terracotta);
}

/* Mobile nav — <details><summary> based, works JS-off */
details.nav-mobile {
  display: none;
  position: relative;
}

details.nav-mobile summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-xs);
  user-select: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--near-black);
  font-family: var(--sans);
  font-size: 0.94rem;
}

details.nav-mobile summary::-webkit-details-marker {
  display: none;
}

details.nav-mobile summary::marker {
  content: '';
}

details.nav-mobile[open] .nav-links-mobile {
  display: flex;
}

.nav-links-mobile {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: var(--ivory);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-base);
  box-shadow: 0px 4px 24px rgba(0,0,0,0.05);
  flex-direction: column;
  padding: var(--space-sm) 0;
  z-index: 101;
}

.nav-links-mobile a {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--olive-gray);
  padding: var(--space-sm) var(--space-lg);
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}

.nav-links-mobile a:hover,
.nav-links-mobile a[aria-current="page"] {
  background: var(--warm-sand);
  color: var(--near-black);
}

/* Desktop nav */
.nav-links-desktop {
  display: flex;
  gap: var(--space-2xl);
  list-style: none;
  align-items: center;
}

.nav-links-desktop a {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--olive-gray);
  position: relative;
  padding: var(--space-2xs) 0;
  transition: color var(--duration-base) var(--ease);
}

.nav-links-desktop a:hover,
.nav-links-desktop a[aria-current="page"] {
  color: var(--near-black);
}

.nav-links-desktop a[aria-current="page"]::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--terracotta);
  margin-top: 2px;
}

@media (max-width: 767px) {
  details.nav-mobile {
    display: block;
  }
  .nav-links-desktop {
    display: none;
  }
}

/* --- Hero -------------------------------------------------------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--parchment);
  color: var(--near-black);
  padding: var(--space-6xl) 0;
}

.hero-content {
  max-width: var(--content-width);
  padding: 0 var(--space-2xl);
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 1.10;
  margin-bottom: var(--space-lg);
  color: var(--near-black);
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1.60;
  color: var(--olive-gray);
  max-width: 45ch;
  margin-bottom: var(--space-3xl);
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
}

/* --- Buttons ------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease);
  border: none;
  line-height: 1.25;
}

.btn-brand {
  background: var(--terracotta);
  color: var(--ivory);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0px 0px 0px 1px var(--terracotta);
}

.btn-brand:hover {
  background: var(--coral);
  color: var(--ivory);
  box-shadow: 0px 0px 0px 1px var(--coral);
  transform: translateY(-1px);
}

.btn-sand {
  background: var(--warm-sand);
  color: var(--charcoal-warm);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-base);
  box-shadow: 0px 0px 0px 1px var(--ring-warm);
}

.btn-sand:hover {
  background: var(--border-cream);
  color: var(--near-black);
  box-shadow: 0px 0px 0px 1px var(--ring-deep);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--near-black);
  color: var(--warm-silver);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-surface);
}

.btn-dark:hover {
  background: var(--dark-surface);
  color: var(--ivory);
  transform: translateY(-1px);
}

.btn-pill {
  border-radius: 999px;
  padding: 0.4rem 1.25rem;
  font-size: 0.88rem;
}

/* --- Sections ---------------------------------------------------- */

.section {
  padding: var(--space-6xl) 0;
}

.section-light {
  background: var(--parchment);
  padding: var(--space-6xl) 0;
  color: var(--near-black);
}

.section-dark {
  background: var(--near-black);
  padding: var(--space-6xl) 0;
  color: var(--warm-silver);
}

.section-dark h2 {
  color: var(--ivory);
}

.section-dark p {
  color: var(--warm-silver);
}

.section-alt {
  background: var(--warm-sand);
  padding: var(--space-6xl) 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

.section-intro {
  max-width: var(--content-width);
  margin: 0 auto var(--space-5xl);
  text-align: center;
}

/* --- Fade-up animation (JS-driven) ------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease),
              transform var(--duration-slow) var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Cards ------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.card-ivory {
  background: var(--ivory);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-base);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
}

.card-ivory:hover {
  transform: translateY(-4px);
  box-shadow: 0px 0px 0px 1px var(--ring-warm), 0px 4px 24px rgba(0,0,0,0.05);
}

.card-featured {
  border-radius: var(--radius-xl);
  background: var(--ivory);
  border: 1px solid var(--border-cream);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
}

.card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0px 0px 0px 1px var(--ring-warm), 0px 4px 24px rgba(0,0,0,0.05);
}

.card-dark {
  background: var(--dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-base);
  overflow: hidden;
}

.card-img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-gray);
  font-family: var(--mono);
  font-size: 0.75rem;
  background: var(--warm-sand);
}

.card-img-dark {
  background: var(--near-black);
  color: var(--warm-silver);
}

.card-body {
  padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.card-body h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.20;
  margin-bottom: var(--space-xs);
}

.card-body p {
  font-size: 1rem;
  line-height: 1.60;
  color: var(--olive-gray);
  margin-bottom: 0;
}

.card-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--ivory);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
}

.card-gf {
  border-top: 3px solid var(--border-warm);
}

/* --- Hours table -------------------------------------------------- */

.hours-table {
  width: 100%;
  max-width: 480px;
  border-collapse: collapse;
}

.hours-table thead th {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  color: var(--olive-gray);
  text-align: left;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-warm);
}

.hours-table thead th:last-child {
  text-align: right;
}

.hours-table tbody td {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-cream);
  font-size: 0.94rem;
  color: var(--olive-gray);
}

.hours-table tbody td:last-child {
  text-align: right;
  font-family: var(--sans);
}

.hours-table .today td {
  color: var(--terracotta);
  font-weight: 500;
}

.section-dark .hours-table tbody td {
  color: var(--warm-silver);
  border-bottom-color: var(--border-dark);
}

.section-dark .hours-table tbody .today td {
  color: var(--coral);
}

.section-dark .hours-table thead th {
  color: var(--stone-gray);
  border-bottom-color: var(--border-dark);
}

/* --- Open / closed badge ----------------------------------------- */

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: var(--space-2xs) var(--space-lg);
  border-radius: 999px;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border-cream);
}

.section-dark .open-badge {
  border-color: var(--border-dark);
}

.open-badge.open {
  background: rgba(45, 106, 45, 0.08);
  color: #3a8a3a;
}

.open-badge.closed {
  background: rgba(181, 51, 51, 0.06);
  color: var(--error-crimson);
}

.section-dark .open-badge.open {
  background: rgba(58, 138, 58, 0.12);
}

.section-dark .open-badge.closed {
  background: rgba(181, 51, 51, 0.1);
}

.open-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.open-badge.open .dot { background: #3a8a3a; }
.open-badge.closed .dot { background: var(--error-crimson); }

/* --- Map --------------------------------------------------------- */

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0px 0px 0px 1px var(--ring-warm);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* --- Grid utilities ---------------------------------------------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: start;
}

.grid-2-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

@media (max-width: 767px) {
  .grid-2,
  .grid-2-center,
  .card-grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Contact form ------------------------------------------------- */

.contact-form {
  max-width: 540px;
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  color: var(--olive-gray);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--border-cream);
  border-radius: var(--radius-lg);
  background: var(--pure-white);
  color: var(--near-black);
  transition: border-color var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--focus-blue);
  box-shadow: 0 0 0 3px rgba(56, 152, 236, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  background: var(--near-black);
  color: var(--warm-silver);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-surface);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
}

.btn-submit:hover {
  background: var(--dark-surface);
  color: var(--ivory);
  transform: translateY(-1px);
}

/* --- Phone number (contact page) --------------------------------- */

.phone-number {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  line-height: 1.10;
  color: var(--near-black);
}

.phone-number a {
  color: var(--near-black);
}

.phone-number a:hover {
  color: var(--terracotta);
}

/* --- Instagram link ---------------------------------------------- */

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--olive-gray);
  margin-top: var(--space-xs);
}

/* --- Getting there cards (visit page) ----------------------------- */

.getting-there-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: var(--content-width);
  margin: 0 auto;
}

.getting-there-card {
  background: var(--ivory);
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-base);
  padding: var(--space-2xl) var(--space-2xl);
  transition: transform var(--duration-base) var(--ease), box-shadow var(--duration-base) var(--ease);
}

.getting-there-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0px 0px 1px var(--ring-warm), 0px 4px 24px rgba(0,0,0,0.05);
}

.getting-there-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.getting-there-card p {
  font-size: 0.94rem;
  line-height: 1.60;
  color: var(--olive-gray);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .getting-there-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Footer ------------------------------------------------------ */

footer {
  border-top: 1px solid var(--border-cream);
  padding: var(--space-4xl) 0;
  font-size: 0.88rem;
  color: var(--stone-gray);
  background: var(--parchment);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-inner a {
  color: var(--olive-gray);
}

.footer-inner a:hover {
  color: var(--terracotta);
}

/* --- Dark section footer ----------------------------------------- */
.section-dark + footer {
  border-top-color: var(--border-dark);
}

/* --- Story section (about page) ---------------------------------- */

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.story-image {
  aspect-ratio: 4 / 5;
  background: var(--warm-sand);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-gray);
  font-family: var(--mono);
  font-size: 0.75rem;
}

/* --- Utility text classes for inline-elimination ----------------- */

.text-brand-link {
  margin-top: var(--space-lg);
}

.text-brand-link a {
  color: var(--terracotta);
}

.text-muted {
  color: var(--olive-gray);
}

.text-stone {
  color: var(--stone-gray);
}

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

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

.heading-small {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.heading-sm {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.2;
}

.section-dark .text-muted {
  color: var(--warm-silver);
}

.section-dark .text-stone {
  color: var(--stone-gray);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-ch-55 {
  max-width: 55ch;
}

.mt-xl {
  margin-top: var(--space-xl);
}

@media (max-width: 767px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .story-image {
    order: -1;
  }
}

/* --- Responsive -------------------------------------------------- */

@media (max-width: 767px) {
  :root {
    --space-6xl: 60px;
    --space-5xl: 40px;
    --space-4xl: 32px;
  }

  .hero {
    min-height: 70vh;
    padding: var(--space-6xl) 0;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .grid-2,
  .grid-2-center {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    text-align: left;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Placeholder image ------------------------------------------- */

.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-sand);
  color: var(--stone-gray);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-align: center;
  padding: var(--space-lg);
  min-height: 180px;
}

/* --- Shadows utilities ------------------------------------------- */

.ring-shadow {
  box-shadow: 0px 0px 0px 1px var(--ring-warm);
}

.whisper-shadow {
  box-shadow: 0px 4px 24px rgba(0,0,0,0.05);
}

/* --- Eyebrow mono ------------------------------------------------- */

.eyebrow-mono {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  color: var(--olive-gray);
  margin-bottom: var(--space-sm);
}

/* --- Print ------------------------------------------------------- */

@media print {
  nav { position: static; border: none; }
  .hero { min-height: auto; padding: var(--space-4xl) 0; }
  .btn { display: none; }
  .open-badge { display: none; }
  .fade-up { opacity: 1; transform: none; }
}

/* --- Body text black on dark section fix ------------------------- */

.section-dark .body-large {
  color: var(--warm-silver);
}

.section-dark .measure {
  color: var(--warm-silver);
}

.section-dark .eyebrow-mono {
  color: var(--stone-gray);
}
/* --- Hero placeholder fallback image ----------------------------- */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--parchment);
}

/* --- Typographic hero -------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(201,100,66,0.04) 0%, transparent 70%);
  pointer-events: none;
}
