

[id*="JSSDK"], [id*="fbevents"], [class*="fb-debug"],
div[style*="z-index: 2147483647"]:not(#lightbox):empty {
  display: none !important;
  visibility: hidden !important;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--text);
  line-height: 1.25;
}

h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: #4a7c59;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: #2f5c3c; }

ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

.nav-logo {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

:root {
  --bg:          #F3EBD2;
  --bg-alt:      #EAE0C4;
  --bg-dark:     #3A2B20;
  --text:        #1e1a16;
  --text-light:  #5c4f3d;
  --text-inv:    #F3EBD2;
  --green:       #4E7B49;
  --green-dark:  #2F4A2F;
  --brown:       #8b6f47;
  --brown-light: #C7A54A;
  --gold:        #C7A54A;
  --gold-dark:   #a8872e;
  --moss:        #6F8F52;
  --stone:       #9e9181;
  --border:      #D4C4A0;
  --shadow:      rgba(58,43,32,0.14);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: var(--bg-alt);
}

#site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-dark);
  border-bottom: 2px solid var(--brown);
  
  overflow: visible;
}

.nav-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.nav-brand .brand-name {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-inv);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-brand .brand-tagline {
  font-size: 0.68rem;
  color: var(--brown-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown-light);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 2px); 
  left: -1.25rem;        
  right: -1.25rem;
  padding: 0.3rem 0 0.5rem;
  border-top: 1px solid rgba(196,168,130,0.15);
  background-color: var(--bg-dark);
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.nav-links.open {
  display: flex;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--brown-light);
  font-size: 0.97rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(196,168,130,0.08);
  transition: background 0.2s, color 0.2s;
  white-space: normal;
}

.nav-links li:last-child a {
  border-bottom: none;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: rgba(196,168,130,0.1);
  color: #fff;
}

@media (min-width: 1024px) {
  .nav-inner {
    padding: 0.75rem 1.25rem;
  }

  .nav-toggle { display: none; }

  .nav-brand { flex-shrink: unset; overflow: visible; }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    width: auto;
    gap: 0.15rem;
    padding: 0;
    margin-left: auto;
    border-top: none;
    background: transparent;
    box-shadow: none;
    z-index: auto;
  }

  .nav-links a {
    padding: 0.4rem 0.5rem;
    border-bottom: none;
    border-radius: 4px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background-color: rgba(196,168,130,0.12);
  }
}

#hero {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(139,111,71,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74,124,89,0.12) 0%, transparent 55%);
  padding: 5rem 0 4.5rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-light);
  border: 1px solid rgba(196,168,130,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

#hero h1 {
  color: var(--text-inv);
  max-width: 780px;
  margin: 0 auto 1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--brown-light);
  max-width: 620px;
  margin: 0 auto 1.4rem;
}

.hero-body {
  font-size: 0.95rem;
  color: #b0a898;
  max-width: 600px;
  margin: 0 auto 2.2rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

#hero .btn-group .btn {
  min-width: 210px;
  text-align: center;
}

@media (max-width: 560px) {
  #hero .btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  #hero .btn-group .btn {
    min-width: unset;
    width: 100%;
    text-align: center;
  }
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.85rem;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--brown-light);
  border-color: var(--brown-light);
}
.btn-secondary:hover {
  background-color: rgba(196,168,130,0.12);
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background-color: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background-color: var(--green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(78,123,73,0.2);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--border);
}
.btn-ghost:hover {
  background-color: var(--bg-alt);
  color: var(--text);
}

#about .section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

#about h2 { margin-bottom: 1.25rem; }

#about .about-body {
  max-width: 720px;
}

#about .about-body p {
  color: var(--text-light);
  font-size: 0.97rem;
}

.notice-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  background-color: rgba(139,111,71,0.1);
  border-left: 3px solid var(--brown);
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  color: var(--brown);
  border-radius: 0 3px 3px 0;
}

#products { padding-bottom: 3rem; }

.section-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.section-label-center {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.section-intro h2 { margin-bottom: 0.4rem; }

.section-sub {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

.tier-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

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

.tier-summary-item {
  background-color: #fff;
  padding: 1.1rem 1.25rem;
  position: relative;
}

.tier-summary-item.ts-featured {
  background-color: #f0f7f2;
}

.ts-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background-color: var(--green);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  margin-bottom: 0.3rem;
}

.ts-name {
  font-family: 'Georgia', serif;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.ts-price {
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.ts-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.45;
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.product-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 8px 28px var(--shadow);
  transform: translateY(-3px);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img {
  transform: scale(1.03);
}

.product-body {
  padding: 1.4rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.product-cost-estimate {
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.03em;
  margin-top: -0.25rem;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
}

.product-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.product-tier.pt-popular {
  position: relative;
}

.pt-name {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0;
}

.pt-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background-color: var(--green);
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 20px;
  line-height: 1.4;
}

.pt-price {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0;
  line-height: 1;
}

.btn-tier {
  display: block;
  width: 100%;
  padding: 0.42rem 0.3rem;
  font-size: 0.75rem;
  font-family: inherit;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-light);
  background-color: var(--bg-alt);
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 0.03em;
}

.btn-tier:hover {
  background-color: var(--stone);
  border-color: var(--stone);
  color: #fff;
}

.btn-tier-featured {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn-tier-featured:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  max-width: 720px;
  margin: 0 auto;
}

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

.pricing-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.4rem 1.35rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
  box-shadow: 0 6px 24px var(--shadow);
  transform: translateY(-3px);
}

.pricing-card.featured {
  border-color: var(--green);
  border-width: 2px;
}

.badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.card-title {
  font-size: 1.05rem;
  font-family: 'Georgia', serif;
  color: var(--text);
}

.card-price {
  font-size: 1.9rem;
  font-family: 'Georgia', serif;
  color: var(--brown);
  line-height: 1;
}

.card-price span {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 2px;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

.card-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.card-features li {
  font-size: 0.84rem;
  color: var(--text-light);
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  line-height: 1.45;
}

.card-features li::before {
  content: '✓';
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--stone);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

#example h2 { margin-bottom: 0.4rem; }

.example-subheading {
  font-size: 1.15rem;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 1.1rem;
}

.example-body {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 1.25rem;
}

.example-features {
  margin-bottom: 2rem;
}

.example-features li {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}

.example-features li:last-child { border-bottom: none; }

.example-features li::before {
  content: '—';
  color: var(--brown-light);
  font-size: 0.8rem;
}

.image-placeholders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.example-figure {
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.example-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.example-figure figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.03em;
  border-top: 1px solid var(--border);
}

.preview-note {
  font-size: 0.8rem;
  color: var(--stone);
  font-style: italic;
  border-left: 3px solid var(--border);
  padding-left: 0.8rem;
}

#who .who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

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

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

.who-item {
  background-color: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

#how h2 { margin-bottom: 1.1rem; }

#how .how-body {
  max-width: 720px;
  font-size: 0.95rem;
  color: var(--text-light);
}

#how .responsibility-note {
  margin-top: 1.25rem;
  background-color: rgba(139,111,71,0.08);
  border-left: 3px solid var(--brown);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--brown);
  border-radius: 0 3px 3px 0;
}

#faq h2 { margin-bottom: 1.75rem; text-align: center; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: background 0.2s;
}

.faq-question:hover { background-color: var(--bg-alt); }

.faq-question .faq-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--brown);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer { display: block; }

#terms h2 { margin-bottom: 1.75rem; }

.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.terms-block {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1.25rem 1.35rem;
}

.terms-block--disclaimer {
  border-color: var(--brown);
  background-color: rgba(139,111,71,0.05);
  grid-column: 1 / -1;
}

.terms-block h3 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.terms-block p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}

#contact {
  text-align: center;
}

#contact h2 { margin-bottom: 0.75rem; }

#contact .contact-intro {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.05rem;
  color: var(--green);
  font-family: 'Courier New', monospace;
  background-color: rgba(74,124,89,0.08);
  border: 1px solid rgba(74,124,89,0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.contact-email:hover {
  background-color: rgba(74,124,89,0.15);
  color: var(--green-dark);
}

.contact-note {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--stone);
  font-style: italic;
}

#social h2 { margin-bottom: 1.25rem; text-align: center; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--brown-light);
  background-color: var(--bg-alt);
  color: var(--text);
}

.social-icon {
  font-size: 1.1rem;
}

footer {
  background-color: var(--bg-dark);
  color: #b0a898;
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.footer-brand .brand-name {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--text-inv);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand .brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-light);
}

.footer-brand .footer-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: #6b635b;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer-links { align-items: flex-end; }
}

.footer-links a {
  font-size: 0.82rem;
  color: #8c8278;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--brown-light); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196,168,130,0.12);
  text-align: center;
  font-size: 0.75rem;
  color: #5a524c;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0.85rem 0 1.75rem;
  position: relative;
  border: none;
}

.section-divider.centered {
  margin: 0.85rem auto 1.75rem;
}

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

.hero-social-proof {
  font-size: 0.88rem;
  color: rgba(196,168,130,0.75);
  font-style: italic;
  max-width: 560px;
  margin: -0.5rem auto 1.75rem;
  line-height: 1.6;
}

.btn-buy-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-buy-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.btn-buy-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-buy-outline:hover {
  background-color: var(--green);
  color: #fff;
}

.pricing-card .btn-buy-primary,
.pricing-card .btn-buy-outline {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
}

.trust-line {
  font-size: 0.85rem;
  color: var(--green-dark);
  font-style: normal;
  border-top: none;
  padding-top: 0;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}

.product-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.product-btn {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 0.93rem;
  padding: 0.78rem 0.6rem;
}

.btn-disabled {
  display: inline-block;
  background-color: var(--bg-alt);
  color: var(--stone);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  cursor: default;
  pointer-events: none;
  text-align: center;
}

.product-card--soon {
  opacity: 0.72;
}

.product-img-wrap {
  position: relative;
}

.bundle-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--green);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
}

.coming-soon-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--bg-dark);
  color: var(--brown-light);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
}

.preview-intro {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

#cta-final {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(74,124,89,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(139,111,71,0.12) 0%, transparent 55%);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-inner h2 {
  color: var(--text-inv);
  margin-bottom: 0.85rem;
}

.cta-inner p {
  color: var(--brown-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn-cta {
  font-size: 1.05rem;
  padding: 1rem 2.4rem;
  letter-spacing: 0.06em;
}

.guide-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

.guide-preview-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  outline: none;
}

.guide-preview-card:hover,
.guide-preview-card:focus-visible {
  box-shadow: 0 8px 28px rgba(44,36,33,0.18);
  transform: translateY(-4px);
}

.guide-preview-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-alt);
}

.guide-preview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.guide-preview-card:hover .guide-preview-img-wrap img {
  transform: scale(1.04);
}

.sample-label {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background-color: rgba(44,36,33,0.75);
  color: var(--brown-light);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  backdrop-filter: blur(2px);
}

.guide-preview-info {
  padding: 0.9rem 1rem 1rem;
  border-top: 1px solid var(--border);
}

.guide-preview-title {
  font-family: 'Georgia', serif;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.guide-preview-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 8, 6, 0.88);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: 1px solid rgba(196,168,130,0.4);
  color: var(--brown-light);
  font-size: 1.4rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.lightbox-close:hover {
  background-color: rgba(196,168,130,0.15);
  color: #fff;
}

.lightbox-title {
  color: var(--brown-light);
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.lightbox-img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
}

@media print {
  #site-nav { position: static; }
  .btn { display: none; }
}

/* ============================================
   GLOBAL SECTION LABEL (all sections)
   ============================================ */
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

/* ============================================
   LARGE BUTTON VARIANT (elder-friendly)
   ============================================ */
.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  border-radius: 6px;
}

/* ============================================
   NAV CTA BUTTON
   ============================================ */
.nav-cta {
  background-color: var(--green) !important;
  color: #fff !important;
  border-radius: 3px;
  padding: 0.4rem 1.1rem !important;
  font-size: 0.82rem;
}
.nav-cta:hover {
  background-color: var(--green-dark) !important;
  color: #fff !important;
}

/* ============================================
   TRUST / STATS SECTION
   ============================================ */
section.trust-section {
  padding: 2.5rem 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(196,168,130,0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

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

.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
}

.stat-number {
  display: block;
  font-family: 'Georgia', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--brown-light);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(196,168,130,0.65);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ============================================
   CHOOSE WHAT YOU NEED SECTION
   ============================================ */
section.choose-section {
  padding: 4rem 0;
  text-align: center;
}

.choose-section h2 { margin-bottom: 0; }

.choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.choose-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-top-color 0.25s ease;
}

.choose-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0;
}

.choose-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0;
}

/* .choose-icon defined in premium overrides below */

/* ============================================
   MEMBERSHIP SECTION
   ============================================ */
section.membership-section {
  padding: 4.5rem 0;
  text-align: center;
}

.membership-section .section-label-center { margin-bottom: 0.4rem; }
.membership-section h2 { margin-bottom: 0; }
.membership-section .section-sub { margin-top: 0.75rem; }

.membership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}

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

.membership-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.membership-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-3px);
}

.membership-card--featured {
  border-width: 2px;
}

.membership-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.membership-header h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.membership-price {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  color: var(--brown);
  line-height: 1;
}

.price-currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 1px;
}

.per-month {
  font-size: 0.95rem;
  color: var(--stone);
}

.membership-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.membership-benefits li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.membership-note {
  font-size: 0.78rem;
  color: var(--stone);
  text-align: center;
  margin-bottom: 0;
  font-style: italic;
}

.membership-trust {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: var(--stone);
  font-style: italic;
}

/* ============================================
   GUIDES SECTION + FILTER BAR
   ============================================ */
.guides-section { padding-bottom: 3rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 2rem;
  justify-content: center;
}

.filter-btn {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background-color: rgba(74,124,89,0.05);
}

.filter-btn.active {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
  font-weight: bold;
  z-index: 1;
}

.badge-popular {
  background-color: var(--brown);
  color: #fff;
}

.badge-new {
  background-color: var(--green);
  color: #fff;
}

.category-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brown);
  background-color: rgba(139,111,71,0.1);
  border: 1px solid rgba(139,111,71,0.22);
  padding: 0.15rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.category-tag--bundle {
  color: var(--green-dark);
  background-color: rgba(74,124,89,0.1);
  border-color: rgba(74,124,89,0.22);
}

.product-card--bundle {
  border-color: rgba(74,124,89,0.28);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
section.testimonials-section {
  padding: 4rem 0;
  text-align: center;
}

.testimonials-section h2 { margin-bottom: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

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

.testimonial-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-stars {
  font-size: 1.1rem;
  color: #c9943a;
  letter-spacing: 0.05em;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 0;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
section.newsletter-section {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--bg-dark);
}

.newsletter-section h2 {
  color: var(--text-inv);
  margin-bottom: 0;
}

.newsletter-section .section-divider {
  background-color: var(--brown-light);
}

.newsletter-section .section-sub {
  color: var(--brown-light);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(196,168,130,0.3);
  border-radius: 3px;
  background-color: rgba(255,255,255,0.07);
  color: var(--text-inv);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(196,168,130,0.5);
}

.newsletter-input:focus {
  border-color: var(--brown-light);
  background-color: rgba(255,255,255,0.1);
}

.newsletter-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(196,168,130,0.5);
  font-style: italic;
}

/* ============================================
   PREMIUM VISUAL UPGRADES
   ============================================ */

/* Warmer shadow across all cards */
.product-card:hover {
  box-shadow: 0 12px 40px rgba(139,111,71,0.22);
  border-top-color: var(--green);
}

.product-card {
  border-top: 3px solid var(--border);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-top-color 0.25s ease;
}

.product-card--bundle {
  border-top-color: rgba(74,124,89,0.4);
}

/* Product name slightly larger for readability */
.product-name {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Choose cards: green top accent */
.choose-card {
  border-top: 3px solid var(--green);
  box-shadow: 0 2px 12px rgba(139,111,71,0.07);
}

.choose-card:hover {
  box-shadow: 0 12px 40px rgba(139,111,71,0.18);
  transform: translateY(-4px);
}

/* Choose icons: warm branded circle */
.choose-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(135deg, rgba(139,111,71,0.13) 0%, rgba(74,124,89,0.09) 100%);
  border: 1px solid rgba(139,111,71,0.22);
  flex-shrink: 0;
}

/* Membership cards: warm shadows */
.membership-card {
  box-shadow: 0 2px 16px rgba(139,111,71,0.08);
}

.membership-card:hover {
  box-shadow: 0 12px 40px rgba(139,111,71,0.2);
}

/* Featured membership: warm gold tint instead of cold green */
.membership-card--featured {
  background-color: #fdf9f2;
  border-color: var(--brown);
  border-top: 4px solid var(--brown);
}

.membership-card--featured .membership-badge {
  background-color: var(--brown);
}

.membership-card--featured .membership-price {
  color: var(--brown);
}

.membership-card--featured .btn-buy-primary {
  background-color: var(--brown);
  border-color: var(--brown);
}

.membership-card--featured .btn-buy-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

/* Testimonial cards: decorative quote mark + warm shadow */
.testimonial-card {
  box-shadow: 0 2px 12px rgba(139,111,71,0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(139,111,71,0.16);
  transform: translateY(-2px);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Georgia', serif;
  font-size: 3.5rem;
  color: rgba(139,111,71,0.2);
  line-height: 0.8;
  display: block;
  margin-bottom: 0.15rem;
  margin-top: -0.25rem;
}

.testimonial-author {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: bold;
  letter-spacing: 0.04em;
}

/* Stats section: cleaner number display */
.stat-item {
  border-right: 1px solid rgba(196,168,130,0.12);
  padding: 1rem 1.25rem;
}

.stat-item:last-child {
  border-right: none;
}

@media (max-width: 579px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(199,165,74,0.12);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(199,165,74,0.12);
  }
  /* 5th stat spans both columns and needs no borders */
  .stat-item:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }
}

/* Section transitions feel warmer */
section.trust-section {
  background: linear-gradient(180deg, #1e2820 0%, var(--bg-dark) 100%);
}

/* Newsletter section slight gradient for warmth */
section.newsletter-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1410 100%);
}

/* Filter bar: larger buttons for older users */
.filter-btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
}

/* FAQ questions: slightly larger for readability */
.faq-question {
  font-size: 1rem;
  padding: 1.15rem 1.35rem;
}

/* Contact email: larger and clearer */
.contact-email {
  font-size: 1.15rem;
  padding: 0.65rem 1.5rem;
  max-width: 100%;
  word-break: break-all;
}

@media (max-width: 560px) {
  .contact-email {
    font-size: 0.95rem;
    padding: 0.55rem 0.9rem;
    display: block;
  }
}

/* Footer Patreon link: highlight it */
.footer-links a[href*="patreon"] {
  color: var(--gold);
  font-weight: bold;
}

.footer-links a[href*="patreon"]:hover {
  color: #fff;
}

/* ============================================
   PREMIUM TYPOGRAPHY UPGRADES
   ============================================ */

.nav-brand .brand-name {
  font-family: 'Playfair Display', 'Georgia', serif;
}

.hero-eyebrow {
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  border-color: rgba(199,165,74,0.45);
  color: var(--gold);
}

#hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  letter-spacing: -0.01em;
}

/* ============================================
   HERO AMBIENT ANIMATION
   ============================================ */

#hero {
  position: relative;
  overflow: hidden;
}

@keyframes hero-drift {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  50%       { transform: scale(1.08) translate(2%, 1%); opacity: 0.9; }
}

#hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(199,165,74,0.07) 0%, transparent 65%);
  animation: hero-drift 10s ease-in-out infinite;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(78,123,73,0.09) 0%, transparent 65%);
  animation: hero-drift 13s ease-in-out infinite reverse;
  pointer-events: none;
}

/* ============================================
   GOLD ACCENT BORDERS ON CARDS
   ============================================ */

.product-card {
  border-top-color: rgba(199,165,74,0.35);
}

.product-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 12px 40px rgba(58,43,32,0.18);
}

.product-card--bundle {
  border-top-color: rgba(78,123,73,0.45);
}

.choose-card {
  border-top-color: var(--gold);
  border: 1px solid rgba(199,165,74,0.25);
  border-top: 3px solid var(--gold);
}

/* ============================================
   CHOOSE SECTION — SVG ICON COLOUR
   ============================================ */

.choose-icon svg {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.choose-icon {
  background: linear-gradient(135deg, rgba(199,165,74,0.12) 0%, rgba(78,123,73,0.09) 100%);
  border-color: rgba(199,165,74,0.28);
}

/* ============================================
   MEMBERSHIP — GOLD BADGE & PREMIUM BORDER
   ============================================ */

.membership-card {
  border: 1px solid rgba(199,165,74,0.22);
}

.membership-card--featured {
  border: 2px solid var(--gold);
  border-top: 4px solid var(--gold);
  background-color: #fdf9f0;
}

.membership-card--featured .membership-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.membership-card--featured .membership-price {
  color: var(--gold-dark);
}

.membership-card--featured .btn-buy-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold-dark);
  color: var(--bg-dark);
  font-weight: 700;
}

.membership-card--featured .btn-buy-primary:hover {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
  color: #fff;
}

/* ============================================
   TESTIMONIALS — HERITAGE CARD STYLE
   ============================================ */

.testimonials-grid {
  grid-template-columns: 1fr;
}

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

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

.testimonial-card {
  background-color: #fffdf5;
  border: 1px solid rgba(199,165,74,0.22);
}

.testimonial-card::before {
  color: rgba(199,165,74,0.3);
}

.testimonial-author {
  color: var(--green-dark);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ============================================
   PATREON SECTION
   ============================================ */

section.patreon-section {
  padding: 3.5rem 0;
  background-color: var(--bg-alt);
}

.patreon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #281e15 100%);
  border: 1px solid rgba(199,165,74,0.3);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 40px rgba(58,43,32,0.25);
}

@media (min-width: 680px) {
  .patreon-card {
    flex-direction: row;
    text-align: left;
    padding: 3rem 3.5rem;
    gap: 3rem;
  }
}

.patreon-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(199,165,74,0.18) 0%, rgba(78,123,73,0.12) 100%);
  border: 1px solid rgba(199,165,74,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.patreon-icon svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.patreon-content .section-label {
  color: var(--gold);
}

.patreon-content h2 {
  color: var(--text-inv);
  margin-bottom: 0.75rem;
}

.patreon-content p {
  color: rgba(243,235,210,0.75);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-patreon {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  border: 2px solid var(--gold-dark);
  border-radius: 5px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-patreon:hover {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,43,32,0.3);
}

/* ============================================
   TRUST SECTION — 5-ITEM STAT BAR UPGRADE
   ============================================ */

section.trust-section {
  background: linear-gradient(180deg, #2a3d28 0%, var(--bg-dark) 100%);
}

@media (min-width: 580px) {
  .stat-item {
    border-right: 1px solid rgba(199,165,74,0.12);
  }
  .stat-item:last-child { border-right: none; }
}

.stat-number {
  color: var(--gold);
}

/* ============================================
   PREMIUM BUTTON REFINEMENTS
   ============================================ */

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e3020 100%);
  border-color: #1e3020;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(47,74,47,0.4);
}

.btn-secondary {
  border-color: rgba(199,165,74,0.6);
  color: var(--gold);
}

.btn-secondary:hover {
  background-color: rgba(199,165,74,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(199,165,74,0.18);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green-dark);
}

/* ============================================
   NAV PREMIUM FEEL
   ============================================ */

#site-nav {
  background: linear-gradient(180deg, #2a1e15 0%, var(--bg-dark) 100%);
  border-bottom: 2px solid rgba(199,165,74,0.35);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--bg-dark) !important;
  font-weight: 700;
  border-color: var(--gold-dark) !important;
  white-space: normal !important;
  word-break: keep-all;
}

@media (max-width: 1023px) {
  .nav-cta {
    margin: 0.5rem 1.5rem !important;
    padding: 0.9rem 1.5rem !important;
    text-align: center;
    border-radius: 4px;
    display: block;
    font-size: 1rem !important;
    white-space: normal !important;
  }
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%) !important;
  border-color: var(--green-dark) !important;
  color: #fff !important;
}

/* ============================================
   SECTION INTRO LABEL — GOLD
   ============================================ */

.section-label,
.section-label-center {
  color: var(--gold-dark);
  letter-spacing: 0.16em;
}

/* ============================================
   PRODUCT DETAIL MODAL
   ============================================ */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-modal[hidden] { display: none; }

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 16, 8, 0.88);
  cursor: pointer;
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 1px solid rgba(199,165,74,0.35);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  max-width: 840px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(58,43,32,0.45);
}

.product-modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem 0 0;
  background: var(--bg-dark);
  color: var(--gold);
  border: 1px solid rgba(199,165,74,0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  flex-shrink: 0;
}

.product-modal-close:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.product-modal-body {
  padding: 0.5rem 2.25rem 2.5rem;
  clear: both;
}

@media (max-width: 560px) {
  .product-modal-body { padding: 0.5rem 1.25rem 2rem; }
}

.pm-title {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-right: 1rem;
  line-height: 1.3;
}

.pm-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 0;
}

.pm-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem 0 1.25rem;
}

.pm-guide-note {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: 'Lato', sans-serif;
}

.pm-topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

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

.pm-bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

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

.pm-section {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 6px;
  padding: 1rem 1.15rem;
}

.pm-bundle-section {
  border-left-color: var(--gold);
}

.pm-section-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.pm-topics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-topics li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.pm-topics li:last-child { border-bottom: none; }

.pm-bundle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-bundle-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
}

.pm-bundle-list li::before {
  content: '\2713';
  color: var(--green);
  font-weight: bold;
  flex-shrink: 0;
}

.pm-bundle-list li:last-child { border-bottom: none; }

.pm-footer-note {
  font-size: 0.85rem;
  color: var(--stone);
  font-style: italic;
  padding: 0.65rem 1rem;
  background: rgba(199,165,74,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pm-cta-wrap {
  display: flex;
  justify-content: center;
}

.pm-cta {
  min-width: 200px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  background-color: #2a1e15;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(139,111,71,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74,124,89,0.10) 0%, transparent 55%);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-hero .hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(199,165,74,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  color: var(--text-inv);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--brown-light);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================
   POPULAR SECTION (homepage)
   ============================================ */

.popular-section {
  padding: 4rem 0;
}

.popular-section h2 { margin-bottom: 0; }

.popular-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

/* ============================================
   FLOATING TESTIMONIALS (guides page)
   ============================================ */

.float-testimonials-wrap {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 40;
}

.float-testimonial {
  position: absolute;
  right: -300px;
  background: rgba(255,253,245,0.97);
  border: 1px solid rgba(199,165,74,0.4);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  width: 220px;
  box-shadow: 0 4px 20px rgba(58,43,32,0.18);
  animation: floatSlide 26s ease-in-out infinite;
  font-size: 0.82rem;
  line-height: 1.5;
}

.float-testimonial:nth-child(1) { top: 22%; animation-delay: 0s; }
.float-testimonial:nth-child(2) { top: 50%; animation-delay: 10s; }
.float-testimonial:nth-child(3) { top: 72%; animation-delay: 20s; }

@keyframes floatSlide {
  0%, 100%  { right: -300px; opacity: 0; }
  10%, 40%  { right: 1rem;   opacity: 1; }
  50%, 90%  { right: -300px; opacity: 0; }
}

.ft-stars {
  color: #c9943a;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.float-testimonial p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.ft-author {
  font-size: 0.76rem;
  color: var(--green-dark);
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

@media (max-width: 1199px) {
  .float-testimonials-wrap { display: none; }
}

/* ============================================
   BUNDLES PAGE
   ============================================ */

.bundles-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.bundles-intro p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0;
}

.bundle-grid-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

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

/* ============================================
   MEMBERSHIP PAGE EXTRAS
   ============================================ */

.membership-delivery-note {
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(74,124,89,0.06);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page-body {
  max-width: 760px;
}

.about-page-body p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  text-align: center;
  padding: 5rem 0;
}

.contact-page h1 {
  margin-bottom: 0.75rem;
}

.contact-page .contact-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ============================================
   TERMS PAGE
   ============================================ */

.terms-page-intro {
  max-width: 720px;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ============================================
   NAV DESKTOP CTA — KEEP NOWRAP
   ============================================ */

@media (min-width: 1024px) {
  .nav-cta {
    white-space: nowrap !important;
    padding: 0.4rem 0.85rem !important;
  }

  .nav-links li:has(.nav-cta) {
    margin-left: 1.5rem;
  }
}

/* ============================================
   TRUST BAR — PREMIUM SVG ICONS
   ============================================ */

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin-bottom: 0.5rem;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  stroke: var(--gold);
}

.stat-stars {
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.stat-item--icon-only .stat-label {
  font-size: 0.88rem;
  color: rgba(196,168,130,0.7);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ============================================
   START HERE SECTION
   ============================================ */

section.start-here-section {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--bg);
}

.start-here-section h2 { margin-bottom: 0; }

.start-here-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.start-here-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

.start-here-card {
  background-color: #fff;
  border: 1px solid rgba(199,165,74,0.28);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  box-shadow: 0 2px 16px rgba(139,111,71,0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.start-here-card:hover {
  box-shadow: 0 12px 40px rgba(139,111,71,0.18);
  transform: translateY(-4px);
}

.start-here-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0;
}

.start-here-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}

.start-here-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(199,165,74,0.12) 0%, rgba(78,123,73,0.09) 100%);
  border: 1px solid rgba(199,165,74,0.28);
  flex-shrink: 0;
}

.start-here-icon svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  stroke: var(--green);
}

/* ============================================
   FEATURED THIS WEEK
   ============================================ */

section.featured-week-section {
  padding: 5rem 0;
  background-color: var(--bg-alt);
}

.featured-week-section h2 { margin-bottom: 0; text-align: center; }

.featured-week-subtitle {
  font-size: 0.92rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.4rem;
}

.featured-week-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

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

.featured-membership-card {
  background: linear-gradient(150deg, #1a2e1a 0%, #263d1e 60%, #1e3028 100%);
  border: 1px solid rgba(199,165,74,0.3);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 8px 32px rgba(26,46,26,0.3);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.featured-membership-card:hover {
  box-shadow: 0 16px 48px rgba(26,46,26,0.45);
  transform: translateY(-3px);
}

.featured-membership-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  align-self: flex-start;
}

.featured-membership-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--text-inv);
  margin-bottom: 0;
  line-height: 1.3;
}

.featured-membership-price {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.featured-membership-price small {
  font-size: 0.95rem;
  color: rgba(199,165,74,0.6);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.featured-membership-desc {
  font-size: 0.97rem;
  color: rgba(243,235,210,0.75);
  line-height: 1.7;
  margin-bottom: 0;
}

.featured-membership-perks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.featured-membership-perks li {
  font-size: 0.88rem;
  color: rgba(243,235,210,0.7);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.featured-membership-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.featured-membership-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.featured-membership-actions .btn-secondary {
  border-color: rgba(199,165,74,0.5);
  color: var(--gold);
}

.featured-membership-actions .btn-secondary:hover {
  background-color: rgba(199,165,74,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(199,165,74,0.18);
}

.featured-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ============================================
   MEMBERSHIP HIGHLIGHT (Homepage dark section)
   ============================================ */

section.membership-highlight-section {
  background-color: #152518;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(78,123,73,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(139,111,71,0.12) 0%, transparent 50%);
  padding: 5rem 0;
  text-align: center;
}

.membership-highlight-section .section-label-center {
  color: var(--gold);
}

.membership-highlight-section h2 {
  color: var(--text-inv);
}

.membership-highlight-section .section-divider {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.mh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}

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

.mh-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(199,165,74,0.2);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.mh-card:hover {
  border-color: rgba(199,165,74,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.mh-card--featured {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(199,165,74,0.5);
  border-top: 3px solid var(--gold);
}

.mh-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  align-self: flex-start;
}

.mh-card h3 {
  font-size: 1.15rem;
  color: var(--text-inv);
  margin-bottom: 0;
}

.mh-price {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.mh-price small {
  font-size: 0.95rem;
  color: rgba(199,165,74,0.6);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.mh-benefits {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.mh-benefits li {
  font-size: 0.9rem;
  color: rgba(243,235,210,0.75);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.mh-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.mh-trust {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: rgba(196,168,130,0.45);
  font-style: italic;
  text-align: center;
}

/* ============================================
   TESTIMONIALS — 3-COL HOMEPAGE MODIFIER
   ============================================ */

@media (min-width: 900px) {
  .testimonials-grid--3col {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   HERO — MOBILE SPACING
   ============================================ */

@media (max-width: 560px) {
  #hero {
    padding: 3.5rem 0 3.5rem;
  }
  #hero h1 {
    margin-bottom: 1.5rem;
  }
  .hero-sub {
    margin-bottom: 2.25rem;
  }
}

/* ============================================
   GUIDE LIBRARY PREVIEW (Category cards)
   ============================================ */

section.category-preview-section {
  padding: 5rem 0;
  background-color: var(--bg);
  text-align: center;
}

.category-preview-section h2 { margin-bottom: 0; }

.category-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

.category-preview-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-dark);
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 20px rgba(58,43,32,0.18);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.category-preview-card:hover {
  box-shadow: 0 14px 44px rgba(58,43,32,0.35);
  transform: translateY(-4px);
}

.category-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.category-preview-card:hover img {
  transform: scale(1.06);
}

.category-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,10,0.88) 0%, rgba(20,16,10,0.28) 55%, transparent 100%);
}

.category-preview-name {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-inv);
  letter-spacing: 0.02em;
  padding: 0 0.75rem;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.category-preview-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(199,165,74,0.75);
  font-style: normal;
}

