/* ============================================================
   THE SHED AT PAPA'S CREEK – DESIGN SYSTEM
   booktheshed.com | Build Order Step 1 – Scaffold
   Palette: Forest Green / Antique Gold / Warm Cream
   ============================================================ */


/* ---- 1. DESIGN TOKENS ---- */

:root {
  /* Brand Colors */
  --cream:          #F5EFE4;
  --cream-alt:      #EDE6D8;
  --cream-dark:     #DDD4C4;
  --forest:         #2B4838;
  --forest-mid:     #375E4A;
  --forest-dark:    #1B2E24;
  --gold:           #B8924A;
  --gold-light:     #CFA968;
  --gold-text:      #76591F;
  --gold-on-dark:   #E6CD9A;
  --gold-pale:      rgba(184, 146, 74, 0.15);
  --gold-rule:      rgba(184, 146, 74, 0.30);
  --ink:            #1E1B18;
  --ink-muted:      #5C574F;
  --ink-faint:      #6D665D;
  --white:          #FFFFFF;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-serif:    'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-ui:       'Jost', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type Scale */
  --t-xs:    0.75rem;    /* 12px */
  --t-sm:    0.8125rem;  /* 13px */
  --t-base:  1rem;       /* 16px */
  --t-md:    1.125rem;   /* 18px */
  --t-lg:    1.375rem;   /* 22px */
  --t-xl:    1.75rem;    /* 28px */
  --t-2xl:   2.25rem;    /* 36px */
  --t-3xl:   3rem;       /* 48px */
  --t-4xl:   4rem;       /* 64px */
  --t-5xl:   5.5rem;     /* 88px */

  /* Spacing – 8px grid */
  --s-1:   0.5rem;
  --s-2:   1rem;
  --s-3:   1.5rem;
  --s-4:   2rem;
  --s-5:   2.5rem;
  --s-6:   3rem;
  --s-8:   4rem;
  --s-10:  5rem;
  --s-12:  6rem;
  --s-14:  7rem;
  --s-16:  8rem;
  --s-20:  10rem;
  --s-24:  12rem;

  /* Page rhythm: enough separation to feel premium without making every
     section read like a new page. */
  --section-space: clamp(var(--s-6), 4.5vw, var(--s-10));
  --section-heading-space: clamp(var(--s-5), 5vw, var(--s-8));

  /* Layout */
  --max-w:      1280px;
  --max-w-text: 720px;
  --max-w-wide: 1100px;
  --gutter:     clamp(1.25rem, 5vw, 3rem);
  --nav-h:      76px;

  /* Motion */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --dur:       0.4s;
  --dur-fast:  0.2s;
  --dur-slow:  0.7s;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(30, 27, 24, 0.08);
  --shadow-md:  0 4px 20px rgba(30, 27, 24, 0.10);
  --shadow-lg:  0 12px 48px rgba(30, 27, 24, 0.14);

  /* Border Radius */
  --r-sm:  2px;
  --r:     4px;
  --r-md:  8px;
}


/* ---- 2. RESET ---- */

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

/* Author layout rules must never override the native hidden state. */
[hidden] {
  display: none !important;
}

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

body {
  font-family: var(--font-ui);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

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


/* ---- 3. TYPOGRAPHY ---- */

/* Display headlines */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h4, h5, h6 {
  font-family: var(--font-ui);
  font-weight: 500;
  line-height: 1.3;
}

h1 { font-size: clamp(var(--t-3xl), 7vw, var(--t-5xl)); }
h2 { font-size: clamp(var(--t-2xl), 5vw, var(--t-4xl)); }
h3 { font-size: clamp(var(--t-xl), 3vw, var(--t-2xl)); }
h4 { font-size: var(--t-md); }
h5 { font-size: var(--t-base); }

p {
  font-family: var(--font-serif);
  font-size: clamp(var(--t-md), 2vw, var(--t-lg));
  line-height: 1.75;
  color: var(--ink-muted);
}

/* Italic accent words within display copy */
em {
  font-style: italic;
  font-family: var(--font-display);
}

/* Section eyebrow / label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
}

/* Large serif lead text */
.lead {
  font-family: var(--font-serif);
  font-size: clamp(var(--t-lg), 2.5vw, var(--t-2xl));
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* Small UI label */
.label {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}


/* ---- 4. LAYOUT UTILITIES ---- */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

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

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

.section--forest {
  background-color: var(--forest);
  color: var(--cream);
}

.section--forest h1,
.section--forest h2,
.section--forest h3 {
  color: var(--cream);
}

.section--forest p {
  color: rgba(245, 239, 228, 0.80);
}

.section--forest .eyebrow {
  color: var(--gold-on-dark);
}

/* Homepage offer architecture: premium Masterpiece path first, followed by
   client-led alternatives for hosts who already bring the plan. */
.story-design-offer-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  margin-top: var(--s-8);
  max-width: 920px;
  margin-inline: auto;
}

.offer-fit-guide {
  padding: var(--s-5) var(--s-6);
  border: 1px solid rgba(245, 239, 228, 0.20);
  border-radius: var(--r-md);
  background: rgba(12, 29, 20, 0.36);
}

.offer-fit-guide .eyebrow {
  margin-bottom: var(--s-3);
  color: var(--gold-on-dark);
}

.offer-fit-guide ul {
  display: grid;
  gap: var(--s-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-fit-guide li {
  position: relative;
  padding-left: 1.15rem;
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.82);
}

.offer-fit-guide li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--gold-light);
}

.offer-fit-guide strong {
  color: var(--cream);
}

.offer-fit-guide--cream {
  max-width: 920px;
  margin: var(--s-6) auto var(--s-8);
  border-color: var(--gold-rule);
  background: rgba(184, 146, 74, 0.08);
  text-align: left;
}

.offer-fit-guide--cream .eyebrow {
  color: var(--gold-text);
}

.offer-fit-guide--cream li {
  color: var(--ink-muted);
}

.offer-fit-guide--cream strong {
  color: var(--ink);
}

.offer-fit-guide--cream li::before {
  background: var(--gold);
}

.story-design-alternatives-heading {
  max-width: 700px;
  margin: var(--s-6) auto 0;
}

.story-design-alternatives-heading h3 {
  color: var(--cream);
  margin-top: var(--s-3);
}

.story-design-alternatives-heading p {
  color: rgba(245, 239, 228, 0.72);
}

.story-design-card {
  padding: var(--s-6);
  border: 1px solid rgba(245, 239, 228, 0.16);
  border-radius: var(--r-md);
  background: rgba(245, 239, 228, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.story-design-card--discovery {
  background: var(--cream);
  border-color: var(--gold);
  box-shadow: inset 0 3px 0 var(--gold), var(--shadow-lg);
}

.story-design-card__kicker {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
}

.story-design-card--discovery .story-design-card__kicker {
  color: var(--gold-text);
}

.story-design-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(var(--t-xl), 3vw, var(--t-2xl));
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}

.story-design-card--discovery h3 {
  color: var(--ink);
}

.story-design-card > p:not(.story-design-card__kicker) {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.7;
  color: rgba(245, 239, 228, 0.76);
}

.story-design-card--discovery > p:not(.story-design-card__kicker) {
  color: var(--ink-muted);
}

.story-design-card--discovery .story-design-card__proof-link {
  margin-top: var(--s-2);
  padding-top: var(--s-4);
  border-top: 1px solid var(--gold-rule);
}

.story-design-card__proof-link a {
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
}

.story-design-products {
  display: grid;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--gold-rule);
}

.story-design-products--alternatives {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.story-design-product + .story-design-product {
  padding-top: var(--s-3);
  border-top: 1px solid rgba(245, 239, 228, 0.12);
}

.story-design-card--discovery .story-design-product + .story-design-product {
  border-top-color: var(--gold-rule);
}

.story-design-product h4 {
  margin: 0 0 0.25rem;
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--cream);
}

.story-design-card--discovery .story-design-product h4 {
  color: var(--ink);
}

.story-design-product p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.72);
}

.story-design-card--discovery .story-design-product p {
  color: var(--ink-muted);
}

@media (min-width: 768px) {
  .story-design-products--alternatives {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-design-products--alternatives .story-design-product + .story-design-product {
    padding-top: 0;
    padding-left: var(--s-5);
    border-top: 0;
    border-left: 1px solid rgba(245, 239, 228, 0.12);
  }
}

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

/* ---- INTERACTIVE LAYOUT PLANNER INVITATION ---- */
.planner-invite-section {
  padding-block: clamp(var(--s-6), 6vw, var(--s-10));
}

.planner-invite {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--gold-rule);
  border-radius: var(--r-lg);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.planner-invite__visual {
  min-height: 25rem;
  overflow: hidden;
  background: var(--cream-dark);
}

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

.planner-invite__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(var(--s-6), 6vw, var(--s-10));
}

.planner-invite__content h2,
.planner-invite__content h3 {
  max-width: 760px;
  margin-top: var(--s-2);
}

.planner-invite__content h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.planner-invite__content p {
  max-width: 680px;
  margin-top: var(--s-3);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.planner-invite__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.planner-invite--dark {
  margin-top: clamp(var(--s-8), 8vw, var(--s-12));
  border-color: rgba(218, 177, 99, 0.32);
  background: rgba(13, 30, 20, 0.82);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
}

.planner-invite--dark .planner-invite__content h3,
.planner-invite--dark .planner-invite__content p {
  color: var(--cream);
}

.planner-invite--dark .planner-invite__content p {
  color: rgba(245, 239, 228, 0.78);
}

.planner-invite--dark .eyebrow {
  color: var(--gold-on-dark);
}

@media (max-width: 820px) {
  .planner-invite {
    grid-template-columns: 1fr;
  }

  .planner-invite__visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .planner-invite__content {
    padding: clamp(var(--s-5), 8vw, var(--s-8));
  }
}

@media (max-width: 520px) {
  .planner-invite__actions,
  .planner-invite__actions .btn {
    width: 100%;
  }
}

/* Two-column split */
.split {
  display: grid;
  gap: var(--s-8);
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--s-8), 8vw, var(--s-16));
  }
}

/* Image-and-facts sections need more visual weight than a fixed 4:3 card.
   Keep the ordinary split compact; expand only the longer factual layouts. */
.split__media-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
}

.split__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) and (max-width: 899px) {
  .split--media-balanced {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
}

@media (min-width: 900px) {
  .split--media-balanced {
    align-items: stretch;
    gap: clamp(var(--s-6), 5vw, var(--s-10));
  }

  .split--media-balanced .split__media {
    display: flex;
    align-items: center;
  }

  .split--media-balanced .split__media-frame {
    width: 100%;
    height: clamp(440px, 42vw, 600px);
    max-height: 100%;
    aspect-ratio: auto;
  }
}

/* 3-column grid */
.grid-3 {
  display: grid;
  gap: var(--s-4);
}

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

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

/* 2-column grid */
.grid-2 {
  display: grid;
  gap: var(--s-4);
}

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

.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}

/* Centered text block */
.text-center { text-align: center; }

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.stack--sm { gap: var(--s-2); }

/* Reusable in-page navigation for long decision pages. */
.page-jump-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: rgba(245, 239, 228, 0.97);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 8px 18px rgba(30, 27, 24, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-jump-nav__inner {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  min-height: 52px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.page-jump-nav__inner::-webkit-scrollbar {
  display: none;
}

.page-jump-nav__label {
  flex: 0 0 auto;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.page-jump-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: max-content;
}

.page-jump-nav__links a {
  display: block;
  padding: 0.65rem 0.8rem;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: var(--ink-muted);
  border-radius: 999px;
  transition: color var(--dur-fast), background-color var(--dur-fast);
}

.page-jump-nav__links a:hover,
.page-jump-nav__links a:focus-visible {
  color: var(--forest);
  background: rgba(184, 146, 74, 0.12);
}

@media (max-width: 760px) {
  .page-jump-nav__inner {
    min-height: 48px;
    gap: 0;
  }

  .page-jump-nav__label {
    display: none;
  }

  .page-jump-nav__links a {
    padding-inline: 0.7rem;
  }
}

/* At 400% desktop zoom the viewport is roughly 320 CSS pixels wide. Let
   ordinary navigation text reflow instead of requiring two-direction scroll. */
@media (max-width: 360px) {
  .page-jump-nav {
    position: static;
  }

  .page-jump-nav__inner {
    padding-block: var(--s-1);
    overflow-x: visible;
  }

  .page-jump-nav__links {
    flex-wrap: wrap;
    min-width: 0;
  }

  .page-jump-nav__links a {
    padding-block: 0.45rem;
    white-space: normal;
  }
}

.page-with-jump-nav section[id],
.page-with-jump-nav .story-support-card[id] {
  scroll-margin-top: calc(var(--nav-h) + 4rem);
}

/* A short, customer-facing buying plan. This is intentionally separate from
   the Story / Stage / Set framework: the framework explains how an event is
   designed, while this component explains what the visitor does next. */
.buying-plan {
  background:
    radial-gradient(circle at 10% 15%, rgba(207, 169, 104, 0.11), transparent 32%),
    var(--forest);
  color: var(--cream);
}

.buying-plan--compact {
  padding-block: clamp(2rem, 4vw, 3.25rem);
}

.buying-plan__header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.buying-plan__header h2 {
  margin-top: var(--s-2);
  color: var(--cream);
}

.buying-plan__header p {
  max-width: 650px;
  margin: var(--s-3) auto 0;
  color: rgba(245, 239, 228, 0.82);
}

.buying-plan__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin: var(--s-8) auto 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  border: 1px solid rgba(245, 239, 228, 0.22);
  border-radius: var(--r-md);
  background: rgba(245, 239, 228, 0.045);
}

.buying-plan--compact .buying-plan__steps {
  margin-top: var(--s-5);
}

.buying-plan__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  gap: 0.15rem var(--s-3);
  min-width: 0;
  padding: clamp(1.25rem, 2.6vw, 2rem);
}

.buying-plan__step + .buying-plan__step {
  border-left: 1px solid rgba(245, 239, 228, 0.18);
}

.buying-plan__number {
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--gold-light);
}

.buying-plan__step h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(var(--t-lg), 2vw, var(--t-xl));
}

.buying-plan__step p {
  margin: var(--s-2) 0 0;
  color: rgba(245, 239, 228, 0.76);
  font-size: var(--t-base);
  line-height: 1.65;
}

.buying-plan__actions {
  justify-content: center;
  margin-top: var(--s-7);
}

@media (max-width: 760px) {
  .buying-plan__steps {
    grid-template-columns: 1fr;
  }

  .buying-plan__step + .buying-plan__step {
    border-top: 1px solid rgba(245, 239, 228, 0.18);
    border-left: 0;
  }
}

.story-support-card__title {
  margin-top: var(--s-4);
  text-wrap: balance;
}

@media (min-width: 768px) {
  .story-support-card {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    gap: var(--s-3);
  }
}

.coming-soon-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: var(--s-6);
  border: 1px solid rgba(174, 132, 62, 0.34);
  border-radius: var(--r-md);
  background:
    radial-gradient(circle at 50% 32%, rgba(174, 132, 62, 0.18), transparent 36%),
    linear-gradient(145deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--cream);
}

.coming-soon-panel::before,
.coming-soon-panel::after {
  content: '';
  position: absolute;
  inset: var(--s-4);
  border: 1px solid rgba(245, 239, 228, 0.12);
  border-radius: calc(var(--r-md) - 4px);
  pointer-events: none;
}

.coming-soon-panel::after {
  inset: var(--s-5);
  border-color: rgba(174, 132, 62, 0.22);
}

.coming-soon-panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  text-align: center;
}

.coming-soon-panel__eyebrow,
.coming-soon-panel__detail {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon-panel__eyebrow { color: var(--gold-on-dark); }
.coming-soon-panel__detail { color: rgba(245, 239, 228, 0.68); }

.coming-soon-panel__title {
  font-family: var(--font-display);
  font-size: clamp(var(--t-xl), 4vw, var(--t-2xl));
  font-weight: 400;
  line-height: 1.1;
}


/* ---- 5. DECORATIVE ELEMENTS ---- */

/* Thin gold rule divider */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-inline: auto;
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(var(--t-lg), 3vw, var(--t-2xl));
  line-height: 1.5;
  color: var(--forest);
  position: relative;
  padding-left: var(--s-4);
}

.pull-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 2px;
  background: var(--gold);
}

/* Section header – eyebrow + headline + optional lead */
.section-header {
  margin-bottom: var(--section-heading-space);
}

.section-header .eyebrow {
  display: block;
  margin-bottom: var(--s-2);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.section-header h2,
.section-header h3 {
  margin-bottom: var(--s-3);
  text-wrap: balance;
}

.section-header.text-center > .eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-kicker {
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.section-header.text-center > .eyebrow {
  justify-content: center;
}

.section-header.text-center > .eyebrow::before,
.section-header.text-center > .eyebrow::after,
.section-kicker::after {
  content: '';
  width: 1.75rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.55;
}

.section-header__accent {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0.08em auto 0;
  text-align: center;
  text-wrap: balance;
}

.section-header .lead {
  max-width: 640px;
}

.section-header.text-center .lead {
  margin-inline: auto;
}


/* ---- 6. NAVIGATION ---- */

.skip-link {
  position: fixed;
  top: var(--s-2);
  left: var(--gutter);
  z-index: 300;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 2px solid var(--gold);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 600;
  transform: translateY(calc(-100% - var(--s-4)));
  transition: transform var(--dur-fast) var(--ease-out);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}

#site-nav.nav--transparent {
  background-color: transparent;
}

#site-nav.nav--scrolled {
  background-color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Logo */
.nav__logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.nav__logo {
  height: 58px;
  width: auto;
  display: block;
  transition: opacity var(--dur) var(--ease-out);
}

/* Light logo: visible on transparent nav, hidden when scrolled */
.nav__logo--light  { display: block; }
.nav__logo--color  { display: none; }

.nav--scrolled .nav__logo--light { display: none; }
.nav--scrolled .nav__logo--color { display: block; }

/* Footer logo */
.footer__brand .nav__logo {
  height: 52px;
  margin-bottom: var(--s-3);
}

/* Desktop nav links */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--s-3);
}

@media (min-width: 1200px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.9);
  transition: color var(--dur-fast) var(--ease-out);
  padding-block: var(--s-1);
  white-space: nowrap;
}

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

.nav--scrolled .nav__link {
  color: var(--ink-muted);
}

.nav--scrolled .nav__link:hover {
  color: var(--forest);
}

/* "Plan Your Event" – promoted nav link, always gold */
.nav__link--primary {
  color: var(--gold-on-dark);
}

.nav--scrolled .nav__link--primary {
  color: var(--gold-text);
}

.nav__link--primary:hover,
.nav--scrolled .nav__link--primary:hover {
  color: var(--gold-dark, var(--forest));
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

/* Keep the dropdown open while the pointer crosses the visual gap between
   the More button and its menu. Without this bridge, that gap briefly ends
   the hover state before the pointer can reach the first link. */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: calc(-1 * var(--s-2));
  right: calc(-1 * var(--s-2));
  height: calc(var(--s-2) + 2px);
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.9);
  cursor: pointer;
  padding-block: var(--s-1);
  transition: color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.nav__dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 4px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-toggle::after,
.nav__dropdown:focus-within .nav__dropdown-toggle::after,
.nav__dropdown.open .nav__dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav--scrolled .nav__dropdown-toggle {
  color: var(--ink-muted);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--s-2));
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--gold-rule);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: var(--s-1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--dur-fast) var(--ease-out),
              visibility var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  pointer-events: none;
}

.nav__dropdown-menu--stay {
  min-width: 240px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav__dropdown-link {
  display: block;
  padding: var(--s-1) var(--s-2);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-radius: var(--r);
  transition: background-color var(--dur-fast), color var(--dur-fast);
}

.nav__dropdown-link:hover {
  background-color: var(--cream-alt);
  color: var(--forest);
}

/* Nav CTA button */
.btn.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .btn.nav__cta {
    display: block;
  }
}

/* Narrow end of the desktop nav range (right at the 1200px breakpoint,
   before there's room to breathe) – reclaim space so nothing clips. */
@media (min-width: 1200px) and (max-width: 1359px) {
  .nav__links {
    gap: var(--s-2);
  }
  .btn.nav__cta {
    padding-inline: 1.25em;
  }
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--dur) var(--ease-out),
              opacity var(--dur) var(--ease-out);
  transform-origin: center;
}

.nav--scrolled .nav__hamburger span {
  background: var(--ink);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest-dark);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--s-3);
  padding: var(--s-8) var(--gutter) var(--s-5);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease-out),
              visibility 0s linear var(--dur);
}

.nav__mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.nav__mobile-close {
  position: absolute;
  top: max(var(--s-4), env(safe-area-inset-top));
  right: var(--gutter);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 239, 228, 0.38);
  border-radius: 50%;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
}

.nav__mobile-close:hover {
  border-color: var(--gold-on-dark);
  color: var(--gold-on-dark);
}

.nav__mobile-group-label {
  display: block;
  margin-top: var(--s-1);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
}

.nav__mobile-link.nav__mobile-link--secondary {
  font-size: 1.25rem;
}

.nav__mobile-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--cream);
  transition: color var(--dur-fast);
}

.nav__mobile-link:hover {
  color: var(--gold-light);
}

.nav__mobile-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-rule);
  margin-block: var(--s-1);
}

/* Spacer to push content below fixed nav */
.nav-spacer {
  height: var(--nav-h);
}

/* ---- 7. FOOTER ---- */

#site-footer {
  background-color: var(--forest-dark);
  color: rgba(245, 239, 228, 0.75);
  padding-block: clamp(var(--s-8), 6vw, var(--s-12)) var(--s-6);
}

.footer__inner {
  display: grid;
  gap: clamp(var(--s-6), 5vw, var(--s-10));
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1240px) {
  .footer__inner {
    grid-template-columns: minmax(210px, 0.95fr) minmax(300px, 1.35fr) minmax(170px, 0.8fr) minmax(280px, 1.25fr);
    gap: clamp(var(--s-4), 3vw, var(--s-8));
  }
}

.footer__brand .nav__logo {
  color: var(--cream);
  display: block;
  margin-bottom: var(--s-3);
}

.footer__brand p {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.7;
  color: rgba(245, 239, 228, 0.65);
  max-width: 320px;
}

.footer__col-heading {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-bottom: var(--s-3);
}

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

@media (min-width: 900px) {
  .footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--s-3);
  }
}

.footer__link {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  color: rgba(245, 239, 228, 0.65);
  transition: color var(--dur-fast);
  letter-spacing: 0.04em;
}

.footer__link:hover {
  color: var(--cream);
}

.footer__contact p,
.footer__address {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.8;
  color: rgba(245, 239, 228, 0.65);
}

.footer__address {
  font-style: normal;
}

.footer__visit-note {
  margin-top: var(--s-2);
}

.footer__contact a,
.footer__directions-link {
  color: rgba(245, 239, 228, 0.65);
  transition: color var(--dur-fast);
}

.footer__contact a:hover,
.footer__directions-link:hover {
  color: var(--cream);
}

.footer__tour-link {
  display: inline-flex;
  margin-top: var(--s-3);
}

.footer__map-frame {
  min-height: 220px;
  overflow: hidden;
  background: var(--forest);
  border: 1px solid rgba(184, 146, 74, 0.28);
  border-radius: var(--r-sm);
}

.footer__map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}

.footer__directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--s-2);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  letter-spacing: 0.04em;
}

.footer__bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: var(--s-6);
  margin-top: var(--s-8);
  border-top: 1px solid rgba(184, 146, 74, 0.15);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__bottom p {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  color: rgba(245, 239, 228, 0.65);
  letter-spacing: 0.04em;
}


/* ---- 8. BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: var(--s-2);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.85em 2em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  border: 1.5px solid transparent;
}

/* Long action labels must reflow with zoom instead of establishing a page-wide
   minimum width. This keeps the actions readable without truncating them. */
@media (max-width: 559px) {
  .btn {
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Large modifier – for the one button on a page that should read as
   THE primary action (currently: hero "Plan Your Event"). */
.btn-lg {
  font-size: var(--t-sm);
  padding: 1.15em 3em;
}

/* Primary – gold background */
.btn-primary {
  background-color: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(184, 146, 74, 0.35);
}

/* Secondary – forest background */
.btn-forest {
  background-color: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.btn-forest:hover {
  background-color: var(--forest-dark);
  border-color: var(--forest-dark);
  box-shadow: 0 4px 16px rgba(27, 46, 36, 0.25);
}

/* Ghost – gold outline, cream text (for dark backgrounds) */
.btn-ghost {
  background-color: rgba(20, 35, 24, 0.42);
  color: var(--cream);
  border-color: rgba(245, 239, 228, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--cream);
  background-color: rgba(20, 35, 24, 0.60);
}

/* Ghost forest – gold outline, forest text (for light backgrounds) */
.btn-ghost-forest {
  background-color: transparent;
  color: var(--forest);
  border-color: var(--gold-rule);
}

.btn-ghost-forest:hover {
  border-color: var(--gold);
  color: var(--forest-dark);
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
}


/* ---- 9. HERO ---- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--forest-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #1a2e22 0%,
    #2c4235 35%,
    #3d5242 55%,
    #5c5038 80%,
    #7a6040 100%
  );
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg .weddings-hero__image {
  object-position: 64% center;
}

@media (max-width: 760px) {
  .hero__bg .weddings-hero__image {
    object-position: 68% center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,46,36,0.62) 0%, rgba(27,46,36,0.18) 45%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: calc(var(--nav-h) + var(--s-16)) var(--s-20);
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--t-md);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-bottom: var(--s-4);
  text-shadow: 0 1px 2px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,0.85);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--t-3xl), 8vw, var(--t-5xl));
  font-weight: 400;
  line-height: 1.1;
  color: var(--gold-light);
  max-width: 760px;
  margin-bottom: var(--s-5);
  text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 2px 14px rgba(0,0,0,0.8);
}

.hero__headline em {
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 4px 24px rgba(0,0,0,0.4);
}

.hero__subline {
  font-family: var(--font-serif);
  font-size: clamp(var(--t-base), 2vw, var(--t-lg));
  line-height: 1.75;
  color: rgba(245, 239, 228, 0.90);
  max-width: 560px;
  margin-bottom: var(--s-6);
  padding: var(--s-2) var(--s-3);
  background: rgba(20, 35, 24, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 6px;
}

@media (min-width: 560px) {
  .hero__subline--intro {
    margin-bottom: 0;
    padding-bottom: var(--s-1);
    border-radius: 6px 6px 0 0;
  }

  .hero__subline--detail {
    padding-top: var(--s-1);
    border-radius: 0 0 6px 6px;
  }
}

/* Homepage opening: lead with the outcome, then answer the practical fit
   questions without turning the hero into a list of venue features. */
.home-hero .hero__overlay {
  background: linear-gradient(
    to right,
    rgba(20, 35, 24, 0.80) 0%,
    rgba(20, 35, 24, 0.56) 48%,
    rgba(20, 35, 24, 0.20) 82%,
    rgba(20, 35, 24, 0.08) 100%
  );
}

.home-hero .hero__content {
  padding-block: calc(var(--nav-h) + var(--s-10)) var(--s-10);
}

.home-hero .hero__eyebrow {
  max-width: 760px;
  font-size: var(--t-xs);
}

.hero__location-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin-bottom: var(--s-4);
}

.hero__location-line .hero__eyebrow {
  margin-bottom: 0;
}

.hero__directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(245, 239, 228, 0.48);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 2px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,0.85);
}

.hero__directions-link:hover,
.hero__directions-link:focus-visible {
  color: var(--gold-light);
}

.home-hero .hero__headline {
  max-width: 1000px;
  font-size: clamp(2.65rem, 6.25vw, 5.15rem);
}

@media (min-width: 560px) {
  .home-hero .hero__keep-together {
    white-space: nowrap;
  }
}

.home-hero .hero__subline {
  max-width: 820px;
  line-height: 1.65;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin-top: var(--s-5);
  border: 1px solid rgba(245, 239, 228, 0.20);
  border-radius: var(--r-md);
  background: rgba(20, 35, 24, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__fact {
  min-width: 0;
  padding: var(--s-2) var(--s-3);
}

.hero__fact:nth-child(odd) {
  border-right: 1px solid rgba(245, 239, 228, 0.16);
}

.hero__fact:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(245, 239, 228, 0.16);
}

.hero__fact strong,
.hero__fact span {
  display: block;
}

.hero__capacity-note {
  max-width: 900px;
  margin-top: var(--s-2);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  line-height: 1.5;
  color: rgba(245, 239, 228, 0.84);
}

.hero__capacity-note a {
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 239, 228, 0.48);
}

.hero__fact strong {
  display: flex;
  align-items: flex-end;
  min-height: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(var(--t-md), 2vw, var(--t-xl));
  font-weight: 400;
  line-height: 1.2;
  color: var(--gold-light);
}

.hero__fact:nth-child(3) strong {
  font-size: clamp(var(--t-md), 1.6vw, 1.4rem);
}

.hero__fact span {
  margin-top: 0.2rem;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.10em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.76);
}

@media (min-width: 768px) {
  .hero__facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero__fact:nth-child(n) {
    border-right: 1px solid rgba(245, 239, 228, 0.16);
    border-bottom: 0;
  }

  .hero__fact:last-child {
    border-right: 0;
  }
}

@media (max-width: 559px) {
  .home-hero .hero__content,
  .weddings-page .hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero .hero__headline,
  .weddings-page .hero__headline {
    order: 1;
  }

  .home-hero .hero__subline--intro,
  .weddings-page .hero__subline--intro {
    order: 2;
  }

  .home-hero .hero__primary-actions,
  .weddings-page .hero__primary-actions {
    order: 3;
  }

  .home-hero .hero__subline--detail,
  .weddings-page .hero__subline--detail {
    order: 4;
    margin-top: var(--s-4);
  }

  .weddings-page .hero__planning-link {
    order: 5;
  }

  .home-hero .hero__facts {
    order: 5;
  }

  .home-hero .hero__capacity-note {
    order: 6;
  }

  .home-hero .hero__content {
    padding-block: calc(var(--nav-h) + var(--s-6)) var(--s-8);
  }

  .home-hero .hero__headline {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
    margin-bottom: var(--s-3);
  }

  .hero__location-line {
    align-items: flex-start;
    margin-bottom: var(--s-3);
  }

  .hero__directions-link {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .home-hero .hero__headline br {
    display: none;
  }

  .home-hero .btn-group {
    align-items: stretch !important;
  }

  .home-hero .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .home-hero .hero__subline {
    margin-bottom: var(--s-4);
    padding: var(--s-2);
  }

  .hero__facts {
    margin-top: var(--s-4);
  }

  .hero__fact {
    padding: var(--s-2);
  }

  .hero__fact strong {
    min-height: 3.4rem;
  }
}

.capacity-weather-note {
  padding: var(--s-3) var(--s-4);
  border-left: 3px solid var(--gold);
  background: rgba(184, 146, 74, 0.10);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--ink-muted);
}

.capacity-weather-note a {
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
}

.wedding-welcome {
  padding-block: clamp(var(--s-8), 8vw, var(--s-12));
  background: var(--cream-alt);
}

.wedding-welcome h2 {
  margin-top: var(--s-3);
}

.wedding-welcome .lead {
  margin-top: var(--s-4);
}

.wedding-welcome .lead + p {
  max-width: 680px;
  margin: var(--s-3) auto 0;
  color: var(--ink-muted);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-1);
  color: rgba(245, 239, 228, 0.68);
  z-index: 2;
}

.hero__scroll span {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,239,228,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ---- 10. GUIDE BLOCK (Marie) ---- */

.guide-block {
  display: grid;
  gap: var(--s-8);
  align-items: center;
}

@media (min-width: 768px) {
  .guide-block {
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(var(--s-10), 10vw, var(--s-16));
  }
}

.guide-photo {
  aspect-ratio: 4 / 5;
  background-color: var(--cream-dark);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}

.guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-text {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.guide-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-md);
  color: var(--forest);
  margin-top: var(--s-2);
}


/* ---- 11. EVENT DOORS ---- */

.doors-grid {
  display: grid;
  gap: var(--s-3);
}

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

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

  .doors-grid .door-card__content {
    display: grid;
    grid-template-rows: 3.6rem 8.1rem 1.8rem 1.8rem;
    align-content: end;
    justify-items: center;
  }

  .door-card__eyebrow,
  .door-card__title,
  .door-card__body,
  .door-card__cta {
    align-self: center;
  }

  .door-card__title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.door-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-md);
  background-color: var(--forest);
  text-decoration: none;
}

/* Gradient fallback shown before image loads */
.door-card--weddings   { background: linear-gradient(to bottom, #2c3828, #4a5540); }
.door-card--celebrations { background: linear-gradient(to bottom, #3a3228, #5c4e3a); }
.door-card--corporate  { background: linear-gradient(to bottom, #28303a, #3a4850); }
.door-card--christmas  { background: linear-gradient(to bottom, #2c1f28, #4a2c3a); }

.door-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

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

.door-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 36, 28, 0.94) 0%,
    rgba(27, 46, 36, 0.78) 44%,
    rgba(27, 46, 36, 0.18) 72%,
    transparent 100%
  );
}

.door-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  text-align: center;
}

.door-card__eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  padding: 0.4rem 0.72rem;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  background: rgba(18, 32, 25, 0.88);
  border: 1px solid rgba(230, 205, 154, 0.38);
  border-radius: 999px;
  box-shadow: 0 2px 14px rgba(18, 32, 25, 0.34);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.door-card__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.15;
}

.door-card__body {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.6;
  color: rgba(245, 239, 228, 0.75);
}

.door-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin-top: var(--s-1);
  transition: gap var(--dur-fast);
}

.door-card__cta::after {
  content: '→';
}

.door-card:hover .door-card__cta {
  gap: var(--s-2);
}


/* ---- 11b. HOMEPAGE EXPERIENCE LINKS ---- */

.home-experience-links {
  background: var(--cream);
}

.home-experience-links__intro {
  max-width: 720px;
  margin: var(--s-4) auto 0;
}

.home-experience-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-5);
  max-width: 1080px;
  margin: var(--s-7) auto 0;
}

.home-experience-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: var(--cream-alt);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}

.home-experience-card:hover,
.home-experience-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold-rule);
  box-shadow: var(--shadow-md);
}

.home-experience-card__photo {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-dark);
}

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

.home-experience-card:hover .home-experience-card__photo img,
.home-experience-card:focus-visible .home-experience-card__photo img {
  transform: scale(1.035);
}

.home-experience-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--s-5);
}

.home-experience-card__title {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-size: clamp(var(--t-xl), 3vw, var(--t-2xl));
  font-weight: 400;
  line-height: 1.08;
}

.home-experience-card__body {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-muted);
}

.home-experience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  margin-top: auto;
  padding-top: var(--s-4);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.home-experience-card__cta::after {
  content: '\2192';
  transition: transform var(--dur-fast) var(--ease-out);
}

.home-experience-card:hover .home-experience-card__cta::after,
.home-experience-card:focus-visible .home-experience-card__cta::after {
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .home-experience-links__grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    margin-top: var(--s-6);
  }

  .home-experience-card__content {
    padding: var(--s-4);
  }
}


/* ---- 12. FARM STRIP (Provenance Stories) ---- */

.farm-strip {
  background-color: var(--forest);
}

.farm-stories {
  display: grid;
  gap: var(--s-4);
}

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

@media (min-width: 1024px) {
  .farm-stories { grid-template-columns: repeat(4, 1fr); }
  .farm-stories--6 { grid-template-columns: repeat(3, 1fr); }
}

.farm-story {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.farm-story__photo {
  aspect-ratio: 4 / 3;
  background-color: rgba(255,255,255,0.05);
  border-radius: var(--r);
  overflow: hidden;
}

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

.farm-story:hover .farm-story__photo img {
  transform: scale(1.04);
}

.farm-story__title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.25;
}

.farm-story__body {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.75;
  color: rgba(245, 239, 228, 0.65);
}


/* ---- 13. FINAL CTA BAND ---- */

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

.final-cta h2 {
  font-size: clamp(var(--t-2xl), 5vw, var(--t-4xl));
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--s-5);
}

.final-cta .lead {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--s-8);
}


/* ---- 13b. DIRECTIONS & GUEST ARRIVAL ---- */

.directions-hero {
  padding-top: calc(var(--nav-h) + clamp(var(--s-8), 7vw, var(--s-12)));
  padding-bottom: clamp(var(--s-8), 6vw, var(--s-10));
}

.directions-hero .container {
  max-width: 900px;
}

.directions-address {
  padding: var(--s-4);
  border-left: 3px solid var(--gold);
  background: var(--cream-alt);
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  font-style: normal;
  line-height: 1.55;
  color: var(--ink);
}

.directions-steps {
  display: grid;
  gap: var(--s-3);
  margin: var(--s-2) 0;
  padding-left: 1.4rem;
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.65;
  color: var(--ink-muted);
}

.directions-steps li::marker {
  color: var(--gold-text);
  font-family: var(--font-ui);
  font-weight: 600;
}

.directions-alert {
  padding: var(--s-4);
  border: 1px solid var(--gold-rule);
  border-radius: var(--r-sm);
  background: rgba(184, 146, 74, 0.10);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--ink-muted);
}

.directions-alert strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.directions-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-3);
}

.directions-actions .btn {
  min-width: min(100%, 220px);
}

.directions-actions--centered {
  justify-content: center;
  margin-top: 0;
}

.directions-sign-frame {
  width: min(100%, 520px);
  height: clamp(440px, 56vw, 650px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.directions-sign-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.directions-section-heading {
  margin-inline: auto;
}

.directions-info-grid {
  margin-top: var(--s-8);
}

.directions-info-card {
  padding: var(--s-5);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.directions-info-card h3 {
  margin: var(--s-2) 0 var(--s-3);
  font-size: var(--t-xl);
}

.directions-info-card p:last-child {
  color: var(--ink-muted);
}

.directions-info-card a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.directions-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.nearby-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.nearby-card {
  min-width: 0;
  padding: var(--s-5);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.nearby-card--property {
  border-color: var(--gold-rule);
  background: linear-gradient(135deg, var(--cream), var(--white));
}

.nearby-card h3 {
  margin: var(--s-2) 0 var(--s-3);
  font-size: var(--t-xl);
}

.nearby-card > p {
  color: var(--ink-muted);
}

.nearby-link-list {
  display: grid;
  gap: var(--s-2);
  margin: var(--s-4) 0 0;
  padding: 0;
  list-style: none;
}

.nearby-link-list a,
.nearby-card__link {
  color: var(--forest);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold-rule);
  text-underline-offset: 0.2em;
}

.nearby-card__link {
  display: inline-block;
  margin-top: var(--s-4);
}

@media (min-width: 720px) {
  .nearby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .directions-hero__actions {
    display: grid;
  }

  .directions-hero__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

.directions-map-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}

.directions-map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 228, 0.18);
  border-radius: var(--r-md);
  background: var(--forest-dark);
}

.directions-map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(420px, 42vw, 620px);
  border: 0;
}

@media (max-width: 559px) {
  .directions-actions {
    align-items: stretch;
  }

  .directions-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .directions-sign-frame {
    height: 440px;
  }

  .directions-map-heading .btn {
    width: 100%;
  }
}


/* ---- 13c. VENDOR INFORMATION & LOGISTICS ---- */

.vendor-hero {
  background:
    linear-gradient(100deg, rgba(20, 41, 31, 0.97), rgba(20, 41, 31, 0.79)),
    url('/img/sawmill-oak-walls.jpg') center 52% / cover;
}

.vendor-hero .container {
  max-width: 860px;
}

.vendor-hero__actions {
  justify-content: center;
  margin-top: var(--s-6);
}

.vendor-intro-grid,
.vendor-arrival-grid {
  display: grid;
  gap: clamp(var(--s-6), 7vw, var(--s-12));
  align-items: center;
}

.vendor-intro-photo {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.vendor-intro-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.vendor-intro-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--s-4);
  background: linear-gradient(180deg, transparent, rgba(20, 41, 31, 0.94));
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.45;
  color: var(--cream);
}

.vendor-control-note {
  padding: var(--s-4);
  border-left: 3px solid var(--gold);
  background: var(--cream);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--ink-muted);
}

.vendor-control-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.vendor-check-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.vendor-check-card,
.vendor-arrival-details article,
.vendor-tool-card,
.vendor-policy-grid article {
  min-width: 0;
  padding: var(--s-5);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  background: var(--cream);
}

.vendor-check-card > span {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--gold-text);
}

.vendor-check-card h3,
.vendor-arrival-details h3,
.vendor-tool-card h3,
.vendor-policy-grid h3 {
  margin-top: var(--s-2);
  font-size: var(--t-xl);
}

.vendor-check-card p,
.vendor-arrival-details p,
.vendor-policy-grid p {
  margin-top: var(--s-3);
  color: var(--ink-muted);
}

.vendor-arrival-details {
  display: grid;
  gap: var(--s-4);
}

.vendor-arrival-details article {
  background: var(--cream-alt);
}

.vendor-tools-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.vendor-tool-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.vendor-tool-card__for {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.vendor-tool-card ul {
  display: grid;
  gap: var(--s-2);
  margin: var(--s-4) 0 0;
  padding: 0;
  list-style: none;
}

.vendor-tool-card li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--ink-muted);
}

.vendor-tool-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.vendor-space-facts {
  display: grid;
  gap: 1px;
  margin-top: var(--s-6);
  overflow: hidden;
  border: 1px solid var(--gold-rule);
  border-radius: var(--r-md);
  background: var(--gold-rule);
}

.vendor-space-facts > div {
  display: grid;
  gap: 0.2rem;
  padding: var(--s-4);
  background: var(--cream);
  text-align: center;
}

.vendor-space-facts strong {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--forest);
}

.vendor-space-facts span {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.vendor-reference-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.vendor-reference-card {
  min-width: 0;
  padding: var(--s-5);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  background: var(--cream-alt);
}

.vendor-reference-card h3 {
  margin-top: var(--s-2);
  font-size: var(--t-xl);
}

.vendor-reference-card dl {
  display: grid;
  gap: 0;
  margin-top: var(--s-4);
}

.vendor-reference-card dl > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1.3fr);
  gap: var(--s-3);
  padding-block: 0.7rem;
  border-top: 1px solid var(--cream-dark);
}

.vendor-reference-card dt {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
}

.vendor-reference-card dd {
  margin: 0;
  color: var(--ink-muted);
}

.vendor-reference-card__note {
  margin-top: var(--s-4);
  padding: var(--s-3);
  border-left: 3px solid var(--gold);
  background: var(--cream);
  color: var(--ink-muted);
}

.vendor-reference-card__note strong {
  color: var(--ink);
}

.vendor-reference-card--confirm ul {
  display: grid;
  gap: var(--s-2);
  margin: var(--s-4) 0 0;
  padding-left: 1.15rem;
  color: var(--ink-muted);
}

.vendor-reference-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.vendor-role-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.vendor-role-card {
  padding: var(--s-5);
  border: 1px solid rgba(245, 239, 228, 0.18);
  border-radius: var(--r-md);
  background: rgba(245, 239, 228, 0.05);
}

.vendor-role-card > span {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
}

.vendor-role-card h3 {
  margin-top: var(--s-3);
  color: var(--cream);
}

.vendor-role-card p {
  margin-top: var(--s-3);
  color: rgba(245, 239, 228, 0.75);
}

.vendor-policy-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.vendor-policy-grid article {
  background: var(--cream-alt);
}

@media (min-width: 700px) {
  .vendor-check-grid,
  .vendor-role-grid,
  .vendor-policy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vendor-tools-grid,
  .vendor-space-facts,
  .vendor-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .vendor-intro-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.74fr);
  }

  .vendor-arrival-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
    align-items: start;
  }

  .vendor-tools-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vendor-space-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .vendor-hero__actions {
    display: grid;
  }

  .vendor-hero__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .vendor-reference-card dl > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .vendor-reference-actions {
    display: grid;
  }

  .vendor-reference-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

@media print {
  .vendor-page #site-nav,
  .vendor-page #mobile-menu,
  .vendor-page .page-jump-nav,
  .vendor-page #site-footer,
  .vendor-page [data-print-page] {
    display: none !important;
  }

  .vendor-page .vendor-hero {
    padding-top: var(--s-6);
  }

  .vendor-page .section {
    padding-block: var(--s-8);
  }

  .vendor-page article,
  .vendor-page figure,
  .vendor-page .vendor-control-note,
  .vendor-page .directions-alert {
    break-inside: avoid;
  }
}


/* ---- 14. PAGE HERO (interior pages) ---- */

.page-hero {
  padding-top: calc(var(--nav-h) + clamp(var(--s-12), 10vw, var(--s-20)));
  padding-bottom: clamp(var(--s-10), 8vw, var(--s-16));
  background-color: var(--forest-dark);
  color: var(--cream);
  text-align: center;
}

.page-hero .eyebrow {
  display: block;
  color: var(--gold-on-dark);
  margin-bottom: var(--s-3);
  text-shadow: 0 1px 2px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,0.85);
}

.page-hero h1 {
  color: var(--cream);
  margin-bottom: var(--s-4);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 4px 24px rgba(0,0,0,0.4);
}

.page-hero .lead {
  color: rgba(245, 239, 228, 0.75);
  max-width: 580px;
  margin-inline: auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65), 0 3px 16px rgba(0,0,0,0.4);
}

/* The planner is a conversion tool, so its first question should remain close
   to the initial promise instead of sitting beneath a full-screen hero. */
.planner-hero {
  padding-top: clamp(var(--s-8), 7vw, var(--s-12));
  padding-bottom: clamp(var(--s-8), 6vw, var(--s-10));
}

.planner-hero .container {
  max-width: 960px;
}

.planner-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(var(--t-3xl), 5.5vw, 4.75rem);
}

.planner-hero .lead {
  max-width: 720px;
  font-size: clamp(var(--t-md), 1.7vw, 1.25rem);
  line-height: 1.65;
}


/* ---- 14b. PLANNING GUIDES HUB ---- */

.plan-hub-hero {
  padding-top: calc(var(--nav-h) + clamp(var(--s-6), 6vw, var(--s-10)));
  padding-bottom: clamp(var(--s-6), 5vw, var(--s-8));
}

.plan-hub-hero .container {
  max-width: 960px;
}

.plan-hub-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(var(--t-3xl), 5.5vw, 4.75rem);
}

.plan-hub-hero .lead {
  max-width: 720px;
  font-size: clamp(var(--t-md), 1.7vw, 1.25rem);
  line-height: 1.65;
}

.plan-hub-intro {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.plan-hub-intro h2 {
  margin-top: var(--s-2);
}

.plan-hub-intro .lead {
  margin-top: var(--s-4);
}

/* An early, factual bridge from search-first planning advice to the venue.
   These appear inside the long-form guides before a mobile reader has to
   reach the final CTA. */
.planning-guide-bridge {
  margin: clamp(var(--s-8), 9vw, var(--s-12)) 0;
  padding: clamp(var(--s-5), 6vw, var(--s-8));
  border: 1px solid rgba(184, 146, 74, 0.42);
  border-radius: var(--r-md);
  background: var(--forest-dark);
  box-shadow: var(--shadow-md);
  color: var(--cream);
}

.post-body .planning-guide-bridge .eyebrow {
  margin: 0 0 var(--s-2);
  color: var(--gold-on-dark);
}

.post-body .planning-guide-bridge h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(var(--t-xl), 4vw, var(--t-2xl));
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}

.post-body .planning-guide-bridge p {
  max-width: 640px;
  margin: var(--s-3) 0 0;
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.65;
  color: rgba(245, 239, 228, 0.82);
}

.planning-guide-bridge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-5);
}

.post-body .planning-guide-bridge__actions a {
  text-decoration: none;
}

@media (max-width: 540px) {
  .planning-guide-bridge__actions {
    display: grid;
  }

  .planning-guide-bridge__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

.plan-choice-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.plan-choice-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: var(--s-5);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

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

.plan-choice-card__number {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-style: italic;
  color: var(--gold-text);
}

.plan-choice-card h3 {
  margin-top: var(--s-2);
  font-size: var(--t-xl);
  color: var(--forest);
}

.plan-choice-card p {
  margin-top: var(--s-2);
  font-size: var(--t-base);
  line-height: 1.65;
}

.plan-choice-card__link {
  margin-top: auto;
  padding-top: var(--s-4);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

.plan-choice-card__link::after {
  content: ' \2192';
}

.plan-library-header {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.plan-library-header h2 {
  margin-top: var(--s-2);
}

.plan-library-header .lead {
  margin-top: var(--s-4);
}

.plan-feature {
  display: grid;
  margin-top: var(--s-8);
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--forest-dark);
  box-shadow: var(--shadow-md);
}

.plan-feature__image {
  min-height: 280px;
  overflow: hidden;
}

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

.plan-feature:hover .plan-feature__image img {
  transform: scale(1.03);
}

.plan-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(var(--s-5), 6vw, var(--s-10));
}

.plan-feature__body h3 {
  margin-top: var(--s-2);
  color: var(--cream);
}

.plan-feature .eyebrow {
  color: var(--gold-on-dark);
}

.plan-feature__body p {
  margin-top: var(--s-3);
  color: rgba(245, 239, 228, 0.76);
  font-size: var(--t-md);
}

.plan-feature__body .plan-choice-card__link {
  color: var(--gold-light);
}

.plan-topic {
  margin-top: var(--s-12);
}

.plan-topic__header {
  max-width: 680px;
  margin-bottom: var(--s-6);
}

.plan-topic__header h3 {
  margin-top: var(--s-2);
  color: var(--forest);
}

.post-grid {
  display: grid;
  gap: var(--s-5);
}

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--s-3);
  text-decoration: none;
}

.post-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream-dark);
}

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

.post-card:hover .post-card__img img {
  transform: scale(1.04);
}

.post-card__meta {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.post-card__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 400;
  line-height: 1.25;
  color: var(--forest);
  transition: color var(--dur-fast);
}

.post-card:hover .post-card__title {
  color: var(--forest-mid);
}

.post-card__excerpt {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--ink-muted);
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

.post-card__link::after {
  content: '\2192';
}

.plan-audience-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.plan-audience-card {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  background: var(--white);
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}

.plan-audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.plan-audience-card__image {
  min-height: 190px;
  overflow: hidden;
}

.plan-audience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-audience-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: var(--s-4);
}

.plan-audience-card__body h3 {
  margin-top: var(--s-1);
  font-size: var(--t-lg);
  color: var(--forest);
}

.plan-audience-card__body p {
  margin-top: var(--s-2);
  font-size: var(--t-sm);
  line-height: 1.55;
}

.planning-bridge {
  background: var(--cream-alt);
  padding-top: clamp(var(--s-5), 3.5vw, var(--s-6));
}

#wedding-options {
  padding-bottom: clamp(var(--s-5), 3.5vw, var(--s-6));
}

.planning-bridge__inner {
  display: grid;
  gap: var(--s-6);
  align-items: end;
}

.planning-bridge__copy {
  max-width: 640px;
}

.planning-bridge__copy h2 {
  margin-top: var(--s-2);
}

.planning-bridge__copy .lead {
  margin-top: var(--s-3);
}

.planning-bridge__links {
  display: grid;
  gap: var(--s-2);
}

.planning-bridge__link {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--cream-dark);
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.35;
  color: var(--forest);
}

.planning-bridge__link::after {
  content: '\2192';
  flex-shrink: 0;
  color: var(--gold);
}

@media (min-width: 640px) {
  .plan-choice-grid,
  .post-grid,
  .plan-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .plan-choice-grid,
  .post-grid,
  .plan-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .post-grid.post-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin-inline: auto;
  }

  .plan-feature {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .planning-bridge__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }
}

@media (max-width: 479px) {
  .plan-audience-card {
    grid-template-columns: 1fr;
  }

  .plan-audience-card__image {
    min-height: 180px;
  }
}


/* ---- 15. PRICING TIERS ---- */

.tier-cards {
  display: grid;
  gap: var(--s-4);
}

@media (min-width: 640px) {
  .tier-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .tier-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.tier-card {
  min-width: 0;
  padding: clamp(var(--s-3), 5vw, var(--s-6));
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}

.tier-card:hover {
  border-color: var(--gold-rule);
  box-shadow: var(--shadow-md);
}

.tier-card--visual {
  padding: 0;
  overflow: hidden;
}

.tier-card__image {
  height: 220px;
  overflow: hidden;
  background: var(--cream-dark);
}

.tier-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms var(--ease-out);
}

.tier-card--visual:hover .tier-card__image img {
  transform: scale(1.025);
}

.tier-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--s-3);
  min-width: 0;
  padding: clamp(var(--s-3), 5vw, var(--s-6));
}

.tier-card .btn {
  max-width: 100%;
  justify-content: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 639px) {
  .tier-card__image {
    height: 240px;
  }
}

.tier-card__name {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--forest);
  font-weight: 400;
}

.tier-card__price {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.tier-card__body {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--ink-muted);
  flex: 1;
}

.tier-card__note {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  color: var(--ink-faint);
  font-style: italic;
}

/* ---- MASTERPIECE BLOCK – full-width elevated anchor ---- */
.masterpiece-block {
  position: relative;
  overflow: hidden;
  background: var(--forest-dark);
  border-top: 1px solid rgba(184, 146, 74, 0.35);
  border-bottom: 1px solid rgba(184, 146, 74, 0.35);
  padding: 0 0 var(--s-12);
  margin-top: var(--s-6);
  margin-bottom: var(--s-8);
}

.masterpiece-block__photo {
  position: relative;
  height: clamp(260px, 34vw, 430px);
  overflow: hidden;
}

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

.masterpiece-block__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 46, 36, 0.12), var(--forest-dark));
}

.masterpiece-block__inner {
  display: grid;
  gap: var(--s-6);
  position: relative;
  z-index: 1;
  margin-top: calc(var(--s-10) * -1);
}

@media (min-width: 900px) {
  .masterpiece-block__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-12);
    align-items: center;
  }
}

@media (max-width: 640px) {
  .masterpiece-block__photo {
    height: 280px;
  }

  .masterpiece-block__photo img {
    object-position: center 44%;
  }

  .masterpiece-block__inner {
    margin-top: calc(var(--s-8) * -1);
  }
}

.masterpiece-block__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.masterpiece-block__body {
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  line-height: 1.75;
  color: rgba(245, 239, 228, 0.75);
}

.masterpiece-block__note {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  color: rgba(245, 239, 228, 0.65);
  font-style: italic;
}

.masterpiece-block__standalone {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  line-height: 1.65;
  color: rgba(245, 239, 228, 0.58);
}

.masterpiece-block__standalone a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(212, 175, 95, 0.5);
}

.hero__resource-link {
  margin-top: var(--s-4);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
}

.hero__resource-link a {
  color: rgba(245, 239, 228, 0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 239, 228, 0.38);
  padding-bottom: 2px;
}

.hero__resource-link a:hover,
.hero__resource-link a:focus-visible {
  color: var(--cream);
  border-bottom-color: var(--gold-light);
}

/* ---- WEDDING INVESTMENT ORIENTATION ---- */
.investment-glance {
  scroll-margin-top: 8rem;
  margin: var(--s-10) auto 0;
  padding: clamp(var(--s-5), 5vw, var(--s-8));
  max-width: 1080px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid var(--gold-rule);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.investment-glance__intro {
  max-width: 760px;
}

.investment-glance__intro h3 {
  margin-top: var(--s-3);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
}

.investment-glance__intro p {
  margin-top: var(--s-3);
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  line-height: 1.65;
  color: var(--ink-muted);
}

.investment-glance__references {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.investment-reference {
  min-width: 0;
  padding: var(--s-5);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-sm);
}

.investment-reference--featured {
  background: var(--forest);
  border-color: var(--forest);
}

.investment-reference__name {
  display: block;
  min-height: 2.8em;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.investment-reference strong {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 400;
  color: var(--forest);
}

.investment-reference strong small {
  display: block;
  margin-bottom: var(--s-2);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.investment-reference p {
  margin-top: var(--s-3);
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--ink-muted);
}

.investment-reference--featured .investment-reference__name,
.investment-reference--featured strong {
  color: var(--gold-light);
}

.investment-reference--featured strong small,
.investment-reference--featured p {
  color: rgba(245, 239, 228, 0.82);
}

.investment-glance__boundary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--cream-dark);
}

.investment-glance__boundary p {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--ink-muted);
}

.investment-glance__actions {
  margin-top: var(--s-5);
}

@media (max-width: 760px) {
  .investment-glance__references,
  .investment-glance__boundary {
    grid-template-columns: 1fr;
  }

  .investment-reference__name {
    min-height: 0;
  }
}

/* ---- WEDDING PROOF – real imagery with real words ---- */
.wedding-proof__grid {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-8);
}

.wedding-proof__photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 228, 0.14);
  border-radius: var(--r-md);
}

.wedding-proof__photo::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(18, 32, 25, 0.76));
}

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

.wedding-proof__photo figcaption {
  position: absolute;
  z-index: 1;
  right: var(--s-5);
  bottom: var(--s-5);
  left: var(--s-5);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.82);
}

.wedding-proof__quotes {
  display: grid;
  gap: var(--s-4);
}

.wedding-proof__quote {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: var(--s-6);
  background: rgba(245, 239, 228, 0.06);
  border: 1px solid rgba(245, 239, 228, 0.14);
  border-radius: var(--r-md);
}

.wedding-proof__quote p {
  margin: 0 0 var(--s-4);
  font-family: var(--font-serif);
  font-size: var(--t-md);
  font-style: italic;
  line-height: 1.7;
  color: rgba(245, 239, 228, 0.90);
}

.wedding-proof__quote cite {
  align-self: flex-end;
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
  color: var(--gold-on-dark);
}

@media (min-width: 800px) {
  .wedding-proof__grid {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .wedding-proof__photo {
    min-height: 620px;
  }
}

@media (max-width: 799px) {
  .wedding-proof__photo {
    min-height: 360px;
  }
}

/* ---- WEDDING GUIDE DOWNLOAD – tangible guide preview ---- */
.guide-download__layout {
  display: grid;
  gap: var(--s-10);
  align-items: center;
}

.guide-download__copy {
  max-width: 620px;
}

.guide-download__form {
  max-width: 520px;
  margin-top: var(--s-8);
}

.guide-download__reassurance {
  margin: var(--s-2) 0 0;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--ink-faint);
}

.guide-download__preview {
  max-width: 430px;
  margin-inline: auto;
}

.guide-download__preview > p {
  margin-top: var(--s-4);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.guide-preview {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(184, 146, 74, 0.42);
  box-shadow: 0 24px 60px rgba(27, 46, 36, 0.18);
  transform: rotate(1.5deg);
}

.guide-preview::before {
  position: absolute;
  z-index: 3;
  inset: 10px;
  content: "";
  border: 1px solid rgba(245, 239, 228, 0.65);
  pointer-events: none;
}

.guide-preview__photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 70% center;
}

.guide-preview__content {
  padding: var(--s-5) var(--s-6) var(--s-4);
}

.guide-preview__logo {
  width: 150px;
  margin-bottom: var(--s-3);
}

.guide-preview__content > span {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.guide-preview__content h3 {
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--forest);
}

.guide-preview__content h3 em {
  font-weight: 400;
}

.guide-preview__facts {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  margin: 0 var(--s-6) var(--s-6);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(184, 146, 74, 0.48);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (min-width: 860px) {
  .guide-download__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  }
}

@media (max-width: 859px) {
  .guide-download__preview {
    grid-row: 2;
  }
}

@media (max-width: 479px) {
  .guide-preview__photo {
    height: 230px;
  }

  .guide-preview__facts {
    flex-direction: column;
    gap: var(--s-1);
  }
}


/* ---- 16. FORM COMPONENTS ---- */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.form-row {
  display: grid;
  gap: var(--s-3);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.form-label {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-label .optional {
  font-weight: 400;
  color: var(--ink-faint);
  text-transform: none;
  letter-spacing: 0;
}

.form-help {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--ink-faint);
}

.form-privacy {
  width: min(100%, 58ch);
  margin: 0 auto;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  line-height: 1.55;
  text-align: center;
  color: var(--ink-muted);
}

.form-privacy a {
  color: var(--forest);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}

.form-privacy a:hover {
  color: var(--gold-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8em 1em;
  font-family: var(--font-serif);
  font-size: var(--t-md);
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-faint);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C574F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
  cursor: pointer;
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: var(--s-2);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: var(--forest);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox-label {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  color: var(--ink-muted);
  line-height: 1.5;
}


/* ---- 17. GALLERY ---- */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-8);
}

.filter-btn {
  min-height: 44px;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.5em 1.2em;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  color: var(--ink-muted);
  cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--cream-alt);
}

.filter-btn.active {
  background: var(--forest);
  color: var(--cream);
}

.gallery-grid {
  columns: 2;
  column-gap: var(--s-3);
}

@media (min-width: 768px) {
  .gallery-grid { columns: 3; }
}

@media (min-width: 1024px) {
  .gallery-grid { columns: 4; }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--s-3);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}


/* ---- 18. FAQ ---- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-category-heading {
  margin-top: var(--s-10);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--gold-rule);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.faq-category-heading:first-child {
  margin-top: 0;
}

.page-with-jump-nav .faq-category-heading[id] {
  scroll-margin-top: calc(var(--nav-h) + 4rem);
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.page-with-jump-nav .faq-item[id] {
  scroll-margin-top: calc(var(--nav-h) + 4rem);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--s-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--forest);
  cursor: pointer;
  transition: color var(--dur-fast);
}

.faq-question:hover {
  color: var(--forest-mid);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
}

.faq-icon::before {
  width: 100%;
  height: 1.5px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-icon::after {
  height: 100%;
  width: 1.5px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: var(--s-4);
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.75;
  color: var(--ink-muted);
}

/* ---- 19. FEATURE LIST (what's included) ---- */

.feature-list {
  display: grid;
  gap: var(--s-2) var(--s-6);
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--ink-muted);
}

.feature-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55em;
  flex-shrink: 0;
}


/* ---- 20. ANIMATIONS ---- */

/* Scroll fade-up */
.reveal-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

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

/* Staggered children */
.reveal-ready .stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal-ready .stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-ready .stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-ready .stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-ready .stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-ready .stagger.visible > *:nth-child(5) { transition-delay: 320ms; }

.reveal-ready .stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ---- 21. UTILITY CLASSES ---- */

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

.w-full { width: 100%; }


/* ---- 22. STORY BUILD MAP (shared: homepage, weddings, celebrations) ---- */

.build-story-card {
  max-width: 680px;
  margin: var(--s-8) auto 0;
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
  padding: var(--s-6);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
}

.build-story-card--spacious {
  margin-top: var(--s-10);
}

.build-story-card--tinted,
.build-aspect-card--tinted {
  background: var(--cream-alt);
}

.build-story-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--cream);
}

.build-story-card--tinted .build-story-card__icon {
  background: var(--white);
}

.build-story-card__eyebrow {
  margin-bottom: 0.3rem;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-text);
}

.build-story-card__title {
  margin-bottom: var(--s-2);
  font-family: var(--font-serif);
  font-size: var(--t-xl);
}

.build-story-card__body {
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.7;
  color: var(--ink-muted);
}

.build-story-card__link {
  display: inline-block;
  margin-top: var(--s-2);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-text);
  border-bottom: 1px solid rgba(184, 146, 74, 0.42);
}

.build-aspects-grid {
  max-width: 920px;
  margin: var(--s-6) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
}

.build-aspect-card {
  padding: var(--s-4) var(--s-5);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
}

.build-aspect-card--link {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}

.build-aspect-card--link:hover,
.build-aspect-card--link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-rule);
  box-shadow: var(--shadow-sm);
}

.build-aspect-card h4 {
  margin-bottom: 0.3rem;
  font-family: var(--font-serif);
  font-size: var(--t-md);
}

.build-aspect-card p {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  color: var(--ink-muted);
}

.build-aspect-card__cta {
  margin-top: auto;
  padding-top: var(--s-2);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.intimate-wedding-callout {
  max-width: 920px;
  margin: var(--s-6) auto 0;
  padding: clamp(var(--s-4), 4vw, var(--s-6));
  border: 1px solid var(--gold-rule);
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--white), var(--cream));
  box-shadow: var(--shadow-sm);
}

.intimate-wedding-callout h3 {
  margin-top: var(--s-2);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.intimate-wedding-callout p {
  color: var(--ink-muted);
  font-size: var(--t-md);
  line-height: 1.7;
}

.intimate-wedding-callout .btn {
  margin-top: var(--s-4);
}

.wedding-mobile-disclosure > summary {
  display: none;
}

@media (min-width: 760px) {
  .intimate-wedding-callout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: var(--s-6);
    align-items: center;
  }
}

@media (max-width: 680px) {
  .wedding-mobile-disclosure {
    margin-top: var(--s-6);
    border: 1px solid var(--cream-dark);
    border-radius: var(--r-md);
    background: rgba(250, 247, 240, 0.74);
  }

  .wedding-mobile-disclosure > summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0.9rem 3rem 0.9rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    cursor: pointer;
    list-style: none;
  }

  .wedding-mobile-disclosure > summary::-webkit-details-marker {
    display: none;
  }

  .wedding-mobile-disclosure > summary::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    content: "+";
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-52%);
  }

  .wedding-mobile-disclosure[open] > summary::after {
    content: "−";
  }

  .wedding-mobile-disclosure[open] > .grid-2,
  .wedding-mobile-disclosure[open] > .grid-3 {
    margin-top: 0 !important;
    padding: var(--s-3);
    border-top: 1px solid var(--cream-dark);
  }

  .wedding-mobile-disclosure__testimonial {
    margin: 0 !important;
    padding: var(--s-3) var(--s-4) var(--s-5);
  }
}

/* Homepage comparison: disconnected pieces versus one story-led experience. */
.story-comparison {
  max-width: 1080px;
  margin: var(--s-8) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-6);
  align-items: start;
}

.story-comparison__panel {
  min-width: 0;
}

.story-comparison__heading {
  min-height: 112px;
  margin-bottom: var(--s-4);
  text-align: center;
}

.story-comparison__heading h3 {
  max-width: 430px;
  margin: var(--s-2) auto 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--forest);
}

.story-comparison__panel--fragmented .eyebrow {
  color: var(--ink-faint);
}

.story-comparison__panel--aligned .eyebrow {
  color: var(--gold-text);
}

.story-comparison__panel img {
  width: 100%;
  height: auto;
  border-radius: var(--r-sm);
  box-shadow: 0 18px 45px rgba(30, 27, 24, 0.10);
}

.story-comparison__body {
  max-width: 440px;
  margin: var(--s-4) auto 0;
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.65;
  text-align: center;
  color: var(--ink-muted);
}

.story-comparison__outcome {
  width: fit-content;
  margin: var(--s-3) auto 0;
  padding: var(--s-2) var(--s-3);
  font-family: var(--font-serif);
  font-size: var(--t-md);
  text-align: center;
  color: var(--forest);
  background: rgba(184, 146, 74, 0.10);
  border: 1px solid rgba(184, 146, 74, 0.35);
  border-radius: 999px;
}

.story-comparison__outcome span {
  margin-right: 0.45rem;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.story-comparison__legend {
  margin: var(--s-6) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
}

.story-comparison__legend span {
  padding: 0.4rem 0.8rem;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
}

@media (max-width: 760px) {
  .story-comparison {
    grid-template-columns: 1fr;
    gap: var(--s-12);
  }

  .story-comparison__heading {
    min-height: 0;
  }

  .story-comparison__panel img {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 559px) {
  .build-story-card {
    flex-direction: column;
    padding: var(--s-4);
  }
}


/* ---- 23. DESIRE CARDS (shared: homepage, weddings, celebrations, corporate) ---- */

.desires-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--s-8);
}

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

@media (min-width: 1100px) {
  .desires-grid { grid-template-columns: repeat(5, 1fr); }
}

/* 4-card variant (corporate) */
.desires-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

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

/* Five choices stay balanced at intermediate widths: two columns with the
   final card centered, then one clean row when there is room for all five. */
.desires-grid--5 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.desires-grid--5 > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc((100% - var(--s-4)) / 2);
  justify-self: center;
}

@media (max-width: 559px) {
  .desires-grid,
  .desires-grid--4,
  .desires-grid--5 {
    grid-template-columns: 1fr;
  }

  .desires-grid--5 > :last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }
}

@media (min-width: 1100px) {
  .desires-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .desires-grid--5 > :last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }
}

.desire-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-4);
  background: var(--cream);
  border-radius: var(--r-md);
  border-bottom: 3px solid var(--gold);
  text-decoration: none;
  text-align: center;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-bottom-color var(--dur-fast);
}

.desire-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  border-bottom-color: var(--forest);
}

/* Reserve the wedding memory-card image area before lazy images load. Without
   this stretch rule, the centered flex children initially collapse and then
   add more than a viewport of height while a long anchor scroll is underway. */
.weddings-page #choose-the-feeling .desire-card > div:first-child {
  align-self: stretch;
}

.desire-card__statement {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-style: italic;
  color: var(--forest);
  line-height: 1.3;
  margin: 0;
}

.desire-card__sub {
  font-family: var(--font-serif);
  font-size: var(--t-sm);
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
  margin-top: auto;
}

/* ---- 24. PRINT / REDUCE MOTION ---- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ---- 25. PLANNER (/plan-your-event/) ---- */

.planner {
  max-width: 780px;
  margin-inline: auto;
}

/* Progress strip */
.planner-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.planner-progress__step {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: var(--s-2);
  border-bottom: 2px solid var(--cream-dark);
  opacity: 0.45;
  transition: opacity var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.planner-progress__step.is-active,
.planner-progress__step.is-done {
  opacity: 1;
  border-color: var(--gold);
}

.planner-progress__num {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-style: italic;
  color: var(--gold-text);
}

.planner-progress__label {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

/* Light coaching copy – a step's or aspect's "why this matters",
   kept short on purpose. Smaller and quieter than .lead. */
.coach {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--ink-muted);
  margin-top: var(--s-3);
}

.aspect-block__coach {
  font-family: var(--font-serif);
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 620px;
  margin-top: 0.5rem;
  margin-bottom: var(--s-4);
}

.planner-skip {
  text-align: center;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  color: var(--ink-muted);
  margin-bottom: var(--s-8);
}

.planner-skip a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--gold-rule, var(--cream-dark));
}

/* Step panels – only .active shows */
.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: planner-fade 0.35s var(--ease-out);
}

@keyframes planner-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.planner-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-10);
  padding-top: var(--s-6);
  border-top: 1px solid var(--cream-dark);
}

.planner-quick-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-6);
  padding: var(--s-4);
  border: 1px solid var(--gold-rule);
  border-radius: var(--r-md);
  background: var(--cream-alt);
}

.planner-quick-result__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--t-md);
  color: var(--forest);
}

.planner-quick-result__body {
  margin: 0.25rem 0 0;
  font-family: var(--font-serif);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--ink-muted);
}

@media (max-width: 639px) {
  .planner-quick-result {
    align-items: stretch;
    flex-direction: column;
  }

  .planner-quick-result .btn {
    justify-content: center;
    white-space: normal;
  }
}

/* Chip buttons – single or multi select */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-3);
}

.chip {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  padding: 0.6em 1.1em;
  border-radius: 999px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}

.chip:hover {
  border-color: var(--gold);
}

.chip.selected {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.chip--unknown {
  border-style: dashed;
  color: var(--ink-muted);
}

.chip--unknown.selected {
  background: var(--ink-muted);
  border-color: var(--ink-muted);
}

/* Build-out aspect blocks (Step 3) */
.aspect-block {
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--cream-dark);
}

.aspect-block:first-of-type {
  margin-top: var(--s-8);
}

/* Featured aspect block (Adventures & Excursions) – set apart with a
   highlighted intro, matching the homepage's Story anchor card. */
.aspect-block--featured .aspect-block__intro {
  padding: var(--s-6);
  background: var(--white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
  margin-bottom: var(--s-5);
}

.aspect-block--featured .aspect-block__coach {
  max-width: none;
}

.aspect-block--featured .aspect-block__coach:last-child {
  margin-bottom: 0;
}

/* Small transitional label between the Adventures intro/prompt and the
   sampling grid below it. */
.aspect-block__sampling {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-3);
}

.aspect-block__title {
  font-family: var(--font-serif);
  font-size: var(--t-xl);
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.aspect-block__sub {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: none;
  font-style: normal;
}

.aspect-filter-btns {
  display: flex;
  gap: var(--s-2);
}

.aspect-filter-btn {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  border: 1px solid var(--cream-dark);
  color: var(--ink-muted);
  background: transparent;
}

.aspect-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-dark, var(--ink));
}

/* Blueprint output (Step 4) */
.event-direction-card {
  padding: clamp(var(--s-5), 7vw, var(--s-8));
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  background: var(--forest);
  box-shadow: inset 0 3px 0 var(--gold), var(--shadow-md);
}

.event-direction-card__kicker,
.offer-guidance__kicker {
  margin: 0 0 var(--s-2);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
}

.event-direction-card h3 {
  margin-bottom: var(--s-4);
  color: var(--cream);
}

.event-direction-card p:not(.event-direction-card__kicker) {
  margin-top: var(--s-3);
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.65;
  color: rgba(245, 239, 228, 0.82);
}

.blueprint-notes {
  margin-top: var(--s-4);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  background: var(--white);
  overflow: hidden;
}

.blueprint-notes summary {
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--forest);
  cursor: pointer;
}

.blueprint-notes[open] summary {
  border-bottom: 1px solid var(--cream-dark);
}

.blueprint-notes .blueprint-card {
  border: 0;
  border-radius: 0;
}

.blueprint-card {
  padding: var(--s-6);
  background: var(--cream-alt);
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
}

.blueprint-card h3 {
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  margin-bottom: var(--s-2);
}

.blueprint-card__row {
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--cream-dark);
}

.blueprint-card__row:last-child {
  border-bottom: none;
}

.blueprint-card__label {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: block;
  margin-bottom: 0.25rem;
}

.blueprint-card__value {
  font-family: var(--font-serif);
  font-size: var(--t-base);
  color: var(--ink);
  line-height: 1.6;
}

.blueprint-card__value--unknown {
  color: var(--ink-muted);
  font-style: italic;
}

.offer-guidance {
  margin-top: var(--s-6);
  padding: var(--s-5);
  border: 1px solid var(--gold-rule);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  background: var(--cream-alt);
}

.offer-guidance__kicker {
  color: var(--gold-text);
}

.offer-guidance h3 {
  margin-bottom: var(--s-2);
  font-family: var(--font-serif);
  font-size: var(--t-xl);
  color: var(--forest);
}

.offer-guidance p:last-child {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-muted);
}

.planner-result-cta {
  margin-top: var(--s-4);
  text-align: center;
}

@media (max-width: 559px) {
  .planner-result-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* Premium Masterpiece recommendation on the final planner step, followed by
   two client-led alternatives for hosts who already bring the full plan. */
.blueprint-design-offer {
  margin-top: var(--s-5);
  padding: var(--s-6);
  background: var(--forest);
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  box-shadow: inset 0 3px 0 var(--gold), var(--shadow-sm);
}

.blueprint-design-offer .blueprint-option__kicker {
  color: var(--gold-on-dark);
}

.blueprint-design-offer h3 {
  margin: var(--s-2) 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--cream);
}

.blueprint-design-offer > p:not(.blueprint-option__kicker) {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.65;
  color: rgba(245, 239, 228, 0.78);
}

.blueprint-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-4);
}

.blueprint-option {
  min-width: 0;
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: var(--s-3);
}

.blueprint-option--featured {
  border-color: var(--gold);
  box-shadow: inset 0 3px 0 var(--gold), var(--shadow-sm);
}

.blueprint-option__kicker {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.blueprint-option h3 {
  margin: 0;
  min-height: 2.2em;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
}

.blueprint-option > p:last-child {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-muted);
}

@media (min-width: 900px) {
  .blueprint-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .blueprint-option h3 {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .planner-progress__label {
    display: none;
  }
}

/* Photo chip – an image-forward selectable tile. Reuses the existing
   .chip selection JS by keeping that class alongside this one; this
   class only changes how it looks, not how it's wired up. */
.photo-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--s-3);
  margin-top: var(--s-3);
}

.photo-chip {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  padding: 0;
  text-align: left;
}

.photo-chip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.photo-chip:hover img {
  transform: scale(1.05);
}

.photo-chip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,35,24,0.78) 0%, rgba(20,35,24,0.18) 50%, transparent 72%);
  transition: background var(--dur-fast) var(--ease-out);
}

.photo-chip__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--s-3);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--cream);
}

.photo-chip.selected {
  border-color: var(--gold);
}

.photo-chip.selected .photo-chip__overlay {
  background: linear-gradient(to top, rgba(184,146,74,0.60) 0%, rgba(20,35,24,0.30) 50%, transparent 75%);
}

.photo-chip.selected::after {
  content: '\2713';
  position: absolute;
  top: var(--s-2);
  right: var(--s-2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 1;
}

/* "Not sure yet" tile – text-only, same grid footprint, no photo */
.photo-chip--unknown {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-alt);
  border: 2px dashed var(--cream-dark);
  color: var(--ink-muted);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  text-align: center;
  padding: var(--s-3);
}

.photo-chip--unknown.selected {
  border-style: solid;
  border-color: var(--ink-muted);
  background: var(--cream-dark);
}


/* ---- 26. PERSISTENT EVENT-PLANNING CTA ---- */

.persistent-plan-cta {
  position: fixed;
  z-index: 950;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.25rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(27, 46, 36, 0.18);
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(13, 24, 18, 0.24);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out),
    background-color var(--dur-fast),
    color var(--dur-fast);
}

.persistent-plan-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.persistent-plan-cta:hover {
  background: var(--forest-dark);
  color: var(--cream);
}

.persistent-plan-cta span[aria-hidden="true"] {
  font-size: 1.2em;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out);
}

.persistent-plan-cta:hover span[aria-hidden="true"] {
  transform: translateX(0.2rem);
}

@media (max-width: 760px) {
  .persistent-plan-cta {
    right: var(--gutter);
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: var(--gutter);
    min-height: 50px;
    padding-block: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .persistent-plan-cta,
  .persistent-plan-cta span[aria-hidden="true"] {
    transition: none;
  }
}

@media print {
  .persistent-plan-cta {
    display: none;
  }
}


/* ---- 27. WEDDING GUIDE THANK-YOU ---- */

.guide-thanks-page {
  background: var(--cream);
}

.guide-thanks {
  position: relative;
  overflow: hidden;
  padding-block: clamp(8rem, 13vw, 11rem) clamp(var(--s-12), 9vw, var(--s-20));
  background:
    radial-gradient(circle at 88% 14%, rgba(184, 146, 74, 0.16), transparent 28rem),
    var(--cream);
}

.guide-thanks::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid var(--gold-rule);
  pointer-events: none;
}

.guide-thanks__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(var(--s-8), 8vw, var(--s-16));
  align-items: center;
}

.guide-thanks__copy h1 {
  margin-top: var(--s-3);
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.guide-thanks__copy .lead {
  max-width: 620px;
  margin-top: var(--s-4);
}

.guide-thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-6);
}

.guide-thanks__follow-up {
  max-width: 580px;
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--gold-rule);
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.65;
  color: var(--ink-muted);
}

.guide-thanks__follow-up a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-preview {
  overflow: hidden;
  border: 1px solid var(--gold-rule);
  background: var(--cream-alt);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.guide-preview__cover {
  position: relative;
  height: 315px;
  overflow: hidden;
}

.guide-preview__cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.guide-preview__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 46, 36, 0.18), rgba(27, 46, 36, 0.9));
}

.guide-preview__cover-copy {
  position: absolute;
  right: var(--s-4);
  bottom: var(--s-4);
  left: var(--s-4);
  color: var(--cream);
}

.guide-preview__cover-copy > span,
.guide-preview__meta {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
}

.guide-preview__cover-copy > strong {
  display: block;
  max-width: 420px;
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.12;
}

.guide-preview__details {
  padding: var(--s-4);
}

.guide-preview__details h2 {
  margin-top: var(--s-1);
  font-size: var(--t-xl);
}

.guide-preview__details ul {
  display: grid;
  gap: 0.65rem;
  margin-top: var(--s-3);
}

.guide-preview__details li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--font-serif);
  font-size: var(--t-md);
  line-height: 1.45;
  color: var(--ink-muted);
}

.guide-preview__details li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
}

.guide-thanks-next {
  padding-block: clamp(var(--s-12), 9vw, var(--s-20));
  background: var(--cream-alt);
}

.guide-thanks-next h2 {
  margin-top: var(--s-3);
}

.guide-thanks-next p {
  max-width: 650px;
  margin: var(--s-4) auto 0;
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  line-height: 1.6;
  color: var(--ink-muted);
}

.guide-thanks-next .btn-group {
  justify-content: center;
  margin-top: var(--s-6);
}

@media (max-width: 820px) {
  .guide-thanks__grid {
    grid-template-columns: 1fr;
  }

  .guide-preview {
    width: min(100%, 520px);
    justify-self: center;
    transform: none;
  }
}

@media (max-width: 540px) {
  .guide-thanks {
    padding-top: 7rem;
  }

  .guide-thanks::before {
    inset: 0.5rem;
  }

  .guide-thanks__actions,
  .guide-thanks-next .btn-group {
    display: grid;
  }

  .guide-thanks__actions .btn,
  .guide-thanks-next .btn {
    justify-content: center;
    white-space: normal;
  }

  .guide-preview__cover {
    height: 270px;
  }
}
