/* ============================================================
   Look & Live Wellness Center — Joomla Template Stylesheet
   Version 1.0.0 | Joomla 4/5 Compatible
   ============================================================ */

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

:root {
  --ivory:      #F9F5EE;
  --ivory-dark: #EDE5D0;
  --green-deep: #163325;
  --green-mid:  #1F4D38;
  --green-sat:  #2E7D55;
  --sage:       #7BA68A;
  --gold:       #C4973A;
  --gold-light: #DEAD6B;
  --amber:      #E07B2A;
  --terracotta: #C4522D;
  --teal:       #1A6B6B;
  --cream-text: #6B5C42;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--ivory); color: var(--green-deep); overflow-x: hidden; font-weight: 300; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ── JOOMLA RESETS ── */
.mod-custom { margin: 0; }
.moduletable { margin: 0; padding: 0; }
.moduletable h3.module-title { display: none; }

/* ── NAV ── */
#lal-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3.5rem;
  background: rgba(22,51,37,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: padding .3s;
}
.lal-logo { font-family: var(--font-d); font-size: 1.45rem; font-weight: 500; color: var(--ivory); text-decoration: none; letter-spacing: .03em; }
.lal-logo em { font-style: normal; color: var(--gold-light); }

/* Joomla menu override */
#lal-nav .nav-menu ul,
#lal-nav ul.nav {
  display: flex; align-items: center; gap: 2.2rem;
  list-style: none; margin: 0; padding: 0;
  background: none; border: none;
}
#lal-nav .nav-menu ul li a,
#lal-nav ul.nav li a {
  font-family: var(--font-b);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; color: rgba(249,245,238,.65);
  transition: color .2s;
  background: none; border: none; padding: 0;
}
#lal-nav .nav-menu ul li a:hover,
#lal-nav ul.nav li a:hover { color: var(--gold-light); }
#lal-nav .nav-menu ul li.nav-donate a,
#lal-nav ul.nav li.nav-donate a {
  background: var(--gold); color: var(--green-deep) !important;
  padding: .5rem 1.4rem; border-radius: 2px;
}
#lal-nav .nav-menu ul li.nav-donate a:hover { background: var(--gold-light); }
#lal-nav .nav-menu ul li.active > a { color: var(--gold-light); }

/* ── HERO ── */
.lal-hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.lal-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center 30%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.0); } }
.lal-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,35,22,.75) 0%, rgba(15,35,22,.52) 50%, rgba(15,35,22,.85) 100%);
}
.lal-hero-content { position: relative; z-index: 2; padding: 10rem 2rem 6rem; max-width: 860px; }
.hero-eyebrow {
  display: inline-block; font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-light); font-weight: 500;
  border: 1px solid rgba(196,151,58,.4); padding: .4rem 1.2rem;
  border-radius: 2px; margin-bottom: 2.2rem;
}
.lal-hero-content h1 {
  font-family: var(--font-d); font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300; color: #fff; line-height: 1.05;
  letter-spacing: -.01em; margin-bottom: 2.2rem;
}
.lal-hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-verse {
  font-family: var(--font-d); font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic; color: rgba(255,255,255,.78); line-height: 1.9; margin-bottom: .8rem;
}
.hero-ref { font-size: .78rem; letter-spacing: .14em; color: var(--gold-light); margin-bottom: 3.5rem; font-weight: 500; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll hint */
.scroll-line {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.4); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; animation: linePulse 2.2s ease-in-out infinite;
}
.scroll-line::after { content: ''; width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(196,151,58,.6), transparent); }
@keyframes linePulse { 0%,100%{opacity:.4;transform:translateX(-50%) translateY(0)} 50%{opacity:.9;transform:translateX(-50%) translateY(6px)} }

/* ── BUTTONS ── */
.btn-solid, .btn-solid:visited {
  display: inline-block; background: var(--gold); color: var(--green-deep);
  padding: .95rem 2.6rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background .25s, transform .2s; border: none; cursor: pointer;
}
.btn-solid:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--green-deep); }
.btn-ghost, .btn-ghost:visited {
  display: inline-block; border: 1px solid rgba(255,255,255,.45); color: #fff;
  padding: .95rem 2.6rem; font-size: .8rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background .25s, transform .2s; cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); color: #fff; }
.btn-white, .btn-white:visited {
  display: inline-block; background: #fff; color: var(--teal);
  padding: .9rem 2.2rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background .25s, transform .2s;
}
.btn-white:hover { background: var(--ivory-dark); transform: translateY(-2px); color: var(--teal); }
.btn-teal-ghost, .btn-teal-ghost:visited {
  display: inline-block; border: 1px solid rgba(255,255,255,.4); color: #fff;
  padding: .9rem 2.2rem; font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background .25s, transform .2s;
}
.btn-teal-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); color: #fff; }
.btn-green { display: inline-block; background: var(--green-deep); color: var(--ivory); padding: .9rem 2.2rem; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background .25s, transform .2s; }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); color: var(--ivory); }

/* ── STATS ── */
.lal-stats {
  background: var(--green-mid); display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 3px solid var(--gold);
}
.stat-item { padding: 2.2rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-d); font-size: 3rem; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: .4rem; }
.stat-label { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(249,245,238,.6); font-weight: 500; }

/* ── SECTION LABELS ── */
.sec-label { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 1rem; display: block; }
.sec-title { font-family: var(--font-d); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--green-deep); line-height: 1.2; margin-bottom: 1.4rem; }
.sec-body { font-size: 1rem; color: var(--cream-text); line-height: 1.85; margin-bottom: 1.2rem; }

/* ── INTRO SPLIT ── */
.lal-intro { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.intro-photo { position: relative; overflow: hidden; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s ease; }
.intro-photo:hover img { transform: scale(1.04); }
.intro-badge { position: absolute; bottom: 2rem; left: 2rem; background: var(--gold); color: var(--green-deep); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .5rem 1.1rem; border-radius: 2px; }
.intro-text { background: var(--ivory-dark); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }

/* ── STEPS ── */
.lal-steps { background: var(--green-deep); padding: 7rem 2rem; }
.steps-inner { max-width: 1200px; margin: 0 auto; }
.steps-head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.steps-head .sec-label { color: var(--gold-light); }
.steps-head .sec-title { color: #fff; }
.steps-head p { color: rgba(249,245,238,.65); font-size: 1rem; line-height: 1.8; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.step-card { position: relative; overflow: hidden; display: block; text-decoration: none; color: inherit; min-height: 440px; }
.step-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.step-card:hover .step-card-bg { transform: scale(1.06); }
.step-card-overlay { position: absolute; inset: 0; transition: opacity .3s; }
.step-card:hover .step-card-overlay { opacity: .88; }
.step-card-body { position: relative; z-index: 2; padding: 3rem 2.5rem; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.step-num-big { font-family: var(--font-d); font-size: 6rem; font-weight: 300; color: rgba(255,255,255,.18); line-height: 1; position: absolute; top: 1.5rem; right: 2rem; }
.step-chip { display: inline-block; font-size: .67rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green-deep); background: var(--gold); padding: .3rem .9rem; border-radius: 1px; font-weight: 600; margin-bottom: 1rem; align-self: flex-start; }
.step-card h3 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 400; color: #fff; line-height: 1.25; margin-bottom: .9rem; }
.step-card p { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 1.5rem; }
.step-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); transition: gap .25s; }
.step-card:hover .step-link { gap: .9rem; }
.step-link::after { content: '→'; }
.step-1 .step-card-overlay { background: linear-gradient(to top, rgba(26,107,107,.9) 0%, rgba(22,51,37,.5) 100%); }
.step-2 .step-card-overlay { background: linear-gradient(to top, rgba(46,125,85,.9) 0%, rgba(22,51,37,.5) 100%); }
.step-3 .step-card-overlay { background: linear-gradient(to top, rgba(196,82,45,.88) 0%, rgba(22,51,37,.5) 100%); }

/* ── MOSAIC ── */
.lal-mosaic { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 320px 280px; gap: 3px; }
.mosaic-item { overflow: hidden; position: relative; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.5rem .9rem; background: linear-gradient(to top, rgba(22,51,37,.8), transparent); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(249,245,238,.85); font-weight: 500; }

/* ── BOOK ── */
.lal-book { background: var(--teal); padding: 7rem 2rem; }
.book-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.book-cover-wrap { position: relative; display: flex; justify-content: center; }
.book-cover { width: 260px; height: 360px; border-radius: 3px 10px 10px 3px; background: var(--green-deep); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2.5rem 2rem; text-align: center; box-shadow: -8px 0 0 rgba(0,0,0,.2), 16px 24px 50px rgba(0,0,0,.4); position: relative; overflow: hidden; }
.book-cover::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 7px; background: rgba(255,255,255,.07); border-radius: 0 3px 3px 0; }
.book-cover-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .25; }
.book-cover-content { position: relative; z-index: 1; }
.book-cross { font-family: var(--font-d); font-size: 3rem; color: var(--gold-light); margin-bottom: 1.2rem; display: block; font-style: italic; }
.book-title-text { font-family: var(--font-d); font-size: 1.6rem; font-weight: 400; color: #fff; line-height: 1.25; margin-bottom: .6rem; }
.book-author { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); }
.book-corner { position: absolute; bottom: -1.2rem; right: -1.2rem; width: 80px; height: 80px; border-radius: 50%; background: var(--amber); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-size: .6rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #fff; line-height: 1.4; box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.book-text .sec-label { color: var(--gold-light); }
.book-text .sec-title { color: #fff; }
.book-text .sec-body { color: rgba(249,245,238,.72); }
.book-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── QUOTE / GILEAD ── */
.lal-quote { position: relative; overflow: hidden; padding: 8rem 2rem; text-align: center; }
.quote-bg { position: absolute; inset: -60px; background-size: cover; background-position: center; background-attachment: fixed; }
.quote-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(196,82,45,.85) 0%, rgba(22,51,37,.88) 100%); }
.quote-content { position: relative; z-index: 2; }
.quote-mark { font-family: var(--font-d); font-size: 8rem; line-height: .6; color: rgba(255,255,255,.15); display: block; margin-bottom: .5rem; }
.quote-text { font-family: var(--font-d); font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 300; font-style: italic; color: #fff; max-width: 780px; margin: 0 auto 1.5rem; line-height: 1.5; }
.quote-attr { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; margin-bottom: 2.5rem; }

/* Video button */
.quote-video-btn {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; padding: .85rem 2rem; border-radius: 50px;
  font-family: var(--font-b); font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .25s, border-color .25s, transform .2s;
  backdrop-filter: blur(8px);
}
.quote-video-btn:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); transform: translateY(-2px); color: #fff; }
.quote-play-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 0 0 6px rgba(196,151,58,.25);
  transition: box-shadow .25s;
}
.quote-video-btn:hover .quote-play-icon { box-shadow: 0 0 0 10px rgba(196,151,58,.2); }
.quote-play-icon svg { width: 14px; height: 14px; fill: var(--green-deep); margin-left: 2px; }

/* Video modal */
.lal-modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,20,15,.88); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lal-modal-backdrop.open { display: flex; }
.lal-modal {
  position: relative; width: 90vw; max-width: 900px;
  background: #000; border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  overflow: hidden;
}
.lal-modal-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 1rem; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; font-family: var(--font-b); font-weight: 500;
  display: flex; align-items: center; gap: .4rem;
  transition: color .2s;
}
.lal-modal-close:hover { color: #fff; }
.lal-modal-close::before { content: '✕'; font-size: .9rem; }
.lal-modal-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.lal-modal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── PILLARS ── */
.lal-pillars { padding: 7rem 2rem; background: var(--ivory); }
.pillars-inner { max-width: 1100px; margin: 0 auto; }
.pillars-head { text-align: center; margin-bottom: 4rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.pillar-card { text-align: center; padding: 2.5rem 1.5rem; background: #fff; box-shadow: 0 2px 20px rgba(22,51,37,.06); transition: transform .3s, box-shadow .3s; }
.pillar-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(22,51,37,.12); }
.pillar-card:nth-child(1) { border-top: 3px solid var(--gold); }
.pillar-card:nth-child(2) { border-top: 3px solid var(--green-sat); }
.pillar-card:nth-child(3) { border-top: 3px solid var(--amber); }
.pillar-card:nth-child(4) { border-top: 3px solid var(--teal); }
.pillar-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.6rem; }
.pillar-card:nth-child(1) .pillar-icon { background: rgba(196,151,58,.12); }
.pillar-card:nth-child(2) .pillar-icon { background: rgba(46,125,85,.1); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(224,123,42,.1); }
.pillar-card:nth-child(4) .pillar-icon { background: rgba(26,107,107,.1); }
.pillar-title { font-family: var(--font-d); font-size: 1.3rem; font-weight: 500; color: var(--green-deep); margin-bottom: .6rem; }
.pillar-desc { font-size: .85rem; color: var(--cream-text); line-height: 1.75; }

/* ── SUBSCRIBE ── */
.lal-subscribe { position: relative; padding: 7rem 2rem; overflow: hidden; }
.sub-bg { position: absolute; inset: 0; background-image: url('../images/subscribe-bg.jpg'); background-size: cover; background-position: center 60%; }
.sub-overlay { position: absolute; inset: 0; background: rgba(237,229,208,.94); }
.sub-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; text-align: center; }
.sub-inner .sec-label { color: var(--amber); }
.sub-form { display: grid; grid-template-columns: 1fr 1fr; border: 1.5px solid rgba(196,151,58,.35); border-radius: 3px; overflow: hidden; box-shadow: 0 4px 24px rgba(22,51,37,.08); }
.sub-form input { padding: 1.1rem 1.25rem; border: none; border-right: 1px solid rgba(196,151,58,.25); background: #fff; font-family: var(--font-b); font-size: .92rem; outline: none; color: var(--green-deep); width: 100%; }
.sub-form input::placeholder { color: #b0a090; }
.sub-email-row { grid-column: span 2; display: flex; }
.sub-email-row input { flex: 1; border-right: none; border-top: 1px solid rgba(196,151,58,.2); }
.sub-email-row button { background: var(--green-deep); color: var(--ivory); border: none; padding: 1.1rem 2rem; font-family: var(--font-b); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .25s; white-space: nowrap; border-top: 1px solid rgba(196,151,58,.2); }
.sub-email-row button:hover { background: var(--green-mid); }
.sub-note { font-size: .74rem; color: #a09080; margin-top: 1rem; }

/* ── FOOTER ── */
.lal-footer { background: var(--green-deep); color: rgba(249,245,238,.6); padding: 5rem 2rem 2.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--font-d); font-size: 1.7rem; font-weight: 500; color: #fff; margin-bottom: .8rem; }
.footer-logo em { font-style: normal; color: var(--gold-light); }
.footer-tagline { font-size: .9rem; line-height: 1.8; max-width: 280px; margin-bottom: 1rem; }
.footer-verse { font-family: var(--font-d); font-style: italic; font-size: 1rem; color: rgba(249,245,238,.4); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { font-size: .88rem; color: rgba(249,245,238,.55); text-decoration: none; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; }
.footer-stamp { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(196,151,58,.5); }

/* ── FADE ANIMATION ── */
.fi { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fi.v { opacity: 1; transform: none; }

/* ── JOOMLA SYSTEM MESSAGES ── */
#system-message-container { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); z-index: 9999; min-width: 320px; }
.alert { padding: 1rem 1.5rem; border-radius: 3px; margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: var(--green-sat); color: #fff; }
.alert-error, .alert-warning { background: var(--terracotta); color: #fff; }
.alert-info { background: var(--teal); color: #fff; }

/* Instantly hide "You don't have permission" frontend-edit errors.
   Joomla renders these as .alert-danger or joomla-alert type="danger".
   We hide them via CSS immediately (no JS delay) and JS removes them from DOM. */
.alert-danger:has(button.btn-close),
joomla-alert[type="danger"],
.alert.alert-danger {
  display: none !important;
}

/* ── COMPONENT AREA ── */
#lal-component { max-width: 1100px; margin: 100px auto 4rem; padding: 2rem; min-height: 400px; }
#lal-component h1 { font-family: var(--font-d); font-size: 2.5rem; font-weight: 300; color: var(--green-deep); margin-bottom: 1.5rem; }
#lal-component p { font-size: 1rem; color: var(--cream-text); line-height: 1.8; margin-bottom: 1rem; }
#lal-component a { color: var(--green-sat); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #lal-nav { padding: .9rem 1.5rem; }
  #lal-nav .nav-menu { display: none; }
  .lal-intro { grid-template-columns: 1fr; }
  .intro-photo { height: 320px; }
  .steps-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .lal-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item.tall { grid-row: span 1; height: 280px; }
  .mosaic-item { height: 240px; }
  .book-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .book-actions { justify-content: center; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .sub-form { grid-template-columns: 1fr; }
  .sub-email-row { flex-direction: column; }
  .lal-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .intro-text { padding: 3rem 2rem; }
}

/* ═══════════════════════════════════════════════
   MOBILE NAV  (single clean block, no duplicates)
═══════════════════════════════════════════════ */

/* Hamburger button — hidden on desktop */
#lal-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 1100;
  flex-shrink: 0;
}
#lal-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #F9F5EE;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#lal-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#lal-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
#lal-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer — hidden by default on ALL screen sizes */
#lal-mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #163325;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
#lal-mobile-nav.open { display: block; }

#lal-mobile-nav ul          { list-style: none; margin: 0; padding: 6px 0; }
#lal-mobile-nav ul li       { border-bottom: 1px solid rgba(255,255,255,0.08); }
#lal-mobile-nav ul li a     {
  display: block;
  padding: 14px 24px;
  color: #F9F5EE;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
#lal-mobile-nav ul li a:hover       { background: rgba(255,255,255,0.06); color: #C9A96E; }
#lal-mobile-nav ul li.active > a    { color: #C9A96E; }

/* Nested mobile submenus */
#lal-mobile-nav ul ul               { display: none; background: rgba(0,0,0,0.18); }
#lal-mobile-nav ul li.open > ul     { display: block; }
#lal-mobile-nav ul ul li a          { padding-left: 40px; font-size: 0.83rem; }

/* Desktop submenu (hover) */
#lal-nav ul li ul {
  display: none;
  position: absolute;
  background: #163325;
  padding: 8px 0;
  min-width: 160px;
  z-index: 500;
}
#lal-nav ul li:hover > ul { display: block; }

@media (max-width: 900px) {
  #lal-hamburger          { display: flex; }
  #lal-nav .nav-menu      { display: none; }
}
