/* ==========================================================================
   Lamplight Baby Sleep — theme stylesheet
   Palette (from the brand pack):
     Gold   #D9A441  the crescent — accents only, never body text
     Dusk   #4C7A94  links, buttons, supporting arc
     Night  #1F3A4B  headlines, body text, dark grounds
     Mist   #A9C6D6  rules, fills, quiet backgrounds
     Cream  #FBF7F0  the page
   Type: Fraunces (headlines) · Jost (body / labels)
   ========================================================================== */

:root {
  --ll-gold: #D9A441;
  --ll-gold-soft: #F3E3C0;
  --ll-dusk: #4C7A94;
  --ll-dusk-dark: #3B6178;
  --ll-night: #1F3A4B;
  --ll-night-2: #2C4D62;
  --ll-mist: #A9C6D6;
  --ll-mist-soft: #E4EEF3;
  --ll-cream: #FBF7F0;
  --ll-cream-2: #F4EDE0;
  --ll-white: #FFFFFF;
  --ll-ink: #1F3A4B;
  --ll-muted: #5B6F7B;
  --ll-danger: #A94442;
  --ll-success: #3C7A5A;

  --ll-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --ll-sans: "Jost", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ll-max: 1140px;
  --ll-narrow: 760px;
  --ll-radius: 14px;
  --ll-radius-lg: 22px;
  --ll-shadow: 0 10px 30px rgba(31, 58, 75, 0.08);
  --ll-shadow-sm: 0 3px 12px rgba(31, 58, 75, 0.07);
  --ll-gutter: clamp(16px, 4vw, 40px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ll-cream);
  color: var(--ll-ink);
  font-family: var(--ll-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ll-dusk); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ll-dusk-dark); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ll-serif);
  font-weight: 600;
  color: var(--ll-night);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1.1em; }
strong, b { font-weight: 500; }
ul, ol { padding-left: 1.3em; }
li { margin-bottom: 0.35em; }
blockquote {
  margin: 1.5em 0;
  padding: 1em 1.4em;
  border-left: 4px solid var(--ll-gold);
  background: var(--ll-white);
  border-radius: 0 var(--ll-radius) var(--ll-radius) 0;
  font-family: var(--ll-serif);
  font-size: 1.15em;
}
hr { border: 0; border-top: 1px solid var(--ll-mist); margin: 2.5rem 0; }
table { border-collapse: collapse; width: 100%; margin: 1.5rem 0; font-size: 0.97rem; }
th, td { text-align: left; padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--ll-mist); vertical-align: top; }
th { font-family: var(--ll-sans); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.8rem; color: var(--ll-muted); }
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.92em; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  clip: auto; height: auto; width: auto; margin: 0; padding: 0.6rem 1rem;
  background: var(--ll-white); color: var(--ll-night); left: 8px; top: 8px; z-index: 100000;
  box-shadow: var(--ll-shadow); border-radius: 8px;
}
:focus-visible { outline: 3px solid var(--ll-gold); outline-offset: 3px; }

/* ---------- Layout helpers ---------- */
.ll-wrap { width: 100%; max-width: var(--ll-max); margin: 0 auto; padding: 0 var(--ll-gutter); }
.ll-narrow { max-width: var(--ll-narrow); margin-left: auto; margin-right: auto; }
.ll-section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.ll-section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.ll-section--white { background: var(--ll-white); }
.ll-section--mist { background: var(--ll-mist-soft); }
.ll-section--night { background: var(--ll-night); color: var(--ll-cream); }
.ll-section--night h1, .ll-section--night h2, .ll-section--night h3 { color: var(--ll-cream); }
.ll-section--night a { color: var(--ll-mist); }
.ll-center { text-align: center; }
.ll-eyebrow {
  display: inline-block; font-family: var(--ll-sans); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ll-dusk); margin-bottom: 0.9rem;
}
.ll-section--night .ll-eyebrow { color: var(--ll-gold); }
.ll-lede { font-size: 1.2rem; color: var(--ll-muted); max-width: 46ch; }
.ll-center .ll-lede { margin-left: auto; margin-right: auto; }
.ll-grid { display: grid; gap: 1.5rem; }
.ll-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ll-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ll-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .ll-grid--3, .ll-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .ll-grid--2, .ll-grid--3, .ll-grid--4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.ll-btn, .wp-block-button__link, button.ll-btn, input[type="submit"].ll-btn {
  display: inline-block; font-family: var(--ll-sans); font-weight: 500; font-size: 1rem;
  letter-spacing: 0.02em; text-decoration: none; padding: 0.85rem 1.6rem; border-radius: 999px;
  border: 2px solid var(--ll-dusk); background: var(--ll-dusk); color: var(--ll-white);
  cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  line-height: 1.2;
}
.ll-btn:hover, .wp-block-button__link:hover { background: var(--ll-dusk-dark); border-color: var(--ll-dusk-dark); color: var(--ll-white); transform: translateY(-1px); box-shadow: var(--ll-shadow-sm); }
.ll-btn--gold { background: var(--ll-gold); border-color: var(--ll-gold); color: var(--ll-night); }
.ll-btn--gold:hover { background: #C8933A; border-color: #C8933A; color: var(--ll-night); }
.ll-btn--ghost { background: transparent; color: var(--ll-dusk); }
.ll-btn--ghost:hover { background: var(--ll-dusk); color: var(--ll-white); }
.ll-btn--light { background: var(--ll-cream); border-color: var(--ll-cream); color: var(--ll-night); }
.ll-btn--light:hover { background: var(--ll-white); border-color: var(--ll-white); color: var(--ll-night); }
.ll-btn--lg { font-size: 1.1rem; padding: 1rem 2.1rem; }
.ll-btn--sm { font-size: 0.9rem; padding: 0.55rem 1.1rem; }
.ll-btn--block { display: block; width: 100%; text-align: center; }
.ll-btn[disabled], .ll-btn.is-loading { opacity: 0.6; cursor: progress; }
.ll-btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.ll-btn-row--center { justify-content: center; }
.ll-note { font-size: 0.9rem; color: var(--ll-muted); }

/* ---------- Header ---------- */
.ll-header { background: var(--ll-cream); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(169,198,214,0.5); backdrop-filter: saturate(140%) blur(6px); }
.ll-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }
.ll-logo { display: inline-flex; align-items: center; text-decoration: none; }
.ll-logo img { height: 52px; width: auto; }
.ll-logo__text { font-family: var(--ll-serif); font-weight: 600; font-size: 1.5rem; color: var(--ll-night); }
.ll-nav { display: flex; align-items: center; gap: 1.6rem; }
.ll-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.2rem; }
.ll-nav li { margin: 0; }
.ll-nav a { font-family: var(--ll-sans); font-weight: 400; font-size: 0.98rem; color: var(--ll-night); text-decoration: none; padding: 0.4rem 0; border-bottom: 2px solid transparent; }
.ll-nav a:hover, .ll-nav .current-menu-item > a, .ll-nav .current_page_item > a { border-bottom-color: var(--ll-gold); }
.ll-nav__cta { margin-left: 0.4rem; }
.ll-nav-toggle { display: none; background: none; border: 2px solid var(--ll-mist); border-radius: 10px; padding: 0.45rem 0.6rem; cursor: pointer; color: var(--ll-night); }
.ll-nav-toggle svg { display: block; }
@media (max-width: 960px) {
  .ll-nav-toggle { display: inline-flex; }
  .ll-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--ll-cream); border-bottom: 1px solid var(--ll-mist); padding: 1rem var(--ll-gutter) 1.4rem; flex-direction: column; align-items: stretch; gap: 0.6rem; box-shadow: var(--ll-shadow); }
  .ll-nav.is-open { display: flex; }
  .ll-nav ul { flex-direction: column; gap: 0; }
  .ll-nav li a { display: block; padding: 0.7rem 0; border-bottom: 1px solid var(--ll-mist-soft); }
  .ll-nav__cta { margin: 0.6rem 0 0; }
}

/* ---------- Announcement / disclaimer bar ---------- */
.ll-disclaimer-bar { background: var(--ll-night); color: var(--ll-mist); font-size: 0.86rem; text-align: center; padding: 0.55rem var(--ll-gutter); }
.ll-disclaimer-bar a { color: var(--ll-gold); }

/* ---------- Hero ---------- */
.ll-hero { position: relative; overflow: hidden; padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5rem); }
.ll-hero::before {
  content: ""; position: absolute; right: -12vw; top: -18vw; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(217,164,65,0.18), rgba(217,164,65,0) 62%); pointer-events: none;
}
.ll-hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; position: relative; }
@media (max-width: 900px) { .ll-hero__grid { grid-template-columns: 1fr; } }
.ll-hero h1 { margin-bottom: 1rem; }
.ll-hero h1 em { font-style: italic; color: var(--ll-dusk); }
.ll-hero .ll-lede { font-size: 1.25rem; margin-bottom: 1.6rem; }
.ll-hero__art { display: flex; justify-content: center; }
.ll-hero__art img { max-width: 340px; width: 100%; }
@media (max-width: 900px) { .ll-hero__art img { max-width: 200px; } .ll-hero__art { justify-content: flex-start; } }
.ll-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 1.6rem; padding: 0; list-style: none; font-size: 0.92rem; color: var(--ll-muted); }
.ll-trust li { display: inline-flex; align-items: center; gap: 0.45rem; margin: 0; }
.ll-trust li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ll-gold); flex: none; }

/* ---------- Cards ---------- */
.ll-card { background: var(--ll-white); border-radius: var(--ll-radius-lg); padding: 1.7rem; box-shadow: var(--ll-shadow-sm); border: 1px solid rgba(169,198,214,0.35); }
.ll-card h3 { margin-top: 0.3rem; }
.ll-card p:last-child { margin-bottom: 0; }
.ll-card__num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ll-gold-soft); color: var(--ll-night); font-family: var(--ll-serif); font-weight: 600; font-size: 1.15rem; margin-bottom: 0.9rem; }
.ll-card__icon { width: 44px; height: 44px; margin-bottom: 0.9rem; color: var(--ll-dusk); }
.ll-card--soft { background: var(--ll-cream-2); border-color: transparent; box-shadow: none; }
.ll-check { list-style: none; padding: 0; margin: 1rem 0; }
.ll-check li { position: relative; padding-left: 1.8rem; margin-bottom: 0.6rem; }
.ll-check li::before { content: ""; position: absolute; left: 0; top: 0.42em; width: 1.05rem; height: 1.05rem; border-radius: 50%; background: var(--ll-gold); }
.ll-check li::after { content: ""; position: absolute; left: 0.32rem; top: 0.62em; width: 0.42rem; height: 0.22rem; border-left: 2px solid var(--ll-night); border-bottom: 2px solid var(--ll-night); transform: rotate(-45deg); }

/* ---------- Split / feature rows ---------- */
.ll-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.ll-split--reverse > :first-child { order: 2; }
@media (max-width: 860px) { .ll-split { grid-template-columns: 1fr; } .ll-split--reverse > :first-child { order: 0; } }
.ll-mock {
  background: var(--ll-white); border-radius: var(--ll-radius-lg); box-shadow: var(--ll-shadow); padding: 1.4rem; border: 1px solid rgba(169,198,214,0.5);
}
.ll-mock__bar { display: flex; gap: 6px; margin-bottom: 1rem; }
.ll-mock__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--ll-mist); }
.ll-mock h4 { font-family: var(--ll-serif); margin: 0 0 0.4rem; }
.ll-mock__line { height: 10px; border-radius: 6px; background: var(--ll-mist-soft); margin: 0.55rem 0; }
.ll-mock__line--short { width: 60%; }
.ll-mock__tag { display: inline-block; background: var(--ll-gold-soft); color: var(--ll-night); border-radius: 999px; padding: 0.2rem 0.7rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; }

/* Chat mock */
.ll-chat-mock { display: flex; flex-direction: column; gap: 0.7rem; }
.ll-bubble { max-width: 88%; padding: 0.75rem 1rem; border-radius: 16px; font-size: 0.95rem; line-height: 1.5; }
.ll-bubble--user { align-self: flex-end; background: var(--ll-dusk); color: var(--ll-white); border-bottom-right-radius: 4px; }
.ll-bubble--coach { align-self: flex-start; background: var(--ll-cream-2); color: var(--ll-night); border-bottom-left-radius: 4px; }
.ll-bubble--coach strong { color: var(--ll-dusk-dark); }

/* ---------- Pricing ---------- */
.ll-pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; max-width: 920px; margin: 0 auto; align-items: stretch; }
@media (max-width: 760px) { .ll-pricing { grid-template-columns: 1fr; } }
.ll-price-card { position: relative; background: var(--ll-white); border-radius: var(--ll-radius-lg); padding: 2rem 1.8rem; border: 1px solid rgba(169,198,214,0.5); box-shadow: var(--ll-shadow-sm); display: flex; flex-direction: column; }
.ll-price-card--featured { border: 2px solid var(--ll-gold); box-shadow: var(--ll-shadow); }
.ll-price-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--ll-gold); color: var(--ll-night); border-radius: 999px; padding: 0.25rem 0.9rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.ll-price-card h3 { margin-bottom: 0.2rem; }
.ll-price { font-family: var(--ll-serif); font-weight: 600; font-size: 2.8rem; color: var(--ll-night); line-height: 1; margin: 0.8rem 0 0.2rem; }
.ll-price small { font-family: var(--ll-sans); font-weight: 400; font-size: 1rem; color: var(--ll-muted); }
.ll-price-card .ll-check { flex: 1; }
.ll-price-card .ll-btn { margin-top: 0.6rem; }
.ll-price-card__fine { font-size: 0.85rem; color: var(--ll-muted); margin-top: 0.9rem; }

/* ---------- FAQ ---------- */
.ll-faq { max-width: var(--ll-narrow); margin: 0 auto; }
.ll-faq details { background: var(--ll-white); border-radius: var(--ll-radius); border: 1px solid rgba(169,198,214,0.5); margin-bottom: 0.8rem; padding: 0 1.3rem; }
.ll-faq summary { cursor: pointer; font-family: var(--ll-serif); font-weight: 600; font-size: 1.1rem; padding: 1rem 2rem 1rem 0; list-style: none; position: relative; color: var(--ll-night); }
.ll-faq summary::-webkit-details-marker { display: none; }
.ll-faq summary::after { content: "+"; position: absolute; right: 0; top: 0.85rem; font-size: 1.5rem; color: var(--ll-gold); font-weight: 300; }
.ll-faq details[open] summary::after { content: "–"; }
.ll-faq details > div { padding: 0 0 1.2rem; }

/* ---------- Callouts ---------- */
.ll-callout { border-radius: var(--ll-radius); padding: 1.2rem 1.4rem; background: var(--ll-mist-soft); border-left: 5px solid var(--ll-dusk); margin: 1.5rem 0; }
.ll-callout--gold { background: var(--ll-gold-soft); border-left-color: var(--ll-gold); }
.ll-callout--night { background: var(--ll-night); color: var(--ll-cream); border-left-color: var(--ll-gold); }
.ll-callout--night a { color: var(--ll-gold); }
.ll-callout--danger { background: #F8E9E8; border-left-color: var(--ll-danger); }
.ll-callout h3, .ll-callout h4 { margin-top: 0; }
.ll-callout p:last-child { margin-bottom: 0; }
.ll-medical-notice { font-size: 0.95rem; }

/* ---------- Founder ---------- */
.ll-founder { display: grid; grid-template-columns: 200px 1fr; gap: 2.2rem; align-items: start; }
@media (max-width: 700px) { .ll-founder { grid-template-columns: 1fr; } }
.ll-founder__photo { width: 200px; height: 200px; border-radius: 50%; background: var(--ll-mist-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 6px solid var(--ll-white); box-shadow: var(--ll-shadow-sm); }
.ll-founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.ll-signature { font-family: var(--ll-serif); font-style: italic; font-size: 1.2rem; color: var(--ll-dusk-dark); }

/* ---------- Page (content) ---------- */
.ll-page-header { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.ll-page-header h1 { margin-bottom: 0.4rem; }
.ll-content { padding-bottom: clamp(3rem, 7vw, 5rem); }
.ll-content > * { max-width: var(--ll-narrow); margin-left: auto; margin-right: auto; }
.ll-content > .alignwide, .ll-content > .alignfull, .ll-content > .ll-full { max-width: none; }
.ll-content--wide > .ll-wrap { max-width: var(--ll-max); }
.ll-content--wide .ll-wrap .ll-wrap { padding: 0; }
.ll-content h2 { margin-top: 2.2rem; }
.ll-content h3 { margin-top: 1.6rem; }
.ll-content img.aligncenter { margin-left: auto; margin-right: auto; }
.wp-block-image img { border-radius: var(--ll-radius); }
.wp-block-quote { border-left-color: var(--ll-gold); }
.wp-block-buttons { gap: 0.8rem; }
.ll-legal h2 { font-size: 1.45rem; }
.ll-updated { font-size: 0.9rem; color: var(--ll-muted); }

/* ---------- Blog ---------- */
.ll-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; }
@media (max-width: 900px) { .ll-post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .ll-post-grid { grid-template-columns: 1fr; } }
.ll-post-card { background: var(--ll-white); border-radius: var(--ll-radius-lg); overflow: hidden; border: 1px solid rgba(169,198,214,0.4); box-shadow: var(--ll-shadow-sm); display: flex; flex-direction: column; }
.ll-post-card__thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--ll-mist-soft), var(--ll-gold-soft)); display: flex; align-items: center; justify-content: center; }
.ll-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ll-post-card__thumb svg { width: 56px; height: 56px; opacity: 0.8; }
.ll-post-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.ll-post-card h3 { font-size: 1.2rem; margin: 0; }
.ll-post-card h3 a { color: var(--ll-night); text-decoration: none; }
.ll-post-card h3 a:hover { color: var(--ll-dusk); }
.ll-post-card__meta { font-size: 0.82rem; color: var(--ll-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.ll-post-card__excerpt { font-size: 0.97rem; color: var(--ll-muted); }
.ll-post-card__more { margin-top: auto; font-weight: 500; text-decoration: none; }
.ll-single .ll-page-header { text-align: center; }
.ll-single .ll-page-header h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.ll-single__meta { font-size: 0.9rem; color: var(--ll-muted); }
.ll-single .ll-content { font-size: 1.1rem; }
.ll-single .ll-content h2 { font-size: 1.7rem; }
.ll-single__footer { border-top: 1px solid var(--ll-mist); padding-top: 1.5rem; margin-top: 2rem; }
.ll-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.ll-pagination .page-numbers { padding: 0.5rem 0.9rem; border-radius: 10px; background: var(--ll-white); border: 1px solid var(--ll-mist); text-decoration: none; color: var(--ll-night); }
.ll-pagination .page-numbers.current { background: var(--ll-night); color: var(--ll-cream); border-color: var(--ll-night); }

/* ---------- Forms ---------- */
.ll-form label { display: block; font-weight: 500; margin-bottom: 0.35rem; font-size: 0.95rem; }
.ll-form input[type="text"], .ll-form input[type="email"], .ll-form input[type="password"], .ll-form input[type="date"], .ll-form input[type="time"], .ll-form input[type="number"], .ll-form select, .ll-form textarea {
  width: 100%; font: inherit; font-weight: 300; padding: 0.7rem 0.9rem; border-radius: 10px; border: 1.5px solid var(--ll-mist); background: var(--ll-white); color: var(--ll-night);
}
.ll-form textarea { min-height: 110px; resize: vertical; }
.ll-form input:focus, .ll-form select:focus, .ll-form textarea:focus { border-color: var(--ll-dusk); outline: none; box-shadow: 0 0 0 3px rgba(76,122,148,0.18); }
.ll-form .ll-field { margin-bottom: 1.2rem; }
.ll-form .ll-help { font-size: 0.86rem; color: var(--ll-muted); margin-top: 0.3rem; }
.ll-form fieldset { border: 0; padding: 0; margin: 0 0 2rem; }
.ll-form legend { font-family: var(--ll-serif); font-weight: 600; font-size: 1.35rem; color: var(--ll-night); margin-bottom: 0.3rem; padding: 0; }
.ll-form .ll-fieldset-intro { color: var(--ll-muted); margin-bottom: 1.2rem; }
.ll-form .ll-choices { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ll-form .ll-choices label { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--ll-white); border: 1.5px solid var(--ll-mist); border-radius: 999px; padding: 0.45rem 0.9rem; font-weight: 400; cursor: pointer; margin: 0; }
.ll-form .ll-choices label:has(input:checked) { border-color: var(--ll-dusk); background: var(--ll-mist-soft); }
.ll-form .ll-choices input { margin: 0; }
.ll-form .ll-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.ll-form .ll-consent input { margin-top: 0.35rem; }
.ll-notice { border-radius: var(--ll-radius); padding: 1rem 1.2rem; margin: 1rem 0; background: var(--ll-mist-soft); }
.ll-notice--error { background: #F8E9E8; color: var(--ll-danger); }
.ll-notice--success { background: #E6F2EC; color: var(--ll-success); }

/* ---------- Footer ---------- */
.ll-footer { background: var(--ll-night); color: var(--ll-mist); padding: 3.5rem 0 2rem; margin-top: 2rem; }
.ll-footer a { color: var(--ll-cream); text-decoration: none; }
.ll-footer a:hover { color: var(--ll-gold); }
.ll-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 860px) { .ll-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ll-footer__grid { grid-template-columns: 1fr; } }
.ll-footer__logo img { height: 56px; width: auto; margin-bottom: 1rem; }
.ll-footer h4 { color: var(--ll-cream); font-family: var(--ll-sans); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 0.9rem; }
.ll-footer ul { list-style: none; padding: 0; margin: 0; }
.ll-footer li { margin-bottom: 0.45rem; }
.ll-footer__tag { font-family: var(--ll-serif); font-style: italic; font-size: 1.05rem; color: var(--ll-cream); }
.ll-footer__disclaimer { border-top: 1px solid rgba(169,198,214,0.25); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.85rem; line-height: 1.6; color: rgba(251,247,240,0.75); }
.ll-footer__disclaimer strong { color: var(--ll-gold); font-weight: 500; }
.ll-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.82rem; margin-top: 1.2rem; color: rgba(251,247,240,0.6); }

/* ---------- Utilities ---------- */
.ll-mt-0 { margin-top: 0 !important; }
.ll-mb-0 { margin-bottom: 0 !important; }
.ll-mt-2 { margin-top: 2rem; }
.ll-mb-2 { margin-bottom: 2rem; }
.ll-muted { color: var(--ll-muted); }
.ll-badge { display: inline-block; background: var(--ll-mist-soft); color: var(--ll-dusk-dark); border-radius: 999px; padding: 0.2rem 0.7rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.ll-badge--gold { background: var(--ll-gold-soft); color: var(--ll-night); }
.ll-badge--green { background: #E6F2EC; color: var(--ll-success); }
.ll-badge--red { background: #F8E9E8; color: var(--ll-danger); }
.ll-stat { text-align: center; }
.ll-stat__num { font-family: var(--ll-serif); font-weight: 600; font-size: 2.4rem; color: var(--ll-dusk); line-height: 1; }
.ll-stat__label { font-size: 0.92rem; color: var(--ll-muted); margin-top: 0.4rem; }
.ll-404 { text-align: center; padding: 5rem 0; }

/* ---------- Print (plan documents) ---------- */
@media print {
  .ll-header, .ll-footer, .ll-disclaimer-bar, .ll-no-print { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a { color: #000; text-decoration: none; }
}
