/* ============================================================================
   Lagoon Beauty — Homepage stylesheet
   Custom semantic HTML (BEM, lgn- prefix) for a Storefront child theme.
   Mobile-first. Base styles target mobile; @media (min-width:768px) upgrades
   to multi-column desktop layouts.
   Only .lgn-* selectors are styled — no global/theme elements are touched.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. ROOT / TOKENS
   Brand tokens defined on the article so the whole subtree inherits them.
---------------------------------------------------------------------------- */
.lgn-home {
  --lgn-gold: #c9a96e;        /* gold primary */
  --lgn-gold-dark: #8c734a;   /* gold dark */
  --lgn-gold-tint: #f5efe4;   /* light gold tint for icon circles */
  --lgn-text: #333333;        /* body text */
  --lgn-muted: #666666;       /* muted/secondary text */
  --lgn-alt-bg: #faf8f4;      /* light alt background */
  --lgn-white: #ffffff;
  --lgn-border: #ececec;      /* border light */
  --lgn-shadow: 0 2px 14px rgba(51, 51, 51, 0.06);
  --lgn-shadow-hover: 0 8px 26px rgba(201, 169, 110, 0.16);

  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.8;
  color: var(--lgn-text);
  font-family: inherit; /* system stack from theme */
  box-sizing: border-box;
}

.lgn-home *,
.lgn-home *::before,
.lgn-home *::after {
  box-sizing: border-box;
}

/* Media never overflows on small viewports */
.lgn-home img,
.lgn-home iframe {
  max-width: 100%;
}

/* ----------------------------------------------------------------------------
   2. SECTIONS & HEADINGS
---------------------------------------------------------------------------- */
.lgn-section {
  padding: 3em 0;
}

/* Full-bleed light alt background. Negative margin breaks out of the 20px
   side padding of .lgn-home, then re-pads inside so content stays aligned. */
.lgn-section--alt {
  background: var(--lgn-alt-bg);
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
}

.lgn-home h2,
.lgn-section h2 {
  text-align: center;
  color: var(--lgn-gold);
  font-size: 24px;       /* mobile */
  line-height: 1.3;
  margin: 0 0 .5em;
  font-weight: 700;
}

.lgn-home h3 {
  color: var(--lgn-text);
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 .5em;
  font-weight: 700;
}

.lgn-section__lead {
  text-align: center;
  color: var(--lgn-muted);
  max-width: 720px;
  margin: 0 auto 2em;
  font-size: 16px;
}

.lgn-section__lead em {
  font-style: italic;
  color: var(--lgn-text);
}

/* ----------------------------------------------------------------------------
   3. BUTTONS
---------------------------------------------------------------------------- */
.lgn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none !important;  /* beat Storefront link defaults */
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.lgn-btn--primary {
  background: var(--lgn-gold);
  color: var(--lgn-white) !important;
  border-color: var(--lgn-gold);
}
.lgn-btn--primary:hover,
.lgn-btn--primary:focus {
  background: var(--lgn-gold-dark);
  border-color: var(--lgn-gold-dark);
  color: var(--lgn-white) !important;
}

.lgn-btn--ghost {
  background: transparent;
  color: var(--lgn-gold) !important;
  border: 1px solid var(--lgn-gold);
}
.lgn-btn--ghost:hover,
.lgn-btn--ghost:focus {
  background: var(--lgn-gold);
  color: var(--lgn-white) !important;
}

/* ----------------------------------------------------------------------------
   4. HERO
---------------------------------------------------------------------------- */
.lgn-hero {
  text-align: center;
  padding: 2.5em 0 3em;
}

/* Regulile vechi .lgn-hero__img-top (cutout 420px) eliminate — homepage foloseste .lgn-hero__banner (in style.css). */

.lgn-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--lgn-muted);
  margin: 0 0 14px;
}

.lgn-badge {
  display: inline-block;
  background: var(--lgn-gold);
  color: var(--lgn-white);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 8px;
  vertical-align: middle;
}

.lgn-hero__title {
  font-size: 28px;       /* mobile */
  line-height: 1.25;
  font-weight: 700;
  color: var(--lgn-text);
  margin: 0 0 .6em;
}
.lgn-hero__title span {
  color: var(--lgn-gold);
}

.lgn-hero__lead {
  font-size: 18px;
  color: var(--lgn-muted);
  max-width: 680px;
  margin: 0 auto 1.8em;
}
.lgn-hero__lead em {
  font-style: italic;
  color: var(--lgn-text);
}
.lgn-hero__lead strong {
  color: var(--lgn-text);
}

/* Stats — single column-ish flow on mobile, wraps */
.lgn-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 18px 12px;
  max-width: 920px;
  margin: 0 auto 2em;
}
.lgn-hero__stats > div {
  flex: 1 1 40%;
  min-width: 120px;
  text-align: center;
}
.lgn-hero__stats strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--lgn-gold);
  line-height: 1.1;
}
.lgn-hero__stats span {
  display: block;
  font-size: 13px;
  color: var(--lgn-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.lgn-hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}

.lgn-hero__trust {
  font-size: 13px;
  color: var(--lgn-muted);
  text-align: center;
  margin: 0 0 1.5em;
  line-height: 1.6;
}

/* Wide hero banner image */
.lgn-hero__img {
  margin: 1.5em auto 0;
  max-width: 960px;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.lgn-hero__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------------------------------------------
   5. TWO-COLUMN COMPARISON (salon vs clinic) — .lgn-twocol
   The HTML uses plain <div> children, so style the immediate children.
---------------------------------------------------------------------------- */
.lgn-twocol {
  display: grid;
  grid-template-columns: 1fr;  /* mobile: stacked */
  gap: 24px;
  margin: 0 0 1.5em;
}
.lgn-twocol > div {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--lgn-shadow);
}
.lgn-twocol h3 {
  font-size: 18px;
  margin: 0 0 14px;
}
/* First card = the "salon" (muted myth). Second = clinic (gold value). */
.lgn-twocol > div:first-child {
  background: var(--lgn-alt-bg);
  color: var(--lgn-muted);
  border-color: var(--lgn-border);
}
.lgn-twocol > div:first-child h3 {
  color: var(--lgn-muted);
}
.lgn-twocol > div:last-child {
  border-left: 4px solid var(--lgn-gold);
}
.lgn-twocol > div:last-child h3 {
  color: var(--lgn-gold-dark);
}

/* ----------------------------------------------------------------------------
   6. CHECK LISTS — .lgn-list / .lgn-list--muted
---------------------------------------------------------------------------- */
.lgn-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.lgn-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  line-height: 1.6;
}
.lgn-list li::before {
  content: "\2713"; /* ✓ */
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--lgn-gold);
  font-weight: 700;
}
.lgn-list--muted li {
  color: var(--lgn-muted);
}
.lgn-list--muted li::before {
  content: "\2014"; /* — */
  color: var(--lgn-muted);
  font-weight: 400;
}
.lgn-list a {
  color: var(--lgn-gold-dark);
}

/* ----------------------------------------------------------------------------
   7. GUARANTEES — .lgn-guarantees / .lgn-guarantee-grid / .lgn-guarantee
---------------------------------------------------------------------------- */
.lgn-guarantees {
  /* section wrapper — inherits .lgn-section spacing */
}
.lgn-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 0 0 2em;
}
.lgn-guarantee {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--lgn-shadow);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.lgn-guarantee:hover {
  border-color: var(--lgn-gold);
  transform: translateY(-2px);
  box-shadow: var(--lgn-shadow-hover);
}
.lgn-guarantee__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--lgn-gold-tint);
  color: var(--lgn-gold-dark);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}
.lgn-guarantee h3 {
  font-size: 17px;
  color: var(--lgn-gold-dark);
  margin: 0 0 10px;
}
.lgn-guarantee p {
  font-size: 14px;
  color: var(--lgn-text);
  margin: 0;
  line-height: 1.65;
}
.lgn-guarantees__footer {
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: var(--lgn-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------------------
   8. TREATMENT CATEGORY BLOCKS — .lgn-cat-block
---------------------------------------------------------------------------- */
.lgn-cat-block {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 24px;
  margin: 0 0 24px;
  box-shadow: var(--lgn-shadow);
}
.lgn-cat-block:last-child {
  margin-bottom: 0;
}
.lgn-cat-block > header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--lgn-gold);
}
.lgn-cat-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  background: var(--lgn-gold);
  color: var(--lgn-white);
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
}
.lgn-cat-block header h3 {
  margin: 0;
  font-size: 20px;
  color: var(--lgn-gold-dark);
}
.lgn-cat-block p {
  font-size: 15px;
  margin: 0 0 1em;
}
.lgn-cat-block p:last-child {
  margin-bottom: 0;
}
.lgn-cat-block strong {
  color: var(--lgn-text);
}

/* Rounded category image */
.lgn-cat-img {
  margin: 0 0 16px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.lgn-cat-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------------------------------------------
   9. TECHNOLOGY GRID — .lgn-tech-grid / .lgn-tech / .lgn-tech__role
---------------------------------------------------------------------------- */
.lgn-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.lgn-tech {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--lgn-shadow);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.lgn-tech:hover {
  border-color: var(--lgn-gold);
  transform: translateY(-2px);
  box-shadow: var(--lgn-shadow-hover);
}
.lgn-tech h3 {
  font-size: 17px;
  color: var(--lgn-gold-dark);
  margin: 0 0 4px;
}
.lgn-tech__role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lgn-gold);
  font-weight: 600;
  margin: 0 0 12px;
}
.lgn-tech p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* ----------------------------------------------------------------------------
   10. COMPARISON TABLE — .lgn-table-wrap / .lgn-table / .lgn-table__caption
---------------------------------------------------------------------------- */
.lgn-table-wrap {
  overflow-x: auto;             /* mobile horizontal scroll */
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  background: var(--lgn-white);
}
.lgn-table {
  width: 100%;
  min-width: 680px;             /* forces scroll on narrow screens */
  border-collapse: collapse;
  font-size: 14px;
}
.lgn-table thead {
  background: var(--lgn-gold);
}
.lgn-table th {
  color: var(--lgn-white);
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lgn-table td {
  padding: 12px 14px;
  border: 1px solid var(--lgn-border);
  vertical-align: top;
  line-height: 1.5;
}
.lgn-table tbody tr:nth-child(even) {
  background: var(--lgn-alt-bg);   /* zebra striping */
}
.lgn-table td:first-child {
  font-weight: 600;
  color: var(--lgn-text);
}
.lgn-table__caption {
  text-align: center;
  font-size: 13px;
  color: var(--lgn-muted);
  font-style: italic;
  margin: 16px 0 0;
}

/* ----------------------------------------------------------------------------
   11. VALUE / PRICE-QUALITY — .lgn-value
   HTML uses .lgn-value as a grid wrapper with plain <div> children (cards).
---------------------------------------------------------------------------- */
.lgn-value {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.lgn-value > div {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-left: 4px solid var(--lgn-gold);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--lgn-shadow);
}
.lgn-value h3 {
  font-size: 17px;
  color: var(--lgn-gold-dark);
  margin: 0 0 10px;
}
.lgn-value p {
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
}
.lgn-value strong {
  color: var(--lgn-gold-dark);
}

/* ----------------------------------------------------------------------------
   12. STEPS — .lgn-steps (ordered, numbered cards)
---------------------------------------------------------------------------- */
.lgn-steps {
  list-style: none;
  counter-reset: lgn-step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.lgn-steps > li {
  position: relative;
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 26px 22px 22px;
  box-shadow: var(--lgn-shadow);
}
.lgn-steps > li::before {
  counter-increment: lgn-step;
  content: counter(lgn-step);
  position: absolute;
  top: -16px;
  left: 22px;
  width: 34px;
  height: 34px;
  background: var(--lgn-gold);
  color: var(--lgn-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.lgn-steps strong {
  display: block;
  font-size: 16px;
  color: var(--lgn-gold-dark);
  margin: 0 0 8px;
}
.lgn-steps p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* ----------------------------------------------------------------------------
   13. AUDIENCE — .lgn-audience (two persona cards)
---------------------------------------------------------------------------- */
.lgn-audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.lgn-audience > div {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--lgn-shadow);
}
.lgn-audience h3 {
  font-size: 18px;
  color: var(--lgn-gold-dark);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lgn-gold);
}

/* ----------------------------------------------------------------------------
   14. TRUST — .lgn-trust (E-A-T cards)
---------------------------------------------------------------------------- */
.lgn-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.lgn-trust > div {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--lgn-shadow);
}
.lgn-trust h3 {
  font-size: 16px;
  color: var(--lgn-gold-dark);
  margin: 0 0 8px;
}
.lgn-trust p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* ----------------------------------------------------------------------------
   15. REVIEWS — .lgn-reviews (Trustindex shortcode wrapper)
---------------------------------------------------------------------------- */
.lgn-reviews {
  text-align: center;
}
.lgn-reviews .lgn-section__lead {
  margin-bottom: 1.5em;
}

/* ----------------------------------------------------------------------------
   16. LOCATION — .lgn-location / __info / __map / map-embed / map-btns
---------------------------------------------------------------------------- */
.lgn-location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.lgn-location__info,
.lgn-location__map {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--lgn-shadow);
}
.lgn-location h3 {
  font-size: 16px;
  color: var(--lgn-gold-dark);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lgn-gold);
}
.lgn-location h3 + h3,
.lgn-location .lgn-list + h3 {
  margin-top: 22px;
}
.lgn-location__info a {
  color: var(--lgn-gold-dark);
}

/* Responsive iframe map wrapper (fixed-height variant, robust). */
.lgn-map-embed {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 16px;
  box-shadow: var(--lgn-shadow);
}
.lgn-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.lgn-map-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.lgn-map-btns .lgn-btn {
  font-size: 14px;
  padding: 10px 18px;
}

/* ----------------------------------------------------------------------------
   17. MYTHS vs REALITY — .lgn-myth
---------------------------------------------------------------------------- */
.lgn-myth {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-left: 4px solid var(--lgn-gold);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 0 0 16px;
  box-shadow: var(--lgn-shadow);
}
.lgn-myth h3 {
  font-size: 16px;
  color: var(--lgn-gold-dark);
  margin: 0 0 8px;
}
.lgn-myth p {
  font-size: 14px;
  color: var(--lgn-text);
  margin: 0;
  line-height: 1.65;
}

/* ----------------------------------------------------------------------------
   18. AFTERCARE — .lgn-aftercare
---------------------------------------------------------------------------- */
.lgn-aftercare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.lgn-aftercare > div {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--lgn-shadow);
}
.lgn-aftercare h3 {
  font-size: 16px;
  color: var(--lgn-gold-dark);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lgn-gold);
}

/* ----------------------------------------------------------------------------
   19. FAQ — .lgn-faq / .lgn-q  (<details>/<summary> with inner <h3>)
---------------------------------------------------------------------------- */
.lgn-q {
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  margin: 0 0 12px;
  overflow: hidden;
  box-shadow: var(--lgn-shadow);
}
.lgn-q summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 52px 18px 22px;
}
.lgn-q summary::-webkit-details-marker {
  display: none;
}
.lgn-q summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lgn-gold);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.lgn-q[open] summary::after {
  content: "\2212"; /* − */
}
.lgn-q summary h3 {
  display: inline;
  font-size: 16px;
  color: var(--lgn-gold-dark);
  margin: 0;
}
.lgn-q p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--lgn-text);
  line-height: 1.7;
}
.lgn-q a {
  color: var(--lgn-gold-dark);
}

/* ----------------------------------------------------------------------------
   20. GLOSSARY — .lgn-glossary (<dl>)
---------------------------------------------------------------------------- */
.lgn-glossary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--lgn-white);
  border: 1px solid var(--lgn-border);
  border-radius: 10px;
  padding: 24px;
  margin: 0;
  box-shadow: var(--lgn-shadow);
}
.lgn-glossary dt {
  color: var(--lgn-gold-dark);
  font-weight: 700;
  font-size: 15px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--lgn-border);
}
.lgn-glossary dt:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.lgn-glossary dd {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--lgn-text);
  line-height: 1.6;
}

/* ----------------------------------------------------------------------------
   21. FINAL CTA — .lgn-cta-final (full-width gold band)
---------------------------------------------------------------------------- */
.lgn-cta-final {
  text-align: center;
  background: linear-gradient(135deg, var(--lgn-gold) 0%, var(--lgn-gold-dark) 100%);
  color: var(--lgn-white);
  border-radius: 12px;
  padding: 3em 24px;
  margin-top: 3em;
}
.lgn-cta-final h2 {
  color: var(--lgn-white);
}
.lgn-cta-final p {
  color: var(--lgn-white);
  max-width: 640px;
  margin: 0 auto 1.6em;
  font-size: 16px;
}
.lgn-cta-final strong {
  color: var(--lgn-white);
}
/* White button with gold text on the gold band */
.lgn-cta-final .lgn-btn--primary {
  background: var(--lgn-white);
  color: var(--lgn-gold-dark) !important;
  border-color: var(--lgn-white);
}
.lgn-cta-final .lgn-btn--primary:hover {
  background: var(--lgn-text);
  color: var(--lgn-white) !important;
  border-color: var(--lgn-text);
}
.lgn-cta-final .lgn-btn--ghost {
  border-color: var(--lgn-white);
  color: var(--lgn-white) !important;
}
.lgn-cta-final .lgn-btn--ghost:hover {
  background: var(--lgn-white);
  color: var(--lgn-gold-dark) !important;
}

/* ----------------------------------------------------------------------------
   22. INLINE LINK — .lgn-link
---------------------------------------------------------------------------- */
.lgn-link {
  color: var(--lgn-gold-dark) !important;  /* beat Storefront link color */
  text-decoration: none;
  font-weight: 600;
}
.lgn-link:hover,
.lgn-link:focus {
  color: var(--lgn-gold-dark) !important;
  text-decoration: underline;
}

/* ============================================================================
   23. RESPONSIVE — TABLET / DESKTOP UPGRADES (min-width:768px)
   ============================================================================ */
@media (min-width: 768px) {
  .lgn-section {
    padding: 4em 0;
  }
  .lgn-home h2,
  .lgn-section h2 {
    font-size: 30px;
  }

  /* Hero */
  .lgn-hero__title {
    font-size: 40px;
  }
  .lgn-hero__stats > div {
    flex: 0 1 auto;
    min-width: 130px;
  }
  .lgn-hero__stats strong {
    font-size: 30px;
  }

  /* Two-column comparison side by side */
  .lgn-twocol {
    grid-template-columns: 1fr 1fr;
  }

  /* Steps as a 2-up grid on tablet */
  .lgn-steps {
    grid-template-columns: 1fr 1fr;
  }

  /* Audience side by side */
  .lgn-audience {
    grid-template-columns: 1fr 1fr;
  }

  /* Glossary two columns */
  .lgn-glossary {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }

  /* Location: info + map side by side */
  .lgn-location {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  /* Wider alt-section full bleed for centered 1140 layout */
  .lgn-section--alt {
    border-radius: 0;
  }
}

/* Larger desktop: steps as 4-up row */
@media (min-width: 1024px) {
  .lgn-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .lgn-cat-img img {
    max-height: none;
  }
}

/* ============================================================================
   24. EXTRA-SMALL SAFETY (<=400px) — prevent any horizontal overflow
   ============================================================================ */
@media (max-width: 400px) {
  .lgn-hero__title {
    font-size: 26px;
  }
  .lgn-home h2,
  .lgn-section h2 {
    font-size: 22px;
  }
  .lgn-hero__cta .lgn-btn,
  .lgn-map-btns .lgn-btn {
    width: 100%;
  }
  .lgn-hero__stats > div {
    flex-basis: 45%;
  }
}
