/* =========================================================
   Cents of Wyoming Bookkeeping
   Stylesheet — DM Serif Display + DM Sans
   Rooted in Wyoming. Built for Wyoming businesses.
   ========================================================= */

:root {
  /* Palette */
  --ink: #2a2520;
  --ink-soft: #574f45;
  --ink-mute: #847a6d;
  --cream: #faf3e4;
  --cream-deep: #f0e6d0;
  --paper: #fffbf0;
  --bone: #fffef9;
  --warm-tan: #e8d6b0;
  --soft-brown: #8b6f4e;
  --deep-brown: #5a4530;
  --forest: #3d5443;
  --forest-deep: #2a3d30;
  --terra: #b8643e;
  --terra-soft: #d08758;
  --gold: #c9a55c;
  --gold-deep: #a88438;
  --border: #ddc9a0;
  --border-soft: #ecddb8;

  /* Type */
  --serif: "Cinzel", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}
.narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 36px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.center {
  text-align: center;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow,
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
}
.section-eyebrow.light {
  color: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section-title.light {
  color: var(--bone);
}

.section-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 48px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-lede {
  margin: 0 auto;
}

/* ============ HEADER ============ */
header.site {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-seal {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: visible;
  position: relative;
  flex-shrink: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.site .logo-seal {
  width: 160px;
  height: 160px;
}
.logo-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(90, 69, 48, 0.18));
}
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wordmark-line {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.wordmark-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--ink);
}
.nav-link.active {
  color: var(--ink);
  font-weight: 600;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terra);
}
.nav-cta {
  margin-left: 8px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--forest);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(42, 61, 48, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bone);
}
.btn-ghost:hover {
  background: var(--paper);
  border-color: var(--ink);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-card {
  width: 100%;
  margin-top: 16px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  background: var(--cream);
  overflow: hidden;
}
.hero-panel {
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 80px 56px 80px max(36px, calc((100vw - 1240px) / 2 + 36px));
}
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero-media-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: var(--ink);
}
.hero .eyebrow {
  color: var(--terra);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.hero-ctas.center {
  justify-content: center;
}
.hero-ctas .btn-ghost {
  background: rgba(255, 254, 249, 0.1);
  color: var(--bone);
  border-color: rgba(255, 254, 249, 0.4);
  backdrop-filter: blur(8px);
}
.hero-ctas .btn-ghost:hover {
  background: rgba(255, 254, 249, 0.2);
  border-color: var(--bone);
}
.hero .hero-ctas .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: none;
}
.hero .hero-ctas .btn-ghost:hover {
  background: var(--paper);
  border-color: var(--ink);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 760px;
}
.trust-item {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.trust-item strong {
  color: var(--terra);
  font-weight: 700;
  font-size: 17px;
  margin-right: 6px;
}
.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero-inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.page-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  background: none;
  border-bottom: none;
}
.page-hero-image .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}
.page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 37, 32, 0.55) 0%,
    rgba(42, 37, 32, 0.42) 45%,
    rgba(42, 37, 32, 0.62) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.page-hero-image .page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero-image .eyebrow {
  color: var(--gold);
}
.page-hero-image .page-title {
  color: var(--bone);
}
.page-hero-image .page-sub {
  color: var(--cream);
}
.page-hero .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}
.page-hero .hero-ctas .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: none;
}
.page-hero .hero-ctas .btn-ghost:hover {
  background: var(--paper);
  border-color: var(--ink);
}

/* ============ WELCOME ============ */
.welcome {
  background: var(--cream-deep);
  padding: 96px 0 48px;
  text-align: center;
}
.welcome .lede {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 820px;
  margin: 0 auto;
}

/* ============ BUILT FOR STARTUPS ============ */
.startups {
  background: var(--cream-deep);
  padding: 64px 0 96px;
  text-align: center;
}
.startups .section-lede {
  margin-bottom: 32px;
}
.startups-cta {
  display: flex;
  justify-content: center;
}

/* ============ FEATURES ============ */
.features {
  padding: 64px 0 96px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.feature-list {
  list-style: none;
  margin-top: 36px;
}
.feature-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.feature-list li:last-child {
  border-bottom: none;
}
.feat-icon {
  color: var(--terra);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.feature-list strong {
  display: block;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}
.feature-list p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.features-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  position: sticky;
  top: 24px;
}
.card-eyebrow {
  display: inline-block;
  background: var(--terra);
  color: var(--bone);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.card-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}
.card-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.card-list {
  list-style: none;
  margin-bottom: 24px;
}
.card-list li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
}
.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

/* ============ LOCAL BAND (Snowy Range) ============ */
.local-band {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 420px;
  max-height: 520px;
  align-items: stretch;
  align-content: stretch;
  overflow: hidden;
}
.local-band-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px 64px max(36px, calc((100vw - 1240px) / 2 + 36px));
}
.local-band-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}
.local-band-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--deep-brown);
  max-width: 470px;
  margin-bottom: 18px;
}
.local-band-caption {
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}
.local-band-media {
  position: relative;
  overflow: hidden;
}
.local-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* ============ MEET THE OWNER ============ */
.meet-owner {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.meet-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.meet-photo,
.vicki-portrait {
  max-width: 400px;
  margin: 0 auto;
}
.meet-photo {
  max-width: 320px;
}
.meet-photo img {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(90, 69, 48, 0.22);
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 400px;
  object-fit: cover;
}
.meet-text .section-title {
  margin-bottom: 8px;
}
.meet-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.meet-text p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.meet-philosophy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--deep-brown);
  border-left: 3px solid var(--terra);
  padding: 8px 0 8px 24px;
  margin: 24px 0;
}
.meet-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============ CERTIFICATIONS BAND ============ */
.cert-band {
  padding: 80px 0;
  background: var(--forest-deep);
  color: var(--bone);
}
.cert-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}
.cert-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  color: var(--bone);
  margin-bottom: 14px;
}
.cert-sub {
  font-size: 16px;
  color: rgba(255, 254, 249, 0.78);
  line-height: 1.6;
}
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cert-pill {
  background: rgba(255, 254, 249, 0.08);
  border: 1px solid rgba(201, 165, 92, 0.3);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.cert-degree {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
  font-weight: 700;
}
.cert-bbb {
  background: var(--terra);
  color: var(--bone);
  border-color: var(--terra);
  font-weight: 700;
}

/* ---- Certification badge images (shared: homepage band + about) ---- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cert-img-tile {
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cert-img-tile img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.cert-img-tile:hover {
  transform: scale(1.05);
}

/* Homepage — dark band: light tiles */
.cert-band .cert-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cert-band .cert-grid {
  max-width: 760px;
}
.cert-band .cert-img-tile {
  background: var(--bone);
  border: 1px solid rgba(201, 165, 92, 0.28);
  min-height: 110px;
}
.cert-band .cert-img-tile img {
  max-height: 84px;
}
.cert-band .cert-img-tile:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}
.cert-bbb-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 254, 249, 0.15);
}
.cert-bbb-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.cert-img-tile-bbb {
  min-height: 0;
  padding: 12px 18px;
  flex: 0 0 auto;
}
.cert-img-tile-bbb img {
  max-height: 46px;
}

/* About — light section: bone tiles with warm border */
.experience .cert-grid {
  max-width: 540px;
}
.experience .cert-img-tile {
  background: var(--bone);
  border: 1px solid var(--border);
  min-height: 130px;
}
.experience .cert-img-tile img {
  max-height: 102px;
}
.experience .cert-img-tile:hover {
  box-shadow: 0 8px 20px rgba(90, 69, 48, 0.18);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 96px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--terra);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  flex-grow: 1;
}
.testimonial footer {
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
}
.testimonial strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
}
.testimonial span {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ============ SEO CONTENT BLOCKS ============ */
.seo-content {
  padding: 0 0 96px;
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.seo-block {
  padding: 56px;
  background: var(--paper);
}
.seo-dark {
  background: var(--forest-deep);
  color: var(--bone);
}
.seo-block h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.seo-dark h3 {
  color: var(--bone);
}
.seo-block p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.seo-dark p {
  color: rgba(255, 254, 249, 0.85);
}
.seo-block p:last-child {
  margin-bottom: 0;
}

/* ============ FAQ ============ */
.faq {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.faq-list {
  margin-top: 36px;
}
.faq-item {
  background: var(--bone);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  color: var(--terra);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  background: var(--cream);
}
.faq-body {
  padding: 0 28px 24px;
}
.faq-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============ BOTTOM CTA ============ */
.bottom-cta {
  padding: 96px 0;
  background: var(--cream-deep);
  text-align: center;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ ABOUT — VICKI INTRO ============ */
.vicki-intro {
  padding: 96px 0;
}
.vicki-intro-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.vicki-portrait img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(90, 69, 48, 0.22);
  display: block;
}
.vicki-caption {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.vicki-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 2px;
}
.vicki-caption span {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.vicki-bio p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.vicki-bio em {
  color: var(--terra);
  font-style: italic;
  font-weight: 600;
}

/* ============ WYOMING CONTEXT ============ */
.wyoming-context {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.wyoming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.wyoming-card {
  background: var(--bone);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 32px 24px;
}
.wyoming-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.wyoming-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ WYOMING CONTEXT BAND ============ */
.wyoming-context-band {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(
      180deg,
      rgba(42, 37, 32, 0.45) 0%,
      rgba(42, 37, 32, 0.65) 100%
    ),
    url("assets/wyoming-context.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.wyoming-context-overlay {
  width: 100%;
  text-align: center;
  color: var(--bone);
}
.wyoming-context-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.wyoming-context-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  color: var(--bone);
  max-width: 880px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============ PROMISE / WHY WE EXIST ============ */
.promise {
  padding: 96px 0;
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.promise-col {
  padding: 56px 48px;
  background: var(--paper);
}
.promise-col-dark {
  background: var(--forest-deep);
  color: var(--bone);
}
.problem-list {
  list-style: none;
  margin-top: 32px;
}
.problem-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.problem-list li:last-child {
  border-bottom: none;
}
.prob-mark {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--bone);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.problem-list strong {
  font-weight: 700;
  color: var(--ink);
}
.problem-list div {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.mission-statement {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--cream-deep);
  border-left: 3px solid var(--terra);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--deep-brown);
}
.promise-list {
  list-style: none;
  margin-top: 32px;
}
.promise-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 254, 249, 0.12);
}
.promise-list li:last-child {
  border-bottom: none;
}
.promise-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 6px;
}
.promise-list p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 254, 249, 0.82);
}

/* ============ EXPERIENCE ============ */
.experience {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.credential-list {
  list-style: none;
  margin-top: 28px;
}
.credential-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--border-soft);
}
.credential-list li:last-child {
  border-bottom: none;
}
.credential-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}
.credential-list strong {
  color: var(--ink);
  font-weight: 700;
}
.certs-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 18px;
}
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.cert-badge {
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.cert-badge-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}
.cert-badge-adb {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--bone);
}
.bbb-mark {
  background: var(--terra);
  color: var(--bone);
  border-radius: 10px;
  padding: 18px 22px;
}
.bbb-mark strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}
.bbb-mark span {
  font-size: 13px;
  opacity: 0.9;
}

/* ============ VISION ============ */
.vision {
  padding: 96px 0;
  text-align: center;
}
.vision-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.vision-sub {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ PRICING — PROMO BANNER ============ */
.promo-banner {
  background: var(--forest);
  color: var(--bone);
  padding: 24px 0;
}
.promo-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-tag {
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 800;
  font-size: 18px;
  padding: 10px 18px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.promo-text {
  flex-grow: 1;
}
.promo-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bone);
  margin-bottom: 2px;
}
.promo-text span {
  font-size: 15px;
  color: rgba(255, 254, 249, 0.85);
}
.promo-row .btn-primary {
  background: var(--bone);
  color: var(--forest-deep);
}
.promo-row .btn-primary:hover {
  background: var(--cream);
  color: var(--forest-deep);
}

/* ============ PRICING — PACKAGES ============ */
.packages {
  padding: 96px 0;
}

.pkg {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 36px;
}
.pkg-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 32px;
}
.pkg-tag {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--deep-brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.pkg-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.pkg-grid {
  display: grid;
  gap: 36px;
}
.pkg-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pkg-grid h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.pkg-not-included h4 {
  color: var(--ink-mute);
}
.not-included-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.check-list,
.bullet-list {
  list-style: none;
}
.check-list li {
  padding: 4px 0 4px 22px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}
.bullet-list li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
  top: 4px;
}
.bullet-list strong {
  color: var(--ink);
  font-weight: 700;
}

/* Package cards grid (2-9) */
.pkg-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pkg-card {
  background: var(--bone);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg-card-featured {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream-deep) 100%);
  border-color: var(--terra);
  box-shadow: 0 4px 20px rgba(184, 100, 62, 0.12);
}
.pkg-num-sm {
  width: 44px;
  height: 44px;
  font-size: 22px;
  margin-bottom: 18px;
}
.pkg-card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--terra);
  color: var(--bone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.pkg-card-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}
.pkg-card-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.pkg-card .bullet-list,
.pkg-card .check-list {
  margin-bottom: 18px;
  flex-grow: 1;
}
.pkg-card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
  flex-grow: 1;
}
.pkg-card-split h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}
.pkg-card-split p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  line-height: 1.5;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.price-table td {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 14px;
  color: var(--ink-soft);
}
.price-table td:last-child {
  text-align: right;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-line {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.price-line strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-right: 4px;
}
.price-line-lg strong {
  font-size: 32px;
  color: var(--terra);
}

/* ============ REFERRAL ============ */
.referral {
  padding: 96px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.referral-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.referral-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}
.referral-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.55;
}
.referral-subtitle {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}
.referral-terms {
  list-style: none;
}
.referral-terms li {
  padding: 14px 0 14px 26px;
  border-bottom: 1px dashed var(--border);
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.referral-terms li:last-child {
  border-bottom: none;
}
.referral-terms li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
}
.referral-terms strong {
  color: var(--ink);
  font-weight: 700;
}
.referral-card {
  background: var(--forest-deep);
  color: var(--bone);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  position: sticky;
  top: 24px;
}
.referral-amount {
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.referral-card-text {
  font-size: 15px;
  color: rgba(255, 254, 249, 0.82);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.referral-card .btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  width: 100%;
}
.referral-card .btn-primary:hover {
  background: var(--bone);
  color: var(--forest-deep);
}

/* ============ CONTACT ============ */
.contact {
  padding: 80px 0 96px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 32px;
}
.contact-card-dark {
  background: var(--forest-deep);
  color: var(--bone);
}
.contact-card-dark h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-card-dark p {
  font-size: 15px;
  color: rgba(255, 254, 249, 0.82);
  line-height: 1.6;
}
.contact-card-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-list {
  list-style: none;
  margin-bottom: 28px;
}
.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 4px;
}
.contact-value {
  display: block;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
a.contact-value:hover {
  color: var(--terra);
}

.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 40px;
}
.contact-form-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.contact-form .form-field {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.form-row .form-field {
  margin-bottom: 0;
}
.form-row-2 {
  grid-template-columns: 1fr 1fr;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.req {
  color: var(--terra);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bone);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terra);
  background: var(--bone);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.form-disclaimer {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.service-area {
  padding: 80px 0;
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.service-area .vision-sub {
  margin-bottom: 28px;
}
.service-area .hero-ctas {
  margin-top: 0;
}

/* ============ BLOG ============ */
.blog-list-section {
  padding: 80px 0;
}
.blog-post-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 36px;
  margin-bottom: 20px;
}
.blog-post-featured {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream-deep) 100%);
  border-color: var(--border);
  padding: 48px;
  margin-bottom: 32px;
}
.blog-post-featured .blog-post-title {
  font-size: clamp(28px, 3.5vw, 38px);
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.blog-author {
  font-weight: 600;
  color: var(--terra);
}
.blog-dot {
  opacity: 0.6;
}
.blog-post-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}
.blog-post-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.blog-read-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.blog-read-link:hover {
  color: var(--deep-brown);
}
.blog-read-link-soon {
  color: var(--ink-mute);
  font-weight: 600;
  cursor: default;
  text-decoration: none;
}
.blog-read-link-soon:hover {
  color: var(--ink-mute);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.blog-grid .blog-post-card {
  margin-bottom: 0;
}

/* ============ FOOTER ============ */
footer.site {
  background: var(--forest-deep);
  color: var(--bone);
  padding: 64px 0 0;
  margin-top: 0;
}
footer.site .wordmark-line {
  color: var(--bone);
}
footer.site .wordmark-sub {
  color: rgba(255, 254, 249, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 254, 249, 0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  line-height: 1.4;
  margin-top: 8px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 254, 249, 0.78);
  margin-bottom: 4px;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 254, 249, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal a {
  margin: 0 4px;
}
.footer-legal a:hover {
  color: var(--gold);
}

/* ============ RESPONSIVE ============ */
/* Hero: keep CTAs inline + trust strip tidy on narrower desktops */
@media (max-width: 1200px) and (min-width: 901px) {
  .hero {
    grid-template-columns: 60% 40%;
  }
  .hero-panel {
    padding-right: 48px;
  }
}
@media (max-width: 1200px) {
  .hero-ctas {
    gap: 12px;
  }
  .hero .hero-ctas .btn-lg {
    padding: 14px 22px;
    font-size: 15px;
  }
  .hero-ctas .btn {
    white-space: nowrap;
  }
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .trust-divider {
    display: none;
  }
}
@media (max-width: 1080px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid,
  .meet-grid,
  .vicki-intro-grid,
  .experience-grid,
  .contact-grid,
  .referral-grid,
  .promise-grid,
  .seo-grid,
  .cert-band-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features-card,
  .referral-card {
    position: static;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wyoming-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pkg-cards {
    grid-template-columns: 1fr;
  }
  .pkg-grid-3 {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .logo-seal {
    width: 120px;
    height: 120px;
  }
  footer.site .logo-seal {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 900px) {
  .logo-seal {
    width: 96px;
    height: 96px;
  }
  footer.site .logo-seal {
    width: 96px;
    height: 96px;
  }
  .wordmark-line {
    font-size: 18px;
  }
  .wordmark-sub {
    font-size: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .local-band {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
  }
  .local-band-media {
    order: -1;
    height: 280px;
  }
  .local-band-text {
    padding: 48px 24px;
  }
  .hero-media {
    order: -1;
    height: 300px;
  }
  .hero-media-fade {
    background: linear-gradient(
      180deg,
      rgba(250, 243, 228, 0) 55%,
      var(--cream) 100%
    );
  }
  .hero-panel {
    padding: 48px 24px 56px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .container,
  .narrow {
    padding: 0 20px;
  }
  .nav {
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 12px;
  }
  .wordmark-line {
    font-size: 18px;
  }
  .wordmark-sub {
    font-size: 10px;
  }
  .logo-seal {
    width: 72px;
    height: 72px;
  }
  footer.site .logo-seal {
    width: 72px;
    height: 72px;
  }
  .primary-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .nav-link {
    font-size: 14px;
  }
  .nav-cta {
    font-size: 13px;
    padding: 10px 14px;
  }
  .hero {
    min-height: 0;
  }
  .hero-panel {
    padding: 40px 20px 48px;
  }
  .hero-media {
    height: 240px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .wyoming-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pkg {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .pkg-num {
    margin-bottom: 8px;
  }
  .pkg-card {
    padding: 24px;
  }
  .pkg-card-split {
    grid-template-columns: 1fr;
  }
  .seo-block {
    padding: 36px 24px;
  }
  .promise-col {
    padding: 36px 24px;
  }
  .promo-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .blog-post-featured {
    padding: 32px 24px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .seo-grid {
    border-radius: 10px;
  }
  .promise-grid {
    border-radius: 10px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============ BLOG POST (single article) ============ */
.post-back {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terra);
  margin-bottom: 22px;
  transition: color 0.2s;
}
.post-back:hover {
  color: var(--deep-brown);
}

.post-body {
  padding: 56px 0 80px;
}
.post-body > .container {
  max-width: 840px;
}
.post-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.post-body p strong {
  color: var(--ink);
  font-weight: 600;
}
.post-h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 44px 0 16px;
}
.post-h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.25;
  color: var(--ink);
  margin: 32px 0 12px;
}
.post-body ul {
  margin: 0 0 22px;
  padding-left: 24px;
  list-style: disc;
}
.post-body li {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.post-body li strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 700px) {
  .post-body li {
    font-size: 17px;
  }
}
.post-body p:first-child {
  font-size: 19px;
  color: var(--ink);
}
@media (max-width: 700px) {
  .post-body {
    padding: 40px 0 60px;
  }
  .post-body p {
    font-size: 17px;
  }
}
.post-cta {
  margin: 8px 0 0;
  padding: 36px;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.post-cta .eyebrow {
  margin-bottom: 14px;
}
.post-cta-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}
.post-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 24px;
}
.post-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .post-cta {
    padding: 28px 22px;
  }
}

/* ============ MOBILE NAV (hamburger + overlay) ============ */
/* Hamburger button — hidden on desktop, shown below 900px */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 200;
}
.nav-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--forest);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Full-screen overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--cream);
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
  padding: 0 24px;
}
.mobile-link {
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s;
}
.mobile-link:hover {
  color: var(--terra);
}
.mobile-call {
  margin-top: 32px;
  width: 100%;
  font-size: 18px;
}
body.menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  /* Only hide the inline nav on pages that actually have a hamburger
     (the 5 top-level pages). Blog-post pages share this stylesheet but
     have no .nav-toggle, so their nav must stay visible. */
  .nav:has(.nav-toggle) .primary-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}
