/* =====================================================
   GREENBELT NIGHT MARKET — AT THE BOARDWALK
   Fridays on the river · Garden City, Idaho
   Olive, coral, cream — botanical and grounded.
   ===================================================== */

:root {
  /* Core palette — pulled from the brand logo */
  --olive: #586830;            /* GREENBELT wordmark — primary */
  --olive-deep: #3f4a23;       /* hover / contrast */
  --olive-soft: #788055;       /* secondary */
  --sage: #98a080;             /* light olive, accents */
  --coral: #c88060;            /* Night Market script — primary accent */
  --coral-deep: #a66345;       /* hover */
  --coral-light: #e3a98e;      /* tints */
  --cream: #e8e8d8;            /* logo cream */
  --paper: #f1ede0;            /* lifted paper for sections */
  --paper-warm: #ede4ce;
  --water: #c0c0b0;            /* muted gray-green water */
  --water-deep: #8a9080;
  --dusk: #2f3a1f;             /* deep olive for night sections */
  --ink: #2a2818;              /* warm near-black for body type */
  --ink-soft: #4d4a38;
  --rule: rgba(88, 104, 48, 0.18);
  --rule-strong: rgba(88, 104, 48, 0.32);

  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Italianno", "Cormorant Garamond", cursive;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --r: 8px;
  --r-lg: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--olive);
}

p { margin: 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* -----------------------------------------------------
   Eyebrows, rules, small UI
   ----------------------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral);
}
.eyebrow--olive { color: var(--olive); }
.eyebrow--cream { color: var(--cream); }
.eyebrow--stacked { line-height: 1.7; }
.eyebrow--stacked span {
  display: inline-block;
  margin-top: 4px;
  color: var(--olive);
  letter-spacing: 0.28em;
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--coral);
  margin: 24px 0;
  border-radius: 2px;
}
.divider--center { margin: 24px auto; }

/* -----------------------------------------------------
   Top ticker — refined, no carnival vibes
   ----------------------------------------------------- */
.ticker {
  background: var(--olive);
  color: var(--cream);
  overflow: hidden;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 0;
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 42s linear infinite;
  padding-left: 100%;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 14px; }
.ticker__track span::after {
  content: "❋";
  color: var(--coral-light);
  margin-left: 14px;
  font-size: 14px;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* -----------------------------------------------------
   Navigation
   ----------------------------------------------------- */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand img {
  height: 64px;
  width: auto;
}

.nav__menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms, color 180ms;
}
.nav__menu a:hover,
.nav__menu a.is-active {
  border-color: var(--coral);
  color: var(--coral-deep);
}

.nav__cta { display: flex; gap: 10px; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--olive);
}
.nav__toggle svg { display: block; }

@media (max-width: 960px) {
  .nav__brand img { height: 52px; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 20px var(--gutter) 28px;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 18px 30px -20px rgba(88, 104, 48, 0.25);
  }
  .nav.is-open .nav__menu { display: flex; }
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn { padding: 10px 16px; font-size: 12px; }
}

/* -----------------------------------------------------
   Buttons
   ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 160ms, background 160ms, color 160ms, border-color 160ms, box-shadow 160ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 20px -10px rgba(200, 128, 96, 0.6);
}
.btn--coral:hover { background: var(--coral-deep); box-shadow: 0 10px 24px -10px rgba(166, 99, 69, 0.7); }

.btn--olive {
  background: var(--olive);
  color: var(--cream);
}
.btn--olive:hover { background: var(--olive-deep); }

.btn--ghost {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn--ghost:hover { background: var(--olive); color: var(--cream); }

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

/* -----------------------------------------------------
   HERO
   ----------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(200, 128, 96, 0.18), transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(152, 160, 128, 0.25), transparent 55%),
    linear-gradient(180deg, var(--olive-deep) 0%, var(--olive) 100%);
  color: var(--cream);
  padding: clamp(72px, 11vw, 132px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
}

.hero::before {
  /* botanical sketch texture — replaces the starfield */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'><g fill='none' stroke='%23e8e8d8' stroke-width='1' stroke-opacity='0.06'><path d='M50 540 Q100 480 80 420 Q60 360 110 320 Q160 280 130 220'/><path d='M120 555 Q170 500 145 440 Q120 380 165 340'/><path d='M700 540 Q670 480 705 420 Q740 360 700 310 Q660 260 720 220'/><path d='M740 555 Q720 500 760 440 Q800 380 760 340'/><path d='M0 580 Q200 560 400 580 T800 580' stroke-opacity='0.10'/><path d='M0 590 Q200 580 400 595 T800 590' stroke-opacity='0.08'/></g></svg>");
  background-size: 800px 600px;
  background-repeat: no-repeat;
  background-position: center bottom;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 9.5vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 18px 0 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--coral-light);
}
.hero__title .script {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.15em;
  color: var(--coral-light);
  display: inline-block;
  margin-right: 8px;
}

.hero__lead {
  max-width: 52ch;
  font-size: clamp(17px, 1.5vw, 19px);
  color: rgba(232, 232, 216, 0.88);
  line-height: 1.55;
  margin-bottom: 32px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(227, 169, 142, 0.45), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(152, 160, 128, 0.4), transparent 55%),
    linear-gradient(160deg, var(--olive), var(--dusk));
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(47, 58, 31, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hero__media__inner {
  text-align: center;
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.hero__media__inner .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 14px;
}
.hero__media__inner .dates {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  margin-bottom: 12px;
}
.hero__media__inner .dates strong {
  font-style: normal;
  color: var(--coral-light);
}
.hero__media__inner .meta {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 232, 216, 0.8);
  line-height: 1.8;
}

/* Decorative reeds in the hero media corner */
.hero__media::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 140px;
  height: 180px;
  opacity: 0.22;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 130' fill='none' stroke='%23e8e8d8' stroke-width='1.5' stroke-linecap='round'><path d='M30 120 Q32 80 28 40 Q25 20 30 5'/><path d='M40 120 Q44 90 42 55 Q40 30 46 10'/><path d='M50 120 Q52 85 56 50 Q60 25 56 8'/><path d='M22 120 Q20 90 18 60 Q15 35 20 15'/><circle cx='30' cy='5' r='1.2' fill='%23e8e8d8'/><circle cx='46' cy='10' r='1.2' fill='%23e8e8d8'/><circle cx='56' cy='8' r='1.2' fill='%23e8e8d8'/><circle cx='20' cy='15' r='1.2' fill='%23e8e8d8'/><path d='M5 125 Q50 122 95 125' stroke-opacity='0.6'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--coral);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 3;
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 5 / 4; }
}

/* -----------------------------------------------------
   Stat strip
   ----------------------------------------------------- */
.stats {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(40px, 6vw, 64px) 0;
}
.stats__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__cell { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.stats__num {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 500;
  color: var(--olive);
  line-height: 1;
}
.stats__num em { font-style: italic; color: var(--coral); }
.stats__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* -----------------------------------------------------
   Section base
   ----------------------------------------------------- */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section--olive {
  background: var(--olive);
  color: var(--cream);
}
.section--olive h1, .section--olive h2, .section--olive h3 { color: var(--cream); }
.section--dusk {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(200, 128, 96, 0.20), transparent 55%),
    linear-gradient(180deg, var(--olive), var(--dusk));
  color: var(--cream);
}
.section--dusk h1, .section--dusk h2, .section--dusk h3 { color: var(--cream); }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }

.section__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section__head__title {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 22ch;
}
.section__head__title em { font-style: italic; color: var(--coral); }
.section--olive .section__head__title em,
.section--dusk .section__head__title em { color: var(--coral-light); }
.section__head__lead {
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: 16px;
}
.section--olive .section__head__lead,
.section--dusk .section__head__lead { color: rgba(232, 232, 216, 0.78); }

@media (max-width: 820px) {
  .section__head { flex-direction: column; align-items: flex-start; }
}

/* -----------------------------------------------------
   Triptych cards (What to Expect)
   ----------------------------------------------------- */
.triptych {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.triptych__cell {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.triptych__icon {
  width: 40px;
  height: 40px;
  color: var(--coral);
}
.triptych__cell h3 {
  font-size: 26px;
  font-style: italic;
  color: var(--olive);
}
.triptych__cell p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .triptych { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------
   Vendor categories grid
   ----------------------------------------------------- */
.vcats {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vcat {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: var(--cream);
  border: 1px solid rgba(232,232,216,0.12);
  transition: transform 200ms;
}
.vcat:hover { transform: translateY(-3px); }
.vcat--food    { background: linear-gradient(160deg, #c88060, #8a4a32 90%); }
.vcat--artisan { background: linear-gradient(160deg, #a66345, #4d3a26 95%); }
.vcat--farm    { background: linear-gradient(160deg, #788055, var(--dusk) 95%); }
.vcat--music   { background: linear-gradient(160deg, var(--olive), var(--dusk) 95%); }
.vcat__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  opacity: 0.55;
}
.vcat h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 30px;
  color: var(--cream);
  margin-bottom: 8px;
}
.vcat p {
  font-size: 13px;
  color: rgba(232, 232, 216, 0.82);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .vcats { grid-template-columns: repeat(2, 1fr); }
}

/* -----------------------------------------------------
   Schedule list (Happenings)
   ----------------------------------------------------- */
.schedule {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.schedule__item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.schedule__item:last-child { border-bottom: 0; }
.schedule__date {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: var(--coral);
  line-height: 1;
}
.schedule__date small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 700;
}
.schedule__body h4 {
  font-size: 20px;
  color: var(--olive);
  margin-bottom: 4px;
}
.schedule__body p {
  font-size: 14px;
  color: var(--ink-soft);
}
.schedule__time {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
}
@media (max-width: 640px) {
  .schedule__item { grid-template-columns: 90px 1fr; }
  .schedule__time { grid-column: 2; }
}

/* -----------------------------------------------------
   Two-column split
   ----------------------------------------------------- */
.split {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media {
  aspect-ratio: 5 / 6;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 70% 30%, rgba(227, 169, 142, 0.35), transparent 55%),
    linear-gradient(160deg, var(--olive), var(--dusk));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.split__media .quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  text-align: center;
  max-width: 22ch;
  position: relative;
  z-index: 2;
}
.split__media .attrib {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-light);
  font-weight: 700;
  z-index: 2;
}
.split__media::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 180px;
  height: 220px;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 130' fill='none' stroke='%23e8e8d8' stroke-width='1.5' stroke-linecap='round'><path d='M30 120 Q32 80 28 40 Q25 20 30 5'/><path d='M40 120 Q44 90 42 55 Q40 30 46 10'/><path d='M50 120 Q52 85 56 50 Q60 25 56 8'/><path d='M22 120 Q20 90 18 60 Q15 35 20 15'/><circle cx='30' cy='5' r='1.2' fill='%23e8e8d8'/><circle cx='46' cy='10' r='1.2' fill='%23e8e8d8'/><circle cx='56' cy='8' r='1.2' fill='%23e8e8d8'/><circle cx='20' cy='15' r='1.2' fill='%23e8e8d8'/><path d='M5 125 Q50 122 95 125' stroke-opacity='0.6'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.split__body h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}
.split__body h2 em { font-style: italic; color: var(--coral); }
.split__body p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.split__body .btn { margin-top: 16px; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

/* -----------------------------------------------------
   Vendor apply / Big CTA band
   ----------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(227, 169, 142, 0.30), transparent 60%),
    linear-gradient(180deg, var(--olive), var(--dusk));
  color: var(--cream);
  padding: clamp(72px, 9vw, 120px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60%;
  width: 120%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(200, 128, 96, 0.20), transparent 60%);
}
.cta-band__inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  z-index: 2;
}
.cta-band h2 {
  font-size: clamp(44px, 6vw, 80px);
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1;
}
.cta-band h2 em { font-style: italic; color: var(--coral-light); }
.cta-band p {
  font-size: 17px;
  color: rgba(232, 232, 216, 0.82);
  max-width: 50ch;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.cta-band .btn-row { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* -----------------------------------------------------
   Pricing cards (vendor rates)
   ----------------------------------------------------- */
.pricing {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card--featured {
  background: var(--cream);
  color: var(--olive);
  border-color: var(--coral);
  position: relative;
}
.price-card--featured h3 { color: var(--olive); }
.price-card--featured .price { color: var(--coral); }
.price-card--featured .badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card h3 {
  font-size: 26px;
  font-style: italic;
  color: var(--olive);
}
.price-card .price {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 500;
  color: var(--coral);
  line-height: 1;
}
.price-card .price small {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: 8px;
  font-weight: 700;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card ul li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card ul li::before {
  content: "❋";
  color: var(--coral);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .pricing { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------
   Requirements list
   ----------------------------------------------------- */
.reqs {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.req {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.req__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.req__body h4 { font-size: 16px; margin-bottom: 4px; color: var(--olive); }
.req__body p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 720px) { .reqs { grid-template-columns: 1fr; } }

/* -----------------------------------------------------
   FAQ
   ----------------------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--olive);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--sans);
  font-style: normal;
  font-size: 24px;
  color: var(--coral);
  transition: transform 200ms;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* -----------------------------------------------------
   Contact / info cards
   ----------------------------------------------------- */
.info-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
}
.info-card .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 12px;
}
.info-card h3 {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 10px;
  color: var(--olive);
}
.info-card p, .info-card a {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.info-card a { color: var(--coral-deep); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }
@media (max-width: 820px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------
   Footer
   ----------------------------------------------------- */
.footer {
  background: var(--olive);
  color: rgba(232, 232, 216, 0.78);
  padding: clamp(48px, 6vw, 72px) 0 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand-img {
  height: 72px;
  width: auto;
  margin-bottom: 16px;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: 8px;
}
.footer p { font-size: 14px; line-height: 1.7; max-width: 36ch; }
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral-light);
  font-weight: 700;
  margin: 0 0 14px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer ul a {
  font-size: 14px;
  color: rgba(232, 232, 216, 0.78);
  transition: color 160ms;
}
.footer ul a:hover { color: var(--coral-light); }
.footer__bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(232,232,216,0.15);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 232, 216, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------
   Page header (for inner pages)
   ----------------------------------------------------- */
.pagehead {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(200, 128, 96, 0.18), transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(152, 160, 128, 0.25), transparent 55%),
    linear-gradient(180deg, var(--olive-deep) 0%, var(--olive) 100%);
  color: var(--cream);
  padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'><g fill='none' stroke='%23e8e8d8' stroke-width='1' stroke-opacity='0.08'><path d='M0 380 Q200 360 400 380 T800 380'/><path d='M0 390 Q200 380 400 395 T800 390' stroke-opacity='0.06'/><path d='M50 380 Q52 340 48 300 Q45 270 50 250'/><path d='M60 380 Q63 350 60 320 Q58 295 62 270'/><path d='M740 380 Q738 340 742 300 Q745 270 740 250'/><path d='M750 380 Q748 350 752 320 Q754 295 750 270'/></g></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  pointer-events: none;
}
.pagehead__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pagehead h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--cream);
  line-height: 1;
  margin: 16px 0 18px;
  max-width: 18ch;
}
.pagehead h1 em { font-style: italic; color: var(--coral-light); }
.pagehead__lead {
  max-width: 56ch;
  font-size: 17px;
  color: rgba(232, 232, 216, 0.84);
  line-height: 1.6;
}

/* utility */
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
