.supporting-guide-page {
  --guide-ink: #10291f;
  --guide-green: #194936;
  --guide-muted: #53645c;
  --guide-gold: #b88c3f;
  --guide-gold-soft: #ead7ab;
  --guide-paper: #fffdf8;
  --guide-surface: #f4eee2;
  --guide-line: rgba(16, 41, 31, 0.13);
  --guide-shadow: 0 22px 52px rgba(10, 31, 23, 0.09);
  color: var(--guide-ink);
  background: var(--guide-surface);
}

.supporting-guide-page a { color: inherit; }

.guide-hero {
  position: relative;
  min-height: clamp(580px, 78vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: #fffaf0;
}

.guide-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 20, 14, 0.91) 0%, rgba(5, 20, 14, 0.7) 48%, rgba(5, 20, 14, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 20, 14, 0.02) 28%, rgba(5, 20, 14, 0.76) 100%);
}

.guide-hero__inner,
.guide-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.guide-hero__inner { padding: 150px 0 72px; }

.guide-kicker,
.guide-label {
  margin: 0;
  color: var(--guide-gold);
  font-size: 0.72rem !important;
  font-weight: 600;
  line-height: 1.35 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guide-hero .guide-kicker { color: var(--guide-gold-soft); }

.guide-hero h1 {
  max-width: 13ch;
  margin: 16px 0 0;
  color: #fffaf0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 6.2rem) !important;
  font-weight: 500;
  line-height: 0.96 !important;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.guide-hero__lead {
  max-width: 68ch;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1rem, 1.3vw, 1.16rem) !important;
  line-height: 1.72 !important;
}

.guide-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.86rem;
}

.guide-main { padding: 0 0 72px; }

.guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
  color: var(--guide-muted);
  font-size: 0.82rem;
}

.guide-breadcrumbs a {
  color: var(--guide-green);
  text-decoration: none;
}

.guide-breadcrumbs a:hover,
.guide-breadcrumbs a:focus-visible { text-decoration: underline; }

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.72fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  padding: clamp(42px, 6vw, 76px) 0;
}

.guide-intro h2,
.guide-section h2,
.guide-cta h2 {
  margin: 12px 0 0;
  color: var(--guide-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem) !important;
  font-weight: 500;
  line-height: 1.02 !important;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.guide-intro__copy > p,
.guide-section__lead,
.guide-prose p,
.guide-prose li,
.guide-card p,
.guide-month p,
.guide-faq details p,
.guide-source-note {
  color: var(--guide-muted);
  font-size: 1rem !important;
  line-height: 1.82 !important;
}

.guide-intro__copy > p { margin: 20px 0 0; }

.guide-quick-answer {
  padding: 26px;
  border: 1px solid rgba(184, 140, 63, 0.26);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255, 253, 248, 0.98), rgba(239, 226, 198, 0.74));
  box-shadow: var(--guide-shadow);
}

.guide-quick-answer h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem) !important;
}

.guide-quick-answer p {
  margin: 0;
  color: var(--guide-muted);
  line-height: 1.75;
}

.guide-toc {
  padding: 24px 0;
  border-top: 1px solid var(--guide-line);
  border-bottom: 1px solid var(--guide-line);
}

.guide-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--guide-ink);
}

.guide-toc__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-toc a {
  padding: 9px 14px;
  border: 1px solid var(--guide-line);
  border-radius: 999px;
  color: var(--guide-green);
  background: rgba(255, 253, 248, 0.66);
  font-size: 0.84rem;
  text-decoration: none;
}

.guide-toc a:hover,
.guide-toc a:focus-visible {
  border-color: rgba(184, 140, 63, 0.55);
  background: var(--guide-paper);
}

.guide-section {
  padding: clamp(50px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--guide-line);
  scroll-margin-top: 90px;
}

.guide-section__head { max-width: 820px; }
.guide-section__lead { margin: 18px 0 0; }

.guide-prose { max-width: 820px; }
.guide-prose p { margin: 20px 0 0; }
.guide-prose ul { margin: 22px 0 0; padding-left: 22px; }
.guide-prose li + li { margin-top: 10px; }

.guide-prose a,
.guide-card a,
.guide-section__lead a,
.guide-source-note a {
  color: var(--guide-green);
  font-weight: 600;
  text-decoration-color: rgba(25, 73, 54, 0.34);
  text-underline-offset: 0.2em;
}

.guide-callout {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 3px solid var(--guide-gold);
  background: rgba(255, 253, 248, 0.74);
  color: var(--guide-ink);
  line-height: 1.75;
}

.guide-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--guide-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.76);
}

.guide-rate-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.guide-rate-table th,
.guide-rate-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--guide-line);
  text-align: left;
  vertical-align: top;
}

.guide-rate-table th {
  color: var(--guide-ink);
  background: rgba(234, 215, 171, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-rate-table td {
  color: var(--guide-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.guide-rate-table tbody tr:last-child td { border-bottom: 0; }
.guide-rate-table strong { color: var(--guide-ink); }

.guide-rate-note {
  margin: 14px 0 0;
  color: var(--guide-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.guide-month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.guide-month {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--guide-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
}

.guide-month span {
  color: var(--guide-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-month h3,
.guide-card h3 {
  margin: 10px 0 0;
  color: var(--guide-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  font-weight: 600;
  line-height: 1.08 !important;
}

.guide-month p,
.guide-card p { margin: 12px 0 0; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.guide-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.guide-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.guide-card {
  min-width: 0;
  padding: 26px;
  border-top: 2px solid rgba(184, 140, 63, 0.56);
  background: rgba(255, 253, 248, 0.72);
}

.guide-card__eyebrow {
  color: var(--guide-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  margin-top: 34px;
}

.guide-figure figure { margin: 0; }

.guide-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--guide-shadow);
}

.guide-figure figcaption {
  margin-top: 10px;
  color: var(--guide-muted);
  font-size: 0.8rem;
}

.guide-faq { margin-top: 28px; }

.guide-faq details {
  border-top: 1px solid var(--guide-line);
  background: transparent;
}

.guide-faq details:last-child { border-bottom: 1px solid var(--guide-line); }

.guide-faq summary {
  padding: 20px 36px 20px 0;
  color: var(--guide-ink);
  font-weight: 650;
  cursor: pointer;
}

.guide-faq details p { max-width: 820px; margin: 0; padding: 0 0 22px; }

.guide-source-note {
  margin: 28px 0 0;
  padding: 20px 22px;
  border: 1px solid var(--guide-line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.66);
}

.guide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(52px, 7vw, 88px);
  padding: clamp(30px, 5vw, 54px);
  border-radius: 28px;
  background: linear-gradient(135deg, #0d2d21, #194936);
  color: #fffaf0;
  box-shadow: 0 28px 64px rgba(10, 31, 23, 0.19);
}

.guide-cta h2 { color: #fffaf0; }
.guide-cta p { max-width: 62ch; margin: 16px 0 0; color: rgba(255, 250, 240, 0.8); }

.guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ead7ab, #b88c3f);
  color: #10291f;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.guide-button:hover,
.guide-button:focus-visible { transform: translateY(-2px); }

@media (max-width: 1024px) {
  .guide-intro,
  .guide-figure,
  .guide-cta { grid-template-columns: 1fr; }

  .guide-month-grid,
  .guide-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-cta { justify-items: start; }
}

@media (max-width: 720px) {
  .guide-hero { min-height: 620px; }
  .guide-hero > img { object-position: 58% center; }
  .guide-hero__inner,
  .guide-shell { width: min(100% - 28px, 1120px); }
  .guide-hero__inner { padding: 126px 0 52px; }
  .guide-hero h1 { font-size: clamp(2.85rem, 15vw, 4.5rem) !important; }
  .guide-main { padding-bottom: 54px; }
  .guide-intro { grid-template-columns: 1fr; }
  .guide-month-grid,
  .guide-grid,
  .guide-grid--two,
  .guide-grid--four { grid-template-columns: 1fr; }
  .guide-quick-answer,
  .guide-card,
  .guide-month { padding: 21px; }
  .guide-cta { border-radius: 22px; }
  .guide-button { width: 100%; }
}
