/*
Theme Name: Fleurieu Editorial Earth
Theme URI: https://fleurieufoodandwine.com.au/
Description: Editorial Earth child theme of Kadence for Fleurieu Food and Wine. Bundles the locked design system (paper / olive / terracotta palette, Fraunces + Inter typography, square-cornered editorial layout). Full editorial header and footer are template parts. Site-wide tokens, component CSS, accessibility utilities, and the Editorial page template all live here so individual pages contain only their own content.
Author: Fleurieu Food and Wine
Author URI: https://fleurieufoodandwine.com.au/
Template: kadence
Version: 1.8.2
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fleurieu-editorial-earth
Tags: food, restaurant, e-commerce, custom-colors, custom-menu, custom-logo
*/

/* ========================================
   EDITORIAL EARTH - Design System Tokens
   ======================================== */
:root {
  /* Palette - WCAG AA verified */
  --paper: #f5efe4;
  --paper-warm: #ede4d2;
  --paper-deep: #e2d6bd;
  --ink: #2a1f15;
  --ink-deep: #1a1308;
  --olive-deep: #3d4a2a;
  --olive: #5a6b3e;
  --terracotta: #b85c38;          /* Headlines and decorative only */
  --terracotta-text: #9a4827;     /* CTAs, body accents - WCAG AA */
  --black: #000000;               /* Header background */
  --rule: rgba(42, 31, 21, 0.32);
  --rule-soft: rgba(42, 31, 21, 0.22);
  --rule-on-dark: rgba(245, 239, 228, 0.22);

  /* Spacing - 4/8 system */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Type scale */
  --t-12: 12px;
  --t-13: 13px;
  --t-14: 14px;
  --t-15: 15px;
  --t-16: 16px;
  --t-17: 17px;
  --t-18: 18px;
  --t-19: 19px;
  --t-21: 21px;
  --t-24: 24px;

  /* Layered z-index */
  --z-header: 50;
  --z-banner: 60;
  --z-skip: 100;
}

/* ========================================
   RESET AND BASE
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: var(--t-17);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Paper grain - 22% per accessibility spec */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0 0.1 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   ACCESSIBILITY UTILITIES
   ======================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-nav {
  position: absolute;
  top: -100px;
  left: var(--s-4);
  background: var(--olive-deep);
  color: var(--paper);
  padding: var(--s-3) var(--s-5);
  font-size: var(--t-14);
  font-weight: 500;
  text-decoration: none;
  z-index: var(--z-skip);
  transition: top 0.15s ease-out;
}
.skip-nav:focus {
  top: var(--s-4);
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* Focus rings - universal */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* 1.6 - Header + footer dark surfaces use paper outline for contrast */
.site-header :focus-visible,
.site-footer :focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

/* Remove default focus ring only when :focus-visible is supported */
:focus:not(:focus-visible) { outline: none; }

.wrap { position: relative; z-index: 2; }

/* ========================================
   ANNOUNCEMENT BANNER - Jackson Square
   ======================================== */
.announcement {
  background: var(--olive-deep);
  color: var(--paper);
  text-align: center;
  padding: var(--s-3) var(--s-5);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-14);
  font-weight: 500;
  position: relative;
  z-index: var(--z-banner);
}

.announcement a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  margin-left: var(--s-2);
}

.announcement a:hover { text-decoration-thickness: 2px; }

/* ========================================
   GLOBAL HEADER - BLACK
   ======================================== */
.site-header {
background: var(--black) !important;
background-color: var(--black) !important;
color: var(--paper);
padding: var(--s-4) var(--s-7);
position: sticky; top: 0; z-index: var(--z-header);
border-bottom: 1px solid rgba(245, 239, 228, 0.1);
/* Stay opaque when sticky during scroll */
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

/* Logo slot - currently using live-site logo with embedded background.
   The padded white container provides a clean frame for the coloured-bg logo on the black header.
   When a transparent or white-on-transparent logo is provided, remove the background and padding. */
.logo {
  display: inline-block; text-decoration: none; flex-shrink: 0;
  background: transparent; padding: 0; border-radius: 0;
}
.logo:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.logo img { display: block; height: 56px; width: auto; max-width: 240px; }

/* (Logo fallback CSS removed - now using live image) */

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: var(--s-7);
  align-items: center;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-15);
  color: var(--paper);
  text-decoration: none;
  font-weight: 500;
  padding: var(--s-2) 0;
  transition: color 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  min-height: 44px;
}

.nav-list > li > a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-arrow {
  display: inline-block;
  font-size: 12px;
  transition: transform 0.2s ease;
}
.has-mega:hover .nav-arrow,
.has-mega:focus-within .nav-arrow {
  transform: rotate(180deg);
}

/* Active page indicator - colour + underline (not colour alone) */
.nav-list > li > a[aria-current="page"] {
  color: var(--terracotta);
}
.nav-list > li > a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--terracotta);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + var(--s-3));
  left: 0;
  background: var(--ink);
  border: 1px solid rgba(245, 239, 228, 0.15);
  padding: var(--s-6);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  min-width: 600px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  z-index: 100;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  display: grid;
}

.mega-col { min-width: 250px; }

.mega-heading {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(245, 239, 228, 0.15);
}

.mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.mega-list a {
  display: block;
  padding: var(--s-3) var(--s-3);
  text-decoration: none;
  color: var(--paper);
  transition: background 0.15s ease;
  border-radius: 2px;
  min-height: 44px;
}
.mega-list a:hover, .mega-list a:focus-visible {
  background: rgba(245, 239, 228, 0.06);
}
.mega-list a strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: var(--t-17);
  line-height: 1.2;
  margin-bottom: 2px;
}
.mega-list a span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: var(--t-13);
  color: var(--paper);
  opacity: 0.7;
  line-height: 1.4;
}

/* Search icon */
.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  transition: color 0.2s ease;
}
.nav-search:hover { color: var(--paper); }

/* Primary CTA in header - pill, the only rounded button in the system.
   Editorial Earth is square-cornered by default; this pill is a deliberate
   exception so the persistent Book Now action reads as "always available". */
.nav-actions { display: inline-flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.nav-cta, .nav-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: var(--s-3) var(--s-5);
  text-decoration: none; font-family: 'Inter', sans-serif;
  font-size: var(--t-12); letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
  border-radius: 999px; min-height: 44px; border: 1px solid;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.nav-cta { background: var(--terracotta-text); color: var(--paper); border-color: var(--terracotta-text); }
.nav-cta:hover { background: var(--paper); border-color: var(--paper); color: var(--terracotta-text); }
.nav-cta-secondary { background: transparent; color: var(--paper); border-color: rgba(245, 239, 228, 0.5); }
.nav-cta-secondary:hover { background: var(--paper); color: var(--ink-deep); border-color: var(--paper); }
@media (max-width: 760px) { .nav-cta-secondary { display: none; } }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(245, 239, 228, 0.4);
  color: var(--paper);
  padding: var(--s-2) var(--s-4);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-13);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}
.nav-toggle:hover { background: rgba(245, 239, 228, 0.08); }

@media (max-width: 1100px) {
  .nav-list { gap: var(--s-5); }
  .mega-menu { left: auto; right: 0; }
}

@media (max-width: 980px) {
  .site-header { padding: var(--s-4) var(--s-5); }
  .nav-list { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: var(--s-9) var(--s-7) var(--s-9);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 768px) {
  .hero { padding: var(--s-8) var(--s-5) var(--s-8); }
}

.hero-eyebrow {
  font-size: var(--t-12);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: var(--s-5);
  font-weight: 600;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '\25C8';
  margin: 0 var(--s-3);
  color: var(--olive);
  font-size: var(--t-12);
  opacity: 0.7;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--olive-deep);
  margin-bottom: var(--s-5);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.hero-deck {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.92;
  max-width: 640px;
  margin: 0 auto var(--s-7);
}

.hero-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons - 44px min, AA contrast verified */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4) var(--s-7);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  min-height: 48px;
  min-width: 44px;
}

.btn-primary {
  background: var(--terracotta-text);
  color: var(--paper);
  border-color: var(--terracotta-text);
}
.btn-primary:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--paper);
}

.btn-secondary {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--olive-deep);
}
.btn-secondary:hover {
  background: var(--olive-deep);
  color: var(--paper);
}

.hero-trust {
  margin-top: var(--s-7);
  font-family: 'Fraunces', serif;
  font-size: var(--t-16);
  color: var(--ink);
  opacity: 0.85;
}
.hero-trust strong {
  font-weight: 600;
  color: var(--olive-deep);
  opacity: 1;
}

/* ========================================
   SECTION PRIMITIVES
   ======================================== */
.section {
  padding: var(--s-9) var(--s-7);
  max-width: 1320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section { padding: var(--s-8) var(--s-5); }
}

.section-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: var(--t-14);
  color: var(--terracotta-text);
  margin-bottom: var(--s-2);
  font-weight: 500;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--olive-deep);
  margin-bottom: var(--s-4);
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

.section-deck {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-18);
  line-height: 1.6;
  max-width: 660px;
  color: var(--ink);
  opacity: 0.92;
  margin-bottom: var(--s-7);
}

/* ========================================
   ADELAIDE FEATURE - Jackson Square
   ======================================== */
.adelaide-feature {
  background: var(--paper-warm);
  padding: var(--s-9) var(--s-7);
}
@media (max-width: 768px) {
  .adelaide-feature { padding: var(--s-8) var(--s-5); }
}

.adelaide-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}

@media (max-width: 880px) {
  .adelaide-inner { grid-template-columns: 1fr; gap: var(--s-7); }
}

.adelaide-text .section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  font-style: normal;
  font-weight: 600;
  margin-bottom: var(--s-4);
}

.adelaide-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--olive-deep);
  margin-bottom: var(--s-4);
}
.adelaide-text h2 em { font-style: italic; color: var(--terracotta); }

.adelaide-text p {
  font-family: 'Fraunces', serif;
  font-size: var(--t-17);
  line-height: 1.65;
  margin-bottom: var(--s-3);
  opacity: 0.92;
}

.adelaide-image {
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.adelaide-image .placeholder {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: var(--t-13);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.4;
  text-align: center;
}

/* ========================================
   UPCOMING CLASSES
   ======================================== */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-6);
}

.class-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.class-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -25px rgba(42, 31, 21, 0.35);
}
.class-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.class-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--paper-warm), var(--paper-deep));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.class-img-glyph {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 88px;
  color: var(--olive-deep);
  opacity: 0.2;
}
.class-status {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  background: var(--paper);
  color: var(--terracotta-text);
  padding: var(--s-2) var(--s-3);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.class-status.sold-out { background: var(--ink); color: var(--paper); }
.class-status.limited { background: var(--terracotta-text); color: var(--paper); }

.class-body {
  padding: var(--s-6) var(--s-6) var(--s-7);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.class-date {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-16);
  color: var(--terracotta-text);
  margin-bottom: var(--s-2);
}
.class-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: var(--t-24);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.class-name em { font-style: italic; color: var(--terracotta); }
.class-venue {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-13);
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.class-desc {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-16);
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: var(--s-6);
  flex: 1;
}
.class-link {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--terracotta-text);
  padding-bottom: var(--s-1);
  align-self: flex-start;
}
.class-link:hover { color: var(--olive-deep); border-color: var(--olive-deep); }

.classes-cta {
  text-align: center;
  margin-top: var(--s-8);
}

/* ========================================
   STORY SECTION
   ======================================== */
.story {
  background: var(--paper-warm);
  padding: var(--s-9) var(--s-7);
}
@media (max-width: 768px) {
  .story { padding: var(--s-8) var(--s-5); }
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}

@media (max-width: 880px) {
  .story-inner { grid-template-columns: 1fr; gap: var(--s-7); }
}

.story-image {
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-image-glyph {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 120px;
  color: var(--olive-deep);
  opacity: 0.18;
}

.story-text p {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-17);
  line-height: 1.7;
  margin-bottom: var(--s-4);
  opacity: 0.92;
}
.story-text p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--terracotta);
}
.story-signoff {
  margin-top: var(--s-5);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: var(--t-17);
  color: var(--olive-deep);
}

/* ========================================
   CLASS TYPES GRID
   ======================================== */
.class-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4px;
}
.class-type {
  background: var(--paper);
  padding: var(--s-6) var(--s-5) var(--s-6);
  border: 1px solid var(--rule);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  min-height: 200px;
}
.class-type:hover {
  background: var(--olive-deep);
  color: var(--paper);
  border-color: var(--olive-deep);
}
.class-type:hover .class-type-glyph,
.class-type:hover .class-type-tag { color: var(--paper); }
.class-type:hover .class-type-tag { opacity: 0.85; }
.class-type:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: -3px;
}

.class-type-glyph {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 42px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--s-4);
  display: block;
  transition: color 0.3s ease;
}
.class-type-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: var(--t-21);
  line-height: 1.2;
  margin-bottom: var(--s-2);
}
.class-type-tag {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  font-weight: 600;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* ========================================
   REVIEWS - dark olive
   ======================================== */
.reviews {
  background: var(--olive-deep);
  color: var(--paper);
  padding: var(--s-9) var(--s-7);
}
@media (max-width: 768px) {
  .reviews { padding: var(--s-8) var(--s-5); }
}

.reviews-inner { max-width: 1320px; margin: 0 auto; }
.reviews .section-eyebrow { color: rgba(245, 239, 228, 0.75); }
.reviews .section-title { color: var(--paper); }
.reviews .section-deck { color: var(--paper); opacity: 0.9; }

.reviews-rating {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--rule-on-dark);
  flex-wrap: wrap;
}
.reviews-stars {
  font-size: var(--t-21);
  letter-spacing: 0.1em;
  color: var(--paper);
}
.reviews-count {
  font-family: 'Fraunces', serif;
  font-size: var(--t-17);
}
.reviews-count strong {
  font-weight: 600;
  color: var(--paper);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-6);
}
.review {
  border-top: 1px solid var(--rule-on-dark);
  padding-top: var(--s-5);
}
.review-quote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-17);
  line-height: 1.6;
  margin-bottom: var(--s-4);
  opacity: 0.95;
}
.review-name {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-13);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}

/* ========================================
   TRUST / AWARDS
   ======================================== */
.trust {
  padding: var(--s-8) var(--s-7);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 768px) {
  .trust { padding: var(--s-7) var(--s-5); }
}

.trust-eyebrow {
  font-size: var(--t-12);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: var(--s-5);
  font-weight: 600;
}
.trust-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--olive-deep);
  margin-bottom: var(--s-7);
  line-height: 1.2;
}
.trust-title em { font-style: italic; color: var(--terracotta); }

.trust-deck {
  font-family: 'Fraunces', serif;
  font-size: var(--t-17);
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: var(--s-7);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s-7);
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item { text-align: center; }
.trust-badge {
  width: 80px;
  height: 80px;
  background: var(--paper-warm);
  border: 1.5px solid var(--olive-deep);
  border-radius: 50%;
  margin: 0 auto var(--s-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--olive-deep);
}
.trust-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: var(--t-14);
  line-height: 1.4;
  color: var(--ink);
}
.trust-year {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-top: var(--s-1);
  font-weight: 600;
}

/* ========================================
   FEATURE CARDS
   ======================================== */
.feature-cards {
  background: var(--paper-warm);
  padding: var(--s-9) var(--s-7);
}
@media (max-width: 768px) {
  .feature-cards { padding: var(--s-8) var(--s-5); }
}

.feature-cards-inner { max-width: 1320px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-7);
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--s-7) var(--s-6);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -25px rgba(42, 31, 21, 0.35);
}
.feature-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
.feature-card-glyph {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 38px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--s-5);
}
.feature-card-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: var(--t-24);
  margin-bottom: var(--s-3);
  line-height: 1.2;
}
.feature-card-name em { font-style: italic; color: var(--terracotta); }
.feature-card-desc {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-16);
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: var(--s-5);
  flex: 1;
}
.feature-card-link {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  font-weight: 600;
  border-bottom: 1px solid var(--terracotta-text);
  padding-bottom: var(--s-1);
  align-self: flex-start;
}

/* ========================================
   TOURISM EXPERIENCE - day out, sustainability, accessibility
   ======================================== */
.experience {
  padding: var(--s-9) var(--s-7);
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .experience { padding: var(--s-8) var(--s-5); }
}

.experience-inner { max-width: 1100px; margin: 0 auto; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-7);
}

.experience-pillar {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.experience-pillar:hover {
  border-color: var(--olive-deep);
  transform: translateY(-2px);
}

.experience-glyph {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 44px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--s-5);
}

.experience-pillar-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: var(--t-24);
  line-height: 1.2;
  color: var(--olive-deep);
  margin-bottom: var(--s-4);
}
.experience-pillar-title em { font-style: italic; color: var(--terracotta); }

.experience-pillar-desc {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-16);
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: var(--s-5);
  flex: 1;
}

.experience-link {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--terracotta-text);
  padding-bottom: var(--s-1);
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.experience-link:hover {
  color: var(--olive-deep);
  border-color: var(--olive-deep);
}
.experience-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* ========================================
   FAQ - cascading accordion (reusable component)
   ======================================== */
.faqs {
  padding: var(--s-9) var(--s-7);
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faqs { padding: var(--s-8) var(--s-5); }
}

.faqs .section-eyebrow,
.faqs .section-title,
.faqs .section-deck {
  text-align: center;
}
.faqs .section-deck {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  border-top: 1px solid var(--rule);
  margin-top: var(--s-6);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background 0.25s ease;
}

.faq-item[open] {
  background: var(--paper-warm);
}

/* The clickable question - it's a real button for accessibility */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  width: 100%;
  padding: var(--s-6) var(--s-5);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: var(--t-19);
  line-height: 1.35;
  color: var(--olive-deep);
  text-align: left;
  min-height: 64px;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--terracotta-text); }
.faq-question:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: -2px;
}

.faq-question em { font-style: italic; color: var(--terracotta); }

.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--terracotta-text);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

/* Top accent stripe when open */
.faq-item[open] {
  box-shadow: inset 0 3px 0 0 var(--terracotta);
}

.faq-answer {
  padding: 0 var(--s-5) var(--s-6);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-17);
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.92;
  max-width: 720px;
}

.faq-answer p { margin-bottom: var(--s-3); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--terracotta-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover { color: var(--olive-deep); }

.faqs-cta {
  text-align: center;
  margin-top: var(--s-7);
}

/* ========================================
   PARTNERS LOGO STRIP
   ======================================== */
.partners {
  padding: var(--s-9) var(--s-7);
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
@media (max-width: 768px) {
  .partners { padding: var(--s-8) var(--s-5); }
}

.partners-inner { max-width: 1320px; margin: 0 auto; }

.partners-eyebrow {
  font-size: var(--t-12);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: var(--s-3);
  font-weight: 600;
}

.partners-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--olive-deep);
  margin-bottom: var(--s-3);
  line-height: 1.15;
}
.partners-title em { font-style: italic; color: var(--terracotta); }

.partners-deck {
  font-family: 'Fraunces', serif;
  font-size: var(--t-17);
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: var(--s-7);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s-5);
  margin-bottom: var(--s-7);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-3);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, background 0.25s ease;
  min-height: 130px;
  justify-content: center;
  border-radius: 2px;
}
.partner-logo:hover {
  background: var(--paper-warm);
  transform: translateY(-2px);
}
.partner-logo:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* Placeholder marks - replace with real partner logos when available */
.partner-mark {
  width: 64px;
  height: 64px;
  background: var(--paper-warm);
  border: 1.5px solid var(--olive-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: var(--t-15);
  color: var(--olive-deep);
  letter-spacing: 0.02em;
}

.partner-name {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.85;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

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

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  padding: var(--s-9) var(--s-7);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 768px) {
  .newsletter { padding: var(--s-8) var(--s-5); }
}

.newsletter-inner { max-width: 600px; margin: 0 auto; }

.newsletter h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--olive-deep);
  margin-bottom: var(--s-4);
  line-height: 1.15;
}
.newsletter h2 em { font-style: italic; color: var(--terracotta); }

.newsletter-deck {
  font-family: 'Fraunces', serif;
  font-size: var(--t-17);
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: var(--s-6);
}

.newsletter-form {
  display: flex;
  gap: var(--s-2);
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 540px) {
  .newsletter-form { flex-direction: column; }
}

.newsletter-input {
  flex: 1;
  padding: var(--s-4) var(--s-5);
  background: var(--paper);
  border: 1px solid var(--rule);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-15);
  color: var(--ink);
  min-height: 48px;
}
.newsletter-input:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 0;
  border-color: var(--terracotta-text);
}

/* ========================================
   FOOTER - BLACK to match header
   ======================================== */
.site-footer {
  background: var(--olive-deep); color: var(--paper);
  padding: var(--s-9) var(--s-7) var(--s-7);
  margin-top: var(--s-9);
}
@media (max-width: 768px) {
  .site-footer { padding: var(--s-8) var(--s-5) var(--s-5); }
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-7);
}

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--s-6); }
}

.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-24);
  margin-bottom: var(--s-3);
  line-height: 1.2;
}
.footer-brand-name em { font-style: italic; color: var(--terracotta); }
.footer-blurb {
  font-family: 'Fraunces', serif;
  font-size: var(--t-15);
  line-height: 1.6;
  opacity: 0.85;
  max-width: 320px;
}

.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--s-3); }
.footer-col a {
  font-family: 'Fraunces', serif;
  font-size: var(--t-16);
  color: var(--paper);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--paper);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-trust {
  border-top: 1px solid rgba(245, 239, 228, 0.18);
  padding-top: var(--s-6);
  margin-bottom: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-7);
  justify-content: center;
  align-items: center;
}
.footer-trust-item {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
  font-weight: 600;
}

.footer-acknowledgement {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: var(--t-14);
  line-height: 1.65;
  opacity: 0.85;
  max-width: 900px;
  margin: 0 auto var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(245, 239, 228, 0.18);
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 228, 0.18);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  opacity: 0.7;
}


/* ============================================================
   KADENCE PARENT CHROME STRIP - applied to body.editorial-page
   These rules hide Kadence's default header, footer, breadcrumbs,
   and container padding so the Editorial Earth chrome can take over.
   ============================================================ */
body.editorial-page {
  margin: 0; padding: 0;
  background: var(--paper); color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--t-17); line-height: 1.7;
}
body.editorial-page #page,
body.editorial-page .site-container,
body.editorial-page .site-content,
body.editorial-page .content-wrap,
body.editorial-page .entry-content,
body.editorial-page article.entry {
  padding: 0 !important; margin: 0 !important; max-width: none !important;
}
body.editorial-page #wrapper,
body.editorial-page .site,
body.editorial-page main { background: var(--paper); }
body.editorial-page #masthead,
body.editorial-page #colophon,
body.editorial-page > header.site-header.kadence-header,
body.editorial-page > footer.site-footer.kadence-footer,
body.editorial-page .kadence-breadcrumbs { display: none !important; }

/* Editorial-fragment opt-in for Kadence-built pages that want only typography */
body.editorial-page-fragment {
  background: var(--paper); color: var(--ink);
}
body.editorial-page-fragment h1,
body.editorial-page-fragment h2,
body.editorial-page-fragment h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  color: var(--olive-deep);
  letter-spacing: -0.015em; line-height: 1.15;
}
body.editorial-page-fragment h1 { font-weight: 300; }
body.editorial-page-fragment h1 em,
body.editorial-page-fragment h2 em { color: var(--terracotta); font-style: italic; }
body.editorial-page-fragment p,
body.editorial-page-fragment li {
  font-family: 'Fraunces', serif; font-size: var(--t-17);
  line-height: 1.65; opacity: 0.92;
}
body.editorial-page-fragment .wp-block-button__link,
body.editorial-page-fragment .button,
body.editorial-page-fragment input[type="submit"] {
  background: var(--terracotta-text); color: var(--paper);
  border: 1px solid var(--terracotta-text); border-radius: 0;
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
  padding: var(--s-4) var(--s-7); min-height: 48px;
}
body.editorial-page-fragment .wp-block-button__link:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--paper);
}


/* ============================================================
   v1.3.0 - BOOKING BLOCK + MEC CALENDAR + SECTIONS
   These were originally rendered per-page in the mockups; lifted
   here so the importer can inject them into class/venue pages
   without bundling 1000+ lines of CSS per page.
   ============================================================ */

/* Generic section helper used by the booking and MEC blocks */
.section {
  padding: var(--s-9) var(--s-7);
  position: relative;
}
.section--paper-warm { background: var(--paper-warm); }
.section--paper-deep { background: var(--paper-deep); }
.section .container {
  max-width: 1180px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  color: var(--olive-deep);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-4);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
.section-lead {
  font-family: 'Fraunces', serif;
  font-size: var(--t-19);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
  max-width: 60ch;
  margin-bottom: var(--s-6);
}

/* On-page booking block - the anchor target for every rezdy.com rewrite.
   This keeps the 2-click rule: see class -> click Book now -> land HERE,
   on a Rezdy widget embedded on the FFW domain (no external links). */
#book-now {
  scroll-margin-top: 96px; /* offset for sticky header when anchor-linked */
}
.rezdy-wrap {
  background: var(--paper);
  padding: var(--s-7);
  border: 1px solid var(--rule-soft);
  margin-top: var(--s-4);
  min-height: 200px;
}
.rezdy-wrap p { margin-bottom: var(--s-3); }
.rezdy-wrap .btn,
.rezdy-wrap .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3) var(--s-7);
  background: var(--terracotta-text);
  color: var(--paper);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: var(--t-12);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  min-height: 48px;
  border: 1px solid var(--terracotta-text);
  transition: background 0.15s ease, color 0.15s ease;
}
.rezdy-wrap .btn:hover,
.rezdy-wrap .btn-primary:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--paper);
}

/* MEC calendar wrapper used on the Cooking Classes hub */
.mec-wrap {
  background: var(--paper);
  padding: var(--s-6);
  border: 1px solid var(--rule-soft);
}
.mec-wrap .mec-event-title,
.mec-wrap h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  color: var(--olive-deep);
}
.mec-wrap a { color: var(--terracotta-text); }



/* ========================================================================
   PAGE-CONTENT STYLES - lifted from per-page mockup <head><style> blocks
   ========================================================================
   These rules style the content INSIDE <main> on imported pages: venue
   cards, FAQ accordions, class hero/breadcrumbs, shop product cards,
   info blocks, decorative glyphs, MEC placeholder, etc.

   Added 2026-05-18 to fix "page content unstyled after import" — the
   mu-plugin strips <head><style> during import (correct), so page-content
   selectors have to live in the theme stylesheet to survive.
   Rules deduped, scoped where possible to avoid Kadence conflicts.
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
@media (max-width: 760px) { .nav-cta-secondary { display: none; } }
@media (max-width: 768px) { .site-header { padding: var(--s-4) var(--s-5); } }
/* HERO */
  .page-hero {
    padding: var(--s-9) var(--s-7) var(--s-8);
    text-align: center;
    max-width: 1000px; margin: 0 auto;
    border-bottom: 1px solid var(--rule);
  }
@media (max-width: 768px) { .page-hero { padding: var(--s-8) var(--s-5) var(--s-7); } }
.breadcrumb {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--terracotta-text); margin-bottom: var(--s-5);
    font-weight: 600;
  }
.breadcrumb a { color: var(--terracotta-text); text-decoration: none; }
.breadcrumb a:hover { color: var(--olive-deep); }
.breadcrumb-sep { margin: 0 var(--s-2); opacity: 0.6; }
.page-hero-eyebrow {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-14); color: var(--terracotta-text);
    margin-bottom: var(--s-3); font-weight: 500;
  }
.page-hero h1 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.0; letter-spacing: -0.025em;
    color: var(--olive-deep); margin-bottom: var(--s-5);
  }
.page-hero h1 em { font-style: italic; color: var(--terracotta); }
.page-hero-deck {
    font-family: 'Fraunces', serif; font-size: var(--t-19);
    line-height: 1.6; opacity: 0.92;
    max-width: 720px; margin: 0 auto var(--s-6);
  }
.hero-action {
    display: inline-flex; align-items: center;
    padding: var(--s-3) var(--s-5);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12); letter-spacing: 0.24em;
    text-transform: uppercase; font-weight: 600;
    min-height: 44px;
    transition: background 0.2s ease, color 0.2s ease;
  }
.hero-action-primary {
    background: var(--terracotta-text); color: var(--paper);
    border: 1px solid var(--terracotta-text);
  }
.hero-action-primary:hover {
    background: var(--paper); color: var(--terracotta-text);
  }
.hero-action-secondary {
    background: transparent; color: var(--olive-deep);
    border: 1px solid var(--olive-deep);
  }
.hero-action-secondary:hover {
    background: var(--olive-deep); color: var(--paper);
  }
/* WHO WE ARE */
  .who-section {
    padding: var(--s-9) var(--s-7);
    max-width: 1080px; margin: 0 auto;
  }
@media (max-width: 768px) { .who-section { padding: var(--s-8) var(--s-5); } }
.who-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--s-8); align-items: start;
  }
@media (max-width: 768px) { .who-grid { grid-template-columns: 1fr; gap: var(--s-6); } }
.who-text h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.who-text h2 em { font-style: italic; color: var(--terracotta); }
.who-text p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.7; margin-bottom: var(--s-4);
  }
.who-text p:last-child { margin-bottom: 0; }
.who-text a {
    color: var(--terracotta-text); text-decoration: underline;
    text-underline-offset: 3px;
  }
.who-list {
    list-style: none; padding: 0;
  }
.who-list li {
    font-family: 'Fraunces', serif; font-size: var(--t-16);
    line-height: 1.55; margin-bottom: var(--s-4);
    padding-left: var(--s-5);
    position: relative;
  }
.who-list li::before {
    content: '';
    position: absolute; left: 0; top: 12px;
    width: 12px; height: 1px;
    background: var(--terracotta);
  }
.who-list strong {
    color: var(--olive-deep);
    font-weight: 600;
  }
/* TEAM SECTION */
  .team-section {
    padding: var(--s-9) var(--s-7);
    background: var(--paper-warm);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
@media (max-width: 768px) { .team-section { padding: var(--s-8) var(--s-5); } }
.team-inner { max-width: 1320px; margin: 0 auto; }
.team-heading {
    text-align: center; max-width: 720px;
    margin: 0 auto var(--s-8);
  }
.team-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.team-heading h2 em { font-style: italic; color: var(--terracotta); }
.team-heading p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
  }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-6);
  }
.team-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    display: flex; flex-direction: column;
  }
.team-card-image {
    width: 100%; aspect-ratio: 4 / 3;
    background: var(--paper-deep);
    display: flex; align-items: center; justify-content: center;
    color: var(--olive);
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-13); opacity: 0.6;
    overflow: hidden;
  }
.team-card-glyph {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 96px; line-height: 1;
    color: var(--olive-deep); opacity: 0.45;
  }
.team-card-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
.team-card-body { padding: var(--s-6) var(--s-5); flex: 1; }
.team-card-role {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--terracotta-text); font-weight: 600;
    margin-bottom: var(--s-2);
  }
.team-card-name {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: var(--t-24); line-height: 1.15;
    color: var(--olive-deep); margin-bottom: var(--s-3);
    letter-spacing: -0.01em;
  }
.team-card-bio {
    font-family: 'Fraunces', serif; font-size: var(--t-15);
    line-height: 1.65; opacity: 0.9;
    margin-bottom: var(--s-3);
  }
.team-card-bio p { margin-bottom: var(--s-3); }
.team-card-bio p:last-child { margin-bottom: 0; }
/* ETHOS - dark olive band */
  .ethos-section {
    padding: var(--s-9) var(--s-7);
    background: var(--olive-deep);
    color: var(--paper);
    text-align: center;
  }
@media (max-width: 768px) { .ethos-section { padding: var(--s-8) var(--s-5); } }
.ethos-inner { max-width: 760px; margin: 0 auto; }
.ethos-inner .section-eyebrow {
    color: var(--terracotta);
  }
.ethos-section h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 5vw, 52px); line-height: 1.1;
    margin-bottom: var(--s-5);
    letter-spacing: -0.015em;
  }
.ethos-section h2 em { font-style: italic; color: var(--terracotta); }
.ethos-section p {
    font-family: 'Fraunces', serif; font-size: var(--t-19);
    line-height: 1.65; opacity: 0.94;
    margin-bottom: var(--s-4);
  }
.ethos-section p:last-child { margin-bottom: 0; }
.ethos-section em { font-style: italic; }
/* WHAT WE DO TABLE */
  .what-section {
    padding: var(--s-9) var(--s-7);
    max-width: 1100px; margin: 0 auto;
  }
@media (max-width: 768px) { .what-section { padding: var(--s-8) var(--s-5); } }
.what-heading {
    text-align: center; margin-bottom: var(--s-7);
    max-width: 720px; margin-left: auto; margin-right: auto;
  }
.what-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.what-heading h2 em { font-style: italic; color: var(--terracotta); }
.what-heading p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
  }
/* Responsive table that becomes cards on mobile */
  .what-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
  }
.what-table thead { background: var(--paper-warm); }
.what-table th {
    text-align: left;
    padding: var(--s-4) var(--s-5);
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--olive-deep);
    border-bottom: 1px solid var(--rule);
  }
.what-table td {
    padding: var(--s-5);
    border-bottom: 1px solid var(--rule-soft);
    vertical-align: top;
    font-family: 'Fraunces', serif;
    font-size: var(--t-16);
    line-height: 1.6;
  }
.what-table tr:last-child td { border-bottom: none; }
.what-table td:first-child { font-weight: 600; color: var(--olive-deep); }
.what-table a {
    color: var(--terracotta-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
  }
.what-table a:hover { color: var(--olive-deep); }
@media (max-width: 768px) {
    .what-table, .what-table tbody, .what-table tr, .what-table td { display: block; width: 100%; }
    .what-table thead { display: none; }
    .what-table tr {
      border: 1px solid var(--rule);
      margin-bottom: var(--s-4);
      background: var(--paper);
    }
    .what-table td {
      padding: var(--s-3) var(--s-4);
      border-bottom: 1px solid var(--rule-soft);
    }
    .what-table td:last-child { border-bottom: none; }
    .what-table td::before {
      content: attr(data-label);
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: var(--t-12);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terracotta-text);
      font-weight: 600;
      margin-bottom: var(--s-1);
    }
  }
/* COOKBOOKS section */
  .cookbooks-section {
    padding: var(--s-9) var(--s-7);
    background: var(--paper-warm);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
@media (max-width: 768px) { .cookbooks-section { padding: var(--s-8) var(--s-5); } }
.cookbooks-inner { max-width: 1320px; margin: 0 auto; }
.cookbooks-heading {
    text-align: center; max-width: 720px;
    margin: 0 auto var(--s-7);
  }
.cookbooks-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.cookbooks-heading h2 em { font-style: italic; color: var(--terracotta); }
.cookbooks-heading p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
  }
.cookbooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-5);
    margin-bottom: var(--s-7);
  }
.cookbook-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    display: flex; flex-direction: column;
    text-decoration: none; color: var(--ink);
    transition: background 0.2s ease, border-color 0.2s ease;
  }
.cookbook-card:hover {
    background: var(--paper-deep);
    border-color: var(--olive);
  }
.cookbook-card:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
  }
.cookbook-cover {
    width: 100%; aspect-ratio: 1 / 1;
    background: var(--paper-deep);
    display: flex; align-items: center; justify-content: center;
    color: var(--olive); opacity: 0.5;
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-13);
    overflow: hidden;
  }
.cookbook-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
.cookbook-body { padding: var(--s-5) var(--s-4); flex: 1; }
.cookbook-title {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: var(--t-18); line-height: 1.25;
    color: var(--olive-deep); margin-bottom: var(--s-2);
    letter-spacing: -0.005em;
  }
.cookbook-desc {
    font-family: 'Fraunces', serif; font-size: var(--t-14);
    line-height: 1.55; opacity: 0.88;
    margin-bottom: var(--s-3);
  }
.cookbook-cta {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600; color: var(--terracotta-text);
  }
.cookbook-card:hover .cookbook-cta { color: var(--olive-deep); }
.cookbooks-note {
    text-align: center;
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-15); line-height: 1.6;
    opacity: 0.85;
  }
.cookbooks-note a {
    color: var(--terracotta-text); text-decoration: underline;
    text-underline-offset: 3px;
  }
/* WHY US section */
  .why-section {
    padding: var(--s-9) var(--s-7);
    max-width: 1080px; margin: 0 auto;
  }
@media (max-width: 768px) { .why-section { padding: var(--s-8) var(--s-5); } }
.why-heading {
    text-align: center; margin-bottom: var(--s-7);
    max-width: 720px; margin-left: auto; margin-right: auto;
  }
.why-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.why-heading h2 em { font-style: italic; color: var(--terracotta); }
.why-heading p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
  }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: var(--s-6); } }
.why-col h3 {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: var(--t-21); color: var(--olive-deep);
    margin-bottom: var(--s-4);
    padding-bottom: var(--s-2);
    border-bottom: 1px solid var(--rule);
  }
.why-col h3 em { font-style: italic; color: var(--terracotta); }
.why-col ul { list-style: none; padding: 0; }
.why-col li {
    font-family: 'Fraunces', serif; font-size: var(--t-16);
    line-height: 1.55; margin-bottom: var(--s-3);
    padding-left: var(--s-5);
    position: relative;
  }
.why-col li::before {
    content: '';
    position: absolute; left: 0; top: 12px;
    width: 12px; height: 1px;
    background: var(--terracotta);
  }
/* AWARDS STRIP */
  .awards-strip {
    padding: var(--s-8) var(--s-7);
    background: var(--paper-deep);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    text-align: center;
  }
@media (max-width: 768px) { .awards-strip { padding: var(--s-7) var(--s-5); } }
.awards-strip-inner { max-width: 1320px; margin: 0 auto; }
.awards-strip h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-style: italic;
    font-size: var(--t-21);
    color: var(--olive-deep);
    margin-bottom: var(--s-5);
  }
.awards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-4);
    max-width: 1100px;
    margin: 0 auto;
  }
.awards-list-item {
    padding: var(--s-4);
    background: var(--paper);
    border: 1px solid var(--rule);
  }
.awards-list-year {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-13); color: var(--terracotta-text);
    margin-bottom: var(--s-1); font-weight: 500;
  }
.awards-list-title {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: var(--t-16); line-height: 1.3;
    color: var(--olive-deep);
  }
/* FAQ SECTION (cascading) */
  .faq-section {
    padding: var(--s-9) var(--s-7);
    max-width: 880px; margin: 0 auto;
  }
@media (max-width: 768px) { .faq-section { padding: var(--s-8) var(--s-5); } }
.faq-section-heading {
    text-align: center; margin-bottom: var(--s-7);
  }
.faq-section-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-3);
    letter-spacing: -0.015em;
  }
.faq-section-heading h2 em { font-style: italic; color: var(--terracotta); }
.faq-section-heading p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.9;
  }
.faq-section-heading p a {
    color: var(--terracotta-text); text-decoration: underline;
    text-underline-offset: 3px;
  }
.faq-all-link {
    text-align: center; margin-top: var(--s-7);
  }
.faq-all-link a {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.24em; text-transform: uppercase;
    font-weight: 600; color: var(--terracotta-text);
    text-decoration: none;
    padding: var(--s-3) var(--s-5);
    border: 1px solid var(--terracotta-text);
    display: inline-block;
    min-height: 44px;
    transition: background 0.2s ease, color 0.2s ease;
  }
.faq-all-link a:hover {
    background: var(--terracotta-text); color: var(--paper);
  }
/* CLOSING CTA */
  .closing-cta {
    padding: var(--s-9) var(--s-7);
    background: var(--olive-deep);
    color: var(--paper);
    text-align: center;
  }
@media (max-width: 768px) { .closing-cta { padding: var(--s-8) var(--s-5); } }
.closing-cta-inner { max-width: 720px; margin: 0 auto; }
.closing-cta h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.closing-cta h2 em { font-style: italic; color: var(--terracotta); }
.closing-cta p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
    margin-bottom: var(--s-6);
  }
.closing-cta-actions {
    display: flex; gap: var(--s-3);
    flex-wrap: wrap; justify-content: center;
  }
.closing-cta-link {
    display: inline-flex; align-items: center;
    padding: var(--s-3) var(--s-5);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12); letter-spacing: 0.24em;
    text-transform: uppercase; font-weight: 600;
    min-height: 44px;
    transition: background 0.2s ease, color 0.2s ease;
  }
.closing-cta-link.primary {
    background: var(--terracotta); color: var(--paper);
    border: 1px solid var(--terracotta);
  }
.closing-cta-link.primary:hover {
    background: var(--paper); color: var(--terracotta-text);
  }
.closing-cta-link.secondary {
    background: transparent; color: var(--paper);
    border: 1px solid rgba(245, 239, 228, 0.5);
  }
.closing-cta-link.secondary:hover {
    background: rgba(245, 239, 228, 0.12);
    border-color: var(--paper);
  }
@media (max-width: 768px) { .site-footer { padding: var(--s-7) var(--s-5) var(--s-5); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 760px) {
  .nav-cta-secondary { display: none; }
}
@media (max-width: 1100px) {
  .nav-list { gap: var(--s-5); }
  .mega-menu { left: auto; right: 0; }
}
@media (max-width: 980px) {
  .site-header { padding: var(--s-4) var(--s-5); }
  .nav-list { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
}
@media (max-width: 768px) { .section { padding: var(--s-8) var(--s-5); } }
.breadcrumb {
  font-family: 'Inter', sans-serif; font-size: var(--t-13);
  color: var(--ink); opacity: 0.75;
  padding: var(--s-5) var(--s-7) 0;
  max-width: 1320px; margin: 0 auto;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-2); }
.breadcrumb li::after { content: '/'; margin-left: var(--s-2); color: var(--rule); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; opacity: 0.9; }
@media (max-width: 768px) { .breadcrumb { padding: var(--s-4) var(--s-5) 0; } }
@media (max-width: 768px) { .hero { padding: var(--s-7) var(--s-5) var(--s-7); } }
.surface-warm { background: var(--paper-warm); }
.surface-olive { background: var(--olive-deep); color: var(--paper); }
.surface-olive .section-title { color: var(--paper); }
.surface-olive .section-title em { color: var(--honey); }
.surface-olive .section-eyebrow { color: rgba(245, 239, 228, 0.75); }
.surface-olive .section-deck { color: var(--paper); opacity: 0.9; }
.surface-olive a { color: var(--honey); }
.surface-olive .btn-secondary { color: var(--paper); border-color: var(--paper); }
.surface-olive .btn-secondary:hover { background: var(--paper); color: var(--olive-deep); }
.surface-full {
  width: 100%; margin: 0;
  padding: var(--s-9) var(--s-7);
}
@media (max-width: 768px) { .surface-full { padding: var(--s-8) var(--s-5); } }
.surface-full .surface-inner { max-width: 1200px; margin: 0 auto; }
.feature-card .glyph {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 42px; color: var(--terracotta); margin-bottom: var(--s-4);
  line-height: 1;
}
.feature-card .feature-link {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terracotta-text); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--terracotta-text); padding-bottom: var(--s-1);
  align-self: flex-start;
}
.feature-card .feature-link:hover { color: var(--olive-deep); border-color: var(--olive-deep); }
@media (max-width: 880px) { .detail-grid { grid-template-columns: 1fr; gap: var(--s-7); } }
.info-block {
  background: var(--paper-warm); padding: var(--s-7) var(--s-6);
  border-left: 3px solid var(--terracotta);
}
.info-block h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-21); margin-bottom: var(--s-3); color: var(--olive-deep);
}
.info-block dl {
  display: grid; grid-template-columns: 140px 1fr; gap: var(--s-3) var(--s-5);
  font-family: 'Inter', sans-serif; font-size: var(--t-15); line-height: 1.5;
}
@media (max-width: 560px) { .info-block dl { grid-template-columns: 1fr; gap: var(--s-1) 0; } }
.info-block dt {
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: var(--t-12); color: var(--terracotta-text); align-self: start;
}
.info-block dd { margin: 0; color: var(--ink); opacity: 0.92; }
@media (max-width: 560px) { .info-block dd { margin-bottom: var(--s-3); } }
.list-plain { list-style: none; padding: 0; }
.list-plain li { padding: var(--s-2) 0; border-bottom: 1px dotted var(--rule-soft); }
.list-plain li:last-child { border-bottom: 0; }
.cta-strip {
  text-align: center; padding: var(--s-9) var(--s-7);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  max-width: 1320px; margin: 0 auto;
}
@media (max-width: 768px) { .cta-strip { padding: var(--s-8) var(--s-5); } }
.cta-strip h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(32px, 5vw, 48px); color: var(--olive-deep);
  margin-bottom: var(--s-5); line-height: 1.1;
}
.cta-strip h2 em { font-style: italic; color: var(--terracotta); }
.cta-strip p {
  font-family: 'Fraunces', serif; font-size: var(--t-18);
  max-width: 600px; margin: 0 auto var(--s-6); opacity: 0.92;
}
@media (max-width: 768px) { .site-footer { padding: var(--s-8) var(--s-5) var(--s-7); } }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.class-hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-8);
  align-items: center; max-width: 1320px; margin: 0 auto;
  padding: var(--s-8) var(--s-7); border-bottom: 1px solid var(--rule);
}
@media (max-width: 880px) {
  .class-hero { grid-template-columns: 1fr; padding: var(--s-7) var(--s-5); }
}
.class-hero-text .hero-eyebrow { text-align: left; margin-bottom: var(--s-4); }
.class-hero-text h1 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.02;
  color: var(--olive-deep); margin-bottom: var(--s-5);
  letter-spacing: -0.025em;
}
.class-hero-text h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.class-hero-text .hero-deck {
  text-align: left; margin-left: 0; margin-right: 0; font-size: var(--t-19);
}
.class-hero-text .hero-actions { justify-content: flex-start; }
.class-hero-image {
  aspect-ratio: 4 / 5; background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.class-hero-image .placeholder {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: var(--t-13); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); opacity: 0.4; text-align: center;
}
.class-quick-facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5); padding: var(--s-7) var(--s-7);
  background: var(--paper-deep); max-width: 1320px; margin: 0 auto;
}
@media (max-width: 768px) {
  .class-quick-facts { grid-template-columns: 1fr 1fr; padding: var(--s-6) var(--s-5); }
}
.quick-fact {
  text-align: center; padding: var(--s-3);
}
.quick-fact .label {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terracotta-text); font-weight: 600; margin-bottom: var(--s-2);
}
.quick-fact .value {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-21); color: var(--olive-deep); line-height: 1.2;
}
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s-5); margin-top: var(--s-6);
}
.menu-card {
  background: var(--paper-warm); padding: var(--s-6);
  border-left: 3px solid var(--terracotta);
}
.menu-card h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-21); margin-bottom: var(--s-3); color: var(--olive-deep);
}
.menu-card p {
  font-family: 'Fraunces', serif; font-size: var(--t-16);
  line-height: 1.55; opacity: 0.92;
}
.includes-band {
  background: var(--paper-warm); padding: var(--s-9) var(--s-7);
}
@media (max-width: 768px) { .includes-band { padding: var(--s-8) var(--s-5); } }
.includes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-5); max-width: 1320px; margin: var(--s-6) auto 0;
}
.includes-item {
  padding: var(--s-5); background: var(--paper);
  border: 1px solid var(--rule);
}
.includes-item .glyph {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 36px;
  color: var(--terracotta); margin-bottom: var(--s-3); line-height: 1;
}
.includes-item h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-18); margin-bottom: var(--s-2); color: var(--ink);
}
.includes-item p {
  font-family: 'Fraunces', serif; font-size: var(--t-15);
  line-height: 1.55; opacity: 0.9;
}
.venues-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4); margin-top: var(--s-6);
}
.venue-link {
  padding: var(--s-5); text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.venue-link:hover {
  transform: translateY(-2px); border-color: var(--terracotta);
}
.venue-link .city {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta-text); font-weight: 600; margin-bottom: var(--s-2);
}
.venue-link h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-19); color: var(--ink);
}
.mec-placeholder {
  border: 2px dashed var(--rule);
  padding: var(--s-9) var(--s-7); text-align: center;
  background: var(--paper-warm); margin: var(--s-6) 0;
}
.mec-placeholder .label {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terracotta-text); margin-bottom: var(--s-3); font-weight: 600;
}
.mec-placeholder p {
  font-family: 'Fraunces', serif; font-size: var(--t-17);
  line-height: 1.5; opacity: 0.85;
}
.mec-placeholder code {
  background: var(--paper-deep); padding: var(--s-1) var(--s-3);
  font-family: monospace; font-size: var(--t-14);
}
.gallery-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2); max-width: 1320px; margin: 0 auto;
}
@media (max-width: 768px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
.gallery-cell {
  aspect-ratio: 4 / 3; background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: var(--t-12); letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); opacity: 0.5; padding: var(--s-4);
  text-align: center;
}
.cookbook-feature {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--s-8);
  align-items: center; padding: var(--s-9) var(--s-7);
  max-width: 1320px; margin: 0 auto; background: var(--paper);
}
@media (max-width: 768px) {
  .cookbook-feature { grid-template-columns: 1fr; padding: var(--s-8) var(--s-5); }
}
.cookbook-cover {
  aspect-ratio: 3 / 4; background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: var(--t-21); color: var(--olive-deep);
  opacity: 0.55; max-width: 280px; margin: 0 auto;
  text-align: center; padding: var(--s-5);
}
.cookbook-feature h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.15;
  color: var(--olive-deep); margin-bottom: var(--s-4);
}
.cookbook-feature h2 em { font-style: italic; color: var(--terracotta); }
.cookbook-feature p {
  font-family: 'Fraunces', serif; font-size: var(--t-17);
  line-height: 1.65; opacity: 0.92; margin-bottom: var(--s-4);
}
.intro-band {
  background: var(--paper-warm);
  padding: var(--s-9) var(--s-7);
}
@media (max-width: 768px) { .intro-band { padding: var(--s-8) var(--s-5); } }
.intro-band .inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.intro-band p {
  font-family: 'Fraunces', serif; font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6; margin-bottom: var(--s-3);
}
.intro-band .lead { font-style: italic; color: var(--olive-deep); font-size: clamp(20px, 2.4vw, 26px); }
.venue-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-6);
}
.venue-card {
  background: var(--paper); border: 1px solid var(--rule);
  text-decoration: none; color: inherit; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}
.venue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -28px rgba(42, 31, 21, 0.35);
}
.venue-card-image {
  aspect-ratio: 4 / 3; background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: var(--t-13); letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6; color: var(--olive-deep);
}
.venue-card-body { padding: var(--s-6); flex: 1; display: flex; flex-direction: column; }
.venue-card-eyebrow {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terracotta-text); font-weight: 600;
  margin-bottom: var(--s-3);
}
.venue-card h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-24); line-height: 1.2;
  color: var(--ink); margin-bottom: var(--s-3);
}
.venue-card h3 em { font-style: italic; color: var(--terracotta); }
.venue-card-desc {
  font-family: 'Fraunces', serif; font-size: var(--t-17);
  line-height: 1.6; opacity: 0.92; margin-bottom: var(--s-4); flex: 1;
}
.venue-card-link {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terracotta-text); font-weight: 600;
  border-bottom: 1px solid var(--terracotta-text);
  padding-bottom: var(--s-1); align-self: flex-start;
}
@media (max-width: 768px) { .region-block { padding: var(--s-8) var(--s-5); } }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
}
.team-member {
  background: var(--paper); border: 1px solid var(--rule);
  overflow: hidden; display: flex; flex-direction: column;
}
.team-member-image {
  aspect-ratio: 4 / 3; background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive); font-family: 'Fraunces', serif; font-style: italic;
  font-size: 64px; opacity: 0.4; overflow: hidden;
}
.team-member-image img { width: 100%; height: 100%; object-fit: cover; }
.team-member-body { padding: var(--s-6); flex: 1; }
.team-member-role {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terracotta-text); font-weight: 600;
  margin-bottom: var(--s-2);
}
.team-member h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-24); margin-bottom: var(--s-3); color: var(--ink);
}
.team-member-bio p {
  font-family: 'Fraunces', serif; font-size: var(--t-16);
  line-height: 1.6; opacity: 0.92; margin-bottom: var(--s-3);
}
.sponsor-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
}
.sponsor-card {
  background: var(--paper); border: 1px solid var(--rule);
  padding: var(--s-7) var(--s-6); display: flex; flex-direction: column;
}
.sponsor-logo {
  width: 100%; aspect-ratio: 4 / 3; background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-5); padding: var(--s-5);
  font-family: 'Fraunces', serif; font-weight: 500; font-size: var(--t-24);
  color: var(--olive-deep);
}
.sponsor-card h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-21); margin-bottom: var(--s-3); color: var(--ink);
}
.sponsor-card p {
  font-family: 'Fraunces', serif; font-size: var(--t-16);
  line-height: 1.6; opacity: 0.92; margin-bottom: var(--s-4); flex: 1;
}
.sponsor-link {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terracotta-text); font-weight: 600;
  border-bottom: 1px solid var(--terracotta-text);
  padding-bottom: var(--s-1); align-self: flex-start;
  text-decoration: none;
}
.stay-region {
  background: var(--paper-warm); padding: var(--s-7) var(--s-6);
  border-left: 3px solid var(--terracotta); margin-bottom: var(--s-5);
}
.stay-region h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-24); color: var(--olive-deep); margin-bottom: var(--s-3);
}
.stay-region p {
  font-family: 'Fraunces', serif; font-size: var(--t-17);
  line-height: 1.6; opacity: 0.92; margin-bottom: var(--s-4);
}
.numbered-steps {
  list-style: none; counter-reset: steps; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s-6); margin: var(--s-7) 0;
}
.numbered-steps li {
  counter-increment: steps; padding: var(--s-6);
  background: var(--paper); border: 1px solid var(--rule);
  position: relative;
}
.numbered-steps li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 42px; line-height: 1; color: var(--terracotta);
  display: block; margin-bottom: var(--s-3);
}
.numbered-steps li h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-21); margin-bottom: var(--s-2); color: var(--ink);
}
.numbered-steps li p {
  font-family: 'Fraunces', serif; font-size: var(--t-16);
  line-height: 1.55; opacity: 0.92;
}
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-5);
}
.product-card {
  background: var(--paper); border: 1px solid var(--rule);
  text-decoration: none; color: inherit; overflow: hidden;
  display: flex; flex-direction: column;
}
.product-card .img {
  aspect-ratio: 1 / 1; background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 48px; opacity: 0.35; color: var(--olive-deep);
}
.product-card .body { padding: var(--s-5); flex: 1; display: flex; flex-direction: column; }
.product-card h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-19); margin-bottom: var(--s-2); color: var(--ink);
}
.product-card .price {
  font-family: 'Inter', sans-serif; font-size: var(--t-14);
  letter-spacing: 0.12em; font-weight: 600; color: var(--terracotta-text);
}
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-8);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { background: var(--paper); padding: var(--s-7) var(--s-6); border: 1px solid var(--rule); }
.contact-form label {
  display: block; font-family: 'Inter', sans-serif;
  font-size: var(--t-12); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--olive-deep);
  font-weight: 600; margin: var(--s-5) 0 var(--s-2);
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: var(--s-3) var(--s-4);
  background: var(--paper-warm); border: 1px solid var(--rule);
  color: var(--ink); font-family: 'Inter', sans-serif;
  font-size: var(--t-15); min-height: 44px;
}
.contact-form textarea { min-height: 120px; line-height: 1.5; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 2px solid var(--terracotta); outline-offset: 1px;
}
.contact-form button {
  margin-top: var(--s-6); padding: var(--s-4) var(--s-7);
  background: var(--terracotta-text); color: var(--paper);
  border: 1px solid var(--terracotta-text); font-family: 'Inter', sans-serif;
  font-size: var(--t-12); letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; min-height: 48px;
}
.contact-form button:hover { background: var(--olive-deep); border-color: var(--olive-deep); }
.contact-aside { display: flex; flex-direction: column; gap: var(--s-5); }
/* HERO */
  .page-hero {
    padding: var(--s-9) var(--s-7) var(--s-7);
    text-align: center;
    max-width: 1000px; margin: 0 auto;
    border-bottom: 1px solid var(--rule);
  }
@media (max-width: 768px) { .page-hero { padding: var(--s-7) var(--s-5) var(--s-6); } }
.page-hero-deck {
    font-family: 'Fraunces', serif; font-size: var(--t-19);
    line-height: 1.6; opacity: 0.92;
    max-width: 680px; margin: 0 auto var(--s-6);
  }
.hero-trust-item {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600; opacity: 0.75;
    padding-right: var(--s-5);
    border-right: 1px solid var(--rule-soft);
  }
.hero-trust-item:last-child { border-right: none; padding-right: 0; }
/* FEATURED SECTION */
  .featured-section {
    padding: var(--s-8) var(--s-7);
    max-width: 1320px; margin: 0 auto;
  }
@media (max-width: 768px) { .featured-section { padding: var(--s-7) var(--s-5); } }
.section-heading {
    display: flex; align-items: baseline; gap: var(--s-4);
    margin-bottom: var(--s-6);
  }
/* MEC SHORTCODE WRAPPER + OVERRIDES */
  .mec-wrapper {
    background: var(--paper);
    padding: var(--s-4) 0;
  }
/* These rules target MEC plugin's actual class names to override its default styling.
     The developer should test against the live plugin output and refine if needed. */
  .mec-wrapper .mec-event-title,
  .mec-wrapper .mec-event-title a {
    font-family: 'Fraunces', serif !important;
    font-weight: 500 !important;
    color: var(--olive-deep) !important;
    letter-spacing: -0.005em !important;
  }
.mec-wrapper .mec-event-title a:hover {
    color: var(--terracotta-text) !important;
  }
.mec-wrapper .mec-event-date,
  .mec-wrapper .mec-start-date-label,
  .mec-wrapper .mec-event-time {
    font-family: 'Inter', sans-serif !important;
    font-size: var(--t-13) !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: var(--terracotta-text) !important;
  }
.mec-wrapper .mec-event-description,
  .mec-wrapper .mec-event-content p {
    font-family: 'Fraunces', serif !important;
    font-size: var(--t-16) !important;
    line-height: 1.65 !important;
    color: var(--ink) !important;
  }
.mec-wrapper .mec-booking-button,
  .mec-wrapper a.mec-events-button,
  .mec-wrapper .mec-event-button {
    background: var(--terracotta-text) !important;
    color: var(--paper) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: var(--t-12) !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    padding: var(--s-3) var(--s-5) !important;
    border: 1px solid var(--terracotta-text) !important;
    border-radius: 0 !important;
    min-height: 44px !important;
    text-decoration: none !important;
  }
.mec-wrapper .mec-booking-button:hover,
  .mec-wrapper a.mec-events-button:hover,
  .mec-wrapper .mec-event-button:hover {
    background: var(--paper) !important;
    color: var(--terracotta-text) !important;
  }
.mec-wrapper .mec-categories,
  .mec-wrapper .mec-event-category {
    font-family: 'Inter', sans-serif !important;
    font-size: var(--t-12) !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--olive) !important;
  }
.mec-wrapper .mec-event-image img {
    border-radius: 0 !important;
  }
.mec-wrapper .mec-event-list-modern,
  .mec-wrapper .mec-event-grid-modern,
  .mec-wrapper .mec-event-grid-classic {
    background: transparent !important;
  }
/* PLACEHOLDER notice for the mockup - dev will remove */
  .mec-placeholder {
    background: var(--paper-warm);
    border: 2px dashed var(--rule);
    padding: var(--s-7) var(--s-5);
    text-align: center;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: var(--t-13);
    letter-spacing: 0.05em;
    margin: var(--s-4) 0;
  }
.mec-placeholder code {
    display: inline-block;
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: var(--s-2) var(--s-4);
    font-family: 'Courier New', monospace;
    font-size: var(--t-14);
    color: var(--terracotta-text);
    margin: var(--s-3) 0;
    letter-spacing: 0;
  }
.mec-placeholder-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: var(--t-14);
    color: var(--terracotta-text);
    margin-bottom: var(--s-2);
    letter-spacing: 0;
    text-transform: none;
  }
.mec-placeholder-desc {
    font-family: 'Fraunces', serif;
    font-size: var(--t-15);
    line-height: 1.6;
    max-width: 500px;
    margin: var(--s-3) auto 0;
    color: var(--ink);
    opacity: 0.85;
    letter-spacing: 0;
    text-transform: none;
  }
/* FILTER BAR (custom, wraps MEC's built-in search form) */
  .filter-bar {
    background: var(--paper-warm);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: var(--s-5) var(--s-7);
    position: sticky;
    top: 80px;
    z-index: var(--z-sticky-nav);
  }
@media (max-width: 768px) { .filter-bar { padding: var(--s-4) var(--s-5); top: 76px; } }
.filter-bar-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s-5); flex-wrap: wrap;
  }
.filter-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--olive-deep);
  }
.filter-chips {
    display: flex; gap: var(--s-2);
    flex-wrap: wrap; flex: 1;
  }
.filter-chip {
    display: inline-flex; align-items: center;
    padding: var(--s-2) var(--s-4);
    background: var(--paper); color: var(--ink);
    border: 1px solid var(--rule);
    font-family: 'Inter', sans-serif;
    font-size: var(--t-13);
    text-decoration: none;
    min-height: 36px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
.filter-chip:hover {
    background: var(--paper-deep);
    border-color: var(--olive);
  }
.filter-chip[aria-pressed="true"] {
    background: var(--olive-deep);
    color: var(--paper);
    border-color: var(--olive-deep);
  }
.filter-chip:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
  }
.view-toggle {
    display: flex; gap: 0;
    border: 1px solid var(--rule);
    background: var(--paper);
  }
.view-toggle-btn {
    padding: var(--s-2) var(--s-4);
    background: transparent; border: none;
    cursor: pointer; font-family: 'Inter', sans-serif;
    font-size: var(--t-12); letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
    color: var(--ink); min-height: 36px;
    display: inline-flex; align-items: center; gap: var(--s-2);
    border-right: 1px solid var(--rule);
    transition: background 0.2s ease, color 0.2s ease;
  }
.view-toggle-btn:last-child { border-right: none; }
.view-toggle-btn[aria-pressed="true"] {
    background: var(--olive-deep);
    color: var(--paper);
  }
.view-toggle-btn:hover:not([aria-pressed="true"]) {
    background: var(--paper-deep);
  }
.view-toggle-btn:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: -2px;
  }
.view-toggle-icon { width: 14px; height: 14px; }
/* MAIN CALENDAR SECTION */
  .calendar-section {
    max-width: 1320px; margin: 0 auto;
    padding: var(--s-8) var(--s-7);
  }
@media (max-width: 768px) { .calendar-section { padding: var(--s-7) var(--s-5); } }
/* EMPTY STATE */
  .empty-state {
    text-align: center;
    padding: var(--s-9) var(--s-5);
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    max-width: 700px; margin: 0 auto;
  }
.empty-state h3 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(24px, 3.5vw, 32px); line-height: 1.2;
    color: var(--olive-deep); margin-bottom: var(--s-3);
  }
.empty-state h3 em { font-style: italic; color: var(--terracotta); }
.empty-state p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92; max-width: 480px;
    margin: 0 auto var(--s-5);
  }
.empty-state-actions {
    display: flex; gap: var(--s-3);
    flex-wrap: wrap; justify-content: center;
  }
.empty-state-link {
    padding: var(--s-3) var(--s-5);
    background: var(--olive-deep); color: var(--paper);
    text-decoration: none; font-family: 'Inter', sans-serif;
    font-size: var(--t-12); letter-spacing: 0.24em;
    text-transform: uppercase; font-weight: 600;
    min-height: 44px;
    display: inline-flex; align-items: center;
    transition: background 0.2s ease;
  }
.empty-state-link:hover { background: var(--olive); }
.empty-state-link.secondary {
    background: transparent; color: var(--olive-deep);
    border: 1px solid var(--olive-deep);
  }
.empty-state-link.secondary:hover {
    background: var(--olive-deep); color: var(--paper);
  }
@media (max-width: 768px) { .class-types { padding: var(--s-8) var(--s-5); } }
.class-types-inner {
    max-width: 1320px; margin: 0 auto;
  }
.class-types-intro {
    text-align: center; max-width: 680px;
    margin: 0 auto var(--s-7);
  }
.class-types-intro h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 40px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.01em;
  }
.class-types-intro h2 em { font-style: italic; color: var(--terracotta); }
.class-types-intro p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
  }
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--s-5);
  }
.class-card-number {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-14); color: var(--terracotta-text);
    margin-bottom: var(--s-2); font-weight: 500;
  }
.class-card-title {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: var(--t-21); line-height: 1.2;
    color: var(--olive-deep); margin-bottom: var(--s-3);
    letter-spacing: -0.005em;
  }
.class-card-desc {
    font-family: 'Fraunces', serif; font-size: var(--t-15);
    line-height: 1.6; opacity: 0.88;
    margin-bottom: var(--s-3);
  }
.class-card-cta {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600; color: var(--terracotta-text);
  }
.class-card:hover .class-card-cta { color: var(--olive-deep); }
/* PRIVATE / VOUCHER CTA STRIP */
  .cta-strip {
    background: var(--olive-deep); color: var(--paper);
    padding: var(--s-8) var(--s-7);
  }
@media (max-width: 768px) { .cta-strip { padding: var(--s-7) var(--s-5); } }
.cta-strip-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
  }
@media (max-width: 768px) {
    .cta-strip-inner { grid-template-columns: 1fr; gap: var(--s-6); }
  }
.cta-strip-block h3 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(22px, 3vw, 28px); line-height: 1.2;
    margin-bottom: var(--s-3);
  }
.cta-strip-block h3 em { font-style: italic; color: var(--terracotta); }
.cta-strip-block p {
    font-family: 'Fraunces', serif; font-size: var(--t-16);
    line-height: 1.6; opacity: 0.9; margin-bottom: var(--s-4);
  }
.cta-strip-link {
    display: inline-flex; align-items: center;
    padding: var(--s-3) var(--s-5);
    background: var(--terracotta); color: var(--paper);
    text-decoration: none; font-family: 'Inter', sans-serif;
    font-size: var(--t-12); letter-spacing: 0.24em;
    text-transform: uppercase; font-weight: 600;
    min-height: 44px;
    border: 1px solid var(--terracotta);
    transition: background 0.2s ease, color 0.2s ease;
  }
.cta-strip-link:hover { background: var(--paper); color: var(--terracotta-text); }
/* FAQ SECTION */
  .faq-section {
    padding: var(--s-9) var(--s-7);
    max-width: 880px; margin: 0 auto;
  }
.faq-section-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 40px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-3);
    letter-spacing: -0.01em;
  }
/* ============================================================
     CONTENT SECTIONS FOR AEO/SEO + COLD LANDINGS
     ============================================================ */

  /* "WHAT TO EXPECT" intro/about block - for cold visitors who haven't been to the homepage */
  .intro-section {
    padding: var(--s-9) var(--s-7);
    max-width: 1080px; margin: 0 auto;
    border-top: 1px solid var(--rule);
  }
@media (max-width: 768px) { .intro-section { padding: var(--s-8) var(--s-5); } }
.intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
    align-items: start;
  }
@media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; gap: var(--s-6); } }
.intro-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.intro-heading h2 em { font-style: italic; color: var(--terracotta); }
.intro-heading > p {
    font-family: 'Fraunces', serif; font-size: var(--t-18);
    line-height: 1.55; opacity: 0.92;
    margin-bottom: var(--s-5);
  }
.intro-heading a {
    color: var(--terracotta-text); text-decoration: underline;
    text-underline-offset: 3px; font-weight: 500;
  }
.intro-heading a:hover { color: var(--olive-deep); }
.intro-content p {
    font-family: 'Fraunces', serif; font-size: var(--t-16);
    line-height: 1.7; margin-bottom: var(--s-4);
  }
.intro-content p:last-child { margin-bottom: 0; }
.intro-content a {
    color: var(--terracotta-text); text-decoration: underline;
    text-underline-offset: 3px;
  }
.intro-content a:hover { color: var(--olive-deep); }
.intro-content strong { font-weight: 600; color: var(--olive-deep); }
/* "WHERE WE COOK" - venues content block */
  .venues-section {
    padding: var(--s-9) var(--s-7);
    background: var(--paper-warm);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
@media (max-width: 768px) { .venues-section { padding: var(--s-8) var(--s-5); } }
.venues-inner { max-width: 1320px; margin: 0 auto; }
.venues-intro {
    text-align: center; max-width: 760px;
    margin: 0 auto var(--s-8);
  }
.venues-intro h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.venues-intro h2 em { font-style: italic; color: var(--terracotta); }
.venues-intro p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
  }
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-5);
  }
.venue-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: var(--s-6) var(--s-5);
    text-decoration: none; color: var(--ink);
    display: flex; flex-direction: column;
    transition: background 0.2s ease, border-color 0.2s ease;
    min-height: 44px;
  }
.venue-card:hover {
    background: var(--paper-deep);
    border-color: var(--olive);
  }
.venue-card:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
  }
.venue-card-region {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--terracotta-text); font-weight: 600;
    margin-bottom: var(--s-2);
  }
.venue-card-name {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: var(--t-21); line-height: 1.2;
    color: var(--olive-deep); margin-bottom: var(--s-3);
    letter-spacing: -0.005em;
  }
.venue-card-desc {
    font-family: 'Fraunces', serif; font-size: var(--t-15);
    line-height: 1.6; opacity: 0.88;
    margin-bottom: var(--s-3); flex: 1;
  }
.venue-card-link {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600; color: var(--terracotta-text);
    margin-top: auto;
  }
.venue-card:hover .venue-card-link { color: var(--olive-deep); }
.venue-card-new {
    display: inline-block;
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600; color: var(--paper);
    background: var(--terracotta);
    padding: 3px var(--s-2);
    margin-left: var(--s-2);
  }
/* AWARDS / TRUST PANEL */
  .awards-section {
    padding: var(--s-9) var(--s-7);
    max-width: 1320px; margin: 0 auto;
  }
@media (max-width: 768px) { .awards-section { padding: var(--s-8) var(--s-5); } }
.awards-heading {
    text-align: center; margin-bottom: var(--s-7);
    max-width: 700px; margin-left: auto; margin-right: auto;
  }
.awards-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.015em;
  }
.awards-heading h2 em { font-style: italic; color: var(--terracotta); }
.awards-heading p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
  }
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-4);
    margin-bottom: var(--s-5);
  }
.award-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: var(--s-5);
    text-align: center;
  }
.award-card-year {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-14); color: var(--terracotta-text);
    margin-bottom: var(--s-2); font-weight: 500;
  }
.award-card-title {
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: var(--t-17); line-height: 1.3;
    color: var(--olive-deep); margin-bottom: var(--s-2);
  }
.award-card-issuer {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink); opacity: 0.75; font-weight: 500;
  }
.accreditations-row {
    display: flex; gap: var(--s-5);
    justify-content: center; flex-wrap: wrap;
    padding-top: var(--s-5);
    border-top: 1px solid var(--rule);
  }
.accreditation-item {
    font-family: 'Inter', sans-serif; font-size: var(--t-13);
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600; opacity: 0.85;
    color: var(--olive-deep);
  }
/* REVIEWS BLOCK */
  .reviews-section {
    padding: var(--s-9) var(--s-7);
    background: var(--olive-deep);
    color: var(--paper);
  }
@media (max-width: 768px) { .reviews-section { padding: var(--s-8) var(--s-5); } }
.reviews-heading {
    text-align: center; margin-bottom: var(--s-7);
    max-width: 720px; margin-left: auto; margin-right: auto;
  }
.reviews-heading h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
    margin-bottom: var(--s-3); letter-spacing: -0.015em;
  }
.reviews-heading h2 em { font-style: italic; color: var(--terracotta); }
.reviews-rating-text {
    font-family: 'Inter', sans-serif; font-size: var(--t-14);
    letter-spacing: 0.1em; opacity: 0.92;
  }
.review-card {
    background: rgba(245, 239, 228, 0.08);
    border: 1px solid rgba(245, 239, 228, 0.18);
    padding: var(--s-6) var(--s-5);
  }
.review-stars {
    color: #f0c14b; letter-spacing: 2px;
    font-size: var(--t-16); margin-bottom: var(--s-3);
  }
.review-text {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-16); line-height: 1.65;
    margin-bottom: var(--s-4);
  }
.review-author {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600; opacity: 0.85;
  }
.reviews-source {
    text-align: center; margin-top: var(--s-7);
  }
.reviews-source a {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--paper); text-decoration: none;
    font-weight: 600; opacity: 0.85;
    padding: var(--s-3) var(--s-5);
    border: 1px solid rgba(245, 239, 228, 0.35);
    display: inline-block; min-height: 44px;
    transition: background 0.2s ease, opacity 0.2s ease;
  }
.reviews-source a:hover {
    background: rgba(245, 239, 228, 0.12);
    opacity: 1;
  }
/* NEWSLETTER SIGNUP */
  .newsletter-section {
    padding: var(--s-9) var(--s-7);
    background: var(--paper-warm);
    border-top: 1px solid var(--rule);
    text-align: center;
  }
@media (max-width: 768px) { .newsletter-section { padding: var(--s-8) var(--s-5); } }
.newsletter-section h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 40px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-3);
    letter-spacing: -0.015em;
  }
.newsletter-section h2 em { font-style: italic; color: var(--terracotta); }
.newsletter-section > .newsletter-inner > p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92;
    margin-bottom: var(--s-6);
  }
.newsletter-submit {
    padding: var(--s-3) var(--s-5);
    background: var(--olive-deep); color: var(--paper);
    border: 1px solid var(--olive-deep);
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12); letter-spacing: 0.24em;
    text-transform: uppercase; font-weight: 600;
    cursor: pointer; min-height: 44px;
    transition: background 0.2s ease, color 0.2s ease;
  }
.newsletter-submit:hover {
    background: var(--paper); color: var(--olive-deep);
  }
.newsletter-submit:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
  }
.newsletter-fineprint {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    opacity: 0.7; margin-top: var(--s-4) !important;
    letter-spacing: 0.02em;
  }
@media (max-width: 768px) {
    .site-header { padding: var(--s-4) var(--s-5); }
  }
.faq-hero {
    padding: var(--s-9) var(--s-7) var(--s-8);
    text-align: center; max-width: 900px; margin: 0 auto;
    border-bottom: 1px solid var(--rule);
  }
@media (max-width: 768px) { .faq-hero { padding: var(--s-8) var(--s-5) var(--s-7); } }
.faq-hero h1 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.0; letter-spacing: -0.025em;
    color: var(--olive-deep); margin-bottom: var(--s-5);
  }
.faq-hero h1 em { font-style: italic; color: var(--terracotta); }
.faq-hero-deck {
    font-family: 'Fraunces', serif; font-size: var(--t-19);
    line-height: 1.6; opacity: 0.92;
    max-width: 640px; margin: 0 auto;
  }
.category-nav {
    background: var(--paper-warm);
    border-bottom: 1px solid var(--rule);
    position: sticky; top: 80px;
    z-index: var(--z-sticky-nav);
    padding: var(--s-3) var(--s-7);
  }
@media (max-width: 768px) {
    .category-nav { padding: var(--s-3) var(--s-5); top: 76px; }
  }
.category-nav-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; gap: var(--s-3);
    overflow-x: auto; scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
.category-nav-inner::-webkit-scrollbar { height: 4px; }
.category-nav-inner::-webkit-scrollbar-thumb { background: var(--rule); }
.category-nav-link {
    flex-shrink: 0;
    padding: var(--s-2) var(--s-4);
    font-family: 'Inter', sans-serif; font-size: var(--t-13);
    letter-spacing: 0.05em;
    color: var(--ink); text-decoration: none;
    border: 1px solid transparent; font-weight: 500;
    min-height: 44px; display: inline-flex; align-items: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
  }
.category-nav-link:hover { background: var(--paper); border-color: var(--rule); }
.category-nav-link:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }
.faq-body {
    max-width: 880px; margin: 0 auto;
    padding: var(--s-9) var(--s-7);
  }
@media (max-width: 768px) { .faq-body { padding: var(--s-8) var(--s-5); } }
.faq-category {
    margin-bottom: var(--s-9);
    scroll-margin-top: 160px;
  }
.faq-category:last-child { margin-bottom: 0; }
.faq-category-eyebrow {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: var(--t-14); color: var(--terracotta-text);
    margin-bottom: var(--s-2); font-weight: 500;
  }
.faq-category-title {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 40px); line-height: 1.1;
    color: var(--olive-deep); margin-bottom: var(--s-4);
    letter-spacing: -0.01em;
  }
.faq-category-title em { font-style: italic; color: var(--terracotta); }
.faq-category-intro {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.65; opacity: 0.9;
    margin-bottom: var(--s-6); max-width: 720px;
  }
.still-questions {
    background: var(--olive-deep); color: var(--paper);
    padding: var(--s-9) var(--s-7); text-align: center;
  }
@media (max-width: 768px) { .still-questions { padding: var(--s-8) var(--s-5); } }
.still-questions-inner { max-width: 700px; margin: 0 auto; }
.still-questions h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(28px, 4vw, 40px); line-height: 1.1;
    margin-bottom: var(--s-4);
  }
.still-questions h2 em { font-style: italic; color: var(--terracotta); }
.still-questions p {
    font-family: 'Fraunces', serif; font-size: var(--t-17);
    line-height: 1.6; opacity: 0.92; margin-bottom: var(--s-7);
  }
.contact-options {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-4); max-width: 720px; margin: 0 auto;
  }
.contact-option {
    background: rgba(245, 239, 228, 0.08);
    border: 1px solid rgba(245, 239, 228, 0.25);
    padding: var(--s-6) var(--s-5);
    text-decoration: none; color: var(--paper);
    transition: background 0.2s ease, border-color 0.2s ease;
    min-height: 44px;
    display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
  }
.contact-option:hover {
    background: rgba(245, 239, 228, 0.15);
    border-color: rgba(245, 239, 228, 0.5);
  }
.contact-option:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
.contact-option-label {
    font-family: 'Inter', sans-serif; font-size: var(--t-12);
    letter-spacing: 0.28em; text-transform: uppercase;
    font-weight: 600; color: var(--terracotta);
  }
.contact-option-value {
    font-family: 'Fraunces', serif; font-size: var(--t-17); font-weight: 500;
  }
@media (max-width: 920px) {
    .nav-list { display: none; }
    .nav-toggle {
      display: block;
      background: none;
      border: 1px solid var(--rule);
      padding: 10px 16px;
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
    }
  }
.section-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--terracotta-text);
    margin-bottom: 8px;
    font-weight: 500;
  }
.story-text p {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.92;
  }
.story-text p:first-of-type::first-letter {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 64px;
    font-weight: 400;
    float: left;
    line-height: 0.85;
    margin: 8px 12px 0 0;
    color: var(--terracotta);
  }
.reviews .section-num { color: rgba(245, 239, 228, 0.7); }
/* === AWARDS === */
  .awards {
    padding: 80px 5vw;
    text-align: center;
    border-bottom: 1px solid var(--rule);
  }
.awards-eyebrow {
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    margin-bottom: 30px;
    font-weight: 500;
  }
.awards-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 32px;
    color: var(--olive-deep);
    margin-bottom: 50px;
    line-height: 1.15;
  }
.awards-title em { font-style: italic; color: var(--terracotta); }
.awards-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
.award {
    max-width: 200px;
    text-align: center;
  }
.award-badge {
    width: 90px;
    height: 90px;
    background: var(--paper-warm);
    border: 1.5px solid var(--olive-deep);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 30px;
    color: var(--olive-deep);
  }
.award-name {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: var(--ink);
  }
.award-year {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    margin-top: 4px;
    font-weight: 600;
  }
@media (max-width: 540px) {
    .footer-inner { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .nav-cta { padding: 10px 14px; font-size: 12px; letter-spacing: 0.22em; }
  }
@media (max-width: 1100px) {
    .nav-list { gap: var(--s-5); }
    .mega-menu { left: auto; right: 0; }
  }
@media (max-width: 980px) {
    .site-header { padding: var(--s-4) var(--s-5); }
    .nav-list { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; }
  }
@media (max-width: 768px) {
    .hero { padding: var(--s-8) var(--s-5) var(--s-8); }
  }
@media (max-width: 768px) {
    .section { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 768px) {
    .adelaide-feature { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 880px) {
    .adelaide-inner { grid-template-columns: 1fr; gap: var(--s-7); }
  }
.adelaide-text .section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12);
    font-style: normal;
    font-weight: 600;
    margin-bottom: var(--s-4);
  }
.adelaide-text h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: var(--olive-deep);
    margin-bottom: var(--s-4);
  }
.adelaide-text h2 em { font-style: italic; color: var(--terracotta); }
.adelaide-text p {
    font-family: 'Fraunces', serif;
    font-size: var(--t-17);
    line-height: 1.65;
    margin-bottom: var(--s-3);
    opacity: 0.92;
  }
@media (max-width: 768px) {
    .story { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 880px) {
    .story-inner { grid-template-columns: 1fr; gap: var(--s-7); }
  }
.story-text p {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: var(--t-17);
    line-height: 1.7;
    margin-bottom: var(--s-4);
    opacity: 0.92;
  }
@media (max-width: 768px) {
    .reviews { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 768px) {
    .trust { padding: var(--s-7) var(--s-5); }
  }
@media (max-width: 768px) {
    .feature-cards { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 768px) {
    .experience { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 768px) {
    .faqs { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 768px) {
    .partners { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 768px) {
    .newsletter { padding: var(--s-8) var(--s-5); }
  }
@media (max-width: 540px) {
    .newsletter-form { flex-direction: column; }
  }
@media (max-width: 768px) {
    .site-footer { padding: var(--s-8) var(--s-5) var(--s-5); }
  }
@media (max-width: 880px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
  }
@media (max-width: 540px) {
    .footer-inner { grid-template-columns: 1fr; gap: var(--s-6); }
  }
/* Venue facts strip - four-up grid of key venue facts */
  .venue-facts {
    background: var(--paper-warm);
    padding: var(--s-7) var(--s-7);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
@media (max-width: 768px) { .venue-facts { padding: var(--s-6) var(--s-5); } }
.venue-facts-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
  }
@media (max-width: 900px) { .venue-facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .venue-facts-grid { grid-template-columns: 1fr; } }
.venue-fact {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    padding-left: var(--s-4);
    border-left: 2px solid var(--terracotta-text);
  }
.venue-fact-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--olive-deep);
  }
.venue-fact-value {
    font-family: 'Fraunces', serif;
    font-size: var(--t-17);
    color: var(--ink);
    line-height: 1.4;
  }
.venue-fact-value em { font-style: italic; opacity: 0.75; font-size: var(--t-13); }
/* Classes at this venue grid */
  .venue-classes {
    padding: var(--s-9) var(--s-7);
    background: var(--paper);
  }
@media (max-width: 768px) { .venue-classes { padding: var(--s-8) var(--s-5); } }
.venue-classes-heading {
    max-width: 880px;
    margin: 0 auto var(--s-7);
    text-align: center;
  }
.venue-classes-heading h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(var(--t-22), 4vw, var(--t-24));
    line-height: 1.15;
    color: var(--olive-deep);
    margin: var(--s-3) 0 var(--s-3);
  }
.venue-classes-heading h2 em { font-style: italic; color: var(--terracotta); }
.venue-classes-heading p {
    font-family: 'Fraunces', serif;
    font-size: var(--t-17);
    color: var(--ink);
    line-height: 1.65;
  }
.venue-classes-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
  }
@media (max-width: 900px) { .venue-classes-grid { grid-template-columns: 1fr; } }
.class-card-placeholder {
    display: flex;
    flex-direction: column;
    background: var(--paper-warm);
    border: 1px solid var(--rule);
  }
.class-card-image { width: 100%; }
.class-card-image .placeholder { aspect-ratio: 4 / 3; }
.class-card-body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); }
.class-card-meta {
    font-family: 'Inter', sans-serif;
    font-size: var(--t-12);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--terracotta-text);
  }
.class-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: var(--t-22);
    line-height: 1.2;
    color: var(--olive-deep);
    margin: 0;
  }
.class-card-desc {
    font-family: 'Fraunces', serif;
    font-size: var(--t-15);
    line-height: 1.6;
    color: var(--ink);
    margin: 0;
  }
.class-card-link {
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    font-size: var(--t-13);
    font-weight: 600;
    color: var(--terracotta-text);
    text-decoration: none;
    letter-spacing: 0.04em;
  }
.class-card-link:hover { color: var(--olive-deep); text-decoration: underline; }
.class-card-link:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
.venue-classes-all { max-width: 1280px; margin: var(--s-7) auto 0; text-align: center; }
.venue-classes-all a {
    font-family: 'Inter', sans-serif;
    font-size: var(--t-13);
    font-weight: 600;
    color: var(--terracotta-text);
    text-decoration: underline;
    letter-spacing: 0.04em;
  }
.venue-classes-all a:hover { color: var(--olive-deep); }
/* Plan your visit */
  .visit-section {
    background: var(--paper-warm);
    padding: var(--s-9) var(--s-7);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
@media (max-width: 768px) { .visit-section { padding: var(--s-8) var(--s-5); } }
.visit-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
.visit-inner > .section-eyebrow { display: block; text-align: center; }
.visit-inner > h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(var(--t-22), 4vw, var(--t-24));
    line-height: 1.15;
    color: var(--olive-deep);
    text-align: center;
    margin: var(--s-3) 0 var(--s-7);
  }
.visit-inner > h2 em { font-style: italic; color: var(--terracotta); }
.visit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-7);
  }
@media (max-width: 720px) { .visit-grid { grid-template-columns: 1fr; gap: var(--s-6); } }
.visit-block { display: flex; flex-direction: column; gap: var(--s-3); padding-top: var(--s-3); border-top: 1px solid var(--rule); }
.visit-block-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: var(--t-19);
    color: var(--olive-deep);
    margin: 0;
  }
.visit-block p {
    font-family: 'Fraunces', serif;
    font-size: var(--t-15);
    line-height: 1.65;
    color: var(--ink);
    margin: 0;
  }
/* Accessibility */
  .accessibility-section {
    padding: var(--s-9) var(--s-7);
    background: var(--paper);
  }
@media (max-width: 768px) { .accessibility-section { padding: var(--s-8) var(--s-5); } }
.accessibility-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
.accessibility-inner > .section-eyebrow { display: block; text-align: center; }
.accessibility-inner h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(var(--t-22), 4vw, var(--t-24));
    line-height: 1.15;
    color: var(--olive-deep);
    text-align: center;
    margin: var(--s-3) 0 var(--s-5);
  }
.accessibility-inner h2 em { font-style: italic; color: var(--terracotta); }
.accessibility-inner p {
    font-family: 'Fraunces', serif;
    font-size: var(--t-17);
    line-height: 1.7;
    color: var(--ink);
    margin: 0 0 var(--s-4);
  }
.accessibility-link {
    font-family: 'Inter', sans-serif;
    font-size: var(--t-13);
    font-weight: 600;
    color: var(--terracotta-text);
    letter-spacing: 0.04em;
  }
.accessibility-link:hover { color: var(--olive-deep); }
/* Venue gallery */
  .venue-gallery {
    background: var(--paper-warm);
    padding: var(--s-9) var(--s-7);
    border-top: 1px solid var(--rule);
  }
@media (max-width: 768px) { .venue-gallery { padding: var(--s-8) var(--s-5); } }
.venue-gallery-heading { max-width: 1280px; margin: 0 auto var(--s-7); text-align: center; }
.venue-gallery-heading h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(var(--t-22), 4vw, var(--t-24));
    line-height: 1.15;
    color: var(--olive-deep);
    margin: var(--s-3) 0 0;
  }
.venue-gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
  }
@media (max-width: 720px) { .venue-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.venue-gallery-item { margin: 0; }
.venue-gallery-item .placeholder { aspect-ratio: 1 / 1; }
/* Nearby attractions */
  .nearby-section {
    background: var(--olive-deep);
    color: var(--paper);
    padding: var(--s-9) var(--s-7);
  }
@media (max-width: 768px) { .nearby-section { padding: var(--s-8) var(--s-5); } }
.nearby-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
.nearby-inner .section-eyebrow { color: var(--honey); }
.nearby-inner h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(var(--t-22), 4vw, var(--t-24));
    line-height: 1.15;
    color: var(--paper);
    margin: var(--s-3) 0 var(--s-5);
  }
.nearby-inner h2 em { font-style: italic; color: var(--honey); }
.nearby-inner p {
    font-family: 'Fraunces', serif;
    font-size: var(--t-17);
    line-height: 1.7;
    color: var(--paper);
    margin: 0 0 var(--s-6);
  }
.nearby-inner p a {
    color: var(--paper);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
.nearby-inner p a:hover { color: var(--honey); }
.nearby-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-5);
  }
.nearby-link {
    font-family: 'Inter', sans-serif;
    font-size: var(--t-13);
    font-weight: 600;
    color: var(--paper);
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.04em;
  }
.nearby-link:hover { color: var(--honey); }
.nearby-link:focus-visible { outline: 2px solid var(--honey); outline-offset: 3px; }
.season-tab .glyph {
    margin-right: 8px;
    font-size: 13px;
    display: inline-block;
    transform: translateY(-1px);
  }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
/* SECTION HEADING */
  .section-heading {
    padding: 60px 8vw 30px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid var(--rule);
  }
.section-heading h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(32px, 4.5vw, 52px);
    letter-spacing: -0.02em;
    color: var(--olive-deep);
  }
.section-heading h2 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 400;
  }
.growers-section .section-heading {
    border-top: none;
    padding: 0 0 24px;
  }
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 40px;
  }
.class-card-desc {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    opacity: 0.9;
    margin-bottom: 18px;
    flex-grow: 1;
  }
.venue-hero {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-8);
  align-items: center;
  max-width: 1320px; margin: 0 auto;
  padding: var(--s-8) var(--s-7) var(--s-8);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 880px) {
  .venue-hero { grid-template-columns: 1fr; padding: var(--s-7) var(--s-5); }
}
.venue-hero-text .hero-eyebrow {
  text-align: left;
  margin-bottom: var(--s-4);
}
.venue-hero-text h1 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.02;
  color: var(--olive-deep); margin-bottom: var(--s-5);
  letter-spacing: -0.025em;
}
.venue-hero-text h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.venue-hero-text .hero-deck {
  text-align: left; margin-left: 0; margin-right: 0;
  font-size: var(--t-19);
}
.venue-hero-text .hero-actions { justify-content: flex-start; }
.venue-hero-image {
  aspect-ratio: 4 / 5; background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative;
}
.venue-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.venue-hero-image .placeholder {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: var(--t-13); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); opacity: 0.4; text-align: center; padding: var(--s-5);
}
.venue-photo-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2);
  max-width: 1320px; margin: 0 auto; padding: 0 var(--s-7);
}
@media (max-width: 768px) {
  .venue-photo-strip { grid-template-columns: repeat(2, 1fr); padding: 0 var(--s-5); }
}
.venue-photo-strip .venue-photo {
  aspect-ratio: 4 / 3; background: var(--paper-warm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: var(--t-12); letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); opacity: 0.5; text-align: center; padding: var(--s-4);
}
.venue-body {
  display: grid; grid-template-columns: 2fr 1fr; gap: var(--s-8);
  align-items: start; max-width: 1320px; margin: 0 auto;
  padding: var(--s-9) var(--s-7);
}
@media (max-width: 880px) {
  .venue-body { grid-template-columns: 1fr; padding: var(--s-8) var(--s-5); }
}
.venue-body .prose h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.15;
  color: var(--olive-deep); margin-bottom: var(--s-5);
}
.venue-body .prose h2 em { font-style: italic; color: var(--terracotta); }
.venue-body .prose h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-24); line-height: 1.2;
  color: var(--olive-deep); margin: var(--s-7) 0 var(--s-3);
}
.venue-body .prose p {
  font-family: 'Fraunces', serif; font-size: var(--t-18);
  line-height: 1.7; margin-bottom: var(--s-4); opacity: 0.92;
}
.venue-body .prose p:first-of-type::first-letter {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 64px; font-weight: 300; float: left;
  line-height: 0.85; margin: 6px 12px 0 0; color: var(--terracotta);
}
.venue-body .prose ul, .venue-body .prose ol {
  margin: var(--s-4) 0 var(--s-5); padding-left: 0; list-style: none;
}
.venue-body .prose ul li, .venue-body .prose ol li {
  padding-left: var(--s-5); position: relative; margin-bottom: var(--s-3);
  font-family: 'Fraunces', serif; font-size: var(--t-17); line-height: 1.6;
}
.venue-body .prose ul li::before {
  content: '\25C8'; position: absolute; left: 0; top: 4px;
  color: var(--terracotta); font-size: var(--t-13);
}
.venue-body .prose ol { counter-reset: list; }
.venue-body .prose ol li::before {
  counter-increment: list;
  content: counter(list) '.';
  position: absolute; left: 0; top: 0;
  color: var(--terracotta-text); font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: var(--t-15);
}
.venue-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: var(--s-5); }
@media (max-width: 880px) { .venue-sidebar { position: static; } }
.venue-classes {
  background: var(--paper-warm); padding: var(--s-9) var(--s-7);
}
.venue-classes-inner { max-width: 1320px; margin: 0 auto; }
.venue-classes-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: var(--s-7);
}
.venue-class-card {
  background: var(--paper); padding: var(--s-6) var(--s-5) var(--s-6);
  border: 1px solid var(--rule); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; min-height: 200px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}
.venue-class-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -25px rgba(42, 31, 21, 0.35);
}
.venue-class-card .glyph {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 36px; color: var(--terracotta); line-height: 1;
  margin-bottom: var(--s-3);
}
.venue-class-card h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-21); margin-bottom: var(--s-2); line-height: 1.2;
}
.venue-class-card p {
  font-family: 'Fraunces', serif; font-size: var(--t-15);
  line-height: 1.55; opacity: 0.9; flex: 1; margin-bottom: var(--s-4);
}
.venue-class-card .link {
  font-family: 'Inter', sans-serif; font-size: var(--t-12);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta-text); font-weight: 600;
  border-bottom: 1px solid var(--terracotta-text);
  padding-bottom: var(--s-1); align-self: flex-start;
}
.nearby {
  padding: var(--s-9) var(--s-7);
  background: var(--paper);
  max-width: 1320px; margin: 0 auto;
}
@media (max-width: 768px) { .nearby { padding: var(--s-8) var(--s-5); } }
.nearby-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5); margin-top: var(--s-6);
}
.nearby-card {
  padding: var(--s-5); background: var(--paper-warm);
  border-left: 3px solid var(--olive);
}
.nearby-card h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--t-18); margin-bottom: var(--s-2);
}
.nearby-card p {
  font-family: 'Fraunces', serif; font-size: var(--t-15);
  line-height: 1.55; opacity: 0.9;
}
.venue-getting-here {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7);
  align-items: start; padding: var(--s-9) var(--s-7);
  max-width: 1320px; margin: 0 auto;
}
@media (max-width: 880px) {
  .venue-getting-here { grid-template-columns: 1fr; padding: var(--s-8) var(--s-5); }
}
.venue-getting-here h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.15;
  color: var(--olive-deep); margin-bottom: var(--s-4);
}
.venue-getting-here h2 em { font-style: italic; color: var(--terracotta); }




/* ========================================================================
   FOOTER CONTRAST FIX - 2026-05-18
   ========================================================================
   Old: column h3 used --terracotta (#b85c38) on --olive-deep (#3d4a2a) = 2.08:1 FAIL.
   New: --honey (#c89545) lifts to ~4.6:1 PASS for large text and is legible.
   Body links: opacity:1 (was 0.85) -> 8.27:1 AAA.
   Footer bottom: opacity 0.92 (was 0.7) -> ~7:1 AAA.
   Trust strip items: opacity 1 (was 0.85) -> 8.27:1 AAA.
   ======================================================================== */
.site-footer .footer-col h3 {
  color: var(--honey) !important;
  opacity: 1 !important;
}
.site-footer .footer-col a {
  color: var(--paper) !important;
  opacity: 1 !important;
}
.site-footer .footer-col a:hover,
.site-footer .footer-col a:focus {
  color: var(--honey) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.site-footer .footer-col a:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
}
.site-footer .footer-blurb { opacity: 1 !important; }
.site-footer .footer-trust-item { opacity: 1 !important; color: var(--paper) !important; }
.site-footer .footer-acknowledgement { opacity: 1 !important; }
.site-footer .footer-bottom { opacity: 0.92 !important; }
.site-footer .footer-brand-name em { color: var(--honey) !important; }

/* HEADER PILL CTAs - explicit styling for nav-cta-wrap (was inside fallback only) */
.nav-list .nav-cta-wrap { list-style: none; margin-left: auto; }
.nav-list .nav-cta-wrap .nav-actions {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.nav-list .nav-cta-wrap .nav-cta-secondary,
.nav-list .nav-cta-wrap .nav-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.nav-list .nav-cta-wrap .nav-cta-secondary {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
}
.nav-list .nav-cta-wrap .nav-cta-secondary:hover,
.nav-list .nav-cta-wrap .nav-cta-secondary:focus {
  background: var(--paper);
  color: var(--ink);
}
.nav-list .nav-cta-wrap .nav-cta {
  background: var(--terracotta-text);
  color: var(--paper);
  border: 1px solid var(--terracotta-text);
}
.nav-list .nav-cta-wrap .nav-cta:hover,
.nav-list .nav-cta-wrap .nav-cta:focus {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* HOMEPAGE PARTNERS + GOOGLE REVIEWS CAROUSEL - lifted to component scope */
.ffw-carousel-section {
  padding: 80px 6vw;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.ffw-carousel-section + .ffw-carousel-section {
  border-top: 1px solid var(--rule);
}
.ffw-carousel-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  text-align: center;
  margin: 0 0 14px;
}
.ffw-carousel-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 50px);
  color: var(--olive-deep);
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.15;
}
.ffw-carousel-title em { font-style: italic; color: var(--terracotta); }
.ffw-carousel-lede {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.ffw-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
}
.ffw-carousel-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s ease;
  will-change: transform;
}
.ffw-carousel-slide {
  flex: 0 0 calc((100% - 96px) / 4);
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 900px) { .ffw-carousel-slide { flex: 0 0 calc((100% - 32px) / 2); } }
@media (max-width: 540px) { .ffw-carousel-slide { flex: 0 0 100%; } }
.ffw-carousel-slide img { max-width: 140px; max-height: 80px; width: auto; height: auto; }
.ffw-carousel-slide .review-stars { color: var(--honey); font-size: 18px; letter-spacing: 4px; margin: 0 0 12px; }
.ffw-carousel-slide .review-text {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 14px;
}
.ffw-carousel-slide .review-attrib {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}
.ffw-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.ffw-carousel-dot {
  width: 10px; height: 10px; border-radius: 0; padding: 0;
  background: transparent;
  border: 1px solid var(--rule-strong);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.ffw-carousel-dot[aria-current="true"] { background: var(--terracotta-text); border-color: var(--terracotta-text); }
.ffw-carousel-dot:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
.ffw-carousel-arrows { display: flex; gap: 10px; margin-left: auto; }
.ffw-carousel-arrow {
  background: var(--paper);
  border: 1px solid var(--rule);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
}
.ffw-carousel-arrow:hover, .ffw-carousel-arrow:focus { background: var(--paper-warm); }


/* ========================================================================
   FAQ READABILITY FIX - 2026-05-19
   ========================================================================
   Bold the question (inside <summary>) and add space between question and
   answer. Applies to FAQ accordion across every page (.faq-item is the
   universal wrapper).
   ======================================================================== */
.faq-item summary,
.faq-item summary > span,
.faq-item .faq-question,
.faq-item .faq-question > span {
  font-family: 'Fraunces', serif !important;
  font-weight: 600 !important;
  font-size: var(--t-18, 18px) !important;
  color: var(--olive-deep) !important;
  letter-spacing: 0;
  line-height: 1.4;
}
.faq-item .faq-answer {
  padding-top: 18px !important;
  margin-top: 4px !important;
}
.faq-item[open] .faq-answer {
  border-top: 1px dotted var(--rule-soft, rgba(42,31,21,0.22));
  padding-top: 22px !important;
}
.faq-item .faq-answer p,
.faq-item .faq-answer li {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: var(--t-17, 17px);
  line-height: 1.7;
  color: var(--ink);
}
.faq-item .faq-answer p:first-child { margin-top: 0; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ========================================================================
   CONTRAST FINAL PASS - 2026-05-19
   ========================================================================
   The earlier honey-on-olive-deep choice fails WCAG AA at 12px (3.55:1).
   Switch the footer column h3 to paper (8.30:1 AAA) and reserve honey
   only for the large brand-em flourish.
   ======================================================================== */
.site-footer .footer-col h3 {
  color: var(--paper) !important;
  opacity: 1 !important;
}
.site-footer .footer-brand-name em { color: var(--honey) !important; }

/* Eyebrows used widely - tighten to terracotta-text which passes 5.51:1 */
.hero-eyebrow,
.section-eyebrow,
.eyebrow,
.menu-card .eyebrow,
.faq-category-eyebrow,
.ffw-carousel-eyebrow {
  color: var(--terracotta-text) !important;
}

/* Body text accent that occasionally uses standard terracotta should fall back to terracotta-text */
.lede em, .hero-deck em, p em.accent {
  color: var(--terracotta-text);
}

/* MEC placeholder labels in cooking-classes hub use olive — ensure they sit at the AA threshold */
.mec-placeholder .mec-placeholder-label,
.mec-placeholder code {
  color: var(--olive-deep) !important;
}

/* Booking card learn-more links — increase weight for tappability and contrast confidence */
.venue-booking-card a[target="_blank"] {
  font-weight: 500;
}

/* Focus rings on all interactive elements - critical for keyboard a11y */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terracotta) !important;
  outline-offset: 3px !important;
}

/* ========================================================================
   v1.5.1 ADDITIONS - 2026-05-19
   ========================================================================
   - Logo enlarged in nav header
   - Awards strip styling (logo cards in trust strip)
   - Partner carousel logo image sizing
   - ATDW widget container wrap (consistent look)
   ======================================================================== */

/* Logo larger and crisper */
.site-header .logo img {
  height: 80px !important;
  width: auto !important;
  max-width: 320px !important;
}
@media (max-width: 768px) {
  .site-header .logo img { height: 56px !important; max-width: 220px !important; }
}

/* Award trust strip — visual logo cards instead of plain text */
.footer-trust { gap: 36px !important; align-items: center; justify-content: center; }
.footer-trust .award-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  padding: 10px 16px;
  border: 1px solid rgba(245, 239, 228, 0.4);
  height: 70px;
  min-width: 130px;
}
.footer-trust .award-logo img {
  max-height: 50px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.footer-trust .award-logo[data-pending="true"] {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Partner carousel — when img tags replace text */
.ffw-carousel-slide img.partner-logo {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.1);
  transition: filter 0.2s, transform 0.2s;
}
.ffw-carousel-slide img.partner-logo:hover {
  filter: grayscale(0);
  transform: scale(1.04);
}

/* ATDW widget container — consistent framing */
.atdw-widget-wrap {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 24px;
  margin: 28px 0;
}
.atdw-widget-wrap .atdw-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 12px;
}
.atdw-widget-wrap iframe,
.atdw-widget-wrap script + iframe {
  width: 100% !important;
  min-height: 600px;
  border: 0;
  background: var(--paper);
}

/* Where-to-stay region cards */
.atdw-region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin: 32px 0 0;
}
.atdw-region-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.atdw-region-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--olive-deep);
  margin: 0 0 8px;
}
.atdw-region-card h3 em { font-style: italic; color: var(--terracotta); }
.atdw-region-card .city {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 18px;
}
.atdw-region-card p {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 18px;
}

/* ========================================================================
   v1.6.0 ADDITIONS - 2026-05-19
   ========================================================================
   - Rotating announcement banner
   - Footer colour accents + award logo positioning
   - Fixed button hover states
   - Dark-green section heading contrast
   - FAQ AEO question polish
   ======================================================================== */

/* Announcement rotator */
.announcement-rotator {
  position: relative;
  background: var(--olive-deep);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 12px 6vw;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.announcement-rotator .announcement-slide {
  position: absolute;
  left: 0; right: 0;
  padding: 12px 6vw;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.announcement-rotator .announcement-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.announcement-rotator .announcement-slide a {
  color: var(--honey);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 12px;
  font-weight: 500;
}
.announcement-rotator .announcement-slide a:hover,
.announcement-rotator .announcement-slide a:focus {
  color: var(--paper);
}
@media (prefers-reduced-motion: reduce) {
  .announcement-rotator .announcement-slide { transition: none; }
}

/* Footer colour accents - paper-warm divider between columns + terracotta brand line */
.site-footer { position: relative; }
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--terracotta-text) 0%, var(--honey) 50%, var(--olive) 100%);
}
.site-footer .footer-inner > div { position: relative; }
.site-footer .footer-inner > div::after {
  content: '';
  position: absolute;
  top: 10%; right: -22px;
  width: 1px; height: 80%;
  background: linear-gradient(180deg, transparent 0%, rgba(245,239,228,0.18) 50%, transparent 100%);
  display: none;
}
@media (min-width: 900px) {
  .site-footer .footer-inner > div:not(:last-child)::after { display: block; }
}

/* Award strip — give it a paper card backdrop for visual lift */
.footer-trust {
  background: var(--olive);
  padding: 24px 28px;
  margin: 32px 0 24px;
}

/* Button hover/active states — universal fix */
.btn-primary, .btn--primary, .nav-cta, button.btn-primary {
  background: var(--terracotta-text);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--terracotta-text);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.18s ease;
  cursor: pointer;
}
.btn-primary:hover, .btn--primary:hover, .nav-cta:hover,
.btn-primary:focus-visible, .btn--primary:focus-visible, .nav-cta:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--honey);
  transform: translateY(-1px);
}
.btn-secondary, .btn--secondary, .nav-cta-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s;
  cursor: pointer;
}
.btn-secondary:hover, .btn--secondary:hover, .nav-cta-secondary:hover,
.btn-secondary:focus-visible, .btn--secondary:focus-visible, .nav-cta-secondary:focus-visible {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Dark-green section headings — when h2/h3 sits inside an olive-deep section, force paper */
[style*="background:var(--olive-deep)"] h1,
[style*="background:var(--olive-deep)"] h2,
[style*="background:var(--olive-deep)"] h3,
.section--olive-deep h1,
.section--olive-deep h2,
.section--olive-deep h3,
.bg-olive-deep h1, .bg-olive-deep h2, .bg-olive-deep h3 {
  color: var(--paper) !important;
}
[style*="background:var(--olive-deep)"] h1 em,
[style*="background:var(--olive-deep)"] h2 em,
.section--olive-deep h2 em {
  color: var(--honey) !important;
}

/* FAQ improvements - more breathing room, clearer state */
.faq-list .faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 8px;
  padding: 0 24px;
  transition: background 0.18s ease;
}
.faq-list .faq-item[open] {
  background: var(--paper-warm);
  border-color: var(--terracotta-text);
}
.faq-list .faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.faq-list .faq-item summary::-webkit-details-marker { display: none; }
.faq-list .faq-item summary::before {
  content: '+';
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1;
  color: var(--terracotta);
  flex: 0 0 auto;
  width: 24px;
  text-align: center;
}
.faq-list .faq-item[open] summary::before { content: '\2013'; }
.faq-list .faq-item .faq-answer { padding: 0 0 22px 38px; }
.faq-list .faq-item .faq-answer a { color: var(--terracotta-text); text-decoration: underline; font-weight: 500; }
.faq-list .faq-item .faq-answer a:hover { color: var(--ink); }

/* ========================================================================
   v1.7.0 CRITICAL FIXES - 2026-05-19
   ========================================================================
   - Button hover: NUKE all conflicting rules, enforce readable contrast
   - Body text min 16px (a11y)
   - Top-box quick-fact "Venues" stacked list
   - Wheelchair / accessibility nav icon
   - Share buttons row
   - FAQ answer body min 17px
   ======================================================================== */

/* ===== BUTTONS - the only correct hover rules. !important to win cascade. ===== */
.btn-primary, .btn--primary, a.btn-primary, a.btn--primary, .nav-cta, a.nav-cta {
  background: var(--terracotta-text) !important;
  color: var(--paper) !important;
  border: 1px solid var(--terracotta-text) !important;
}
.btn-primary:hover, .btn--primary:hover, a.btn-primary:hover, a.btn--primary:hover,
.nav-cta:hover, a.nav-cta:hover,
.btn-primary:focus-visible, .btn--primary:focus-visible,
.nav-cta:focus-visible {
  background: var(--terracotta) !important;
  border-color: var(--terracotta) !important;
  color: var(--paper) !important;
  transform: translateY(-1px);
}
.btn-secondary, .btn--secondary, a.btn-secondary, a.btn--secondary, .nav-cta-secondary, a.nav-cta-secondary {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
}
.btn-secondary:hover, .btn--secondary:hover, a.btn-secondary:hover, a.btn--secondary:hover,
.nav-cta-secondary:hover, a.nav-cta-secondary:hover,
.btn-secondary:focus-visible, .btn--secondary:focus-visible, .nav-cta-secondary:focus-visible {
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-color: var(--ink) !important;
}
/* Header pill CTAs are on dark background - inverted style */
.site-header .nav-actions .nav-cta-secondary {
  background: transparent !important;
  color: var(--paper) !important;
  border: 1px solid var(--paper) !important;
}
.site-header .nav-actions .nav-cta-secondary:hover,
.site-header .nav-actions .nav-cta-secondary:focus-visible {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border-color: var(--paper) !important;
}

/* ===== BODY TEXT MIN 16px ===== */
body, p, li, .menu-card p, .faq-answer p, .footer-blurb, .footer-col a, .quick-fact .value {
  font-size: 16px;
}
@media (min-width: 768px) {
  body, p, li, .menu-card p, .faq-answer p { font-size: 17px; }
}
.quick-fact .value { font-family: 'Fraunces', serif; font-size: 18px; line-height: 1.4; }

/* ===== TOP-BOX VENUES STACKED ===== */
.class-quick-facts .quick-fact .value.venues-list { font-size: 14px; line-height: 1.7; }
.quick-fact .value ul.venue-stack {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.7;
}
.quick-fact .value ul.venue-stack li { padding: 1px 0; }

/* ===== WHEELCHAIR / ACCESSIBILITY NAV ICON (no circle, larger glyph) ===== */
.site-header .nav-actions .nav-accessibility {
  display: inline-flex; align-items: center; justify-content: center;
  width: auto; height: auto;
  border: none;
  border-radius: 0;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.18s;
  margin-left: 10px;
  padding: 4px;
}
.site-header .nav-actions .nav-accessibility svg {
  width: 36px; height: 36px; display: block;
}
.site-header .nav-actions .nav-accessibility:hover,
.site-header .nav-actions .nav-accessibility:focus-visible {
  background: transparent;
  color: var(--honey);
  border: none;
}

/* ===== SHARE BUTTONS ===== */
.share-row {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 32px 0;
  font-family: 'Inter', sans-serif;
}
.share-row .share-label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive-deep); margin-right: 8px;
}
.share-row a.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.share-row a.share-btn:hover,
.share-row a.share-btn:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}
.share-row a.share-btn svg { width: 18px; height: 18px; }

/* ===== FAQ READABILITY (final) ===== */
.faq-list .faq-item .faq-answer p { font-size: 17px; line-height: 1.7; }
.faq-list .faq-item summary, .faq-list .faq-item summary > span { font-size: 18px !important; }

/* ========================================================================
   v1.8.1 FINAL FIXES - 2026-05-19
   ========================================================================
   - Right-justify nav-actions (Book a class + accessibility icon to far right)
   - Hide MEC placeholder labels / dashed wrappers
   - Trustindex wrap styling
   ======================================================================== */

/* Right-justify nav-actions */
.site-header .header-inner { justify-content: space-between; align-items: center; }
.site-header nav { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.site-header .nav-actions {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end !important;
}
.site-header .nav-cta,
.site-header .nav-cta-secondary,
.site-header .nav-accessibility,
.site-header .nav-search { flex-shrink: 0; }

/* Hide remaining MEC placeholder dashed wrappers and per-event social share clutter */
.mec-placeholder { display: none !important; }
.dev-note { display: none !important; }
.mec-event-sharing,
.mec-wrap .mec-event-sharing,
.mec-grid-soldout-container .mec-event-sharing { display: none !important; }

/* Trustindex review widget container */
.trustindex-wrap {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 24px;
  margin: 24px 0;
}

/* Smart logo carousel wrap */
.sp-logo-carousel-pro, .smart-logo-showcase {
  margin: 24px 0;
}

/* Hide WP admin bar overflow on logged-out / public view */
body:not(.logged-in) #wpadminbar { display: none; }

/* MEC images cap */
.mec-event-image img, .mec-wrap .mec-event-image img {
  max-height: 240px; object-fit: cover; width: 100%;
}

/* ========================================================================
   v1.8.2 - NAV NO-WRAP + accessibility icon proper wheelchair
   ========================================================================
   Aims:
   - Nav row stays on one line at 1100px+ desktop
   - Logo 260x64 (smaller than v1.8 320x80) so nav has more room
   - Pills get tighter padding
   - Below 1100px the menu collapses to hamburger
   ======================================================================== */

.site-header .header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 4vw;
}

.site-header .logo img {
  height: 64px !important;
  width: auto !important;
  max-width: 260px !important;
}

.site-header nav[aria-label="Main navigation"] {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.site-header .nav-list {
  display: flex !important;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 22px;
  flex-wrap: nowrap;
}
.site-header .nav-list > li {
  white-space: nowrap;
}
.site-header .nav-list > li > a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-decoration: none;
  padding: 6px 2px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.site-header .nav-list > li > a:hover,
.site-header .nav-list > li.current-menu-item > a {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.site-header .nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0;
  margin-left: 12px;
}

.site-header .nav-cta, .site-header .nav-cta-secondary {
  padding: 10px 18px !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  white-space: nowrap;
}

.site-header .nav-accessibility {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  color: var(--paper);
  text-decoration: none;
  margin-left: 10px;
  padding: 4px;
  flex-shrink: 0;
}
.site-header .nav-accessibility svg {
  width: 36px !important;
  height: 36px !important;
  display: block;
}
.site-header .nav-accessibility:hover,
.site-header .nav-accessibility:focus-visible {
  background: transparent !important;
  border: none !important;
  color: var(--honey);
}
.site-header .nav-accessibility:hover svg,
.site-header .nav-accessibility:focus-visible svg {
  color: var(--honey);
}

.site-header .nav-toggle { display: none; }

/* Tablet + mobile: collapse menu */
@media (max-width: 1100px) {
  .site-header .nav-list { display: none !important; }
  .site-header .nav-toggle {
    display: inline-block !important;
    background: transparent;
    border: 1px solid var(--paper);
    color: var(--paper);
    padding: 8px 14px;
    font-family: 'Inter', sans-serif;
 
/* ============================================================
 * Phase 0 global theme fixes — 2026-05-26
 * Source spec: p5-global-and-venues/AUDIT-and-BUILD-SPEC-global-theme-fixes.md
 * Sections 1 (contrast guardrail) + 2 (access block) + 3 (spacing + venue grid)
 * ============================================================ */

/* === 1. Header dropdown sub-menu contrast === */
.site-header .sub-menu,
.site-header .sub-menu li,
.site-header .sub-menu a {
  background: var(--paper);
  color: var(--ink);
}
.site-header .sub-menu a:hover,
.site-header .sub-menu a:focus { color: var(--terracotta-text); }

/* === 1. Defensive: green text on paper surface reverts to ink === */
[class*="surface-paper"] .section-eyebrow,
[class*="surface-warm"] .section-eyebrow { color: var(--terracotta-text); }
[class*="surface-paper"] .faq-section-heading h2,
[class*="surface-warm"] .faq-section-heading h2 { color: var(--olive-deep); }

/* === 1. Defensive: any green text on olive surface forces paper === */
.surface-olive,
.surface-olive-deep,
[class*="surface-olive"] { color: var(--paper); }
.surface-olive .section-eyebrow,
.surface-olive-deep .section-eyebrow,
[class*="surface-olive"] .section-eyebrow { color: var(--honey); }
.surface-olive .faq-section-heading h2,
.surface-olive-deep .faq-section-heading h2,
[class*="surface-olive"] .faq-section-heading h2 { color: var(--paper); }
.surface-olive .faq-section-heading h2 em,
.surface-olive-deep .faq-section-heading h2 em,
[class*="surface-olive"] .faq-section-heading h2 em { color: var(--honey); }
.surface-olive .faq-item,
.surface-olive-deep .faq-item,
[class*="surface-olive"] .faq-item { background: var(--paper); }
.surface-olive .faq-question,
.surface-olive-deep .faq-question,
[class*="surface-olive"] .faq-question { color: var(--olive-deep); }
.surface-olive p,
.surface-olive-deep p,
[class*="surface-olive"] p { color: var(--paper); }

/* === 1. Award + partner chips === */
.footer-award { background: rgba(245,239,228,0.08); color: var(--paper); }
.partner-logo-card { background: var(--paper); }
.partner-logo-card a { color: var(--terracotta-text); }

/* === 1. Recipe meta chips === */
.recipe-meta-chip,
.wprm-recipe-meta-chip,
.recipe-category-badge {
  background: var(--paper-warm);
  color: var(--ink-deep, var(--ink));
  border: 1px solid var(--rule);
}

/* === 1. Footer acknowledgement === */
.footer-acknowledgement,
.footer-acknowledgement p { color: var(--paper); }

/* === 3. Spacing token rebalance (96px -> 64px section padding) === */
.section { padding: var(--s-8) var(--s-7); }
.surface-warm.surface-full,
.surface-olive.surface-full,
[class*="surface-"].surface-full { padding: var(--s-8) var(--s-7); }
section + section { margin-top: 0; }
.section-deck { margin-bottom: var(--s-6); }
.feature-grid { margin-top: 0; }

/* === 3. Venue class card flex grid (equal heights, flush footers) === */
.venue-classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-6);
  align-items: stretch;
}
.venue-class-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.venue-class-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-warm);
}
.venue-class-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.venue-class-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--s-5);
}
.venue-class-card-meta { margin-top: auto; padding-top: var(--s-4); }

/* === 2. Access block (used by template-parts/venue/access-block.php) === */
.venue-access-block { padding: var(--s-8) var(--s-7); background: var(--paper-warm); }
.venue-access-inner { max-width: 1100px; margin: 0 auto; }
.venue-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  margin-top: var(--s-6);
}
@media (max-width: 800px) {
  .venue-access-grid { grid-template-columns: 1fr; }
}
.venue-access-specifics p { margin-bottom: var(--s-3); }
.venue-access-shared {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.access-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-4);
  align-items: start;
}
.access-glyph {
  font-size: 36px;
  color: var(--terracotta-text);
  line-height: 1;
}
.access-item h3 {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: var(--t-19, 19px);
  color: var(--olive-deep);
  margin-bottom: var(--s-2);
}
.access-item p {
  font-size: var(--t-16, 16px);
  line-height: 1.6;
}
.access-item p a { color: var(--terracotta-text); text-decoration: underline; }
.venue-access-cta {
  text-align: center;
  margin-top: var(--s-7);
  font-family: Fraunces, serif;
  font-size: var(--t-17, 17px);
}
.venue-access-cta a { color: var(--terracotta-text); text-decoration: underline; }

/* === 4. FAQ locked template (shared) === */
.faq-section { padding: var(--s-9) var(--s-7); max-width: 880px; margin: 0 auto; }
.faq-section-heading { text-align: center; margin-bottom: var(--s-7); }
.faq-section-heading h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--olive-deep);
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}
.faq-section-heading h2 em { font-style: italic; color: var(--terracotta); }
.faq-section-heading p { font-family: Fraunces, serif; font-size: var(--t-17, 17px); line-height: 1.6; opacity: 0.9; }
.faq-list { border-top: 1px solid var(--rule); margin-top: var(--s-6); }
.faq-item { border-bottom: 1px solid var(--rule); background: var(--paper); transition: background 0.25s; }
.faq-item[open] { background: var(--paper-warm); box-shadow: inset 0 3px 0 0 var(--terracotta); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  width: 100%;
  padding: var(--s-6) var(--s-5);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: var(--t-19, 19px);
  line-height: 1.35;
  color: var(--olive-deep);
  text-align: left;
  min-height: 64px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--terracotta-text); }
.faq-question:focus-visible { outline: 2px solid var(--terracotta); outline-offset: -2px; }
.faq-question em { font-style: italic; color: var(--terracotta); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--terracotta-text);
  transition: transform 0.25s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 var(--s-5) var(--s-6);
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: var(--t-17, 17px);
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.92;
  max-width: 720px;
}
.faq-answer p { margin-bottom: var(--s-3); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--terracotta-text); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--olive-deep); }
.faq-all-link { text-align: center; margin-top: var(--s-7); }
.faq-all-link a {
  font-family: Inter, sans-serif;
  font-size: var(--t-12, 12px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-text);
  text-decoration: none;
  padding: var(--s-3) var(--s-5);
  border: 1px solid var(--terracotta-text);
  display: inline-block;
  min-height: 44px;
  transition: background 0.2s, color 0.2s;
}
.faq-all-link a:hover { background: var(--terracotta-text); color: var(--paper); }

/* === FAQ jump nav for the global FAQ page === */
.faq-jump-nav {
  position: sticky;
  top: 64px;
  z-index: 20;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-3) var(--s-5);
}
.faq-jump-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
}
.faq-jump-nav li { margin: 0; }
.faq-jump-nav a {
  display: inline-block;
  padding: 6px 12px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-text);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.faq-jump-nav a:hover,
.faq-jump-nav a:focus { background: var(--terracotta-text); color: var(--paper); border-color: var(--terracotta-text); }

/* ============================================================
 * end Phase 0 global theme fixes
 * ============================================================ */

/* ============================================================
 * Editorial Earth full-bleed override — 2026-05-27
 * Kadence parent theme applies `.content-style-boxed` +
 * `.content-width-normal` to the body, which adds a max-width and
 * boxed inner padding to `.content-container.site-container` +
 * `.entry-content-wrap`. That treatment is correct for normal
 * pages but it strangles Editorial Earth sections (page-hero,
 * filter-bar, .class-grid, .cta-strip, .surface-full) that are
 * designed to run edge-to-edge.
 *
 * Force every Editorial Earth page to render at the viewport width.
 * Each Editorial section then provides its own max-width via the
 * design system (1100-1320px, applied per component).
 * ============================================================ */
body.editorial-page .content-container.site-container,
body.editorial-page.content-style-boxed .content-container.site-container,
body.editorial-page .entry-content-wrap,
body.editorial-page article.entry,
body.editorial-page article.entry .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Kill the inner padding Kadence's "boxed" content style adds */
body.editorial-page.content-style-boxed .entry-content-wrap,
body.editorial-page .content-style-boxed .entry-content-wrap {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* The wp-site-blocks wrapper Kadence emits — full bleed */
body.editorial-page .wp-site-blocks,
body.editorial-page main#main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Make sure the Kadence content-title block (which sits inside the boxed
   wrap) doesn't paint a white card behind the hero */
body.editorial-page .content-title-style-above .entry-hero,
body.editorial-page .entry-hero { background: transparent !important; }

/* Each Editorial section already supplies its own max-width.
   Reinforce the canonical max-widths so Kadence's inheritance can't
   override them inside the now-unconstrained wrapper. */
body.editorial-page .page-hero,
body.editorial-page .calendar-section,
body.editorial-page .cta-strip,
body.editorial-page .filter-bar-inner,
body.editorial-page .surface-inner,
body.editorial-page .section-inner,
body.editorial-page .venue-access-inner,
body.editorial-page .class-grid {
    margin-left: auto !important;
    margin-right: auto !important;
}
