/* ================================================================
   Living Alive — Custom Stylesheet
   Fonts: Cormorant Garamond (headings) · Lato (body) · Dancing Script (accent)
   ================================================================ */

/* ── 1. CSS Variables ──────────────────────────────────────────── */
:root {
  --la-green:         #6b7a3d;
  --la-green-light:   #8c9e51;
  --la-green-dark:    #4d5928;
  --la-green-pale:    #e8edd6;
  --la-rose:          #c4848a;
  --la-rose-light:    #d9a8ad;
  /* Rose is a 2.99:1 pairing with white — fine as a fill or for large display
     type, not for button labels or small text. These two carry rose's character
     at a contrast that passes AA: rose-dark on light grounds (5.23:1),
     rose-on-dark on the green banners (5.24:1). */
  --la-rose-on-dark:  #ecd0d3;
  --la-rose-dark:     #9a5a62;
  --la-rose-pale:     #f5e8ea;
  --la-cream:         #f9f6f1;
  --la-cream-dark:    #ede7dc;
  --la-text:          #3d3528;
  --la-text-light:    #7a6e63;
  --la-border:        #ddd5c8;
  --la-white:         #ffffff;
  --la-overlay:       rgba(45, 38, 20, 0.52);

  --font-heading: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 4px 20px rgba(61, 53, 40, 0.10);
  --shadow-lg: 0 8px 40px rgba(61, 53, 40, 0.16);
  --transition: 0.25s ease;
}

/* ── 2. Base Reset & Global ────────────────────────────────────── */

/* Skip link: off-screen until focused, then pinned to the top-left. Without it
   a keyboard user tabs the whole header on every page before reaching content. */
.la-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 12px 20px;
  background: var(--la-white);
  color: var(--la-green-dark);
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
  box-shadow: var(--shadow);
}
.la-skip-link:focus {
  left: 0;
  color: var(--la-green-dark);
}

/* One visible focus ring for everything that takes keyboard focus. Components
   below may restyle it, but nothing should end up with no indicator at all. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--la-rose-dark);
  outline-offset: 2px;
  border-radius: 2px;
}
#la-navbar a:focus-visible,
.la-page-banner a:focus-visible,
.btn-la-outline-white:focus-visible {
  outline-color: var(--la-white);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--la-text);
  background-color: var(--la-cream);
}

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

a {
  color: var(--la-green-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--la-text); }
/* Body copy links carry an underline on hover as well as a colour shift, so the
   state doesn't rely on colour alone. */
.entry-content a:hover,
.entry-content a:focus-visible { text-decoration: underline; }

/* ── 3. Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--la-text);
  margin-top: 0;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.script-text {
  font-family: var(--font-script);
  font-weight: 400;
}

.section-label {
  display: block;
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--la-rose-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-align: center;
} 

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--la-text);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--la-text-light);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── 4. Layout & Wrappers ──────────────────────────────────────── */
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 100%;
}

.la-section {
  padding: 80px 0;
  padding-top: 60px;
}

.la-section--cream     { background-color: var(--la-cream); }
.la-section--white     { background-color: var(--la-white); }
.la-section--dark      { background-color: var(--la-green-dark); }
.la-section--pale-green { background-color: var(--la-green-pale); }
.la-section--pale-rose  { background-color: var(--la-rose-pale); }

.la-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.la-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Divider ornament */
.la-ornament {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin: 1rem 0 1.5rem;
  color: var(--la-rose);
}
.la-ornament::before,
.la-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--la-rose-light);
}

/* ── 5. Buttons ────────────────────────────────────────────────── */
.btn-la,
.btn-la-outline,
.btn-la-rose {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  /* Labels are editable, so let a long one wrap rather than overflow. */
  white-space: normal;
}

.btn-la {
  background-color: var(--la-green);
  color: var(--la-white);
  border-color: var(--la-green);
}
.btn-la:hover {
  background-color: var(--la-green-dark);
  border-color: var(--la-green-dark);
  color: var(--la-white);
}

.btn-la-outline {
  background-color: transparent;
  color: var(--la-green);
  border-color: var(--la-green);
}
.btn-la-outline:hover {
  background-color: var(--la-green);
  color: var(--la-white);
}

.btn-la-rose {
  background-color: var(--la-rose-dark);
  color: var(--la-white);
  border-color: var(--la-rose-dark);
}
.btn-la-rose:hover {
  filter: brightness(0.88);
  color: var(--la-white);
}

.btn-la-white {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  background-color: var(--la-white);
  color: var(--la-green-dark);
  border: 2px solid var(--la-white);
}
.btn-la-white:hover {
  background-color: transparent;
  color: var(--la-white);
  border-color: var(--la-white);
}

.btn-la-outline-white {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  background-color: transparent;
  color: var(--la-white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-la-outline-white:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--la-white);
  color: var(--la-white);
}

/* ── 6. Site Header ────────────────────────────────────────────── */
#site-header {
  position: relative;
  z-index: 1000;
}

/* Top bar with social icons */
.la-topbar {
  background-color: var(--la-green-dark);
  padding: 6px 0;
}
.la-topbar .la-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}
.la-topbar a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.la-topbar a:hover { color: var(--la-white); }
.la-topbar .social-icons {
  display: flex;
  gap: 4px;
}
.la-topbar .social-icons a {
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Logo strip */
.la-logo-strip {
  background-color: var(--la-cream);
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid var(--la-border);
}
.la-logo-strip a {
  display: inline-block;
}
.la-logo-strip img {
  max-height: 150px;
  width: auto;
  display: inline-block;
}
.la-logo-strip .site-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--la-green);
  letter-spacing: 0.02em;
}

/* Sticky Navigation */
#la-navbar {
  background-color: var(--la-green-dark);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background-color var(--transition), box-shadow var(--transition);
}
#la-navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
#la-navbar .navbar {
  padding: 0;
  background: transparent !important;
}
#la-navbar .container {
  max-width: 1160px;
}
#la-navbar .navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 18px 14px;
  transition: color var(--transition);
  position: relative;
}
#la-navbar .navbar-nav .nav-link:hover {
  color: var(--la-white) !important;
}
/* Current page, or the section a single post/episode/video belongs to. The
   text-colour shift alone was too slight to read against the bar. */
#la-navbar .navbar-nav .nav-link.active {
  color: var(--la-white) !important;
  background-color: rgba(255, 255, 255, 0.12);
}
.la-nav-cta {
  padding: 10px 24px;
  font-size: 0.78rem;
  margin-left: 12px;
  align-self: center;
}
.la-nav-cta:hover {
  background-color: var(--la-rose-dark);
}
#la-navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 10px;
  right: 14px;
  height: 1px;
  background: var(--la-rose);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
#la-navbar .navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* Dropdowns */
#la-navbar .dropdown-menu {
  background-color: var(--la-white);
  border: none;
  border-top: 3px solid var(--la-rose);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 200px;
}
#la-navbar .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--la-text) !important;
  padding: 9px 20px;
  transition: background-color var(--transition), color var(--transition);
}
#la-navbar .dropdown-item:hover,
#la-navbar .dropdown-item:focus,
#la-navbar .dropdown-item.active,
#la-navbar .dropdown-item:active {
  background-color: var(--la-green-pale);
  color: var(--la-green-dark) !important;
}

/* ── 7. Animated Mobile Toggler ────────────────────────────────── */
.site-toggler {
  position: relative;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  width: 49px;
  height: 49px;
  padding: 0;
  margin: 0;
  color: #ffffff;
  border-radius: var(--radius);
}
.site-toggler span {
  display: block;
  height: 1px;
  width: 30px;
  background: #ffffff;
  transition: all 0.15s ease;
  position: absolute;
  right: 8px;
  transform: rotate(0deg);
}
.site-toggler span:first-child {
  width: 30px;
  top: 18px;
}
.site-toggler span:last-child {
  width: 20px;
  top: 27px;
}
.site-toggler[aria-expanded="true"] span {
  top: 23px;
}
.site-toggler[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}
.site-toggler[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
  width: 30px;
}
#la-navbar .navbar-toggler.site-toggler {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: inherit;
  line-height: 1;
  box-shadow: none;
}
#la-navbar .navbar-toggler.site-toggler:focus,
#la-navbar .navbar-toggler.site-toggler:hover {
  box-shadow: none;
  outline: none;
}
#la-navbar .navbar-toggler.site-toggler:focus-visible {
  outline: 2px solid var(--la-rose-light);
  outline-offset: 2px;
}

/* ── 8. Hero Section ───────────────────────────────────────────── */
.la-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--la-green-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.la-hero::after {
  content: '';
  position: absolute;
  inset: -12px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  z-index: 0;
}
.la-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 75%);
  z-index: 1;
}
.la-hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 860px;
  margin: 0 auto;
}
.la-hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--la-rose-light);
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.la-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--la-white);
  line-height: 1.18;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.la-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.2rem;
  line-height: 1.7;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.la-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 9. Inner Page Banner ──────────────────────────────────────── */
.la-page-banner {
  background-color: var(--la-green-dark);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 70px 0 60px;
  text-align: center;
}
.la-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--la-banner-overlay, rgba(45, 38, 20, 0.45));
}
.la-page-banner__content {
  position: relative;
  z-index: 1;
}
.la-page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--la-white);
  margin: 0 0 0.5rem;
}
.la-page-banner .breadcrumb {
  justify-content: center;
  background: none;
  padding: 0;
  margin: 0;
}
.la-page-banner .breadcrumb-item,
.la-page-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.la-page-banner .breadcrumb-item.active { color: var(--la-cream); }

/* ── 10. Body / Soul / Spirit Pillars ─────────────────────────── */
.la-pillars {
  background-color: var(--la-white);
}
.la-pillar-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.la-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.la-pillar-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  background-color: var(--la-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--la-green);
}
.la-pillar-card--rose .la-pillar-card__icon {
  background-color: var(--la-rose-pale);
  color: var(--la-rose-dark);
}
.la-pillar-card__title {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--la-green);
  margin-bottom: 0.6rem;
}
.la-pillar-card--rose .la-pillar-card__title { color: var(--la-rose-dark); }
.la-pillar-card__text {
  font-size: 0.95rem;
  color: var(--la-text-light);
  line-height: 1.8;
}

/* ── 11. Scripture / Quote Banner ─────────────────────────────── */
.la-scripture-banner {
  background-color: var(--la-green);
  padding: 70px 24px;
  text-align: center;
}
.la-scripture-banner blockquote {
  border: none;
  margin: 0;
  padding: 0;
}
.la-scripture-banner .quote-text {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--la-white);
  line-height: 1.4;
  display: block;
  margin-bottom: 1rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.la-scripture-banner .quote-ref {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--la-white);
}

/* ── 12. About Snippet ─────────────────────────────────────────── */
.la-about-snippet {
  background-color: var(--la-cream);
}
.la-about-snippet__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.la-about-snippet__image img {
  width: 100%;
  object-fit: cover;
}
.la-about-snippet__text {
  padding: 20px 0 20px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.la-about-snippet__text h2 { 
  margin-bottom: 1rem;
  align-self: center;
  text-align: center;
}
.la-about-snippet__text p {
  color: var(--la-text-light);
  line-height: 1.85;
  margin-bottom: 1.5rem;  
}

/* ── 13. Program Cards ─────────────────────────────────────────── */
.la-programs { background-color: var(--la-white); }
.la-program-card {
  background-color: var(--la-cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  border-bottom: 4px solid var(--la-green);
  border-right: 4px solid var(--la-green);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  text-align: center;
}
.la-program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.la-program-card__icon {
  font-size: 2rem;
  color: var(--la-green);
  margin-bottom: 1rem;
}
.la-program-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--la-green-dark);
  margin-bottom: 0.8rem;
}
.la-program-card__text {
  font-size: 0.95rem;
  color: var(--la-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.la-program-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--la-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.la-program-card__link:hover { color: var(--la-green-dark); }

.la-section.la-intro-split h2 {
  text-align: center;
}

/* ── 14. Blog Post Cards ──────────────────────────────────────── */
.la-blog-preview { background-color: var(--la-cream-dark); }
.la-post-card {
  background-color: var(--la-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.la-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.la-post-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.la-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.la-post-card:hover .la-post-card__thumb img { transform: scale(1.04); }
.la-post-card__thumb-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--la-green-pale), var(--la-rose-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--la-green);
  font-size: 2rem;
}
.la-post-card__body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.la-post-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--la-rose-dark);
  margin-bottom: 0.5rem;
  display: block;
}
.la-post-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.la-post-card__title a { color: inherit; }
.la-post-card__title a:hover { color: var(--la-green); }
.la-post-card__excerpt {
  font-size: 0.9rem;
  color: var(--la-text-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.2rem;
}
.la-post-card__meta {
  font-size: 0.78rem;
  color: var(--la-text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.la-post-card__meta a { color: inherit; }
.la-post-card__read-more {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--la-green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.6rem;
}
.la-post-card__read-more:hover { color: var(--la-green-dark); }

/* ── 15. CTA Banner ───────────────────────────────────────────── */
.la-cta-banner {
  background-image: linear-gradient(135deg, var(--la-green-dark) 0%, var(--la-rose-dark) 100%);
  padding: 80px 24px;
  text-align: center;
}
.la-cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--la-white);
  margin-bottom: 0.8rem;
}
.la-cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.la-cta-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 16. Podcast Cards ────────────────────────────────────────── */
.la-podcast-card {
  background-color: var(--la-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.la-podcast-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.la-podcast-card__thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--la-green-pale), var(--la-green));
}
.la-podcast-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.la-podcast-card__episode {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--la-rose);
  color: var(--la-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.la-podcast-card__body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.la-podcast-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: 0.5rem;
}
.la-podcast-card__duration {
  font-size: 0.78rem;
  color: var(--la-text-light);
  margin-bottom: 0.8rem;
}
.la-podcast-card__excerpt {
  font-size: 0.88rem;
  color: var(--la-text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.la-podcast-card audio {
  width: 100%;
  margin-top: auto;
  accent-color: var(--la-green);
}

/* ── 17. Video Cards ─────────────────────────────────────────── */
.la-video-card {
  background-color: var(--la-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.la-video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.la-video-card__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--la-green-dark);
}
.la-video-card__player video,
.la-video-card__player iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.la-video-card__body {
  padding: 20px 24px;
  flex: 1;
}
.la-video-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: 0.6rem;
}
.la-video-card__excerpt {
  font-size: 0.88rem;
  color: var(--la-text-light);
  line-height: 1.7;
}

/* ── 17b. Facebook Video Embeds ──────────────────────────────── */
.la-fb-video {
  position: relative;
  width: 100%;
  aspect-ratio: var(--la-fb-ratio, 16 / 9);
  background: #000;
  overflow: hidden;
}
.la-fb-video--fill {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}
.la-fb-video__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Facebook post embeds have no ratio to scale by — their height depends on the
   post's own content. The iframe keeps the pixel size Facebook measured and
   living-alive.js scales the whole thing down to fit narrower containers, so
   nothing reflows, is clipped, or gets stretched. The wrapper's height is set
   inline and updated to match the scale. */
.la-fb-post {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}
.la-fb-post__frame {
  flex: 0 0 auto;
  border: 0;
  display: block;
  transform-origin: top center;
}

/* "From Facebook" block on a single episode. */
.la-podcast-facebook__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--la-text-light);
  margin-bottom: 0.6rem;
}
.la-podcast-facebook__label i { color: #1877f2; }

/* "On Facebook" note on a podcast card. */
.la-podcast-card__facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--la-green-dark);
}
.la-podcast-card__facebook i { color: #1877f2; }
.la-podcast-card__facebook:hover { color: var(--la-rose-dark); }

/* ── 17c. Featured Video (homepage spotlight) ────────────────── */
.la-featured-video { background-color: var(--la-cream); }
.la-featured-video__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--la-green-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.la-featured-video__player video,
.la-featured-video__player iframe,
.la-featured-video__player embed,
.la-featured-video__player object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Undo WordPress's own oEmbed ratio wrapper. */
.la-featured-video__player .wp-embed-aspect-16by9,
.la-featured-video__player .wp-block-embed__wrapper {
  position: static;
  padding: 0;
  height: 100%;
}
/* White, so the panel doesn't disappear into this section's cream band. */
.la-featured-video .la-transcript {
  margin: 1.5rem 0 0;
  background: var(--la-white);
}
.la-featured-video .la-transcript > summary:hover { background: var(--la-cream); }

/* ── 18. Single Podcast / Video ──────────────────────────────── */
.la-single-audio-player {
  background: var(--la-green-pale);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 2rem;
}
.la-single-audio-player audio {
  width: 100%;
  accent-color: var(--la-green);
}
.la-single-episode-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--la-text-light);
}
.la-single-episode-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── 19. Contact Page ────────────────────────────────────────── */
/* Assessment CTA — sits between the intro copy and the contact details.
   A class rather than inline styles, so the hover state can actually win.
   Full width, so it reads as a distinct action rather than a third contact
   method; wraps instead of overflowing on narrow screens. */
.la-assessment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  white-space: normal;
  background-color: var(--la-rose-dark);
  border-color: var(--la-rose-dark);
  color: var(--la-white);
}
.la-assessment-btn:hover,
.la-assessment-btn:focus {
  background-color: var(--la-rose-dark);
  border-color: var(--la-rose-dark);
  color: var(--la-white);
  filter: brightness(0.88);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.la-assessment-btn:focus-visible {
  outline: 3px solid var(--la-rose-dark);
  outline-offset: 3px;
}
/* Quiet marker that the form opens on another site. */
.la-assessment-btn__ext {
  font-size: 0.72em;
  opacity: 0.7;
}
@media (prefers-reduced-motion: reduce) {
  .la-assessment-btn:hover,
  .la-assessment-btn:focus { transform: none; }
}

.la-contact-section { background-color: var(--la-cream); }
.la-contact-info { padding: 40px 40px 40px 0; }
.la-contact-info h2 { margin-bottom: 1rem; }
.la-contact-info p {
  color: var(--la-text-light);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.la-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--la-text);
}
.la-contact-detail .icon {
  color: var(--la-rose);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.la-contact-form-wrapper {
  background-color: var(--la-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.la-contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

/* Gravity Forms integration */
.gform_wrapper .gfield_label {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--la-text) !important;
  margin-bottom: 5px !important;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100% !important;
  padding: 11px 16px !important;
  border: 1px solid var(--la-border) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  color: var(--la-text) !important;
  background: var(--la-white) !important;
  transition: border-color var(--transition) !important;
  box-shadow: none !important;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus {
  outline: none !important;
  border-color: var(--la-green) !important;
  box-shadow: 0 0 0 3px rgba(107,122,61,0.12) !important;
}
.gform_wrapper .gfield { margin-bottom: 1rem !important; }
.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
  margin-top: 0.5rem !important;
  padding: 0 !important;
}
.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"] {
  background-color: var(--la-green) !important;
  color: var(--la-white) !important;
  border: 2px solid var(--la-green) !important;
  padding: 14px 34px !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: var(--radius) !important;
  cursor: pointer !important;
  transition: background-color var(--transition), border-color var(--transition) !important;
}
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper button[type="submit"]:hover {
  background-color: var(--la-green-dark) !important;
  border-color: var(--la-green-dark) !important;
}
.gform_wrapper .validation_error {
  border-color: var(--la-rose-dark) !important;
  background: var(--la-rose-pale) !important;
  color: var(--la-rose-dark) !important;
  border-radius: var(--radius) !important;
  padding: 10px 16px !important;
  font-size: 0.88rem !important;
}
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea {
  border-color: var(--la-rose-dark) !important;
}
.gform_wrapper .gfield_description.validation_message {
  color: var(--la-rose-dark) !important;
  font-size: 0.8rem !important;
}
.gform_confirmation_message {
  background: var(--la-green-pale);
  border-left: 3px solid var(--la-green);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--la-green-dark);
  font-size: 0.95rem;
}

/* ── 20. Footer ──────────────────────────────────────────────── */
#la-footer {
  background-color: var(--la-green-dark);
  border-top: 4px solid var(--la-rose);
  color: rgba(255,255,255,0.8);
}
.la-footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.la-footer-brand .la-footer-logo {
  max-height: 130px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.85);
}
.la-footer-brand .la-footer-tagline {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--la-cream);
  display: block;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.la-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.la-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.la-footer-social a:hover {
  background: var(--la-rose);
  color: var(--la-white);
}
.la-footer-col h4,
.footer-widget-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--la-white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.la-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.la-footer-col ul li { margin-bottom: 7px; }
.la-footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.la-footer-col ul li a:hover { color: var(--la-cream); background-color:transparent; }
.la-footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.la-footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.la-footer-col a:hover { color: var(--la-cream);}
.footer-btn:hover {background-color: #00000040 !important}
.la-footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.la-footer-bottom a { color: rgba(255,255,255,0.7); }
.la-footer-bottom a:hover { color: var(--la-cream); }
.footer-c3 {color: rgba(255, 255, 255, .6); text-decoration: none;}
.footer-c3:hover {color:#ffffff;}

/* ── 21. Page Content ────────────────────────────────────────── */
.la-page-content {
  padding: 60px 0;
  background-color: var(--la-cream);
}
.la-page-content .entry-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--la-green-dark);
  margin-bottom: 1.5rem;
}
.la-page-content .entry-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--la-text);
  max-width: 760px;
}
.la-page-content .entry-content h2,
.la-page-content .entry-content h3 {
  color: var(--la-green-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.la-page-content .entry-content p { margin-bottom: 1.2rem; }
.la-page-content .entry-content a { color: var(--la-green); text-decoration: underline; }
.la-page-content .entry-content a:hover { color: var(--la-green-dark); }
.la-page-content .entry-content ul,
.la-page-content .entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.la-page-content .entry-content li { margin-bottom: 0.4rem; }
.la-page-content .entry-content blockquote {
  border-left: 3px solid var(--la-rose);
  padding: 12px 20px;
  margin: 1.5rem 0;
  background: var(--la-rose-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--la-text-light);
}

/* ── 22. Blog Archive ────────────────────────────────────────── */
.la-archive { padding: 60px 0; background-color: var(--la-cream); }

/* ── 23. Single Post ─────────────────────────────────────────── */
.la-single-post { padding: 60px 0; background-color: var(--la-cream); }
.la-single-post .entry-header .breadcrumb {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.8rem;
}
.la-single-post .entry-header .breadcrumb-item,
.la-single-post .entry-header .breadcrumb-item a {
  color: var(--la-text-light);
}
.la-single-post .entry-header .breadcrumb-item a:hover { color: var(--la-green-dark); }
.la-single-post .entry-header .breadcrumb-item.active { color: var(--la-rose-dark); }
.la-single-post .entry-header .entry-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--la-text);
  margin-bottom: 1rem;
}
.la-single-post .entry-meta {
  font-size: 0.85rem;
  color: var(--la-text-light);
  margin-bottom: 2rem;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.la-single-post .featured-image {
  margin-bottom: 2rem;
  text-align: center;
  justify-self: center;
}
.la-single-post .featured-image img {
  max-width: 100%;
  max-height: min(70vh, 640px);
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  vertical-align: middle;
}
.la-single-post .entry-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--la-text);
  max-width: 760px;
}
/* Same reasoning as .featured-image img: cap by whichever edge binds first so a
   tall, narrow image can't run thousands of pixels down the page. */
.la-single-post .entry-content img {
  max-width: 100%;
  max-height: min(70vh, 640px);
  width: auto;
  height: auto;
  border-radius: var(--radius);
}
.la-single-post .entry-taxonomy {
  max-width: 760px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--la-border);
  font-size: 0.85rem;
  color: var(--la-text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.la-single-post .entry-taxonomy a {
  color: var(--la-green-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.la-single-post .entry-taxonomy a:hover { border-bottom-color: var(--la-green-dark); }

/* ── 23b. Author Bio ─────────────────────────────────────────── */
.la-author-bio {
  max-width: 760px;
  margin-top: 2.5rem;
  padding: 24px;
  background-color: var(--la-cream);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.la-author-bio__avatar img { border-radius: 50%; display: block; }
.la-author-bio__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--la-text);
  margin-bottom: .35rem;
}
.la-author-bio__desc {
  color: var(--la-text-light);
  line-height: 1.75;
  margin-bottom: .75rem;
}
@media (max-width: 575px) {
  .la-author-bio { flex-direction: column; align-items: center; text-align: center; }
}

/* ── 23c. Post Navigation ────────────────────────────────────── */
.la-post-nav {
  max-width: 760px;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--la-border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.la-post-nav a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--la-green-dark);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  max-width: 48%;
}
.la-post-nav a:hover { color: var(--la-rose-dark); }
.la-post-nav .la-post-nav__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--la-text-light);
}
.la-post-nav .la-post-nav__next { text-align: right; align-items: flex-end; margin-left: auto; }

/* ── 23d. Related Posts ──────────────────────────────────────── */
.la-related-posts { padding: 60px 0; background-color: var(--la-cream); }
.la-related-posts h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--la-text);
  margin-bottom: 2rem;
  text-align: center;
}

/* ── 23e. Comments ───────────────────────────────────────────── */
.la-comments {
  max-width: 760px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--la-border);
}
.la-comments__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--la-text);
  margin-bottom: 1.5rem;
}
.la-comments__list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.la-comment { margin-bottom: 1.5rem; }
.la-comment ul.la-comments__list,
.la-comment .children { list-style: none; padding-left: 28px; margin-top: 1.5rem; }
.la-comment__body { display: flex; gap: 16px; }
.la-comment__avatar img { border-radius: 50%; display: block; }
.la-comment__content { flex: 1; min-width: 0; }
.la-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: .35rem;
}
.la-comment__author {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--la-text);
}
.la-comment__date {
  font-size: 0.8rem;
  color: var(--la-text-light);
  text-decoration: none;
}
.la-comment__date:hover { color: var(--la-rose-dark); }
.la-comment__pending {
  display: block;
  font-size: 0.8rem;
  color: var(--la-rose-dark);
  margin-bottom: .5rem;
}
.la-comment__text { color: var(--la-text); line-height: 1.75; }
.la-comment__text p:last-child { margin-bottom: 0; }
.la-comment__reply { margin-top: .5rem; }
.la-comments__nav {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.la-comments__nav a { color: var(--la-green-dark); }
.la-comments__closed { color: var(--la-text-light); font-style: italic; }

/* Comment / contact form fields */
#commentform .la-form-group { margin-bottom: 1rem; }
#commentform .la-form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--la-text);
  margin-bottom: 5px;
}
#commentform input.form-control,
#commentform textarea.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--la-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--la-text);
  background: var(--la-white);
  transition: border-color var(--transition);
}
#commentform input.form-control:focus,
#commentform textarea.form-control:focus {
  outline: none;
  border-color: var(--la-green);
  box-shadow: 0 0 0 3px rgba(107,122,61,0.12);
}
#commentform .comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--la-text-light); }
#commentform .comment-notes { color: var(--la-text-light); margin-bottom: 1rem; }

/* ── 24. Back to Top ─────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background-color: var(--la-green);
  color: var(--la-white);
  border: 2px solid #232323;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background-color var(--transition);
  z-index: 900;
}
#back-to-top:hover { background-color: var(--la-green-dark); }
#back-to-top.visible { display: flex; }

/* ── 25. Utilities ───────────────────────────────────────────── */
.text-la-green { color: var(--la-green) !important; }
.text-la-rose  { color: var(--la-rose) !important; }
.bg-la-green   { background-color: var(--la-green) !important; }
.bg-la-rose    { background-color: var(--la-rose) !important; }
.bg-la-cream   { background-color: var(--la-cream) !important; }

/* ── 26. Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .la-section { padding: 40px 0; }

  #la-navbar .navbar-collapse {
    background-color: var(--la-green-dark);
    padding: 12px 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  #la-navbar .navbar-nav .nav-link { padding: 10px 12px; text-align: right; }
  #la-navbar .navbar-nav .nav-link::after { display: none; }
  .la-nav-cta {
    display: block;
    text-align: center;
    margin: 12px 0 0;
  }
  #la-navbar .dropdown-menu {
    background-color: rgba(0,0,0,0.2);
    border: none;
    border-left: 2px solid var(--la-rose);
    box-shadow: none;
    margin-left: 12px;
    border-radius: 0;
    padding: 4px 0;
  }
  #la-navbar .dropdown-item {
    color: rgba(255,255,255,0.78) !important;
    padding: 7px 16px;
    font-size: 0.82rem;
  }
  #la-navbar .dropdown-item:hover {
    background-color: rgba(255,255,255,0.08);
    color: var(--la-white) !important;
  }

  .la-about-snippet__text { padding: 30px 0 0; }
  .la-logo-strip img { max-height: 70px; }
  .btn-la,
  .btn-la-outline,
  .btn-la-rose,
  .btn-la-white,
  .btn-la-outline-white {text-align: center; width: 100% !important;}
}

@media (max-width: 767px) {
  .la-hero { min-height: 70vh; background-size: auto; }
  .la-page-banner { background-size: auto; }
  .la-about-snippet__image img { height: 450px; }
  .la-contact-info { padding: 0 0 32px; }
  .la-footer-main .row > div { margin-bottom: 32px; }
  .la-footer-bottom { flex-direction: column; text-align: center; }

  .la-section-header,
  .section-label,
  .section-heading,
  .section-intro,
  .la-pillar-card__title,
  .la-pillar-card__text {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .la-hero__buttons { flex-direction: column; align-items: center; }
  .la-cta-banner__buttons { flex-direction: column; align-items: center; }
}

/* ── 28. Numbered Process Steps ──────────────────────────────── */
.la-steps { 
  background-color: var(--la-white);
  padding: 25px 20px 0px 20px;
  border-radius: 5px;
}
.la-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  padding: 0px 0px 25px 0px;
}
.la-step:last-child { margin-bottom: 0; }
.la-step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--la-rose);
  color: var(--la-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 4.5px;
}
.la-step--green .la-step__num { background-color: var(--la-green); }
.la-step__body h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: 0.4rem;
}
.la-step__body p {
  font-size: 0.95rem;
  color: var(--la-text-light);
  line-height: 1.8;
  margin: 0;
}

/* Step connector line */
.la-steps-track {
  position: relative;
}
.la-steps-track::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 2.5rem;
  width: 2px;
  background: var(--la-border);
}

/* ── 29. FAQ Accordion ───────────────────────────────────────── */
.la-faq { background-color: var(--la-cream); }
.la-faq-item {
  border-bottom: 1px solid var(--la-border);
  padding: 5px 25px 5px 25px;
}
.la-faq-item:first-child { border-top: 1px solid var(--la-border); }
.la-faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--la-text);
  transition: color var(--transition);
}
.la-faq-btn:hover { color: var(--la-green); }
.la-faq-btn .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--la-green-pale);
  color: var(--la-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--transition), background var(--transition);
}
.la-faq-btn[aria-expanded="true"] .icon {
  transform: rotate(180deg);
  background: var(--la-green);
  color: var(--la-white);
}
.la-faq-body {
  font-size: 0.95rem;
  color: var(--la-text-light);
  line-height: 1.85;
  padding-bottom: 18px;
  width: 100%;
}
.la-faq-body p {
  margin: 0;
}

/* ── 30. Feature / Benefit List ─────────────────────────────── */
.la-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.la-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--la-border);
  font-size: 0.95rem;
  color: var(--la-text);
  line-height: 1.6;
}
.la-feature-list li:last-child { border-bottom: none; }
.la-feature-list .check {
  flex-shrink: 0;
  color: var(--la-green);
  font-size: 0.85rem;
  margin-top: 3px;
}
.la-feature-list--rose .check { color: var(--la-rose); }

/* ── 31. Outbound Link Cards ─────────────────────────────────── */
.la-link-card {
  background: var(--la-white);
  border: 2.5px solid var(--la-green);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.la-link-card:hover {
  border-color: var(--la-green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.la-link-card__icon {
  font-size: 1.6rem;
  color: var(--la-green);
  margin-bottom: 4px;
}
.la-link-card--rose .la-link-card__icon { color: var(--la-rose); }
.la-link-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--la-text);
  margin: 0;
}
.la-link-card__text {
  font-size: 0.9rem;
  color: var(--la-text-light);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}
.la-link-card__cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--la-green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.la-link-card--rose .la-link-card__cta { color: var(--la-rose-dark); }
.la-link-card__cta:hover { color: var(--la-green-dark); }

/* ── 32. Event Cards ─────────────────────────────────────────── */
.la-event-card {
  background: var(--la-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.la-event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.la-event-card__date {
  background: var(--la-rose);
  color: var(--la-white);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  text-align: center;
  flex-shrink: 0;
}
.la-event-card__date .month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.la-event-card__date .day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.la-event-card__date .year {
  font-size: 0.65rem;
  opacity: 0.75;
}
.la-event-card__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.la-event-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: 6px;
}
.la-event-card__title a { color: inherit; }
.la-event-card__title a:hover { color: var(--la-green); }
.la-event-card__meta {
  font-size: 0.82rem;
  color: var(--la-text-light);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── 33. Course Cards ────────────────────────────────────────── */
.la-course-card {
  background: var(--la-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.la-course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.la-course-card__thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--la-green-pale), var(--la-cream-dark));
}
.la-course-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.la-course-card__body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.la-course-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--la-green);
  margin-bottom: 0.5rem;
  display: block;
}
.la-course-card--rose .la-course-card__tag { color: var(--la-rose-dark); }
.la-course-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: 0.6rem;
}
.la-course-card__title a { color: inherit; }
.la-course-card__title a:hover { color: var(--la-green); }
.la-course-card__excerpt {
  font-size: 0.9rem;
  color: var(--la-text-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.2rem;
}
.la-course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--la-text-light);
  margin-top: auto;
}

/* ── 34. Product Cards ───────────────────────────────────────── */
.la-product-card {
  background: var(--la-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.la-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.la-product-card__img {
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--la-cream-dark), var(--la-green-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.la-product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.la-product-card__img .placeholder-icon { font-size: 3rem; color: var(--la-green); opacity: 0.5; }
.la-product-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.la-product-card__type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--la-rose-dark);
  margin-bottom: 0.4rem;
}
.la-product-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: 0.5rem;
}
.la-product-card__desc {
  font-size: 0.88rem;
  color: var(--la-text-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.2rem;
}
.la-product-card__body > p {
  font-size: 0.88rem;
  color: var(--la-text-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.2rem;
}
.la-product-card__body > a {
  margin-top: auto;
  align-self: flex-start;
}

/* ── 35. Media / Press Cards ─────────────────────────────────── */
.la-media-card {
  background: var(--la-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border-left: 3px solid var(--la-rose);
  transition: transform var(--transition), box-shadow var(--transition);
}
.la-media-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.la-media-card__outlet {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--la-rose-dark);
}
.la-media-card__headline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--la-text);
  margin: 0;
}
.la-media-card__headline a { color: inherit; }
.la-media-card__headline a:hover { color: var(--la-green); }
.la-media-card__meta {
  font-size: 0.8rem;
  color: var(--la-text-light);
  margin-top: auto;
}

/* ── 37. Bio / Me Page ───────────────────────────────────────── */
.la-bio-header {
  background: var(--la-cream);
  padding: 54px 0 60px;
}
.la-bio-header__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}
.la-bio-header__img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 991.98px) {
  .la-bio-header__img {
    max-width: 420px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .la-bio-header__img img {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}
.la-bio-header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 0 0 48px;
}
.la-bio-header__name {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--la-green);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.la-bio-header__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--la-rose-dark);
  margin-bottom: 1.5rem;
}
.la-bio-header__lead {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--la-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--la-rose);
  padding-left: 18px;
}
.la-bio-header__text {
  font-size: 0.95rem;
  color: var(--la-text-light);
  line-height: 1.85;
}
.la-bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}
.la-bio-credentials .badge {
  background: var(--la-green-pale);
  color: var(--la-green-dark);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── 38. Intro Split (image + content 2-col) ─────────────────── */
.la-intro-split { background: var(--la-cream); }
.la-intro-split__img {
  overflow: hidden;
}
.la-intro-split__img img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  min-height: 353px;
  background-color: #ffffff00;
  max-height: 700px;
}
.la-intro-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.la-intro-split__text p {
  color: var(--la-text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ── 39. Category Section Dividers ──────────────────────────── */
.la-category-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--la-text-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--la-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.la-category-heading::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--la-rose);
  flex-shrink: 0;
}

/* ── 40. Responsive additions ────────────────────────────────── */
@media (max-width: 767px) {
  .la-bio-header__content { padding: 28px 0 0; }
  .la-intro-split__text { padding-top: 24px; }
  .la-step { gap: 18px; }
  .la-event-card { flex-direction: column; }
  .la-event-card__date { flex-direction: row; gap: 8px; padding: 12px 20px; }

  .la-about-snippet__text,
  .la-about-snippet__text p,
  .la-intro-split__text,
  .la-intro-split__text p,
  .la-intro-split__text .entry-content,
  .la-split-text,
  .la-split-text p,
  .la-bio-header__content,
  .la-bio-header__name,
  .la-bio-header__title,
  .la-bio-header__lead,
  .la-bio-header__text {
    text-align: center !important;
  }
  .la-bio-header__lead { border-left: none; padding-left: 0; }
  .la-bio-credentials { justify-content: center; }
}

/* ── 41. Missing component additions ──────────────────────────── */

/* Small button variant */
.btn-la-sm {
  display: inline-block;
  background: var(--la-green);
  color: #fff;
  border: 2px solid var(--la-green);
  border-radius: var(--radius);
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-la-sm:hover {
  background: var(--la-green-dark);
  border-color: var(--la-green-dark);
  color: #fff;
}

/* la-link-card small variant */
.la-link-card--sm {
  padding: 20px 22px;
}
.la-link-card--sm h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
}
.la-link-card--sm p {
  font-size: .85rem;
}

/* la-link-card body (generic) */
.la-link-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.la-link-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: .5rem;
}
.la-link-card__body p {
  color: var(--la-text-light);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: .75rem;
}

/* la-course-card badge */
.la-course-card {
  position: relative;
}
.la-course-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-block;
  background: var(--la-rose);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.la-course-card__badge--green { background: var(--la-green-dark); }
.la-course-card__badge--rose  { background: var(--la-rose); }

/* la-course-card link */
.la-course-card__link {
  color: var(--la-green);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  display: inline-block;
  padding-top: .75rem;
}
.la-course-card__link:hover { color: var(--la-green-dark); }

/* la-media-card thumb */
.la-media-card__thumb {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--la-cream-dark);
}
.la-media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.la-media-card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--la-text-light);
  opacity: .35;
}

/* la-media-card body */
.la-media-card__body { padding: 22px 24px; }
.la-media-card__date {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--la-rose-dark);
  margin-bottom: .4rem;
}
.la-media-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: .5rem;
}
.la-media-card__desc {
  font-size: .875rem;
  color: var(--la-text-light);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.la-media-card__link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--la-green);
  text-decoration: none;
}
.la-media-card__link:hover { color: var(--la-green-dark); }

/* la-product-card thumb variant (icon-only placeholder) */
.la-product-card__thumb {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* la-shop-card */
.la-shop-card {
  background: var(--la-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.la-shop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.la-shop-card__thumb {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.la-shop-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.la-shop-card__body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.la-shop-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: .4rem;
}
.la-shop-card__desc {
  font-size: .875rem;
  color: var(--la-text-light);
  line-height: 1.7;
  margin-bottom: .75rem;
  flex: 1;
}
/* button inside card body always sticks to the bottom */
.la-shop-card__body .btn-la-sm {
  margin-top: auto;
  align-self: flex-start;
}
/* la-shop-tile (Shop page category tiles) */
.la-shop-tile {
  display: flex;
  flex-direction: column;
  background: var(--la-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}
.la-shop-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  text-decoration: none;
}
.la-shop-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  font-size: 2.4rem;
  color: var(--tile-accent, var(--la-green));
  background: var(--la-cream);
  border-left: 2.5px solid var(--tile-accent, var(--la-green));
  border-right: 2.5px solid var(--tile-accent, var(--la-green));
  border-top: 2.5px solid var(--tile-accent, var(--la-green));
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.la-shop-tile__body {
  padding: 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 2.5px solid var(--tile-accent, var(--la-green));
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}
.la-shop-tile__body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--la-text);
  margin-bottom: .5rem;
}
.la-shop-tile__body p {
  font-size: .875rem;
  color: var(--la-text-light);
  line-height: 1.7;
  margin-bottom: .75rem;
  flex: 1;
}
.la-shop-tile__cta {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--tile-accent, var(--la-green));
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

/* la-bio-credentials badges */
.la-bio-credentials {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.la-bio-credentials .badge {
  background: var(--la-cream-dark);
  color: var(--la-text);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--la-border);
  text-wrap: auto;
}

/* ── 28. 404 Page ────────────────────────────────────────────── */
.la-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--la-cream) 0%, var(--la-rose-light) 250%);
  text-align: center;
}
.la-404__content { max-width: 620px; margin: 0 auto; }
.la-404__icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 1.5rem;
  color: var(--la-rose);
  margin-bottom: 1rem;
}
.la-404__icons i:nth-child(2) { color: var(--la-rose-dark); transform: translateY(-6px); }
.la-404__icons i:nth-child(3) { color: var(--la-green); }
.la-404__script {
  display: block;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--la-rose-dark);
  margin-bottom: .25rem;
}
.la-404__title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 600;
  line-height: 1;
  color: var(--la-green);
  margin-bottom: .5rem;
}
.la-404__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--la-text);
  margin-bottom: 1rem;
}
.la-404__text {
  color: var(--la-text-light);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.la-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.la-404__search p {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--la-text-light);
  margin-bottom: .75rem;
}
.la-404__search .la-search-form .input-group { max-width: 380px; margin: 0 auto; }

/* ── 29. Search Form ─────────────────────────────────────────── */
.la-search-form .input-group {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--la-border);
  background: var(--la-white);
}
.la-search-form .form-control {
  border: none;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--la-text);
  flex: 1;
  background: transparent;
}
.la-search-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.la-search-form .btn-la {
  border-radius: 0;
  padding: 12px 20px;
}

@media (max-width: 575px) {
  .la-404__actions { flex-direction: column; align-items: center; }
  .la-404__actions .btn-la,
  .la-404__actions .btn-la-outline { width: 100%; max-width: 280px; }
}

/* ── 39. Transcripts ─────────────────────────────────────────── */
/* A disclosure rather than always-on text: the transcript is long, and most
   visitors want the player. It stays in the DOM either way, so screen readers
   and search engines always reach it. */
.la-transcript {
  margin: 2rem 0;
  border: 1px solid var(--la-border);
  border-radius: var(--radius-lg);
  background: var(--la-cream);
  overflow: hidden;
}
.la-transcript > summary {
  cursor: pointer;
  padding: 16px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--la-green-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
}
.la-transcript > summary::-webkit-details-marker { display: none; }
.la-transcript > summary::after {
  content: "\203a";
  margin-left: auto;
  font-size: 1.4rem;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform var(--transition);
}
.la-transcript[open] > summary::after { transform: rotate(-90deg); }
.la-transcript > summary:hover { background: var(--la-cream-dark); }
.la-transcript__body {
  padding: 18px 22px 22px;
  max-width: 100%;
  font-size: 0.95rem;
  border-top: 1px solid var(--la-border);
}

/* ── 40. Large screens ───────────────────────────────────────── */
/* Above the last Bootstrap breakpoint the layout stopped adapting: section
   padding and container width were fixed from 992px to 2560px alike. */
@media (min-width: 1400px) {
  .la-container { max-width: 1320px; }
  .la-section { padding-top: 110px; padding-bottom: 110px; }
  .la-page-banner__content { padding-top: 90px; padding-bottom: 90px; }
}
