/* =============================================================
   O'Shea's Caife & Tae — Production Stylesheet
   Visual system from Claude Design export, applied to existing
   production HTML structure. Mobile-first approach.
   ============================================================= */

:root {
  /* Brand color system */
  --primary: #57824a;
  --primary-dark: #3f6135;
  --forest-deep: #1f3325;
  --forest: #2d4a32;
  --forest-mid: #3d6342;
  --forest-bright: #57824a;

  --cream: #f5f3ea;
  --ivory: #faf7ee;
  --paper: #efeadb;
  --bg-alt: #f5f3ea;

  --espresso: #1a1410;
  --espresso-soft: #2a221d;
  --hero-dark: #1a1a1a;

  --brass: #c19a4b;
  --brass-soft: #d9b97a;

  --text: #1a1410;
  --muted: #5d6b58;
  --border: #e5e3d8;
  --rule: rgba(26, 20, 16, 0.14);
  --rule-on-dark: rgba(245, 243, 234, 0.18);

  /* Status colors for open/closed badge */
  --status-open: #57824a;
  --status-closing: #d4a017;
  --status-closed: #c0392b;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 9vw, 7rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--brass-soft); }
.eyebrow.center { justify-content: center; }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 234, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header.scrolled { background: rgba(245, 243, 234, 0.97); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: inherit;
}
.logo:hover { text-decoration: none; }

.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  right: -3px; top: -3px;
  width: 12px; height: 12px;
  background: var(--forest-bright);
  border-radius: 50% 0 50% 50%;
  transform: rotate(-30deg);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo-text .logo-sub {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 3px;
  font-weight: 400;
  display: block;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
}
.site-nav a:hover { background: rgba(45, 74, 50, 0.08); color: var(--forest); text-decoration: none; }
.site-nav a.active { color: var(--forest); }

.nav-cta {
  background: var(--forest);
  color: var(--ivory) !important;
  padding: 10px 22px !important;
  font-size: 0.875rem !important;
  margin-left: 8px;
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 4px 14px rgba(45, 74, 50, 0.18);
}
.nav-cta:hover { background: var(--forest-deep) !important; color: var(--ivory) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 860px) {
  .nav-wrap { height: 64px; }
  .logo-text .logo-sub { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .site-nav.open { max-height: 500px; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    align-items: stretch;
  }
  .site-nav li { width: 100%; }
  .site-nav a {
    display: block;
    padding: 0.875rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
    min-height: 48px;
    line-height: 1.5;
  }
  .site-nav li:nth-last-child(2) a { border-bottom: none; }
  .nav-cta {
    display: block !important;
    margin-top: 0.75rem !important;
    margin-left: 0 !important;
    text-align: center;
    padding: 14px 22px !important;
    font-size: 0.9375rem !important;
    min-height: 48px;
    line-height: 1.4;
  }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  min-height: 48px;
  transition: transform 0.16s ease, background 0.16s, color 0.16s, box-shadow 0.16s;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--forest);
  color: var(--ivory);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 4px 14px rgba(45, 74, 50, 0.18);
}
.btn-primary:hover { background: var(--forest-deep); color: var(--ivory); }

.btn-cream {
  background: var(--ivory);
  color: var(--text);
}
.btn-cream:hover { background: #fff; color: var(--text); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 243, 234, 0.6);
}
.btn-ghost:hover { background: rgba(245, 243, 234, 0.12); border-color: var(--ivory); color: var(--ivory); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--ivory); }

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

.btn-sm { padding: 10px 20px; font-size: 0.875rem; min-height: 40px; }
.btn-block { width: 100%; }

/* =============================================================
   PHOTO PLACEHOLDER (diagonal stripes + label pill)
   ============================================================= */
.photo-placeholder {
  position: relative;
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    135deg,
    var(--paper) 0px,
    var(--paper) 14px,
    #e3dccb 14px,
    #e3dccb 28px
  );
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  min-height: 200px;
}
.photo-placeholder::after {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.55);
  background: var(--ivory);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  text-align: center;
  max-width: 80%;
}

/* =============================================================
   OPEN/CLOSED STATUS BADGE
   ============================================================= */
.open-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  background: var(--status-open);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  transition: background 0.3s;
}
.open-status-badge .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  flex-shrink: 0;
}
.open-status-badge.is-open .live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.4;
  animation: status-pulse 1.8s ease-out infinite;
}
.open-status-badge.is-closing { background: var(--status-closing); }
.open-status-badge.is-closed { background: var(--status-closed); }
.open-status-badge.is-closed .live-dot { animation: none; }
.open-status-badge.is-closed .live-dot::after { display: none; }

@keyframes status-pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

.open-status-badge.compact {
  padding: 6px 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  border: none;
  background: transparent;
  color: var(--forest-bright);
  gap: 8px;
}
.open-status-badge.compact .live-dot { background: var(--forest-bright); }
.open-status-badge.compact.is-closing { color: var(--status-closing); background: transparent; }
.open-status-badge.compact.is-closing .live-dot { background: var(--status-closing); }
.open-status-badge.compact.is-closed { color: var(--status-closed); background: transparent; }
.open-status-badge.compact.is-closed .live-dot { background: var(--status-closed); }

@media (prefers-reduced-motion: reduce) {
  .open-status-badge .live-dot::after { animation: none !important; }
}

/* =============================================================
   HERO (homepage)
   ============================================================= */
.hero {
  position: relative;
  background: var(--hero-dark);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  text-align: left;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(87, 130, 74, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0f0a07 0%, #1a1410 50%, #2a1f17 100%);
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0) 0px, rgba(0,0,0,0.18) 1px, transparent 2px, transparent 4px,
      rgba(0,0,0,0.10) 5px, transparent 6px, transparent 13px,
      rgba(0,0,0,0.22) 14px, transparent 15px, transparent 24px),
    repeating-linear-gradient(90deg,
      rgba(255,200,140,0) 0px, rgba(180,120,70,0.05) 40px,
      transparent 80px, transparent 120px,
      rgba(120,80,50,0.06) 160px, transparent 200px);
  opacity: 0.55;
  mix-blend-mode: overlay;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 25%, rgba(255, 210, 150, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  /* keep horizontal padding/max-width from .container; only set vertical padding here */
  padding-top: clamp(72px, 12vh, 160px);
  padding-bottom: clamp(56px, 8vh, 120px);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.hero-eyebrow span { display: inline-flex; align-items: center; gap: 12px; }
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--forest-bright);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 11vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 14ch;
  color: var(--ivory);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-soft);
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  color: rgba(245, 243, 234, 0.82);
  max-width: 56ch;
  margin-bottom: 44px;
  margin-top: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  justify-content: flex-start;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
  padding: 22px 0;
  max-width: 760px;
  margin-bottom: 0;
  font-weight: 400;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.hero-meta-cell {
  padding: 6px 24px;
  border-right: 1px solid var(--rule-on-dark);
}
.hero-meta-cell:first-child { padding-left: 0; }
.hero-meta-cell:last-child { border-right: none; }
.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 6px;
}
.hero-meta-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
}
.hero-meta-value small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(245, 243, 234, 0.65);
  margin-top: 4px;
  font-weight: 400;
}
.hero-meta-value a { color: inherit; text-decoration: none; }
.hero-meta-value a:hover { color: var(--brass-soft); }

.hero-status {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 5;
  background: rgba(245, 243, 234, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 243, 234, 0.22);
  color: var(--ivory);
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 4rem 0 3rem;
    min-height: 70vh;
    text-align: left;
  }
  /* Mobile rule: remove the eyebrow line on homepage hero */
  .hero-eyebrow { display: none; }
  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .hero-sub { margin-bottom: 2rem; font-size: 1rem; }
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-meta {
    grid-template-columns: 1fr;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
  }
  .hero-meta-cell {
    padding: 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  /* override the desktop :first-child { padding-left: 0 } rule so labels never touch the viewport edge */
  .hero-meta-cell:first-child { padding-left: 1.5rem; }
  .hero-meta-cell:last-child { border-bottom: none; }
  .hero-status {
    top: auto;
    right: 1.25rem;
    bottom: auto;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    align-self: flex-start;
  }
  .hero-inner > .hero-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin: 0;
  }
}

/* =============================================================
   PAGE HERO (interior pages)
   ============================================================= */
.page-hero {
  position: relative;
  background: var(--hero-dark);
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  text-align: center;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(87, 130, 74, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0f0a07 0%, #1a1410 50%, #2a1f17 100%);
  z-index: 0;
}
.page-hero .hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0) 0px, rgba(0,0,0,0.18) 1px, transparent 2px, transparent 4px,
      rgba(0,0,0,0.10) 5px, transparent 6px, transparent 13px,
      rgba(0,0,0,0.22) 14px, transparent 15px, transparent 24px);
  opacity: 0.55;
  mix-blend-mode: overlay;
}
.page-hero .hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 25%, rgba(255, 210, 150, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}
.page-hero .container {
  position: relative;
  z-index: 3;
  padding-top: clamp(96px, 14vh, 160px);
  padding-bottom: clamp(72px, 10vh, 110px);
  text-align: center;
}
.page-hero .page-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.page-hero .page-eyebrow::before, .page-hero .page-eyebrow::after {
  content: "";
  width: 36px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin: 0 auto;
  color: var(--ivory);
}
.page-hero h1 em {
  font-style: italic;
  color: var(--brass-soft);
  font-weight: 300;
}
.page-hero p {
  margin: 28px auto 0;
  max-width: 56ch;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: rgba(245, 243, 234, 0.78);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .page-hero .container {
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
  }
  .page-hero h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .page-hero p { font-size: 1rem; margin-top: 1.25rem; }
}

/* =============================================================
   SECTIONS
   ============================================================= */
.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.section-alt {
  background: var(--paper);
}
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-ivory { background: var(--ivory); }

@media (max-width: 768px) {
  .section { padding: 2.5rem 0; }
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3rem;
  text-align: left;
  max-width: none;
}
.section-head h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--text);
}
.section-head h2 em {
  font-style: italic;
  color: var(--forest-bright);
  font-weight: 400;
}
.section-head p {
  text-align: right;
  max-width: 36ch;
  color: rgba(26, 20, 16, 0.65);
  font-size: 1rem;
  margin: 0;
}
.section-head .heading-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
  .section-head p { text-align: left; }
}

.narrow { max-width: 760px; margin: 0 auto; }
.narrow p { margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.7; }
.narrow h2 { color: var(--text); margin-bottom: 1.25rem; }
.narrow h2 em { font-style: italic; color: var(--forest-bright); }

/* =============================================================
   GRID UTILITIES
   ============================================================= */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =============================================================
   EMAIL CAPTURE BAND (homepage)
   ============================================================= */
.email-band {
  background: var(--ivory);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.email-band::before, .email-band::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 130, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.email-band::before { left: -100px; top: -100px; }
.email-band::after {
  right: -100px; bottom: -120px;
  background: radial-gradient(circle, rgba(193, 154, 75, 0.12) 0%, transparent 70%);
}

.email-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.email-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text);
}
.email-headline em {
  font-style: italic;
  color: var(--forest-bright);
  font-weight: 400;
}
.email-sub {
  margin-top: 1.25rem;
  color: rgba(26, 20, 16, 0.7);
  font-size: 1.0625rem;
  max-width: 44ch;
  line-height: 1.6;
}

.email-form-wrap {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
}
.email-form-wrap .form-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.email-form-wrap .form-eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: currentColor;
  display: inline-block;
}
.email-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.125rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.55);
}
.email-perks span { display: inline-flex; align-items: center; gap: 8px; }
.email-perks span::before {
  content: "✓";
  color: var(--forest-bright);
  font-weight: 700;
  font-family: var(--font-body);
}

@media (max-width: 880px) {
  .email-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}
@media (max-width: 768px) {
  .email-band { padding: 3rem 0; }
  .email-headline { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .email-form-wrap { padding: 1.25rem; }
}

/* =============================================================
   MENU FAVORITES (homepage)
   ============================================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .menu-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  /* Mobile rule: only show first card, hide the rest */
  .menu-grid > .menu-card:nth-child(n+2) { display: none; }
}

.menu-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 0;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(26, 20, 16, 0.25);
}
.menu-card .photo-placeholder {
  aspect-ratio: 4/3;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  min-height: 0;
}
.menu-card-body {
  padding: 1.75rem 1.625rem 1.875rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card .num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--forest-bright);
  margin-bottom: 0.75rem;
}
.menu-card h3 {
  font-size: 1.625rem;
  margin-bottom: 0.625rem;
  color: var(--text);
}
.menu-card p {
  color: rgba(26, 20, 16, 0.7);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.375rem;
}
.menu-card .price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1.125rem;
  border-top: 1px dashed var(--rule);
}
.menu-card .price-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.5);
}
.menu-card .price-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--forest);
}

.menu-grid-footer {
  text-align: center;
  margin-top: 3rem;
}
.menu-grid-mobile-link {
  display: none;
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .menu-grid-footer { margin-top: 1.5rem; }
  .menu-grid-mobile-link { display: block; }
}

/* =============================================================
   CATERING BAND (homepage)
   ============================================================= */
.catering-band {
  position: relative;
  background: var(--forest);
  color: var(--ivory);
  overflow: hidden;
}
.catering-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(245, 243, 234, 0.04) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(245, 243, 234, 0.04) 0 1px, transparent 1px 4px),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(193, 154, 75, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.catering-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
  z-index: 1;
}
.catering-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: var(--ivory);
}
.catering-headline em {
  font-style: italic;
  color: var(--brass-soft);
  font-weight: 400;
}
.catering-sub {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(245, 243, 234, 0.78);
  max-width: 50ch;
}
.catering-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1.75rem;
}
.catering-list li {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-soft);
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--rule-on-dark);
}
.catering-list li::before {
  content: "→";
  color: var(--brass);
}
.catering-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.catering-note {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 243, 234, 0.55);
}
.catering-note a { color: inherit; border-bottom: 1px solid rgba(245, 243, 234, 0.3); }
.catering-note a:hover { color: var(--brass-soft); }

.catering-card {
  position: relative;
  background: var(--ivory);
  color: var(--text);
  padding: 2.75rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
  transform: rotate(-1deg);
}
.catering-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.catering-card .stamp {
  position: absolute;
  top: -20px;
  right: 24px;
  background: var(--brass);
  color: var(--espresso);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  transform: rotate(3deg);
}
.catering-card h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.catering-card .lead {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.catering-card .pkg {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px dashed var(--rule);
  gap: 1rem;
}
.catering-card .pkg:last-of-type { border-bottom: 1px dashed var(--rule); }
.catering-card .pkg-name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
}
.catering-card .pkg-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: rgba(26, 20, 16, 0.55);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.catering-card .pkg-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--forest);
  white-space: nowrap;
}
.catering-card .lead-time {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.5);
  text-align: center;
}

/* Mobile catering simplification */
.catering-card-mobile-summary { display: none; }

@media (max-width: 960px) {
  .catering-grid { grid-template-columns: 1fr; gap: 3rem; }
  .catering-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .catering-grid { padding: 3rem 1.5rem; gap: 2rem; }
  .catering-list { display: none; }
  /* Mobile rule: collapse pricing card to single summary line */
  .catering-card .pkg,
  .catering-card .lead-time,
  .catering-card .stamp {
    display: none;
  }
  .catering-card { transform: none; padding: 1.75rem 1.5rem; margin: 1.5rem; }
  .catering-card-mobile-summary {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(26, 20, 16, 0.7);
    line-height: 1.7;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--rule);
  }
  .catering-card-mobile-summary .request-quote-mobile {
    display: block;
    margin-top: 1rem;
  }
  .catering-headline { font-size: clamp(2rem, 8vw, 2.75rem); }
}

/* =============================================================
   TESTIMONIALS (homepage)
   ============================================================= */
.testimonials {
  background: var(--cream);
}
.testimonials .grid-2 { gap: 2rem; }

.quote {
  position: relative;
  padding: 2.75rem 2.5rem 2.25rem;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: 4px;
  border-left: 1px solid var(--rule);
  margin: 0;
}
.quote .qmark {
  position: absolute;
  top: -8px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 5.75rem;
  line-height: 1;
  font-style: italic;
  color: var(--forest-bright);
  font-weight: 400;
}
.quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text);
  font-style: normal;
}
.quote .stars {
  margin-top: 1.375rem;
  color: var(--brass);
  letter-spacing: 4px;
  font-size: 0.875rem;
}
.quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.55);
}

@media (max-width: 768px) {
  .testimonials .grid-2 { gap: 1.25rem; }
  /* Mobile rule: 2 quotes max */
  .testimonials .grid-2 > .quote:nth-child(n+3) { display: none; }
  .quote { padding: 2rem 1.5rem 1.5rem; }
  .quote p { font-size: 1.125rem; }
  .quote .qmark { font-size: 4.5rem; left: 18px; }
}

/* =============================================================
   LOCATIONS GRID
   ============================================================= */
.locations {
  background: var(--paper);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 880px) { .loc-grid { grid-template-columns: 1fr; } }

.loc-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.loc-photo {
  aspect-ratio: 16/9;
  position: relative;
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    45deg,
    #d8d1bf 0px, #d8d1bf 14px,
    #e6dfcc 14px, #e6dfcc 28px
  );
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--rule);
}
.loc-photo .city-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--espresso);
  color: var(--ivory);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
}
.loc-photo .est-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(26, 20, 16, 0.6);
  background: rgba(245, 243, 234, 0.88);
  padding: 6px 14px;
  border-radius: 999px;
}
.loc-photo::after {
  content: attr(data-photo-label);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.45);
  background: var(--ivory);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  text-align: center;
}

.loc-body { padding: 2rem 2rem 2rem; }
.loc-body h3 {
  font-size: 2.25rem;
  margin-bottom: 4px;
  color: var(--text);
}
.loc-body .loc-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-bright);
  margin-bottom: 1.375rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.loc-body .loc-tag::before {
  content: "—";
  display: inline-block;
}
.loc-info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.loc-info-row:last-of-type { border-bottom: 1px solid var(--rule); }
.loc-info-row dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.55);
  padding-top: 2px;
  margin: 0;
}
.loc-info-row dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
}
.loc-info-row dd a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.loc-info-row dd a:hover { border-color: var(--forest); }

.loc-actions {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .loc-body { padding: 1.5rem 1.25rem; }
  .loc-body h3 { font-size: 1.75rem; }
  .loc-info-row { grid-template-columns: 90px 1fr; gap: 12px; padding: 12px 0; }
  .loc-actions .btn { flex: 1; justify-content: center; }
}

/* =============================================================
   MENU PAGE — categories
   ============================================================= */
.menu-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
/* Desktop: switch to a 6-track grid so the orphaned bottom row of two cards
   can be visually centered. Each cat-card spans 2 tracks (same effective width
   as the 3-column layout); card #4 starts at track 2 so cards 4 + 5 occupy
   tracks 2–5 — leaving an equal empty track on each side. */
@media (min-width: 961px) {
  .menu-page-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .menu-page-grid > .cat-card {
    grid-column: span 2;
  }
  .menu-page-grid > .cat-card:nth-of-type(4) {
    grid-column: 2 / span 2;
  }
  .menu-page-grid > .cat-card.cat-feature {
    grid-column: 1 / -1;
  }
}
@media (max-width: 960px) { .menu-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) { .menu-page-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(26, 20, 16, 0.25);
}
.cat-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--forest-bright);
  margin-bottom: 1.75rem;
}
.cat-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.cat-card p {
  color: rgba(26, 20, 16, 0.7);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.375rem;
}
.cat-tag {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.5);
  padding-top: 1.125rem;
  border-top: 1px dashed var(--rule);
}

.cat-card.cat-feature {
  grid-column: 1 / -1;
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.cat-card.cat-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(245, 243, 234, 0.04) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(245, 243, 234, 0.04) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.cat-card.cat-feature > * { position: relative; z-index: 1; }
.cat-card.cat-feature .cat-num { color: var(--brass-soft); margin-bottom: 1rem; }
.cat-card.cat-feature .cat-icon {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
}
.cat-card.cat-feature h3 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--ivory);
  margin: 0.875rem 0 0.625rem;
}
.cat-card.cat-feature h3 em {
  font-style: italic;
  color: var(--brass-soft);
}
.cat-card.cat-feature p {
  color: rgba(245, 243, 234, 0.8);
  font-size: 1.0625rem;
  margin-bottom: 0;
  max-width: 50ch;
}
.cat-feature-meta {
  margin-top: 1.125rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 234, 0.6);
}
.cat-feature-meta a { color: inherit; border-bottom: 1px solid rgba(245, 243, 234, 0.3); }

@media (max-width: 880px) {
  .cat-card.cat-feature {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.75rem;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cat-card { padding: 1.75rem 1.5rem; }
  .cat-card h3 { font-size: 1.5rem; }
}

/* =============================================================
   GOOD-TO-KNOWS STRIP (Menu page)
   ============================================================= */
.gtk-band {
  background: var(--paper);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.gtk-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gtk-head h2 {
  margin-top: 1.125rem;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}
.gtk-head h2 em {
  font-style: italic;
  color: var(--forest-bright);
}
.gtk-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.gtk-item {
  padding: 2rem;
  border-right: 1px solid var(--rule);
}
.gtk-item:last-child { border-right: none; }
.gtk-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-bright);
  margin-bottom: 0.875rem;
}
.gtk-item h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.gtk-item p {
  font-size: 0.875rem;
  color: rgba(26, 20, 16, 0.65);
  line-height: 1.5;
}
.gtk-item p a { color: var(--forest); border-bottom: 1px solid var(--rule); }

@media (max-width: 880px) {
  .gtk-list { grid-template-columns: 1fr; }
  .gtk-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .gtk-item:last-child { border-bottom: none; }
}

/* =============================================================
   ORDER / CTA BAND (interior pages)
   ============================================================= */
.cta-band, .order-band {
  background: var(--forest);
  color: var(--ivory);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .order-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(245, 243, 234, 0.04) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(245, 243, 234, 0.04) 0 1px, transparent 1px 4px),
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(193, 154, 75, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > *, .order-band > * { position: relative; }

.cta-inner, .order-inner {
  text-align: center;
}
.cta-band h2, .order-band h2 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  margin: 1.375rem 0 1.375rem;
  color: var(--ivory);
}
.cta-band h2 em, .order-band h2 em {
  font-style: italic;
  color: var(--brass-soft);
}
.cta-band p, .order-band p {
  max-width: 48ch;
  margin: 0 auto 2rem;
  color: rgba(245, 243, 234, 0.78);
  font-size: 1.125rem;
}
.cta-band .ctas, .order-band .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-band, .order-band { padding: 3rem 0; }
  .cta-band h2, .order-band h2 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .cta-band .ctas, .order-band .ctas { flex-direction: column; }
  .cta-band .ctas .btn, .order-band .ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================================
   ABOUT — STORY SECTION
   ============================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.story-text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(26, 20, 16, 0.85);
  margin-bottom: 1.375rem;
}
.story-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.85;
  font-weight: 400;
  color: var(--forest);
  float: left;
  padding: 6px 14px 0 0;
}
.story-text strong { font-weight: 600; color: var(--text); }

.story-portrait {
  position: sticky;
  top: 100px;
  border: 12px solid var(--ivory);
  outline: 1px solid var(--rule);
  box-shadow: 0 30px 60px -25px rgba(26, 20, 16, 0.3);
  background: var(--ivory);
}
.story-portrait .photo-placeholder {
  aspect-ratio: 4/5;
  border: none;
  border-radius: 0;
}
.story-portrait .pull-quote {
  position: absolute;
  bottom: -28px;
  left: -28px;
  right: 40px;
  background: var(--forest);
  color: var(--ivory);
  padding: 1.75rem 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  line-height: 1.25;
  box-shadow: 0 14px 30px -10px rgba(26, 20, 16, 0.4);
}
.story-portrait .pull-quote::before {
  content: "—";
  display: block;
  color: var(--brass-soft);
  margin-bottom: 8px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

@media (max-width: 960px) {
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-portrait { position: static; }
}
@media (max-width: 768px) {
  .story-grid { gap: 2rem; }
  .story-portrait { border-width: 8px; max-width: 360px; margin: 0 auto; }
  /* Mobile rule: hide pull quote overlay */
  .story-portrait .pull-quote { display: none; }
  .story-text p:first-of-type::first-letter { font-size: 3rem; }
}

/* =============================================================
   ABOUT — VALUES GRID
   ============================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.val-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2.25rem 1.875rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.val-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(26, 20, 16, 0.22);
}
.val-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--forest-bright);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.val-num .val-counter {
  color: rgba(26, 20, 16, 0.35);
  letter-spacing: 0.16em;
}
.val-card h4 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.val-card h4 em {
  font-style: italic;
  color: var(--forest);
}
.val-card p {
  color: rgba(26, 20, 16, 0.7);
  font-size: 0.90625rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.val-rule {
  margin-top: auto;
  height: 1px;
  background: var(--rule);
  position: relative;
}
.val-rule::after {
  content: "";
  position: absolute;
  left: 0; top: -3px;
  width: 28px; height: 5px;
  background: var(--forest-bright);
  border-radius: 1px;
}

@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .values-grid { grid-template-columns: 1fr; } }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 2.5rem 2.25rem;
}
.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text);
}
.contact-info-card .ci-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-bright);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-info-card .ci-tag::before {
  content: "—";
  display: inline-block;
}
.info-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.info-block:last-of-type { border-bottom: 1px solid var(--rule); }
.info-block h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.55);
  font-weight: 500;
  margin: 0;
  padding-top: 2px;
}
.info-block p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
}
.info-block p a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.info-block p a:hover { border-color: var(--forest); color: var(--forest); }

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

#form h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text);
}
#form > p {
  color: rgba(26, 20, 16, 0.65);
  margin-bottom: 1.25rem;
}

.contact-form-wrap, #booking {
  background: #fff;
  border: 1.5px dashed var(--forest-bright);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 1rem;
}
.contact-form-wrap::before, #booking::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--rule);
  pointer-events: none;
  border-radius: 2px;
}
.form-placeholder-hint {
  position: relative;
  z-index: 1;
}
.form-placeholder-hint p {
  color: rgba(26, 20, 16, 0.65);
  margin-bottom: 0.5rem;
}
.form-placeholder-hint p strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  display: inline-block;
  margin-bottom: 0.25rem;
}
.form-placeholder-hint p:last-child {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.55);
}
.form-placeholder-hint p:last-child a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--forest-bright);
}

#booking { margin-top: 2rem; min-height: 420px; }
#booking h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1.125rem;
  color: var(--text);
}
#booking h2 em { font-style: italic; color: var(--forest-bright); }
#booking > p {
  color: rgba(26, 20, 16, 0.7);
  margin-bottom: 0;
  max-width: 50ch;
  font-size: 1.0625rem;
}
#booking .form-placeholder-hint {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  width: 100%;
  max-width: 480px;
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .contact-info-card { padding: 1.75rem 1.5rem; }
  .info-block { grid-template-columns: 95px 1fr; gap: 12px; padding: 0.875rem 0; }
  .contact-form-wrap, #booking { padding: 2rem 1.25rem; min-height: 280px; }
  .contact-actions .btn { flex: 1; justify-content: center; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 5rem 0 2.5rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-on-dark);
  margin-bottom: 0;
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--ivory);
}
.footer-brand h4 em {
  font-style: italic;
  color: var(--brass-soft);
  font-weight: 300;
}
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--brass-soft);
  margin: 0;
  line-height: 1.4;
}
.footer-col h5, .site-footer h5 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 0 0 1rem;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.625rem;
}
.footer-col li {
  font-size: 0.875rem;
  color: rgba(245, 243, 234, 0.78);
  line-height: 1.5;
}
.footer-col a {
  color: rgba(245, 243, 234, 0.78);
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-col a:hover { color: var(--ivory); text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 243, 234, 0.5);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .site-footer { padding: 3rem 0 1.5rem; }
  /* Mobile rule: collapse to single column, hide site nav column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
  }
  .footer-col-site { display: none; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 1.25rem;
  }
}

/* =============================================================
   FALLBACK / LEGACY HOOKS (preserve existing class behavior)
   ============================================================= */
.feature {
  background: var(--ivory);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--forest-bright);
}
.feature h4 { margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.95rem; }

.note-box {
  background: var(--ivory);
  border-left: 4px solid var(--forest-bright);
  border-radius: 8px;
  padding: 1.75rem;
  max-width: 760px;
  margin: 0 auto;
}
.note-box h3 { color: var(--text); margin-bottom: 0.75rem; }
.note-box ul { padding-left: 1.25rem; }
.note-box li { margin-bottom: 0.5rem; }

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-teaser-img img {
  border-radius: 4px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-alt);
}
@media (max-width: 800px) {
  .about-teaser { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* =============================================================
   ACCESSIBILITY
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
