/* ============================================================
   OYINLOLA AKINSANMI — Brand Website
   Design system + global styles
   Edit color/type tokens below to restyle the whole site.
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand colors */
  --parchment:   #F5F1E8;
  --green-lemon: #C8CB38;
  --white:       #FFFFFF;
  --black:       #000000;

  /* Supporting neutrals */
  --warm-taupe:  #B7A996;
  --soft-clay:   #D8C4B0;
  --deep-olive:  #6B6F2E;
  --muted-cream: #FBF8F1;
  --ink:         #1A1A17;   /* softened black for body text */
  --ink-soft:    #57534A;   /* muted body text */
  --line:        #E4DDCF;   /* hairline borders */

  /* Typography */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;
  --script:"Caveat", "Segoe Script", cursive;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 50px -24px rgba(0,0,0,0.28);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep-olive);
}
.script-accent {
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--deep-olive);
  line-height: 1;
}
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

/* ---------- 4. Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container--narrow { max-width: 820px; }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--cream { background: var(--muted-cream); }
.section--parchment { background: var(--parchment); }
.section--olive { background: var(--deep-olive); color: var(--muted-cream); }
.section--olive h2, .section--olive h3 { color: var(--white); }
.section--olive p { color: rgba(255,255,255,0.82); }
.section--black { background: var(--black); color: var(--parchment); }
.section--black h2 { color: var(--white); }
.section--black p { color: rgba(245,241,232,0.78); }
.text-center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.text-center { margin-left: auto; margin-right: auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--black); color: var(--parchment); }
.btn--primary:hover { background: var(--deep-olive); }
.btn--lemon { background: var(--green-lemon); color: var(--black); }
.btn--lemon:hover { background: #d5d84f; box-shadow: var(--shadow); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--parchment); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--black); }
.btn--ghost { padding-left: 0; padding-right: 0; color: var(--ink); border-bottom: 1.5px solid var(--ink); border-radius: 0; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-row.center { justify-content: center; }

/* ---------- 6. Announcement bar ---------- */
.announcement {
  background: var(--green-lemon); color: var(--black);
  text-align: center; font-size: 0.9rem; font-weight: 500;
  padding: 0.7rem var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
}
.announcement a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 7. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,241,232,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.brand-mark { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.05; }
.brand-mark span { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--deep-olive); font-weight: 600; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink); transition: color var(--transition); }
.nav-links a:hover { color: var(--deep-olive); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: var(--transition); }

@media (max-width: 1024px) {
  /* Remove the blur on mobile: backdrop-filter traps the fixed menu inside
     the short header, which caused the menu to overlap page content. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--parchment); }

  .brand-mark { font-size: 1.05rem; max-width: 62vw; }
  .brand-mark span { font-size: 0.56rem; }

  /* Full-screen opaque menu overlay — nothing behind can show through. */
  .nav-links {
    position: fixed; inset: 0; width: 100%; height: 100vh; height: 100dvh;
    background: var(--muted-cream);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 1.6rem; padding: 5rem 2rem 2rem; margin: 0;
    transform: translateX(100%); transition: transform var(--transition);
    z-index: 200; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.35rem; }

  .nav-toggle { display: flex; position: relative; z-index: 210; }
  .nav-cta .btn { display: none; }

  /* Animate hamburger into an X while the menu is open */
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Lock background scroll while the mobile menu is open */
body.menu-open { overflow: hidden; }

/* ---------- 8. Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-top: clamp(3rem, 6vw, 5.5rem); padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.hero h1 { margin: 1.2rem 0; }
.hero .lead { max-width: 34ch; }
.hero .btn-row { margin-top: 2rem; }
.hero .script-accent { margin-top: 1.75rem; }
.hero-visual {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--soft-clay), var(--warm-taupe) 55%, var(--deep-olive));
  position: relative; box-shadow: var(--shadow);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.hero-visual::after { content: "PHOTO: Oyin — warm editorial portrait"; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.28); padding: 0.4rem 0.7rem; border-radius: 3px; }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/11; order: -1; }
  .hero-visual::after { content: "PHOTO: Oyin"; }
}

/* ---------- 9. EASE cards / generic card grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem; transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3, .card h4 { margin-bottom: 0.6rem; }
.card p { font-size: 0.98rem; }
.card .btn { margin-top: auto; align-self: flex-start; }
.card .card-body + .btn, .card p + .btn { margin-top: 1.25rem; }

.ease-letter { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--green-lemon); font-weight: 600; margin-bottom: 0.6rem; -webkit-text-stroke: 1px var(--deep-olive); }
.ease-card { background: var(--muted-cream); }

/* Pathway cards */
.pathway-card .pathway-q { font-family: var(--serif); font-size: 1.35rem; line-height: 1.2; margin-bottom: 0.6rem; }
.pathway-card { position: relative; }
.pathway-num { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--warm-taupe); margin-bottom: 0.9rem; }

/* ---------- 10. Feature / offer split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.feature-visual { aspect-ratio: 5/4; border-radius: var(--radius-lg); background: linear-gradient(140deg, var(--green-lemon), var(--deep-olive)); box-shadow: var(--shadow); display: flex; align-items: flex-end; padding: 1.25rem; }
.feature-visual::after { content: "IMAGE placeholder"; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.55); }
.check-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.65rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--deep-olive); font-weight: 700; }
.section--olive .check-list li { color: rgba(255,255,255,0.85); }
.section--olive .check-list li::before { color: var(--green-lemon); }

/* ---------- 11. Testimonials ---------- */
.quote-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--line); }
.quote-card p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.quote-meta { margin-top: 1.25rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; color: var(--deep-olive); text-transform: uppercase; }

/* ---------- 12. Newsletter ---------- */
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.75rem; max-width: 560px; }
.newsletter-form input { flex: 1 1 180px; padding: 0.95rem 1.1rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--white); font-family: inherit; font-size: 0.98rem; }
.newsletter-form input:focus { outline: none; border-color: var(--deep-olive); }
.section--olive .newsletter-form input, .section--black .newsletter-form input { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); color: var(--white); }
.section--olive .newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }

/* ---------- 13. Footer ---------- */
.site-footer { background: var(--black); color: var(--parchment); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 2.5rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-lemon); margin-bottom: 1rem; }
.site-footer a { color: rgba(245,241,232,0.8); font-size: 0.95rem; display: block; padding: 0.28rem 0; transition: color var(--transition); }
.site-footer a:hover { color: var(--white); }
.footer-brand .brand-mark { color: var(--parchment); font-size: 1.5rem; }
.footer-phrase { font-family: var(--script); font-size: 1.5rem; color: var(--green-lemon); margin-top: 0.75rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 3rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.82rem; color: rgba(245,241,232,0.55); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { display: inline; }

/* ---------- 14. Page hero (interior pages) ---------- */
.page-hero { padding: clamp(3rem,6vw,5rem) 0 clamp(2rem,4vw,3rem); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 52ch; margin-top: 1.25rem; }

/* ---------- 15. Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn:hover, .card:hover { transform: none; } }

/* ---------- 16. Misc ---------- */
.pill { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--deep-olive); background: rgba(107,111,46,0.1); padding: 0.35rem 0.75rem; border-radius: 100px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.muted { color: var(--warm-taupe); font-size: 0.9rem; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq-item h4 { font-family: var(--serif); margin-bottom: 0.5rem; }

/* ---------- 17. Quiz ---------- */
.quiz-wrap { max-width: 720px; margin: 0 auto; }
.progress { height: 6px; background: var(--line); border-radius: 100px; overflow: hidden; margin-bottom: 2rem; }
.progress-bar { height: 100%; width: 0; background: var(--green-lemon); transition: width 0.4s ease; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fade 0.4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.quiz-q { font-family: var(--serif); font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 0.4rem; }
.quiz-count { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-taupe); font-weight: 600; margin-bottom: 1.5rem; }
.options { display: grid; gap: 0.75rem; margin-bottom: 2rem; }
.option {
  text-align: left; padding: 1.1rem 1.35rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--white); font-size: 1rem; color: var(--ink); transition: var(--transition); width: 100%;
  display: flex; align-items: center; gap: 0.85rem;
}
.option:hover { border-color: var(--deep-olive); }
.option.selected { border-color: var(--deep-olive); background: var(--muted-cream); box-shadow: inset 0 0 0 1px var(--deep-olive); }
.option .dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--warm-taupe); flex: 0 0 auto; transition: var(--transition); }
.option.selected .dot { border-color: var(--deep-olive); background: var(--green-lemon); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.quiz-back { color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; }
.quiz-back[disabled] { opacity: 0; pointer-events: none; }

.lead-form { display: grid; gap: 0.9rem; margin: 1.5rem 0; }
.lead-form input { padding: 0.95rem 1.1rem; border: 1.5px solid var(--line); border-radius: var(--radius); font-family: inherit; font-size: 1rem; background: var(--white); }
.lead-form input:focus { outline: none; border-color: var(--deep-olive); }

/* Wheel of life result bars */
.wheel-scores { display: grid; gap: 0.85rem; margin: 2rem 0; }
.score-row { display: grid; grid-template-columns: 150px 1fr 44px; align-items: center; gap: 1rem; }
@media (max-width: 560px){ .score-row { grid-template-columns: 110px 1fr 38px; gap: 0.6rem; font-size: 0.85rem; } }
.score-label { font-size: 0.9rem; font-weight: 600; }
.score-track { height: 12px; background: var(--line); border-radius: 100px; overflow: hidden; }
.score-fill { height: 100%; background: var(--green-lemon); border-radius: 100px; transition: width 0.8s ease; }
.score-fill.low { background: var(--soft-clay); }
.score-fill.mid { background: var(--warm-taupe); }
.score-num { font-weight: 700; text-align: right; font-size: 0.9rem; }

.result-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.75rem,4vw,2.75rem); box-shadow: var(--shadow); }
.result-card h2 { color: var(--deep-olive); margin-bottom: 0.5rem; }
.result-block { margin-top: 1.5rem; }
.result-block h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-taupe); margin-bottom: 0.4rem; }
.hidden { display: none !important; }

/* ---------- 18. FIX: card text inside dark sections ---------- */
/* Cards on olive/black backgrounds use a light card surface, so their
   text must stay dark (the section rule was making it near-invisible). */
.section--olive .card,
.section--black .card { color: var(--ink); }
.section--olive .card h3, .section--olive .card h4,
.section--black .card h3, .section--black .card h4 { color: var(--ink); }
.section--olive .card p,
.section--black .card p { color: var(--ink-soft); }
.section--olive .card .pathway-num,
.section--black .card .pathway-num { color: var(--deep-olive); }

/* ---------- 19. Quiz: note, consent, error ---------- */
.quiz-note { font-size: 0.9rem; color: var(--warm-taupe); margin: -0.25rem 0 1.25rem; font-style: italic; }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; cursor: pointer; }
.consent input { margin-top: 0.2rem; width: 18px; height: 18px; accent-color: var(--deep-olive); flex: 0 0 auto; }
.lead-error { display: none; color: #a3402c; font-size: 0.9rem; }

/* ---------- 20. EASE Reset Map (radar) + result extras ---------- */
.radar-wrap { display: flex; justify-content: center; margin: 0.5rem 0 1.5rem; }
.radar { width: 100%; max-width: 420px; height: auto; overflow: visible; }
.radar-ring { fill: none; stroke: var(--line); stroke-width: 1; }
.radar-axis { stroke: var(--line); stroke-width: 1; }
.radar-label { font-family: var(--sans); font-size: 12px; font-weight: 600; fill: var(--ink-soft); }
.radar-label.low { fill: var(--deep-olive); font-weight: 700; }
.radar-area { fill: rgba(200,203,56,0.35); stroke: var(--deep-olive); stroke-width: 2; stroke-linejoin: round; }
.radar-dot { fill: var(--deep-olive); }
.radar-dot.low { fill: #a3402c; }

.lowlight { background: var(--muted-cream); border-left: 3px solid var(--green-lemon); padding: 1.1rem 1.25rem; border-radius: 6px; }
.lowlight h4 { color: var(--deep-olive); }

/* ---------- Tier / pricing cards ---------- */
.tier-card { text-align: left; display: flex; flex-direction: column; }
.tier-card .tier-sub { font-family: var(--serif); font-style: italic; color: var(--deep-olive); margin: 0.15rem 0 0.6rem; }
.tier-card .tier-price { font-family: var(--serif); font-size: 1.85rem; line-height: 1.1; color: var(--ink); margin: 0.4rem 0 0.9rem; }
.tier-card .tier-price small { display: block; font-family: var(--sans); font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; margin-top: 0.3rem; }
.tier-list { list-style: none; margin: 0.25rem 0 1.4rem; padding: 0; }
.tier-list li { position: relative; padding-left: 1.3rem; font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.45rem; }
.tier-list li::before { content: "\25AA"; color: var(--green-lemon); position: absolute; left: 0; top: 0.05rem; }
.tier-card--featured { border: 2px solid var(--green-lemon); box-shadow: var(--shadow); }
.tier-flag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); background: var(--green-lemon); padding: 0.3rem 0.7rem; border-radius: 100px; margin-bottom: 0.9rem; align-self: flex-start; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.tag-row span { font-size: 0.85rem; font-weight: 500; color: var(--deep-olive); background: rgba(107,111,46,0.09); border: 1px solid var(--line); padding: 0.45rem 0.9rem; border-radius: 100px; }
.ease-rx { background: var(--deep-olive); color: var(--muted-cream); padding: 1.4rem 1.5rem; border-radius: var(--radius-lg); }
.ease-rx h4 { color: var(--green-lemon); }
.ease-rx p { color: rgba(255,255,255,0.9); }
.next-step-card { background: var(--black); color: var(--parchment); border-radius: var(--radius-lg); padding: 1.75rem; margin-top: 1.75rem; }
.next-step-card h3 { color: var(--white); }
.next-step-card p { color: rgba(245,241,232,0.82); }
.next-step-card .pill { background: rgba(200,203,56,0.2); color: var(--green-lemon); }

/* ---------- 21. Photos placed into hero/feature slots ---------- */
img.hero-visual, img.feature-visual { object-fit: cover; width: 100%; display: block; padding: 0; }
img.hero-visual { object-position: center 18%; }
img.feature-visual { object-position: center 22%; }
img.hero-visual::after, img.feature-visual::after { content: none; }
