/* ==========================================================================
   Donna's Table — Design System
   Clean, calm, confident. White linen with soft gold accents.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Palette */
  --linen: #FAF7F2;
  --cream: #F2EDE4;
  --light-gold: #E8D5B0;
  --soft-gold: #C9A96E;
  --soft-gold-deep: #B2914F;
  --warm-brown: #4A3728;
  --deep-brown: #2C1810;
  --ink: #1A0F08;
  --white: #FFFFFF;

  /* Semantic */
  --bg: var(--linen);
  --bg-alt: var(--cream);
  --bg-dark: var(--deep-brown);
  --text: var(--warm-brown);
  --text-strong: var(--deep-brown);
  --text-muted: #7A6553;
  --text-on-dark: #F2EDE4;
  --text-on-dark-muted: #C9B59A;
  --accent: var(--soft-gold);
  --rule: rgba(201, 169, 110, 0.35);
  --rule-strong: var(--soft-gold);

  /* Typography */
  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Type scale (fluid) */
  --fs-xs: 0.75rem;        /* 12px - eyebrow labels */
  --fs-sm: 0.875rem;       /* 14px */
  --fs-base: 1rem;         /* 16px */
  --fs-md: 1.125rem;       /* 18px */
  --fs-lg: 1.25rem;        /* 20px */
  --fs-xl: clamp(1.5rem, 2.2vw, 1.875rem);
  --fs-2xl: clamp(1.875rem, 3vw, 2.5rem);
  --fs-3xl: clamp(2.25rem, 4.5vw, 3.5rem);
  --fs-4xl: clamp(2.75rem, 6.5vw, 5rem);
  --fs-hero: clamp(3rem, 8vw, 6rem);

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 820px;
  --container-wide: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(2.75rem, 5vw, 4rem);   /* compact-medium default (post-v2 compactness pass) */
  --section-y-sm: clamp(2rem, 4vw, 3rem);   /* tight, used by .section--tight */
  --section-y-lg: clamp(4rem, 9vw, 7rem);   /* airy, used by dark CTAs + feature-strip sections */

  /* Radii */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 12px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 6px 24px -10px rgba(44, 24, 16, 0.18);
  --shadow-lg: 0 20px 50px -20px rgba(44, 24, 16, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 150ms;
  --dur: 260ms;
  --dur-slow: 500ms;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

a {
  color: var(--text-strong);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--soft-gold-deep);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: var(--sp-7) 0;
}

::selection {
  background: var(--light-gold);
  color: var(--deep-brown);
}

:focus-visible {
  outline: 2px solid var(--soft-gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-strong);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: var(--fs-4xl);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-3xl);
  font-style: italic;
}

h3 {
  font-size: var(--fs-2xl);
}

h4 {
  font-size: var(--fs-xl);
}

h5 {
  font-size: var(--fs-lg);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
}

h6 {
  font-size: var(--fs-md);
  font-family: var(--font-body);
  font-weight: 500;
}

.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display--hero {
  font-size: var(--fs-hero);
}

.lede {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--text-strong);
  max-width: 52ch;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-gold-deep);
  display: inline-block;
  margin: 0 0 var(--sp-4);
}

.eyebrow--light {
  color: var(--soft-gold);
}

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

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

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: var(--section-y-sm);
}

/* Medium spacing tier — between default and tight, for compactness pass on busy pages */
.section--md {
  padding-block: clamp(2.75rem, 5vw, 4rem);
}

/* (section-head + quote sizing applied universally further down, post-token) */

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-block: var(--section-y-lg);
}

/* If a section explicitly opts into --md or --tight, that wins over the dark default */
.section--md.section--dark { padding-block: clamp(2.75rem, 5vw, 4rem); }
.section--tight.section--dark { padding-block: var(--section-y-sm); }

/* Where two adjacent sections share the same bg (linen-linen or cream-cream)
   add a hairline gold separator so the boundary is still legible. */
.section:not(.section--alt):not(.section--dark) + .section:not(.section--alt):not(.section--dark),
.section--alt:not(.section--dark) + .section--alt:not(.section--dark) {
  border-top: 1px solid rgba(201, 169, 110, 0.22);
}

/* Feature-strip sections (home page image strips) keep the airy default for visual rhythm */
.section:has(.feature-strip) {
  padding-block: var(--section-y-lg);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-on-dark);
}

.section-head {
  max-width: 48ch;
  margin: 0 auto var(--sp-5);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin: 0;
}
.section-head .gold-rule {
  margin-bottom: var(--sp-3);
}
.section-head .muted {
  font-size: 0.95rem;
  margin-top: var(--sp-3);
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--rule-strong);
  border: 0;
  margin: 0 auto var(--sp-5);
}

.gold-rule--left {
  margin-left: 0;
}

.stack > * + * {
  margin-top: var(--sp-4);
}

.stack-lg > * + * {
  margin-top: var(--sp-6);
}

.grid {
  display: grid;
  gap: var(--sp-6);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

@media (min-width: 900px) {
  .grid-3-fixed { grid-template-columns: repeat(3, 1fr); }
  .grid-4-fixed { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--soft-gold);
  --btn-fg: var(--deep-brown);
  --btn-bd: var(--soft-gold);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.75em;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
  --btn-bg: var(--soft-gold-deep);
  --btn-bd: var(--soft-gold-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--deep-brown);
  --btn-bd: var(--soft-gold);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  --btn-bg: var(--soft-gold);
  --btn-fg: var(--deep-brown);
  color: var(--deep-brown);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--deep-brown);
  --btn-bd: rgba(44, 24, 16, 0.25);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  --btn-bd: var(--soft-gold);
  --btn-bg: transparent;
  color: var(--soft-gold-deep);
}

.btn--on-dark {
  --btn-fg: var(--deep-brown);
}

.btn--on-dark.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--linen);
  --btn-bd: var(--soft-gold);
}

/* Light variant — linen background, dark text. Used to differentiate one
   button in a group of dark/outline buttons (e.g. "Meet Donna" in the
   Explore Services CTA on post pages). */
.btn--light {
  background: var(--linen);
  color: var(--deep-brown);
  border-color: var(--linen);
}
.btn--light:hover,
.btn--light:focus-visible {
  background: var(--white);
  color: var(--deep-brown);
  border-color: var(--white);
}

.btn--on-dark.btn--outline:hover,
.btn--on-dark.btn--outline:focus-visible {
  --btn-bg: var(--soft-gold);
  --btn-fg: var(--deep-brown);
  color: var(--deep-brown);
}

.btn--lg {
  padding: 1.1em 2.25em;
  font-size: var(--fs-base);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-brown);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.25em;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.link-arrow::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
}

.link-arrow:hover {
  color: var(--soft-gold-deep);
  border-color: var(--soft-gold);
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(250, 247, 242, 0.95);
  border-bottom-color: var(--rule);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-4);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--deep-brown);
  line-height: 1;
}

.site-nav__brand:hover {
  color: var(--soft-gold-deep);
}

.site-nav__brand img {
  height: 40px;
  width: auto;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}

.site-nav__links a {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--deep-brown);
  position: relative;
  padding-block: 0.25em;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--soft-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__links a[aria-current="page"] {
  color: var(--soft-gold-deep);
}

.site-nav__cta {
  display: none;
}

/* Mobile toggle */
.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  color: var(--deep-brown);
}

.site-nav__toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.site-nav__toggle span::before,
.site-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}

.site-nav__toggle span::before { top: -7px; }
.site-nav__toggle span::after { top: 7px; }

.site-nav__toggle[aria-expanded="true"] span { background: transparent; }
.site-nav__toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.site-nav__drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 85vw);
  background: var(--linen);
  border-left: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  display: none;
  flex-direction: column;
  gap: var(--sp-5);
  z-index: 110;
}

.site-nav__drawer.is-open {
  display: flex;
}

.site-nav__drawer a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--deep-brown);
  line-height: 1.2;
}

.site-nav__drawer .btn {
  align-self: flex-start;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-sm);
}

.site-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
  z-index: 105;
}

.site-nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 960px) {
  .site-nav__links { display: inline-flex; }
  .site-nav__cta { display: inline-flex; }
  .site-nav__toggle { display: none; }
  .site-nav__drawer,
  .site-nav__backdrop { display: none; }
}

/* Prevent body scroll when drawer open */
body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(44, 24, 16, 0.55) 0%, rgba(44, 24, 16, 0.35) 50%, rgba(44, 24, 16, 0.65) 100%);
}

.hero__inner {
  padding-block: var(--sp-10) var(--sp-9);
  max-width: 820px;
}

.hero__eyebrow {
  color: var(--light-gold);
}

.hero h1,
.hero .display {
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.hero__sub {
  font-size: var(--fs-lg);
  font-weight: 300;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--sp-7);
}

.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* Image-led hero (branding baked into the photo, no text overlay). */
.hero--image {
  min-height: clamp(520px, 82vh, 820px);
  align-items: stretch;
  color: var(--linen);
}
.hero--image .hero__media img { object-position: center; }
.hero--image .hero__overlay { display: none; }

.hero__cta-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 0 1.5rem;
  background: linear-gradient(0deg, rgba(44, 24, 16, 0.7) 0%, rgba(44, 24, 16, 0.35) 60%, transparent 100%);
}
.hero__cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__cta-bar .eyebrow { color: var(--light-gold); }

@media (max-width: 640px) {
  .hero__cta-bar__inner { flex-direction: column; align-items: flex-start; }
  .hero__cta-bar .hero__cta { width: 100%; }
  .hero__cta-bar .hero__cta .btn { flex: 1; min-width: 0; }
}

/* Inner page hero — standardized across all non-home pages, left-aligned */
.page-hero {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: left;
  border-bottom: 1px solid var(--rule);
}

.page-hero .eyebrow {
  color: var(--soft-gold-deep);
}

.page-hero .gold-rule {
  margin-left: 0;
}

.page-hero .display {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 0.4em;
}

.page-hero__lede {
  max-width: 56ch;
  margin: 0;
  font-size: var(--fs-base);
  color: var(--text);
}

/* Solid-dark variant — same palette as the site footer. Useful when there's no
   hero image but we still want contrast against the linen body. */
.page-hero--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-bottom: 0;
}
.page-hero--dark .display,
.page-hero--dark .page-hero__lede {
  color: var(--text-on-dark);
}
.page-hero--dark .eyebrow {
  color: var(--soft-gold);
}
.page-hero--dark .gold-rule {
  border-color: rgba(201, 169, 110, 0.45);
}

/* Full-bleed variant — bg image, content boxed on the left, dark-on-left fading-right overlay */
.page-hero--bleed {
  position: relative;
  border-bottom: 0;
  color: var(--linen);
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(420px, 55vw, 600px);
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
.page-hero--bleed .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.page-hero--bleed::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(28, 16, 8, 0.96) 0%,
    rgba(28, 16, 8, 0.88) 25%,
    rgba(28, 16, 8, 0.55) 55%,
    rgba(28, 16, 8, 0.18) 80%,
    rgba(28, 16, 8, 0.05) 100%
  );
}
.page-hero--bleed .container--narrow {
  margin-left: 0;
  margin-right: auto;
  max-width: min(620px, 60%);
}
.page-hero--bleed .display { color: var(--linen); }
.page-hero--bleed .page-hero__lede { color: var(--text-on-dark); }
.page-hero--bleed .eyebrow { color: var(--soft-gold); }
.page-hero--bleed .gold-rule { background-color: var(--soft-gold); opacity: 0.85; }

/* Narrow screens: text gets full width, overlay shifts vertical so it still reads */
@media (max-width: 720px) {
  .page-hero--bleed .container--narrow {
    margin-right: 0;
    max-width: 100%;
  }
  .page-hero--bleed::before {
    background: linear-gradient(
      180deg,
      rgba(28, 16, 8, 0.55) 0%,
      rgba(28, 16, 8, 0.65) 100%
    );
  }
}

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--soft-gold);
}

.card--plain {
  background: transparent;
  border: 0;
}

.card--plain:hover {
  transform: none;
  box-shadow: none;
  border: 0;
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--deep-brown);
  margin: 0;
}

.card__desc {
  color: var(--text);
  margin: 0;
  font-size: var(--fs-base);
}

.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-3);
}

.card__price {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--soft-gold-deep);
}

.card__foot {
  padding: 0 var(--sp-5) var(--sp-5);
}

/* Offer card (3-column service cards on home) */
.offer {
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.offer:hover {
  border-color: var(--soft-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.offer__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto var(--sp-2);
  color: var(--soft-gold-deep);
}

.offer h3 {
  font-size: 1.75rem;
  margin: 0;
}

.offer p {
  color: var(--text);
  margin: 0;
}

.offer .link-arrow {
  margin-top: var(--sp-3);
  align-self: center;
}

/* Package card (charcuterie) */
.package {
  padding: var(--sp-7) var(--sp-6);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative;
}

.package:hover {
  border-color: var(--soft-gold);
  box-shadow: var(--shadow-md);
}

.package--featured {
  background: var(--cream);
  border-color: var(--soft-gold);
}

.package__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--deep-brown);
  line-height: 1;
}

.package__price small {
  font-size: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.25em;
}

.package ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.package li {
  padding-left: 1.4em;
  position: relative;
  color: var(--text);
}

/* Custom bullet — small gold rhombus, geometric and editorial.
   Replaces the previous em-dash style line. */
.package li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--soft-gold);
  transform: rotate(45deg);
  border-radius: 1px;
}

/* Menu item (no image, typographic list) */
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4) var(--sp-6);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.menu-item:last-child { border-bottom: 0; }

.menu-item__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--deep-brown);
  margin: 0 0 0.15em;
}

.menu-item__desc {
  font-size: var(--fs-base);
  color: var(--text);
  margin: 0;
  max-width: 60ch;
}

.menu-item__prices {
  display: flex;
  gap: var(--sp-5);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  color: var(--text-strong);
  white-space: nowrap;
}

.menu-item__prices span small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.1em;
}

.menu-item__single-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--soft-gold-deep);
}

.menu-item__badge {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
  color: var(--soft-gold-deep);
  font-size: 0.9em;
}

@media (max-width: 640px) {
  .menu-item { grid-template-columns: 1fr; }
  .menu-item__prices { font-size: var(--fs-sm); }
}

/* --------------------------------------------------------------------------
   9. Forms
   -------------------------------------------------------------------------- */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

/* Compact form variant — used on the testimonials submission form where
   we want a denser, less airy feel */
.form--compact { gap: 0.85rem; }
.form--compact .form-grid { gap: 0.85rem; }
.form--compact .field { gap: 0.3rem; }
.form--compact .field__label { font-size: 0.7rem; letter-spacing: 0.12em; }
.form--compact .field__input,
.form--compact .field__textarea,
.form--compact .field__select { padding: 0.55em 0.8em; font-size: 0.92rem; }
.form--compact .field__textarea { min-height: 100px; }
.form--compact .form-actions { margin-top: 0.85rem; }

/* Compact panel variant — used to wrap the compact form */
.panel--compact { padding: 1.25rem 1.4rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

@media (min-width: 720px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.field__label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.field__label[data-required]::after {
  content: "*";
  color: var(--soft-gold-deep);
  margin-left: 0.3em;
}

.field__input,
.field__textarea,
.field__select {
  width: 100%;
  padding: 0.85em 1em;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-strong);
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.field__input:hover,
.field__textarea:hover,
.field__select:hover {
  border-color: rgba(201, 169, 110, 0.55);
}

.field__input:focus,
.field__textarea:focus,
.field__select:focus {
  outline: 0;
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.field__textarea {
  min-height: 140px;
  resize: vertical;
}

.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%234A3728' stroke-width='1.4' d='M1 1.5 6 6.5l5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}

.field__hint {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.field__error {
  font-size: var(--fs-sm);
  color: #9B3B2A;
}

.form-status {
  padding: var(--sp-5);
  border-radius: var(--r-md);
  border: 1px solid var(--rule);
  background: var(--cream);
}

.form-status--success {
  border-color: var(--soft-gold);
  background: var(--light-gold);
  color: var(--deep-brown);
}

.form-status--error {
  border-color: #C88A7E;
  background: #F8E8E3;
  color: #6F271B;
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-block: var(--sp-7) var(--sp-5);
  margin-top: 0;
  /* Hairline gold separator between the dark CTA strip above and the dark footer */
  border-top: 1px solid rgba(201, 169, 110, 0.28);
}

.site-footer a {
  color: var(--text-on-dark);
}

.site-footer a:hover {
  color: var(--soft-gold);
}

.site-footer__grid {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-7);
}

@media (min-width: 760px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.site-footer__brand h2 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--linen);
  font-size: 2rem;
  margin: 0 0 var(--sp-3);
}

.site-footer__tag {
  color: var(--text-on-dark-muted);
  max-width: 32ch;
  line-height: 1.55;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin: 0 0 var(--sp-4);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.site-footer__contact p {
  margin: 0 0 var(--sp-2);
  color: var(--text-on-dark-muted);
}

.site-footer__contact a {
  color: var(--linen);
}

.site-footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(233, 213, 176, 0.3);
  border-radius: var(--r-pill);
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
}

.site-footer__social a:hover {
  border-color: var(--soft-gold);
  background: var(--soft-gold);
  color: var(--deep-brown);
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(233, 213, 176, 0.18);
  font-size: var(--fs-sm);
  color: var(--text-on-dark-muted);
}

.site-footer__bar a { color: var(--text-on-dark-muted); }
.site-footer__bar a:hover { color: var(--soft-gold); }

/* --------------------------------------------------------------------------
   11. Utilities
   -------------------------------------------------------------------------- */

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

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  padding: 0.5rem 0.75rem;
  background: var(--deep-brown);
  color: var(--linen);
  border-radius: var(--r-sm);
  transition: top var(--dur) var(--ease);
  z-index: 100;
}

.skip-link:focus {
  top: 0.5rem;
  color: var(--linen);
}

.feature-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-md);
}

.feature-image--tall {
  aspect-ratio: 3 / 4;
}

.feature-image--square {
  aspect-ratio: 1 / 1;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Two-column editorial block (image + text) */
.split {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-9); }
  .split--reverse > :first-child { order: 2; }
}

.split__media img {
  width: 100%;
  border-radius: var(--r-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Cutout variant, for PNGs with transparent background (e.g. isolated product shots). */
.split__media--cutout img {
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  max-height: 520px;
  margin-inline: auto;
  display: block;
}

/* Rise variant, subtle drop shadow to lift the image off the page. */
.split__media--rise img {
  box-shadow:
    0 18px 40px -12px rgba(44, 24, 16, 0.22),
    0 6px 14px -8px rgba(44, 24, 16, 0.14);
  transition: transform 350ms ease, box-shadow 350ms ease;
}
.split__media--rise:hover img {
  transform: translateY(-2px);
  box-shadow:
    0 24px 48px -14px rgba(44, 24, 16, 0.26),
    0 8px 18px -10px rgba(44, 24, 16, 0.16);
}

.split__body > :last-child { margin-bottom: 0; }

/* Quote block */
.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xl);
  line-height: 1.3;
  color: var(--deep-brown);
  max-width: 28ch;
  margin: 0;
  text-wrap: balance;
}

.quote--centered {
  text-align: center;
  margin-inline: auto;
}

.quote__cite {
  display: block;
  margin-top: var(--sp-4);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-gold-deep);
}

/* Callout strip (contact / order info) */
.callout {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

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

.callout dt {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-gold-deep);
  margin-bottom: var(--sp-1);
}

.callout dd {
  margin: 0;
  color: var(--text-strong);
}

/* Placeholder (empty state) */
.placeholder {
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  border: 1px dashed var(--rule);
  border-radius: var(--r-md);
  background: var(--cream);
  color: var(--text-muted);
}

.placeholder__line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--deep-brown);
  max-width: 30ch;
  margin: 0 auto;
}

/* Badge (status chips, featured, etc) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.35em 0.8em;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-gold-deep);
  background: var(--light-gold);
  border-radius: var(--r-pill);
  font-weight: 500;
}

.badge--sold-out {
  background: #E8D8D4;
  color: #8A3A2A;
}

.badge--past {
  background: #E3DDD3;
  color: var(--text-muted);
}

/* Fade-in on scroll (progressive enhancement — enabled by JS) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

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

@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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   12. Cart (floating button, drawer, order modal)
   -------------------------------------------------------------------------- */

.cart-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 64px;
  height: 64px;
  border-radius: var(--r-pill);
  background: var(--deep-brown);
  color: var(--linen);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  border: 2px solid var(--soft-gold);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cart-fab:hover { background: var(--soft-gold-deep); transform: translateY(-2px); }
.cart-fab[hidden] { display: none; }
.cart-fab svg { width: 26px; height: 26px; }
.cart-fab__count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  background: var(--soft-gold);
  color: var(--deep-brown);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(44, 24, 16, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
  z-index: 58;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--linen);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  z-index: 60;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  font-size: 1.1rem;
  color: var(--deep-brown);
  background: transparent;
  transition: background var(--dur) var(--ease);
}
.cart-drawer__close:hover { background: var(--cream); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 0.5rem;
  color: var(--text-muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.cart-line:last-child { border-bottom: 0; }
.cart-line__img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--cream);
}
.cart-line__img--ph { background: var(--cream); }
.cart-line__body { display: flex; flex-direction: column; gap: 0.3rem; }
.cart-line__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.cart-line__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin: 0;
  color: var(--deep-brown);
  line-height: 1.2;
}
.cart-line__meta { font-size: 0.8rem; margin: 0; letter-spacing: 0.05em; text-transform: uppercase; }
.cart-line__remove {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.2rem 0.4rem;
  line-height: 1;
}
.cart-line__remove:hover { color: #8A3A2A; }
.cart-line__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
}
.cart-line__price {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--deep-brown);
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  padding: 0.15rem 0.3rem;
}
.cart-qty__btn {
  width: 24px; height: 24px;
  font-size: 0.95rem;
  color: var(--deep-brown);
  line-height: 1;
}
.cart-qty__btn:hover { color: var(--soft-gold-deep); }
.cart-qty__n { min-width: 1.2em; text-align: center; font-weight: 500; }

.cart-drawer__foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--rule);
  background: var(--cream);
}
.cart-foot__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.1rem;
}

/* Order modal */
.cart-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(44, 24, 16, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
  z-index: 70;
  overflow-y: auto;
}
.cart-modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-modal {
  background: var(--linen);
  border-radius: var(--r-md);
  padding: 2rem;
  width: min(640px, 100%);
  box-shadow: var(--shadow-lg);
}
.cart-modal__head { margin-bottom: 1.5rem; }
.cart-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.btn-ghost {
  padding: 0.95em 1.5em;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: var(--r-sm);
}
.btn-ghost:hover { color: var(--deep-brown); }

/* --------------------------------------------------------------------------
   13. Menu: product cards + carousel + category tabs
   -------------------------------------------------------------------------- */

.cat-tabs {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  scrollbar-width: thin;
}
.cat-tab {
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cat-tab:hover { color: var(--deep-brown); }
.cat-tab.is-active {
  color: var(--deep-brown);
  border-bottom-color: var(--soft-gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product:hover {
  transform: translateY(-3px);
  border-color: var(--soft-gold);
  box-shadow: var(--shadow-md);
}
.product__media {
  aspect-ratio: 4 / 3;
  background: var(--cream);
  overflow: hidden;
}
.product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.product:hover .product__media img { transform: scale(1.03); }
.product__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.product__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--deep-brown);
  margin: 0;
  line-height: 1.2;
}
.product__desc {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}
.product__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.product__size {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--linen);
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--deep-brown);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  min-width: 64px;
}
.product__size:hover { border-color: var(--soft-gold); }
.product__size.is-selected {
  border-color: var(--soft-gold);
  background: var(--light-gold);
}
.product__size small {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15em;
}
.product__size strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--deep-brown);
}
.product__actions {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.product__price {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--soft-gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.product__add {
  padding: 0.7em 1.1em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-brown);
  background: var(--soft-gold);
  border: 1px solid var(--soft-gold);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.product__add:hover { background: var(--soft-gold-deep); color: var(--white); }
.product__add.is-added { background: #2B6E3C; border-color: #2B6E3C; color: #fff; }
.product__add[disabled] {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--rule);
  cursor: default;
}

/* --------------------------------------------------------------------------
   14. Home strips (scrolling product row + feature blocks)
   -------------------------------------------------------------------------- */

.strip-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.strip-head h2 { margin: 0; }

.strip-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 280px);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
}
.strip-scroll > * { scroll-snap-align: start; }

@media (min-width: 900px) {
  .strip-scroll { grid-auto-columns: minmax(300px, 320px); gap: 1.5rem; }
}

/* Feature strip (charcuterie, personal chef) */
.feature-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(420px, 55vw, 580px);
  border-radius: var(--r-md);
  overflow: hidden;
  color: var(--linen);
  isolation: isolate;
}
.feature-strip__media {
  position: absolute; inset: 0;
  z-index: -2;
}
.feature-strip__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-strip__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(44, 24, 16, 0.75) 0%, rgba(44, 24, 16, 0.45) 60%, rgba(44, 24, 16, 0.2) 100%);
}
.feature-strip--reverse .feature-strip__overlay {
  background: linear-gradient(-100deg, rgba(44, 24, 16, 0.75) 0%, rgba(44, 24, 16, 0.45) 60%, rgba(44, 24, 16, 0.2) 100%);
}

/* No overlay tint — background photo shows through as-is. */
.feature-strip--no-tint .feature-strip__overlay { display: none; }
.feature-strip--no-tint .feature-strip__body {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

/* Portrait on the right — keep left dark for text legibility, fade overlay to zero on the right
   so the subject's face reads at full contrast. Used on the From Donna card. */
.feature-strip--portrait-right .feature-strip__overlay {
  background: linear-gradient(100deg, rgba(44, 24, 16, 0.75) 0%, rgba(44, 24, 16, 0.25) 55%, rgba(44, 24, 16, 0) 100%);
}

/* Softens the background photo so headline + copy reads cleanly. */
.feature-strip--blur .feature-strip__media img {
  filter: blur(4px);
  transform: scale(1.06); /* compensates for blur edge fade */
}
.feature-strip--blur .feature-strip__overlay {
  background: linear-gradient(100deg, rgba(44, 24, 16, 0.6) 0%, rgba(44, 24, 16, 0.35) 70%, rgba(44, 24, 16, 0.2) 100%);
}
.feature-strip--blur.feature-strip--reverse .feature-strip__overlay {
  background: linear-gradient(-100deg, rgba(44, 24, 16, 0.6) 0%, rgba(44, 24, 16, 0.35) 70%, rgba(44, 24, 16, 0.2) 100%);
}
.feature-strip__body {
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 560px;
}
.feature-strip--reverse .feature-strip__body { justify-self: end; text-align: right; }
.feature-strip h2,
.feature-strip h3 { color: var(--linen); }
.feature-strip p { color: rgba(255,255,255,0.9); }
.feature-strip .eyebrow { color: var(--light-gold); }

.feature-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.feature-strip__tag {
  padding: 0.3em 0.75em;
  border: 1px solid rgba(233, 213, 176, 0.4);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-gold);
}

/* Values row (dietary / approach icons) */
.values-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem 1.5rem;
  text-align: center;
}

/* Locked 3-column grid for mobile-to-desktop step (2 per row on phone, 3 per row ≥720) */
.values-row--3col {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 1.5rem;
}
@media (min-width: 720px) {
  .values-row--3col { grid-template-columns: repeat(3, 1fr); }
}
.value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.value__icon {
  width: 44px;
  height: 44px;
  color: var(--soft-gold-deep);
}
.value__label {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--deep-brown);
  font-size: 0.95rem;
}
.value__hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 18ch;
}

/* ---- Menu row (horizontal layout, compact) ---------------------------- */

.menu-section { margin-bottom: 2rem; }
.menu-section:last-child { margin-bottom: 0; }

.menu-section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
}
.menu-section__head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--deep-brown);
  margin: 0;
}
.menu-section__head__sizes {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 0.5rem clamp(1rem, 2.5vw, 2rem);
  box-shadow: 0 8px 32px -16px rgba(44, 24, 16, 0.18), 0 2px 8px -4px rgba(44, 24, 16, 0.06);
}

.menu-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.menu-row:last-child { border-bottom: 0; }

.menu-row--no-img {
  grid-template-columns: 1fr auto;
}

.menu-row__img {
  width: 160px;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: var(--cream);
  display: block;
}

.menu-row__body { min-width: 0; }
.menu-row__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.menu-row__name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--deep-brown);
  margin: 0;
  line-height: 1.2;
}
.menu-row__badge {
  display: inline-block;
  padding: 0.2em 0.7em;
  background: var(--soft-gold);
  color: var(--deep-brown);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  vertical-align: middle;
}
.menu-row__desc {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.menu-row__prices {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--soft-gold-deep);
  margin-top: 0.35rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.menu-row__prices .menu-row__size-label {
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-right: 0.4em;
}
.menu-row__prices em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 400;
}

.menu-row__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 140px;
}
.menu-row__sizes {
  display: inline-flex;
  gap: 0.25rem;
  background: var(--linen);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  padding: 2px;
}
.menu-row__size {
  padding: 0.25em 0.75em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--text-muted);
  border: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.menu-row__size:hover { color: var(--deep-brown); }
.menu-row__size.is-selected {
  background: var(--soft-gold);
  color: var(--deep-brown);
}
.menu-row__add {
  padding: 0.65em 1.1em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--deep-brown);
  color: var(--linen);
  border: 1px solid var(--deep-brown);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.menu-row__add:hover { background: var(--soft-gold-deep); border-color: var(--soft-gold-deep); }
.menu-row__add.is-added { background: #2B6E3C; border-color: #2B6E3C; }
.menu-row__ask {
  padding: 0.5em 1em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-gold-deep);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: transparent;
  text-decoration: none;
}
.menu-row__ask:hover { border-color: var(--soft-gold); color: var(--deep-brown); }

@media (max-width: 720px) {
  .menu-row {
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    align-items: flex-start;
  }
  .menu-row--no-img { grid-template-columns: 1fr; }
  .menu-row__img { width: 110px; }
  .menu-row__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
}

/* Instagram tiles — 4 real post iframes sized like tiles, with click-through overlay. */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ig-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--rule);
  background: #fff;
  aspect-ratio: 3 / 4;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ig-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ig-tile iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  /* Scale the iframe content up so the post image fills the tile, hiding caption below. */
  transform: translateY(-40px);
}
.ig-tile__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
}

@media (max-width: 720px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
.ig-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--cream);
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
  display: block;
}
.ig-card:hover img { transform: scale(1.06); }
.ig-card__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  color: var(--linen);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ig-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,24,16,0) 55%, rgba(44,24,16,0.35) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.ig-card:hover::after { opacity: 1; }
.ig-card:hover .ig-card__icon { opacity: 1; transform: translateY(0); }
.ig-card__icon svg { width: 100%; height: 100%; }

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

/* Home — keeps its existing override (now identical to global compact default) */
.home-dense .section { padding-block: clamp(2.5rem, 5vw, 4rem); }
.home-dense .hero { min-height: clamp(520px, 82vh, 820px); }

/* Compact section — works anywhere, not just on home */
.section--compact { padding-block: clamp(2rem, 3.5vw, 3rem); }
.section--compact .gold-rule { margin-bottom: 1rem; }

.invitation-lede {
  margin: 0 auto 1.25rem;
  max-width: 62ch;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--text-strong);
}

.invitation-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--soft-gold-deep);
  max-width: 42ch;
  margin: 0 auto;
  text-wrap: balance;
}

.invitation-values-wrap {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

/* Compact values grid spacing on home — tightened further for v2 (less spread, smaller icons) */
.home-dense .values-row--3col {
  gap: 0.75rem 1rem;
  max-width: 880px;
  margin-inline: auto;
}
.home-dense .values-row--3col .value { gap: 0.3rem; padding: 0.5rem 0.25rem; }
.home-dense .values-row--3col .value__icon { width: 30px; height: 30px; }
.home-dense .values-row--3col .value__label { font-size: 0.88rem; }
.home-dense .values-row--3col .value__hint { font-size: 0.74rem; max-width: 22ch; line-height: 1.35; }

/* Card padding compact modifiers — paired with .section--md for compactness pass */
.package--md { padding: var(--sp-5); gap: var(--sp-3); }
.package--md h3 { font-size: 1.2rem; }
.package--md .package__price { font-size: 1.7rem; }
.package--md p { font-size: 0.92rem; }
.package--md ul { font-size: 0.9rem; }
.package--md li { padding-left: 1.1em; }

/* Package with leading icon (charcuterie packages) */
.package--icon { padding-top: var(--sp-4); }
.package__icon {
  width: 36px;
  height: 36px;
  color: var(--soft-gold-deep);
  margin-bottom: 0.25rem;
}
.package--icon .eyebrow { margin-top: 0; }

.offer--md { padding: var(--sp-5); gap: var(--sp-3); }
.offer--md h3 { font-size: 1.2rem; }
.offer--md p { font-size: 0.92rem; }
.offer--md .offer__icon { width: 38px; height: 38px; }

/* Event gallery (catering page — recent event portfolio) */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.event-gallery__item {
  display: block;
  overflow: hidden;
  border-radius: var(--r-md);
  grid-column: span 2;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.event-gallery__item--wide { grid-column: span 3; aspect-ratio: 16 / 9; }
.event-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--dur-slow) var(--ease);
  display: block;
}
.event-gallery__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.event-gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 720px) {
  .event-gallery { grid-template-columns: repeat(2, 1fr); }
  .event-gallery__item { grid-column: span 1; }
  .event-gallery__item--wide { grid-column: span 2; }
}

/* Dish detail modal (menu page — click a row for a bigger preview) */
.menu-row {
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--dur) var(--ease);
}
.menu-row:hover { background: rgba(201, 169, 110, 0.06); }
.menu-row:focus-visible { outline: 2px solid var(--soft-gold); outline-offset: 2px; }

.dish-modal {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
  z-index: 120;
  overflow-y: auto;
}
.dish-modal.is-open { opacity: 1; pointer-events: auto; }
.dish-modal__card {
  background: var(--linen);
  border-radius: var(--r-md);
  width: min(640px, 100%);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.dish-modal__close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: rgba(250, 247, 242, 0.92);
  color: var(--deep-brown);
  font-size: 1.1rem;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.dish-modal__close:hover { background: var(--soft-gold); color: var(--deep-brown); }

.dish-modal__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
  background: var(--cream);
}
.dish-modal__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dish-modal__body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dish-modal__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.dish-modal__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--deep-brown);
  margin: 0;
  line-height: 1.15;
}
.dish-modal__desc {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.dish-modal__prices {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--soft-gold-deep);
  padding: 0.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.dish-modal__sizes-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dish-modal__sizes-label {
  margin: 0;
}
.dish-modal__sizes {
  align-self: flex-start;
}
.dish-modal__add {
  align-self: flex-start;
  width: 100%;
}
.dish-modal__note {
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 520px) {
  .dish-modal { padding: 1rem 0.75rem; }
  .dish-modal__body { padding: 1.25rem 1.25rem 1.5rem; }
  .dish-modal__media { aspect-ratio: 4 / 3; }
}

/* QR code block (on book page sidebar) */
.qr-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
}
.qr-block__img {
  width: 140px;
  height: 140px;
  background: #fff;
  padding: 6px;
  border-radius: var(--r-sm);
  border: 1px solid var(--rule);
}
@media (max-width: 520px) {
  .qr-block { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* Prominent "text to order" strip on menu page */
.order-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  background: var(--light-gold);
  border: 1px solid var(--soft-gold);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.order-strip strong { color: var(--deep-brown); font-weight: 500; }
.order-strip a { color: var(--deep-brown); border-bottom: 1px solid var(--soft-gold-deep); }
.order-strip a:hover { color: var(--soft-gold-deep); }

/* Testimonial */
.testimonial {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.35;
  color: var(--deep-brown);
  margin: 0 0 1.5rem;
}
.testimonial__attr {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-gold-deep);
}

/* --------------------------------------------------------------------------
   15. Prose (blog body)
   -------------------------------------------------------------------------- */

.prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
}

.prose > * + * { margin-top: 1.25em; }

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.prose h2 { font-size: 2rem; font-style: italic; }
.prose h3 { font-size: 1.5rem; font-style: italic; }

.prose p { margin: 0 0 1em; }

.prose a {
  color: var(--soft-gold-deep);
  border-bottom: 1px solid var(--rule);
  transition: border-color var(--dur) var(--ease);
}
.prose a:hover { border-color: var(--soft-gold); }

.prose img {
  width: 100%;
  border-radius: var(--r-md);
  margin: 2em 0;
}

.prose ul,
.prose ol {
  padding-left: 1.25em;
  margin: 1em 0;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin: 0.4em 0; }

.prose blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--deep-brown);
  border-left: 2px solid var(--soft-gold);
  padding: 0.5em 0 0.5em 1.2em;
  margin: 1.5em 0;
}

.prose hr {
  margin: 3em auto;
  width: 48px;
  border-top-color: var(--soft-gold);
}

/* ==========================================================================
   Single post — reading experience (progress bar, share rail, TOC, author,
   CTAs). Layout: [share | prose | TOC] grid that collapses to single column
   below 1080px viewport.
   ========================================================================== */

/* Reading progress bar — horizontal stripe at top of viewport, fills L-R
   as the reader scrolls down the post body. Track is a clearly visible
   gold tint, fill is solid soft-gold. */
.reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: rgba(201, 169, 110, 0.32);
  z-index: 50;
  pointer-events: none;
}
.reading-progress__fill {
  display: block;
  height: 6px;
  width: 0;
  background: var(--soft-gold);
  transition: width 60ms linear;
}

/* Post header meta line (Blog · By Donna · DATE) — reading time is its own
   line below the excerpt for better visual hierarchy */
.post-meta { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 0.4em; }
.post-meta__sep { opacity: 0.55; }

.post-readtime {
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-gold-deep);
}


/* Body grid with side rails */
.post-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--container-wide, 1280px);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 1080px) {
  .post-body__grid {
    grid-template-columns: 80px minmax(0, var(--container-narrow, 720px)) 220px;
    justify-content: center;
    gap: 2.5rem;
  }
}
.post-body__content {
  min-width: 0;
  /* On wide viewports the prose lives in the middle column; on narrow it's
     the only column and self-centers via the grid */
  margin: 0 auto;
  width: 100%;
  max-width: var(--container-narrow, 720px);
}

/* Sticky share rail (left side on desktop, hidden on mobile) */
.post-share {
  display: none;
}
@media (min-width: 1080px) {
  .post-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: sticky;
    top: 6rem;
    height: max-content;
    padding-top: 0.4rem;
  }
}
.post-share__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.post-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}
.post-share__btn:hover,
.post-share__btn:focus-visible {
  color: var(--soft-gold-deep);
  border-color: var(--soft-gold);
  transform: translateY(-1px);
}
.post-share__btn.is-copied {
  background: var(--soft-gold);
  color: var(--linen);
  border-color: var(--soft-gold);
}
/* "More" / native share button — gold-tinted background to suggest "all options" */
.post-share__btn--more {
  background: var(--cream);
  color: var(--soft-gold-deep);
}
.post-share__btn--more:hover {
  background: var(--soft-gold);
  color: var(--linen);
}

/* Copy-link popover — body-level absolute element. JS positions it
   next to the triggering button on click. */
.copy-popover {
  position: absolute;
  z-index: 80;
  background: var(--white);
  border: 1px solid var(--soft-gold);
  border-radius: var(--r-md);
  box-shadow: 0 12px 32px -12px rgba(44, 24, 16, 0.35);
  padding: 0.85rem 1rem 0.95rem;
  width: clamp(260px, 90vw, 320px);
  font-family: var(--font-body);
}
.copy-popover[hidden] { display: none; }
.copy-popover__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.copy-popover__row {
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
}
.copy-popover__input {
  flex: 1;
  min-width: 0;
  padding: 0.45em 0.6em;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--linen);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  color: var(--deep-brown);
}
.copy-popover__input:focus { outline: 2px solid var(--soft-gold); outline-offset: -1px; }
.copy-popover__btn {
  padding: 0.45em 1em;
  background: var(--soft-gold);
  color: var(--deep-brown);
  border: 1px solid var(--soft-gold);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  cursor: pointer;
  transition: background 160ms var(--ease);
}
.copy-popover__btn:hover { background: var(--soft-gold-deep); color: var(--linen); border-color: var(--soft-gold-deep); }

/* Transient toast for the IG share button (URL was copied, IG opened) */
.share-toast {
  position: absolute;
  z-index: 90;
  background: var(--deep-brown);
  color: var(--linen);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-sm);
  max-width: 260px;
  line-height: 1.4;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.4);
  animation: shareToastIn 200ms var(--ease) both;
  pointer-events: none;
}
.share-toast--leave { animation: shareToastOut 480ms var(--ease) both; }
@keyframes shareToastIn  { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shareToastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-2px); } }

/* Mobile share row at end of body — appears only on small screens */
.post-share-inline {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 1080px) { .post-share-inline { display: none; } }

/* Sticky TOC on the right (auto-shows when JS detects 2+ headings) */
.post-toc {
  display: none;
}
@media (min-width: 1080px) {
  .post-toc:not([hidden]) {
    display: block;
    position: sticky;
    top: 6rem;
    height: max-content;
    align-self: start;
  }
}
.post-toc__title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.post-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-left: 2px solid var(--rule);
  padding-left: 0.8rem;
}
.post-toc__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -0.85rem;
  padding-left: 0.85rem;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.post-toc__link:hover { color: var(--deep-brown); border-left-color: var(--soft-gold); }
.post-toc__link--h3 { padding-left: 1.6rem; font-size: 0.8rem; opacity: 0.85; }

/* Author bio card (below post body, above related/CTA) */
.post-author {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (min-width: 600px) {
  .post-author { grid-template-columns: 96px 1fr; gap: 1.5rem; }
}
.post-author__avatar {
  width: 96px; height: 96px;
  border-radius: 999px;
  object-fit: cover;
  /* Anchor lower in the source so her face sits centered in the circular
     crop instead of being top-aligned. */
  object-position: center 35%;
  border: 1.5px solid var(--soft-gold);
  background: var(--cream);
  margin: 0 auto;
}
.post-author__rating { margin-top: 0.85rem; }

/* Aggregate rating pill, centered below the entire author card.
   Sits at the container level (not inside .post-author__body) so it's
   horizontally centered relative to the whole card. Includes a Google G
   logo prefix to signal "real Google + direct reviews". */
.post-author__rating-pill {
  margin: 1.25rem auto 0;
}
.testi-aggregate__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1rem;
}
.testi-aggregate__google svg { display: block; }
.post-author__body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0.2rem 0 0.4rem;
  color: var(--deep-brown);
}
.post-author__body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 0.5rem;
}

/* ==========================================================================
   Blog listing — featured-first + magazine grid
   ========================================================================== */

/* Featured post: image left, content right; stacks on mobile */
.blog-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px -16px rgba(44, 24, 16, 0.18);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.blog-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -16px rgba(44, 24, 16, 0.28);
}
@media (min-width: 760px) {
  .blog-feature { grid-template-columns: 1.2fr 1fr; }
}
.blog-feature__media {
  display: block;
  background: var(--cream);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}
.blog-feature:hover .blog-feature__media img { transform: scale(1.03); }
.blog-feature__body {
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
}
.blog-feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0.4rem 0 0.6rem;
}
.blog-feature__title a {
  color: var(--deep-brown);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.blog-feature__title a:hover { border-color: var(--soft-gold); }
.blog-feature__excerpt {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1rem;
}

/* Compact card for the rest of the posts */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--soft-gold);
  box-shadow: 0 12px 28px -16px rgba(44, 24, 16, 0.2);
}
.blog-card__media {
  display: block;
  background: var(--cream);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}
.blog-card:hover .blog-card__media img { transform: scale(1.03); }
.blog-card__body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.blog-card__date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
}
.blog-card__title a {
  color: var(--deep-brown);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.blog-card__title a:hover { border-color: var(--soft-gold); }
.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.blog-card .link-arrow { margin-top: auto; padding-top: 0.5rem; }

.prose figure { margin: 2em 0; }
.prose figure img { margin: 0 0 0.6em; }
.prose figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}

/* Auto-style image captions written in admin (TinyMCE doesn't have figure
   support, so Donna just types the caption as an italic paragraph right after
   the image). Pattern: <p><img></p> followed by <p><em>caption</em></p>.
   The :has() selectors trigger this only on italic-only paragraphs after
   image-only paragraphs, so regular post text isn't accidentally centered. */
.prose p:has(> img:only-child) + p:has(> em:only-child) {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.4em;
}

/* Center the post-header excerpt block under the title. The parent has
   .text-center so the text inside is centered, but .page-hero__lede has
   max-width: 56ch + margin: 0, which leaves the block flush-left of its
   centered parent. margin-inline: auto fixes that for any text-center context
   without disturbing left-aligned hero ledes elsewhere on the site. */
.text-center .page-hero__lede {
  margin-inline: auto;
}

.prose code {
  background: var(--cream);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.92em;
}

/* --------------------------------------------------------------------------
   16. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-nav, .site-footer, .btn { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ==========================================================================
   17. Carousel (testimonials + events galleries)
   ========================================================================== */
.carousel {
  position: relative;
  width: 100%;
}
.carousel__viewport {
  overflow: hidden;
  position: relative;
}
.carousel__track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding-inline: 0.25rem;
  box-sizing: border-box;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--deep-brown);
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
  font-size: 1.25rem;
  line-height: 1;
}
.carousel__btn:hover { background: var(--soft-gold); color: var(--linen); }
.carousel__btn--prev { left: -0.5rem; }
.carousel__btn--next { right: -0.5rem; }
@media (min-width: 720px) {
  .carousel__btn--prev { left: -1.5rem; }
  .carousel__btn--next { right: -1.5rem; }
}
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.carousel__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 999px;
  background: var(--rule);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.carousel__dot.is-active {
  background: var(--soft-gold);
  transform: scale(1.4);
}

/* Testimonial card (used inside testimonials carousel) */
.testi-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.testi-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  color: var(--deep-brown);
  margin: 0 0 1.25rem;
  position: relative;
}
.testi-card__quote::before {
  content: '"';
  font-size: 3rem;
  line-height: 1;
  color: var(--soft-gold);
  display: block;
  margin-bottom: 0.5rem;
}
.testi-card__attr {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0;
}
.testi-card__attr strong {
  color: var(--deep-brown);
  font-weight: 500;
  font-style: normal;
}
.testi-card__context {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Event gallery slide (image + caption) */
.event-slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 0 0.5rem;
}
@media (min-width: 720px) {
  .event-slide--with-text { grid-template-columns: 1.1fr 1fr; }
}
.event-slide__media {
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream);
}
.event-slide__media img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: contain;
}
.event-slide__caption {
  padding: 0.5rem;
}
.event-slide__caption .eyebrow {
  color: var(--soft-gold-deep);
  margin-bottom: 0.5rem;
}
.event-slide__caption h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 0.5rem;
}
.event-slide__caption p {
  color: var(--text);
  margin-bottom: 0;
  font-size: var(--fs-sm);
}

/* Event thumbs strip (under main carousel for event galleries) */
/* Horizontally-scrolling thumb strip. Stays a single compact row regardless
   of how many images exist; users scrub left/right (drag, scroll, or arrow
   keys via the active thumb auto-scrolling into view from JS). */
.event-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 1rem;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 110, 0.45) transparent;
  padding-bottom: 0.4rem;
  /* breathing room so the focus ring isn't clipped on the first/last thumb */
  padding-inline: 2px;
}
.event-thumbs::-webkit-scrollbar { height: 6px; }
.event-thumbs::-webkit-scrollbar-track { background: transparent; }
.event-thumbs::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.45);
  border-radius: 999px;
}
.event-thumbs::-webkit-scrollbar-thumb:hover { background: rgba(201, 169, 110, 0.7); }

.event-thumbs__item {
  flex: 0 0 auto;
  width: 110px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--cream);
  padding: 0;
  scroll-snap-align: start;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.event-thumbs__item.is-active { border-color: var(--soft-gold); }
.event-thumbs__item:hover { transform: translateY(-2px); }
.event-thumbs__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   18. Carousel v2 — denser, with stars + image-overlay gallery
   ========================================================================== */

/* Pull testi card and gallery wider so the carousel doesn't feel airy */
.carousel--testi  .carousel__slide { padding-inline: 0.5rem; }
.carousel--gallery .carousel__slide { padding-inline: 0.25rem; }

/* Testimonial card v2 — clickable to /testimonials.php, hover lift, less padding */
.testi-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.testi-card:hover,
.testi-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--soft-gold);
  box-shadow: 0 12px 28px -16px rgba(44, 24, 16, 0.25);
}

/* Source badge — small "G" logo top-right of GBP-sourced cards.
   Native cards get nothing (per design call). The badge is purely visual;
   the card itself remains a single click target. */
.testi-card__source {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* card is the click target; badge is decorative */
}
.testi-card__source svg { width: 100%; height: 100%; display: block; }
.testi-card__source-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35em;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.45rem;
  text-transform: none;
}
.testi-card__source-line svg { width: 12px; height: 12px; }
/* Tiny avatar next to the author name on GBP cards.
   Wrapped in .testi-card__attr-row (inline-flex) so the avatar always
   sits flush next to the name, regardless of the card's text-align: center. */
.testi-card__attr-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
}
.testi-card__attr-name { line-height: 1.2; }
.testi-card__avatar {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--cream);
  display: block;
}

/* Small aggregate-rating pill below the action buttons — clickable to /testimonials.php.
   Uses width:fit-content + margin:auto so the pill self-sizes and centers in
   the container regardless of how it's positioned within the section. */
.testi-aggregate {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  margin: 0.9rem auto 0;
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  text-decoration: none;
  color: var(--deep-brown);
  font-family: var(--font-body);
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.testi-aggregate:hover {
  border-color: var(--soft-gold);
  transform: translateY(-1px);
}
.testi-aggregate__avg {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--deep-brown);
}
.testi-aggregate__count {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.testi-aggregate .testi-card__stars {
  width: 70px; height: 13px;
  background-size: 14px 14px;
  margin: 0;
}
.testi-aggregate .testi-card__stars-fill {
  background-size: 14px 14px;
}

/* ---- /testimonials.php (reviews page) ---- */
.hero-cta-row {
  display: inline-flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem;
}

/* QR code anchored to the bottom-right of the testi hero. Compact white
   card so the QR reads cleanly against the hero image. */
.testi-hero-qr {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.55rem 0.45rem;
  background: var(--cream);
  border: 1px solid var(--soft-gold);
  border-radius: var(--r-sm);
  text-decoration: none;
  color: var(--deep-brown);
  box-shadow: 0 8px 20px -12px rgba(44, 24, 16, 0.4);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  z-index: 1;
}
.testi-hero-qr:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(44, 24, 16, 0.5);
}
.testi-hero-qr img {
  display: block;
  width: 80px;
  height: 80px;
  /* QR is pixel art, keep it crisp */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.testi-hero-qr span {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-brown);
  text-align: center;
  max-width: 90px;
  line-height: 1.25;
}
/* Hide on small screens — phones don't need a QR to themselves; the on-page
   "Leave a Google Review" CTA covers them. */
@media (max-width: 820px) {
  .testi-hero-qr { display: none; }
}

/* SociableKit-style reviews wall: pills + overall rating bar + 3-col card grid */
.reviews-wall {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(1rem, 2.2vw, 1.75rem);
  box-shadow: 0 8px 28px -16px rgba(44, 24, 16, 0.18);
}

.reviews-wall__filters {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1rem;
}
.reviews-pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.5em 0.9em;
  background: var(--linen);
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.reviews-pill:hover { background: var(--cream); }
.reviews-pill.is-active {
  background: #E3EBFB;
  border-color: #1A56C9;
  color: #1A56C9;
}
.reviews-pill__icon {
  display: inline-flex; align-items: center; justify-content: center;
}
.reviews-pill__icon--all { color: #1A56C9; }
.reviews-pill__icon--direct { color: var(--soft-gold); }
.reviews-pill__rating {
  display: inline-block;
  background: rgba(28,16,8,0.08);
  border-radius: 6px;
  padding: 0 0.5em;
  font-weight: 500;
  font-size: 0.78rem;
  margin-left: 0.2em;
}
.reviews-pill.is-active .reviews-pill__rating {
  background: rgba(26, 86, 201, 0.15);
  color: #1A56C9;
}

.reviews-wall__overall {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.reviews-wall__overall h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
  margin: 0 0 0.5rem;
  color: var(--deep-brown);
}
.reviews-wall__overall-row {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.reviews-wall__avg {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--deep-brown);
  line-height: 1;
}
.reviews-wall__count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- Collapsible rating distribution (in Overall Rating section) ---- */
.rating-breakdown {
  margin-bottom: 1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  /* Reset native details element styling */
}
.rating-breakdown summary {
  list-style: none;
  cursor: pointer;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  user-select: none;
}
.rating-breakdown summary::-webkit-details-marker { display: none; }
.rating-breakdown summary::marker { content: ''; }
.rating-breakdown summary:hover { color: var(--deep-brown); }
.rating-breakdown__chevron {
  transition: transform 200ms var(--ease);
}
.rating-breakdown[open] .rating-breakdown__chevron {
  transform: rotate(180deg);
}
.rating-breakdown[open] summary {
  border-bottom: 1px solid var(--rule);
}
.rating-breakdown__bars {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.rating-breakdown__row {
  display: grid;
  grid-template-columns: 36px 1fr 32px;
  gap: 0.7rem;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
}
.rating-breakdown__level {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  color: var(--deep-brown);
  font-weight: 500;
}
.rating-breakdown__star {
  color: var(--soft-gold);
  font-size: 0.95em;
  line-height: 1;
}
.rating-breakdown__track {
  position: relative;
  height: 8px;
  background: var(--cream);
  border-radius: 999px;
  overflow: hidden;
}
.rating-breakdown__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--soft-gold);
  border-radius: 999px;
  transition: width 200ms var(--ease);
}
.rating-breakdown__count {
  text-align: right;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.reviews-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Google Business Profile snapshot card — sits as the first card in the
   reviews grid. Stats are GBP-only (synced via Make.com webhook). The card
   represents Donna's Google profile presence as a discrete element. */
.review-card--profile {
  padding: 0;
  background: var(--white);
}
.gbp-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  gap: 0.5rem;
  height: 100%;
}
.gbp-profile-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
}
.gbp-profile-card__logo svg {
  width: 40px;
  height: 40px;
  display: block;
}
.gbp-profile-card__name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--deep-brown);
  margin: 0.25rem 0 0.4rem;
  letter-spacing: 0;
}
.gbp-profile-card__rating-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.1rem 0 0.5rem;
}
.gbp-profile-card__avg {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--deep-brown);
  line-height: 1;
}
.gbp-profile-card .testi-card__stars {
  width: 105px; height: 18px;
  background-size: 21px 21px;
}
.gbp-profile-card .testi-card__stars-fill { background-size: 21px 21px; }
.gbp-profile-card__count {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.gbp-profile-card__count:hover {
  color: var(--deep-brown);
  border-bottom-color: var(--rule);
}
.gbp-profile-card__cta {
  display: inline-block;
  margin-top: auto;
  padding: 0.7em 2.2em;
  background: var(--deep-brown);
  color: var(--linen);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}
.gbp-profile-card__cta:hover {
  background: #1A1009;
  color: var(--linen);
  transform: translateY(-1px);
}

/* Individual review card (compact list-view variant, distinct from the
   center-aligned testi-card used in carousels) */
.review-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.review-card__head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 0.65rem;
  align-items: center;
}
.review-card__avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--cream);
}
.review-card__avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--soft-gold-deep);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.review-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--deep-brown);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-card__date {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.review-card__source {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
}
.review-card__source svg { width: 100%; height: 100%; display: block; }

.review-card__stars {
  margin: 0;
}

.review-card__body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  /* Limit very long Google reviews to ~6 lines initially */
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__footer {
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.review-card__source-link {
  display: inline-flex; align-items: center; gap: 0.4em;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.review-card__source-link:hover { color: var(--soft-gold-deep); }
.review-card__source-link svg { width: 12px; height: 12px; }
.review-card__context, .review-card__location {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Whole-star rating input (Leave a Review form) ----
   Five clickable stars, no half-star option. Row-reverse so CSS sibling
   selector can fill stars from hovered/checked all the way to the leftmost. */
.rating-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.15em;
  margin-top: 0.4rem;
}
.rating-stars input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.rating-stars label {
  font-size: 1.8rem;
  line-height: 1;
  color: #dcd0b4;
  cursor: pointer;
  transition: color 100ms ease;
}
.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
  color: var(--soft-gold);
}
.rating-stars input:focus-visible + label {
  outline: 2px solid var(--soft-gold);
  outline-offset: 2px;
}

.form-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center;
  justify-content: space-between; margin-top: 1.5rem;
}

/* ---- Instagram feed (Behold widget) ---- */
.ig-feed__head {
  /* Reduce the default section-head bottom margin since the widget renders
     its own internal spacing */
  margin-bottom: 1rem;
}
.ig-feed__handle {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* Constrain the Behold widget so it sits within our container width and
   doesn't ride the full viewport. The widget renders its own grid internally
   based on width, so capping max-width keeps it from feeling oversized. */
.ig-feed__widget {
  max-width: 1100px;
  margin: 0 auto;
}
.ig-feed__widget behold-widget {
  display: block;
  width: 100%;
}

/* Star rating: 5 outline stars with a clipped gold-fill overlay */
.testi-card__stars {
  --star-bg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dcd0b4'><polygon points='12 2 15 9 22 9.5 16.5 14 18.5 21 12 17 5.5 21 7.5 14 2 9.5 9 9'/></svg>");
  --star-fill: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A96E'><polygon points='12 2 15 9 22 9.5 16.5 14 18.5 21 12 17 5.5 21 7.5 14 2 9.5 9 9'/></svg>");
  display: inline-block;
  position: relative;
  width: 100px;
  height: 18px;
  background: var(--star-bg) repeat-x;
  background-size: 20px 20px;
  margin-bottom: 0.5rem;
}
.testi-card__stars-fill {
  display: block;
  position: absolute;
  inset: 0;
  background: var(--star-fill) repeat-x;
  background-size: 20px 20px;
  pointer-events: none;
}

.testi-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.5;
  color: var(--deep-brown);
  margin: 0 0 0.75rem;
}
.testi-card__attr {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0;
}
.testi-card__attr strong {
  color: var(--deep-brown);
  font-weight: 500;
  font-style: normal;
}
.testi-card__context {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Action row under testimonial carousel: GBP review + view-all */
.testi-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--deep-brown);
  border: 1px solid var(--rule);
}
.btn-google:hover {
  background: var(--linen);
  border-color: var(--soft-gold);
  color: var(--deep-brown);
}

/* Event slide v2 — gold-bordered frame around the image. The image itself
   gets the pop/shadow so it visually lifts off the cream mat inside the frame.
   No shadow on the figure itself — only border. */
.event-slide-v2 {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  border: 1.5px solid var(--soft-gold);
  background: var(--cream);
  padding: 14px;
  cursor: pointer;
}
.event-slide-v2 img {
  width: 100%;
  height: clamp(260px, 40vw, 440px);
  object-fit: contain;
  background: transparent; /* let the cream mat show through letterbox area */
  display: block;
  border-radius: var(--r-sm);
  /* drop-shadow (not box-shadow) so the shadow follows the actual visible
     photo, not the img element's full letterboxed bounding box. */
  filter:
    drop-shadow(0 14px 24px rgba(44, 24, 16, 0.32))
    drop-shadow(0 4px 8px  rgba(44, 24, 16, 0.18));
}
.event-slide-v2__overlay {
  position: absolute;
  inset: 14px; /* matches the figure padding so overlay sits on the image, not on the gold mat */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(28,16,8,0) 0%, rgba(28,16,8,0) 50%, rgba(28,16,8,0.85) 100%);
  color: var(--linen);
  border-radius: var(--r-sm);
  overflow: hidden;
  opacity: 0;
  transition: opacity 240ms var(--ease);
  pointer-events: none;
}
.event-slide-v2:hover .event-slide-v2__overlay,
.event-slide-v2:focus-visible .event-slide-v2__overlay,
.event-slide-v2.is-touched .event-slide-v2__overlay {
  opacity: 1;
}
.event-slide-v2__overlay .eyebrow--light {
  margin-bottom: 0.4rem;
  color: var(--soft-gold);
}
.event-slide-v2__overlay h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin: 0 0 0.4rem;
  color: var(--linen);
}
.event-slide-v2__overlay p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-on-dark);
}

/* Smaller thumb strip variant — same horizontal-scroll pattern, tighter sizing */
.event-thumbs--small {
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.event-thumbs--small .event-thumbs__item {
  width: 72px;
  border-width: 1px;
}

/* Reduce overall section breathing for testimonials/gallery contexts */
.section--md .section-head {
  margin-bottom: 1.25rem;
}

/* Hero rating badge (home) */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--linen);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-top: 0.75rem;
  text-decoration: none;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  backdrop-filter: blur(2px);
  background: rgba(28,16,8,0.25);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.hero-rating:hover {
  background: rgba(28,16,8,0.4);
  border-color: var(--soft-gold);
  color: var(--linen);
}
.hero-rating .testi-card__stars { width: 88px; height: 16px; margin: 0; background-size: 18px 18px; }
.hero-rating .testi-card__stars-fill { background-size: 18px 18px; }
.hero-rating__count {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  opacity: 0.78;
  font-weight: 300;
  margin-left: 0.15em;
}

/* Social row beneath the hero rating pill (home only) */
.hero-social {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.85rem;
}
.hero-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--linen);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(28,16,8,0.28);
  backdrop-filter: blur(2px);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hero-social a:hover {
  background: rgba(28,16,8,0.45);
  border-color: var(--soft-gold);
  color: var(--soft-gold);
  transform: translateY(-1px);
}
.hero-social svg { display: block; width: 22px; height: 22px; }
/* Place social row on its own line under the rating pill */
.hero-rating + .hero-social { margin-left: 0; }
.hero__inner .hero-social { display: flex; }

/* ==========================================================================
   19. Panel — elevated container so text/carousel/form blocks pop off the
   section bg. Used on text blocks (invitation, intro quotes, CTAs, form)
   and as the wrapper around carousels (testimonials, gallery).
   ========================================================================== */

.panel {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 8px 32px -16px rgba(44, 24, 16, 0.18), 0 2px 8px -4px rgba(44, 24, 16, 0.06);
  position: relative;
}

/* Centred variant for invitation / CTA blocks */
.panel--center {
  text-align: center;
}
.panel--center .gold-rule {
  margin-inline: auto;
}

/* When a carousel sits inside a panel, pull its buttons inside the border */
.panel .carousel__btn--prev { left: 0.75rem; }
.panel .carousel__btn--next { right: 0.75rem; }

/* Inside a white panel, the testi cards need a tinted bg to keep separation */
.panel .testi-card {
  background: var(--linen);
  border-color: rgba(201, 169, 110, 0.25);
}

/* Soften the gallery frame border inside a panel */
.panel .event-slide-v2 {
  border-color: rgba(201, 169, 110, 0.25);
}
