/*
Theme Name: Light Learning
Theme URI: https://lightlearning.com.vn
Author: Phan Ngoc Hoang Anh
Description: Custom landing page theme for Light Learning.
Version: 1.6.6
Text Domain: lightlearning
*/

@font-face {
  font-family: "BT Beau Sans";
  src: url("assets/fonts/BT-BeauSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BT Beau Sans";
  src: url("assets/fonts/BT-BeauSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BT Beau Sans";
  src: url("assets/fonts/BT-BeauSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ll-control-height: 52px;
  --ll-gold-100: #efd891;
  --ll-gold-300: #e1bc65;
  --ll-sand: #d6be92;
  --ll-taupe: #a18a65;
  --ll-brown: #4f3721;
  --ll-ink: #31251a;
  --ll-muted: #6e604f;
  --ll-paper: #ffffff;
  --ll-soft: #fbf6ea;
  --ll-wash: #fffdf8;
  --ll-white: #ffffff;
  --ll-line: rgba(79, 55, 33, 0.13);
  --ll-shadow: 0 24px 80px rgba(79, 55, 33, 0.09);
  --ll-radius: 18px;
  --ll-radius-sm: 12px;
  --ll-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ll-paper);
  color: var(--ll-ink);
  font-family: "BT Beau Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  box-sizing: border-box;
  font: inherit;
  max-width: 100%;
  min-width: 0;
}

.ll-page {
  overflow: hidden;
}

.ll-shell {
  width: min(100% - 40px, var(--ll-max));
  margin: 0 auto;
}

.ll-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(79, 55, 33, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.ll-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ll-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.ll-brand img {
  width: 168px;
  height: auto;
}

.ll-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ll-muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.ll-menu a {
  transition: color 180ms ease;
}

.ll-menu a:hover,
.ll-menu a:focus-visible {
  color: var(--ll-brown);
}

.ll-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ll-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.ll-btn:active {
  transform: translateY(1px);
}

.ll-btn-primary {
  background: var(--ll-brown);
  color: var(--ll-white);
  box-shadow: 0 14px 30px rgba(79, 55, 33, 0.2);
}

.ll-btn-primary:hover,
.ll-btn-primary:focus-visible {
  background: #3d2919;
  box-shadow: 0 18px 38px rgba(79, 55, 33, 0.25);
}

.ll-btn-secondary {
  border-color: rgba(79, 55, 33, 0.25);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ll-brown);
}

.ll-btn-secondary:hover,
.ll-btn-secondary:focus-visible {
  border-color: var(--ll-brown);
  background: var(--ll-white);
}

.ll-hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  padding: 82px 0 72px;
}

.ll-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 44px;
}

.ll-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(79, 55, 33, 0.14);
  border-radius: 999px;
  margin: 0 0 18px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ll-brown);
  font-size: 0.85rem;
  font-weight: 700;
}

.ll-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ll-gold-300);
}

.ll-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.ll-hero h1 span {
  color: var(--ll-taupe);
}

.ll-hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ll-muted);
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.ll-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ll-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.ll-proof-item {
  border-top: 1px solid var(--ll-line);
  padding-top: 14px;
}

.ll-proof-item strong {
  display: block;
  color: var(--ll-brown);
  font-size: 1.3rem;
  line-height: 1.2;
}

.ll-proof-item span {
  display: block;
  margin-top: 3px;
  color: var(--ll-muted);
  font-size: 0.92rem;
}

.ll-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.ll-hero-card {
  width: min(420px, 100%);
  border: 1px solid rgba(79, 55, 33, 0.14);
  border-radius: 28px;
  padding: 28px;
  background: var(--ll-white);
  box-shadow: var(--ll-shadow);
}

.ll-hero-logo {
  width: 220px;
  margin-bottom: 28px;
}

.ll-route-list {
  display: grid;
  gap: 12px;
}

.ll-route {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(79, 55, 33, 0.12);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.ll-route b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ll-brown);
  color: var(--ll-white);
  font-size: 0.92rem;
}

.ll-route span {
  display: block;
  color: var(--ll-muted);
  font-size: 0.92rem;
}

.ll-hero-note {
  width: min(300px, 100%);
  border-radius: 24px;
  padding: 20px;
  background: var(--ll-brown);
  color: var(--ll-white);
  box-shadow: 0 24px 60px rgba(79, 55, 33, 0.22);
}

.ll-hero-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.ll-hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.ll-watermark {
  position: absolute;
  left: -40px;
  bottom: 96px;
  width: 260px;
  opacity: 0.08;
  pointer-events: none;
}

.ll-section {
  padding: 78px 0;
  background: var(--ll-white);
}

.ll-section-alt {
  background: var(--ll-wash);
}

.ll-section-soft {
  background: var(--ll-soft);
}

.ll-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.ll-label {
  margin: 0 0 12px;
  color: var(--ll-taupe);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ll-section h2,
.ll-assessment h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.ll-section-head p,
.ll-section-text {
  margin: 0;
  color: var(--ll-muted);
  font-size: 1.08rem;
}

.ll-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ll-card {
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  padding: 24px;
  background: var(--ll-white);
}

.ll-card-soft {
  background: var(--ll-wash);
}

.ll-card h3 {
  margin: 0 0 10px;
  color: var(--ll-brown);
  font-size: 1.28rem;
  line-height: 1.25;
}

.ll-card p {
  margin: 0;
  color: var(--ll-muted);
}

.ll-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ll-muted);
}

.ll-card li {
  position: relative;
  padding-left: 18px;
}

.ll-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ll-gold-300);
}

.ll-programs {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
}

.ll-program-main {
  border-radius: 28px;
  padding: 34px;
  background: var(--ll-brown);
  color: var(--ll-white);
}

.ll-program-main h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.ll-program-main p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
}

.ll-program-main .ll-btn {
  background: var(--ll-gold-100);
  color: var(--ll-brown);
}

.ll-program-list {
  display: grid;
  gap: 14px;
}

.ll-program-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--ll-line);
  padding: 20px 0;
}

.ll-program-row span {
  color: var(--ll-taupe);
  font-weight: 700;
}

.ll-program-row h3 {
  margin: 0 0 5px;
  font-size: 1.25rem;
}

.ll-program-row p {
  margin: 0;
  color: var(--ll-muted);
}

.ll-media-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.ll-media-split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.ll-photo-frame {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--ll-line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(239, 216, 145, 0.22), rgba(255, 255, 255, 0.8)),
    repeating-linear-gradient(135deg, rgba(79, 55, 33, 0.05) 0 1px, transparent 1px 16px);
  color: var(--ll-brown);
}

.ll-photo-frame::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(79, 55, 33, 0.22);
  border-radius: 22px;
}

.ll-photo-frame span {
  position: relative;
  z-index: 1;
  max-width: 260px;
  text-align: center;
  font-weight: 700;
}

.ll-photo-frame small {
  display: block;
  margin-top: 8px;
  color: var(--ll-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.ll-photo-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.ll-photo-grid .ll-photo-frame {
  min-height: 230px;
}

.ll-photo-grid .ll-photo-frame:first-child {
  grid-row: span 2;
  min-height: 476px;
}

.ll-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ll-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.ll-list b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ll-gold-100);
  color: var(--ll-brown);
}

.ll-list span {
  color: var(--ll-muted);
}

.ll-testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.ll-quote-card {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  border-radius: 28px;
  padding: 30px;
  background: var(--ll-brown);
  color: var(--ll-white);
}

.ll-quote-card blockquote {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.ll-quote-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.ll-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ll-mini-gallery .ll-photo-frame {
  min-height: 260px;
}

.ll-steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--ll-line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

.ll-step {
  counter-increment: steps;
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--ll-line);
}

.ll-step:last-child {
  border-right: 0;
}

.ll-step::before {
  content: "0" counter(steps);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 22px;
  background: var(--ll-gold-100);
  color: var(--ll-brown);
  font-weight: 700;
}

.ll-step h3 {
  margin: 0 0 8px;
}

.ll-step p {
  margin: 0;
  color: var(--ll-muted);
}

.ll-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.ll-form-panel {
  border: 1px solid rgba(79, 55, 33, 0.13);
  border-radius: 28px;
  padding: 28px;
  background: var(--ll-white);
  box-shadow: var(--ll-shadow);
}

.ll-form-title {
  margin: 0 0 18px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.ll-form {
  display: grid;
  gap: 16px;
}

.ll-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.ll-field label {
  color: var(--ll-brown);
  font-size: 0.9rem;
  font-weight: 700;
}

.ll-field input,
.ll-field select,
.ll-field textarea {
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  min-height: var(--ll-control-height);
  border: 1px solid rgba(79, 55, 33, 0.22);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fffdf8;
  color: var(--ll-ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.ll-field textarea {
  min-height: 108px;
  resize: vertical;
}

.ll-field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  height: var(--ll-control-height);
  inline-size: 100%;
  line-height: 1.3;
}

.ll-field input[type="date"]::-webkit-date-and-time-value {
  display: block;
  min-width: 0;
  text-align: left;
}

.ll-field input:focus,
.ll-field select:focus,
.ll-field textarea:focus {
  border-color: var(--ll-brown);
  box-shadow: 0 0 0 4px rgba(225, 188, 101, 0.24);
}

.ll-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ll-status {
  display: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
}

.ll-status.is-visible {
  display: block;
}

.ll-status.is-success {
  background: #eef7e8;
  color: #315222;
}

.ll-status.is-error {
  background: #fff0e8;
  color: #7a2d15;
}

.ll-faq {
  display: grid;
  gap: 12px;
}

.ll-faq details {
  border: 1px solid var(--ll-line);
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.58);
}

.ll-faq summary {
  cursor: pointer;
  color: var(--ll-brown);
  font-weight: 700;
}

.ll-faq p {
  margin: 12px 0 0;
  color: var(--ll-muted);
}

.ll-footer {
  padding: 44px 0;
  background: var(--ll-brown);
  color: var(--ll-white);
}

.ll-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.ll-footer img {
  width: 174px;
  filter: brightness(0) invert(1);
}

.ll-footer p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.ll-footer-links {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.ll-assessment {
  min-height: 100dvh;
  padding: 54px 0 84px;
  background: var(--ll-paper);
}

.ll-assessment-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.5fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.ll-assessment-card {
  border: 1px solid var(--ll-line);
  border-radius: 28px;
  padding: 28px;
  background: var(--ll-white);
  box-shadow: var(--ll-shadow);
}

.ll-question {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--ll-line);
  padding: 20px 0;
}

.ll-question:first-child {
  padding-top: 0;
}

.ll-question:last-of-type {
  border-bottom: 0;
}

.ll-question p {
  margin: 0;
  color: var(--ll-brown);
  font-weight: 700;
}

.ll-options {
  display: grid;
  gap: 10px;
}

.ll-option {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(79, 55, 33, 0.16);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
}

.ll-option input {
  accent-color: var(--ll-brown);
}

@media (max-width: 1020px) {
  .ll-menu {
    display: none;
  }

  .ll-hero-grid,
  .ll-section-head,
  .ll-programs,
  .ll-split,
  .ll-media-split,
  .ll-media-split-reverse,
  .ll-testimonial-grid,
  .ll-assessment-head {
    grid-template-columns: 1fr;
  }

  .ll-hero {
    padding-top: 52px;
  }

  .ll-hero-visual {
    min-height: auto;
  }

  .ll-hero-card,
  .ll-watermark {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
  }

  .ll-hero-note {
    margin: 0 0 0 auto;
  }

  .ll-watermark {
    display: none;
  }

  .ll-grid-3,
  .ll-steps,
  .ll-mini-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ll-step {
    border-right: 0;
    border-bottom: 1px solid var(--ll-line);
  }
}

@media (max-width: 680px) {
  .ll-shell {
    width: min(100% - 28px, var(--ll-max));
  }

  .ll-nav {
    min-height: 70px;
  }

  .ll-brand img {
    width: 142px;
  }

  .ll-actions .ll-btn-secondary {
    display: none;
  }

  .ll-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.3rem);
  }

  .ll-proof,
  .ll-grid-3,
  .ll-steps,
  .ll-photo-grid,
  .ll-mini-gallery,
  .ll-form-grid {
    grid-template-columns: 1fr;
  }

  .ll-photo-frame,
  .ll-photo-grid .ll-photo-frame,
  .ll-photo-grid .ll-photo-frame:first-child {
    min-height: 250px;
  }

  .ll-program-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ll-section {
    padding: 56px 0;
  }

  .ll-footer-grid {
    grid-template-columns: 1fr;
  }

  .ll-footer-links {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.ll-motion-on) *,
  html:not(.ll-motion-on) *::before,
  html:not(.ll-motion-on) *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Brand refinement: white canvas, warm accents, editorial spacing. */
:root { --ll-max:1200px; --ll-taupe:#796241; }
html { scroll-padding-top:100px; }
:focus-visible { outline:3px solid #9b7427; outline-offset:5px; }
button:disabled { opacity:.42; cursor:not-allowed; }
.screen-reader-text,.ll-skip:not(:focus) { position:absolute; width:1px; height:1px; padding:0; overflow:hidden; clip-path:inset(50%); white-space:nowrap; }
.ll-skip:focus { position:fixed; top:12px; left:12px; z-index:100; padding:12px 20px; background:white; }
.ll-nav { min-height:76px; gap:20px; }
.ll-brand { min-width:150px; }
.ll-menu { gap:21px; font-size:14px; }
.ll-menu a { white-space:nowrap; position:relative; }
.ll-menu a::after { content:''; position:absolute; height:2px; bottom:-8px; left:0; width:100%; background:var(--ll-gold-300); transform:scaleX(0); transform-origin:left; transition:transform .25s; }
.ll-menu a:hover::after { transform:scaleX(1); }
.ll-actions .ll-btn-secondary { display:none; }
.ll-menu-toggle { display:none; }
.ll-header.is-scrolled { box-shadow:0 8px 28px #4f37210b; }
.ll-btn { white-space:nowrap; font-size:14px; min-height:48px; }
.ll-btn:hover { transform:translateY(-2px); }
.ll-hero { padding:68px 0 80px; background:white; }
.ll-hero-grid { grid-template-columns:1.04fr 1fr; gap:56px; }
.ll-hero h1 { font-size:clamp(48px,5.2vw,74px); line-height:1.06; letter-spacing:-2.5px; }
.ll-hero h1 span { display:block; color:var(--ll-brown); }
.ll-hero-copy { max-width:410px; font-size:19px; }
.ll-hero-art { position:relative; padding:16px 22px 32px 0; isolation:isolate; }
.ll-hero-photo { min-height:450px !important; border-radius:150px 22px 22px 22px !important; background:#f2e6c5 !important; }
.ll-orbit { position:absolute; inset:-6px 0 52px 28px; border:1px solid var(--ll-gold-300); border-radius:160px 22px 22px 22px; z-index:-1; transform:rotate(6deg); }
.ll-floating-note { position:absolute; bottom:4px; left:-25px; background:white; box-shadow:0 10px 40px #4f372116; border:1px solid var(--ll-line); padding:16px 22px; border-radius:12px; font-size:14px; display:flex; align-items:center; gap:10px; animation:ll-float 7s ease-in-out infinite; }
.ll-note-dot { width:9px; height:9px; border-radius:50%; background:var(--ll-gold-300); }
.ll-hero-stamp { position:absolute; right:0; top:35px; padding:18px; color:var(--ll-brown); background:var(--ll-gold-100); transform:rotate(8deg); font-size:14px; line-height:1.25; border-radius:8px; }
@keyframes ll-float { 50% { transform:translateY(-9px); } }
.ll-section { padding:96px 0; }
.ll-section h2 { font-size:clamp(30px,3.55vw,49px); line-height:1.14; letter-spacing:-1.2px; max-width:780px; text-wrap:balance; }
.ll-section-head { display:block; max-width:780px; margin-bottom:40px; }
.ll-section-head p { margin-top:18px; max-width:660px; }
.ll-section-text { margin-top:22px; }
#about { border-top:1px solid var(--ll-line); }
#about .ll-grid-3 { gap:42px; }
#about .ll-card { border:0; border-radius:0; border-top:2px solid var(--ll-gold-300); padding:28px 0 0; }
#about .ll-card h3 { font-size:24px; }
#benefits .ll-grid-3 { grid-template-columns:1.3fr 1fr 1fr; gap:20px; }
#benefits .ll-card { min-height:225px; display:flex; flex-direction:column; justify-content:flex-end; padding:32px; }
#benefits .ll-card:first-child { background:var(--ll-gold-100); border-color:transparent; }
#benefits .ll-card:nth-child(2) { background:var(--ll-brown); color:white; }
#benefits .ll-card:nth-child(2) h3,#benefits .ll-card:nth-child(2) p { color:white; }
#benefits .ll-card h3 { font-size:26px; }
.ll-photo-frame { margin:0; border:0; background:#f3f1ec; border-radius:18px; min-width:0; }
.ll-photo-frame::after { border:0; border-radius:50%; inset:15%; background:radial-gradient(circle,#e1bc6524,transparent 65%); }
.ll-photo-frame .ll-photo-mark { font-size:100px; font-weight:400; color:#b8a785; opacity:.6; letter-spacing:-12px; }
.ll-photo-frame figcaption { position:absolute; bottom:24px; left:24px; right:24px; z-index:1; font-size:14px; }
.ll-photo-frame figcaption small { display:block; font-size:12px; color:var(--ll-muted); margin-top:4px; }
.ll-photo-frame.has-image::after { display:none; }
.ll-photo-frame.has-image img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.ll-photo-frame.has-image:hover img { transform:scale(1.035); }
.ll-photo-frame.has-image figcaption { color:white; background:#31251abf; padding:8px 12px; width:fit-content; border-radius:8px; }
.ll-photo-grid .ll-photo-frame:first-child { min-height:500px; }
.ll-photo-grid .ll-photo-frame:nth-child(2) { margin-top:30px; background:#f7edce; }
.ll-photo-grid .ll-photo-frame:nth-child(3) { margin-bottom:30px; }
.ll-program-main { position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:space-between; padding:40px; }
.ll-program-main::after { content:''; position:absolute; width:210px; height:210px; border:1px solid #efd89135; border-radius:50%; right:-90px; bottom:-65px; pointer-events:none; }
.ll-program-main h3 { font-size:44px; line-height:1.08; }
.ll-program-main .ll-btn { align-self:flex-start; }
.ll-program-list { padding-left:22px; }
.ll-program-row { transition:transform .2s; }
.ll-program-row:hover { transform:translateX(5px); }
.ll-steps { border:0; border-radius:0; background:transparent; gap:28px; display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); }
.ll-step { border:0; border-top:1px solid var(--ll-line); padding:26px 0 0; }
.ll-step::before { background:transparent; width:auto; font-size:36px; color:var(--ll-taupe); font-weight:400; }
.ll-people-head { display:flex; align-items:flex-end; justify-content:space-between; gap:32px; margin-bottom:38px; }
.ll-people-head p { max-width:570px; margin:18px 0 0; color:var(--ll-muted); }
.ll-text-link { display:inline-flex; gap:18px; align-items:center; padding:12px 0; border-bottom:1px solid var(--ll-taupe); font-weight:500; flex-shrink:0; font-size:15px; }
.ll-teachers { background:#faf9f6; }
.ll-carousel-track { display:grid; grid-auto-flow:column; grid-auto-columns:calc((100% - 48px)/3); gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding-bottom:8px; overscroll-behavior-x:contain; }
.ll-carousel-track::-webkit-scrollbar { display:none; }
.ll-person-card { min-width:0; scroll-snap-align:start; background:white; border-radius:16px; overflow:hidden; position:relative; }
.ll-person-photo { height:320px; background:#eae5d9; overflow:hidden; }
.ll-person-photo img { height:100%; width:100%; object-fit:cover; transition:transform .5s; }
.ll-person-card:hover .ll-person-photo img { transform:scale(1.04); }
.ll-person-empty { display:flex; flex-direction:column; justify-content:center; align-items:center; gap:12px; color:#776749; font-size:14px; background:radial-gradient(ellipse at 50% 120%,#d5c19a 0 32%,transparent 32%),#ece7dc; }
.ll-person-empty .ll-person-monogram { font-size:80px; line-height:1; letter-spacing:-7px; opacity:.55; }
.ll-person-card:nth-child(2n) .ll-person-empty { background:radial-gradient(ellipse at 50% 120%,#e2d3b2 0 32%,transparent 32%),#f5efdf; }
.ll-person-copy { padding:24px; }
.ll-person-copy h3 { margin:4px 0 8px; font-size:23px; line-height:1.3; }
.ll-person-copy p { color:var(--ll-muted); margin:0; }
.ll-small-index { font-size:12px; color:var(--ll-taupe); }
.ll-carousel-controls { display:flex; justify-content:space-between; align-items:center; margin-top:24px; }
.ll-carousel-controls>div { display:flex; gap:10px; }
.ll-carousel-controls button { width:46px; height:46px; border-radius:50%; border:1px solid var(--ll-line); background:white; color:var(--ll-brown); cursor:pointer; font-size:22px; transition:background .2s; }
.ll-carousel-controls button:hover:not(:disabled) { background:var(--ll-gold-100); }
.ll-carousel-status { font-size:13px; color:var(--ll-muted); }
.ll-feedback .ll-carousel-track { grid-auto-columns:calc((100% - 24px)/2); }
.ll-feedback .ll-person-card { display:grid; grid-template-columns:40% 1fr; border:1px solid var(--ll-line); }
.ll-feedback .ll-person-photo { height:280px; }
.ll-feedback .ll-person-copy { align-self:center; }
.ll-feedback .ll-person-photo>span:last-child { font-size:12px; text-align:center; padding:10px; }
.ll-mini-gallery { grid-template-columns:1.2fr .8fr 1fr; }
.ll-mini-gallery .ll-photo-frame:first-child { grid-row:span 2; min-height:540px; }
.ll-mini-gallery .ll-photo-frame:last-child { grid-column:span 2; min-height:240px; }
.ll-gallery-open { border:0; position:absolute; inset:0; width:100%; cursor:zoom-in; }
.ll-booking-points { margin:36px 0; padding:0; list-style:none; counter-reset:booking; }
.ll-booking-points li { counter-increment:booking; border-bottom:1px solid var(--ll-line); padding:19px 0; font-size:19px; }
.ll-booking-points li::before { content:'0' counter(booking); font-size:13px; margin-right:24px; color:var(--ll-taupe); }
#booking { background:linear-gradient(115deg,#fff 55%,#faf7ee 55%); }
.ll-form-panel { padding:36px; }
.ll-form-note { margin:0; color:var(--ll-muted); font-size:12px; }
.ll-field input,.ll-field select,.ll-field textarea { background:white; }
.ll-faq details { border:0; border-bottom:1px solid var(--ll-line); border-radius:0; padding:22px 0; background:none; }
.ll-faq summary { list-style:none; padding-right:30px; position:relative; }
.ll-faq summary::-webkit-details-marker { display:none; }
.ll-faq summary::after { content:'+'; position:absolute; right:0; font-size:22px; top:-4px; }
.ll-faq details[open] summary::after { content:'−'; }
.ll-faq-panel { overflow:hidden; max-height:0; transition:max-height .28s var(--ll-ease),opacity .22s ease; opacity:0; }
.ll-faq details[open] .ll-faq-panel { max-height:360px; opacity:1; }
.ll-faq details.is-open .ll-faq-panel { opacity:1; }
.ll-faq-panel p { margin-top:14px; }
.ll-footer { padding:64px 0 24px; }
.ll-footer-heading { display:flex; justify-content:space-between; align-items:center; gap:30px; padding-bottom:50px; border-bottom:1px solid #ffffff30; margin-bottom:46px; }
.ll-footer-heading p { font-size:clamp(26px,3vw,42px); line-height:1.2; margin:0; }
.ll-footer-heading .ll-btn-secondary { background:#efd891; color:var(--ll-brown); }
.ll-footer-grid { grid-template-columns:1.2fr .8fr 1fr; align-items:start; }
.ll-footer-links { text-align:left; font-size:14px; }
.ll-footer-links strong { color:white; margin-bottom:8px; }
.ll-socials { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:18px; }
.ll-socials a,.ll-social-pending { font-size:14px; padding-bottom:10px; border-bottom:1px solid #ffffff30; display:flex; justify-content:space-between; gap:8px; flex-wrap:wrap; }
.ll-social-pending small { font-size:10px; color:#dccfbd; width:100%; }
.ll-footer-bottom { display:flex; justify-content:space-between; font-size:12px; gap:12px; color:#dccfbd; border-top:1px solid #ffffff30; margin-top:44px; padding-top:22px; }
.ll-back-top { position:fixed; bottom:24px; right:24px; width:48px; height:48px; border:1px solid var(--ll-line); border-radius:50%; color:var(--ll-brown); background:white; box-shadow:0 4px 20px #31251a18; z-index:25; font-size:25px; cursor:pointer; }
.ll-lightbox { border:0; border-radius:14px; padding:20px; max-width:min(90vw,1100px); color:var(--ll-ink); }
.ll-lightbox::backdrop { background:#19120de0; }
.ll-lightbox img { max-height:75dvh; max-width:100%; margin:auto; }
.ll-lightbox-close { position:absolute; right:10px; top:10px; }
.ll-lightbox p { margin-bottom:0; }
.ll-success-dialog { width:min(520px,calc(100% - 36px)); border:0; border-radius:24px; padding:34px; color:var(--ll-ink); box-shadow:0 24px 80px #21190f40; }
.ll-success-dialog::backdrop { background:#21190fe0; backdrop-filter:blur(4px); }
.ll-success-dialog[open] { animation:ll-dialog-in .22s ease; }
.ll-success-close { position:absolute; right:16px; top:16px; }
.ll-success-mark { width:58px; height:58px; border-radius:50%; display:grid; place-items:center; background:#eef7e8; color:#315222; margin-bottom:18px; }
.ll-success-mark .ll-icon { width:28px; height:28px; }
.ll-success-kicker { margin:0 0 8px; color:#927038; font-weight:800; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.ll-success-dialog h2 { margin:0 34px 14px 0; font-size:clamp(28px,4vw,40px); line-height:1.12; }
.ll-success-message { color:var(--ll-muted); margin:0 0 24px; font-size:16px; line-height:1.6; }
.ll-success-actions { display:flex; gap:12px; flex-wrap:wrap; }
.ll-success-actions [hidden] { display:none; }
.ll-collection-hero { padding:55px 0 75px; background:var(--ll-wash); }
.ll-breadcrumb { font-size:13px; color:var(--ll-muted); margin-bottom:38px; }
.ll-collection-hero h1 { font-size:clamp(38px,5vw,66px); line-height:1.08; margin:0 0 24px; letter-spacing:-1.5px; }
.ll-collection-hero p { max-width:550px; color:var(--ll-muted); }
.ll-collection-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px; }
.ll-collection-cta { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.ll-reveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease,transform .65s cubic-bezier(.2,.65,.3,1); }
.ll-reveal.is-visible { opacity:1; transform:none; }
@media(min-width:1021px) and (max-width:1200px) { .ll-menu { gap:12px; font-size:12px; } .ll-brand img { width:140px; } .ll-nav { gap:14px; } }
@media(max-width:1020px) {
 .ll-nav { flex-wrap:wrap; gap:12px; }
 .ll-menu-toggle { display:flex; flex-direction:column; justify-content:center; align-items:center; gap:5px; width:44px; height:44px; border:1px solid var(--ll-line); background:white; border-radius:50%; order:3; cursor:pointer; }
 .ll-menu-toggle span { height:2px; width:18px; background:var(--ll-brown); transition:transform .2s,opacity .2s; }
 .ll-menu-toggle[aria-expanded=true] span:first-child { transform:translateY(7px) rotate(45deg); }
 .ll-menu-toggle[aria-expanded=true] span:nth-child(2) { opacity:0; }
 .ll-menu-toggle[aria-expanded=true] span:last-child { transform:translateY(-7px) rotate(-45deg); }
 .ll-actions { margin-left:auto; order:2; }
 .ll-menu { order:4; width:100%; padding:12px 0 22px; flex-direction:column; align-items:stretch; gap:0; max-height:calc(100dvh - 90px); overflow-y:auto; }
 .ll-menu.is-open { display:flex; animation:ll-menu-in .2s ease; }
 .ll-menu a { padding:15px 4px; border-top:1px solid var(--ll-line); font-size:17px; }
 .ll-menu a::after { display:none; }
 .ll-hero-grid { grid-template-columns:1fr 1fr; gap:26px; }
 .ll-hero-photo { min-height:370px !important; }
 .ll-hero h1 { font-size:52px; }
 .ll-hero-cta { gap:8px; }
 .ll-hero-cta .ll-btn { font-size:13px; padding:12px 15px; }
 .ll-carousel-track { grid-auto-columns:calc((100% - 24px)/2); }
 .ll-footer-grid { grid-template-columns:1fr 1fr; }
 .ll-footer-grid>div:first-child { grid-column:span 2; }
}
@keyframes ll-menu-in { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }
@media(max-width:680px) {
 .ll-shell { width:calc(100% - 40px); }
 .ll-brand { min-width:0; }
 .ll-brand img { width:120px; }
 .ll-actions .ll-btn { min-height:40px; font-size:12px; padding:10px 13px; }
 .ll-nav { gap:8px; min-height:70px; }
 .ll-hero { padding:38px 0 54px; }
 .ll-hero-grid { grid-template-columns:1fr; gap:38px; }
 .ll-hero h1 { font-size:clamp(42px,11.8vw,62px); letter-spacing:-1.6px; }
 .ll-hero-copy { font-size:17px; }
 .ll-hero-photo { min-height:350px !important; }
 .ll-hero-art { margin:0 10px; }
 .ll-floating-note { left:-10px; font-size:12px; padding:14px; }
 .ll-hero-stamp { font-size:12px; }
 .ll-section { padding:62px 0; }
 .ll-section-head { margin-bottom:30px; }
 .ll-section h2 { font-size:33px; letter-spacing:-.8px; }
 #about .ll-grid-3 { gap:26px; }
 .ll-photo-grid { grid-template-columns:1fr 1fr; gap:12px; }
 .ll-photo-grid .ll-photo-frame:first-child { grid-column:span 2; grid-row:auto; min-height:300px; }
 .ll-photo-grid .ll-photo-frame { min-height:210px; }
 .ll-photo-grid .ll-photo-frame:nth-child(2),.ll-photo-grid .ll-photo-frame:nth-child(3) { margin:0; }
 .ll-photo-frame figcaption { left:16px; right:16px; bottom:16px; font-size:12px; }
 .ll-photo-frame figcaption small { font-size:10px; }
 .ll-program-main { padding:28px; }
 .ll-program-main h3 { font-size:36px; }
 .ll-program-list { padding-left:0; }
 #benefits .ll-grid-3 { grid-template-columns:1fr; }
 #benefits .ll-card { min-height:190px; }
 .ll-steps { grid-template-columns:1fr 1fr; gap:20px; }
 .ll-step { min-height:0; }
 .ll-step h3 { font-size:18px; }
 .ll-step p { font-size:14px; }
 .ll-people-head { display:block; }
 .ll-people-head .ll-text-link { margin-top:18px; }
 .ll-carousel-track { grid-auto-columns:85%; gap:16px; }
 .ll-person-photo { height:300px; }
 .ll-feedback .ll-carousel-track { grid-auto-columns:92%; }
 .ll-feedback .ll-person-card { display:block; }
 .ll-feedback .ll-person-photo { height:180px; }
 .ll-mini-gallery { grid-template-columns:1fr 1fr; gap:12px; }
 .ll-mini-gallery .ll-photo-frame:first-child { grid-column:span 2; grid-row:auto; min-height:310px; }
 .ll-mini-gallery .ll-photo-frame { min-height:220px; }
 .ll-mini-gallery .ll-photo-frame:last-child { grid-column:span 2; }
 #booking { background:#faf9f6; }
 .ll-form-panel { padding:22px; border-radius:18px; }
 .ll-footer-heading { display:block; padding-bottom:35px; }
 .ll-footer-heading .ll-btn { margin-top:24px; }
 .ll-footer-grid { grid-template-columns:1fr; }
 .ll-footer-grid>div:first-child { grid-column:auto; }
 .ll-footer-bottom { flex-direction:column; padding-right:55px; }
 .ll-back-top { bottom:18px; right:16px; }
 .ll-collection-grid { grid-template-columns:1fr; }
 .ll-collection-cta { display:block; }
 .ll-collection-cta .ll-btn { margin-top:26px; }
}
@media(prefers-reduced-motion:reduce) { .ll-reveal { opacity:1; transform:none; } .ll-floating-note { animation:none; } }
.ll-brand img { height:58px; width:150px; object-fit:contain; }
.ll-hero-photo figcaption { bottom:44px; }
@media(max-width:680px) { .ll-brand img { height:48px; width:120px; } .ll-hero-photo figcaption { bottom:54px; } }
/* The source logo includes a large canvas. Crop that canvas in the header. */
.ll-brand img { object-fit:cover; }
.ll-footer img { height:82px; object-fit:cover; }

/* Photography, high-contrast captions and program detail dialogs. */
.ll-icon { width:24px; height:24px; flex-shrink:0; stroke-width:1.6; vertical-align:middle; }
.ll-brand { width:174px; min-width:174px; }
.ll-logo-svg { display:block; width:100%; height:auto; }
.ll-brand .ll-logo-svg { width:174px; height:70px; }
.ll-footer-brand { width:180px; padding:14px; background:white; border-radius:12px; }
.ll-footer-brand .ll-logo-svg { height:134px; }
.ll-eyebrow { padding:0; border:0; border-radius:0; background:none; gap:13px; font-size:12px; font-weight:500; letter-spacing:.025em; line-height:1.5; margin-bottom:25px; color:var(--ll-muted); }
.ll-eyebrow::before { display:none; }
.ll-eyebrow .ll-icon { width:38px; height:38px; stroke-width:1.25; color:#a77b25; }
.ll-hero h1 .ll-gold-word { font-style:normal; color:#bd8d27; }
.ll-photo-frame.has-image figcaption { background:#4f3721; color:#fff; border:1px solid #ffffff35; padding:10px 14px; border-radius:8px; font-size:13px; line-height:1.45; max-width:calc(100% - 48px); width:fit-content; margin:0; box-shadow:0 4px 15px #00000018; pointer-events:none; }
.ll-hero-photo.has-image figcaption { bottom:45px; }
.ll-hero-photo img { object-position:50% 45%; }
.ll-feature-icon { display:block; width:38px; height:38px; margin-bottom:24px; color:#927038; stroke-width:1.4; }
#benefits .ll-card:nth-child(2) .ll-icon { color:#efd891; }
#benefits .ll-card:first-child .ll-icon { color:var(--ll-brown); }
#benefits .ll-card { min-height:265px; }
.ll-step { position:relative; padding-top:30px; }
.ll-step::before { position:absolute; right:0; top:26px; font-size:15px; opacity:.8; margin:0; }
.ll-step .ll-feature-icon { margin-bottom:24px; }
.ll-section-icon { width:48px; height:48px; color:#927038; margin-bottom:24px; stroke-width:1.3; }
.ll-course-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(340px, 1fr)); gap:28px; }
.ll-course-card { border:1px solid var(--ll-line); border-radius:18px; overflow:hidden; display:flex; flex-direction:column; background:white; transition:transform .25s,box-shadow .25s; }
.ll-course-card:hover { transform:translateY(-5px); box-shadow:0 15px 40px #4f372110; }
.ll-course-photo { border-radius:0; min-height:240px; }
.ll-course-content { padding:26px; display:flex; flex-direction:column; flex:1; }
.ll-course-category { display:flex; align-items:center; gap:10px; font-size:12px; letter-spacing:.03em; color:var(--ll-taupe); }
.ll-course-content h3 { margin:14px 0 12px; font-size:27px; line-height:1.2; }
.ll-course-content p { margin:0 0 26px; color:var(--ll-muted); font-size:15px; }
.ll-course-actions { display:flex; gap:12px; justify-content:space-between; align-items:center; margin-top:auto; flex-wrap:wrap; }
.ll-course-actions .ll-btn { padding:12px 16px; font-size:13px; }
.ll-course-details { display:inline-flex; gap:6px; align-items:center; border:0; padding:10px 0; background:transparent; color:var(--ll-brown); cursor:pointer; font-size:14px; }
.ll-course-details .ll-icon { width:19px; height:19px; }
.ll-course-details:hover { text-decoration:underline; text-underline-offset:5px; }
.ll-course-dialog { border:0; padding:0; width:min(720px,calc(100% - 40px)); max-height:calc(100dvh - 60px); border-radius:20px; color:var(--ll-ink); overscroll-behavior:contain; }
.ll-course-dialog::backdrop { background:#21190fe0; backdrop-filter:blur(4px); }
.ll-course-dialog[open] { animation:ll-dialog-in .22s ease; }
@keyframes ll-dialog-in { from { opacity:0; transform:translateY(16px) scale(.98); } to { opacity:1; transform:none; } }
body:has(dialog[open]) { overflow:hidden; }
.ll-dialog-photo { min-height:240px; border-radius:0; }
.ll-dialog-photo img { object-position:center 45%; }
.ll-dialog-close { position:sticky; z-index:3; top:16px; float:right; margin:16px 16px -60px 0; }
.ll-dialog-close,.ll-lightbox-close,.ll-success-close { width:44px; height:44px; display:grid; place-items:center; border:1px solid var(--ll-line); background:white; color:var(--ll-brown); border-radius:50%; cursor:pointer; box-shadow:0 4px 18px #0002; transition:transform .2s var(--ll-ease),background .2s,border-color .2s; }
.ll-dialog-close:hover,.ll-lightbox-close:hover,.ll-success-close:hover { transform:translateY(-1px); background:var(--ll-gold-100); border-color:#e1bc65; }
.ll-dialog-close:focus-visible,.ll-lightbox-close:focus-visible,.ll-success-close:focus-visible { outline:3px solid #efd891; outline-offset:3px; }
.ll-dialog-close .ll-icon,.ll-lightbox-close .ll-icon,.ll-success-close .ll-icon { width:20px; height:20px; display:block; }
.ll-dialog-content { padding:34px 40px 40px; }
.ll-dialog-content h2 { font-size:36px; line-height:1.15; margin:16px 0; }
.ll-dialog-content h3 { font-size:19px; line-height:1.35; margin:26px 0 10px; color:var(--ll-brown); font-weight:700; }
.ll-dialog-content p { color:var(--ll-muted); margin:0 0 16px; line-height:1.6; }
.ll-dialog-content .ll-course-lead { font-size:16px; line-height:1.5; color:var(--ll-brown); margin:0 0 16px; }
.ll-dialog-content ul { list-style:none; padding:0; margin:0 0 20px; display:grid; gap:12px; }
.ll-dialog-content li { display:flex; gap:10px; align-items:flex-start; color:var(--ll-muted); line-height:1.55; }
.ll-dialog-content li span { flex:1; }
.ll-dialog-content li strong { color:var(--ll-brown); }
.ll-dialog-content li .ll-icon { width:20px; color:#927038; flex-shrink:0; margin-top:2px; }
.ll-dialog-content .ll-course-note { font-size:14px; line-height:1.5; color:var(--ll-brown); background:var(--ll-soft); padding:16px 20px; border-radius:12px; border-left:3px solid #e1bc65; margin:25px 0; }
.ll-feedback .ll-carousel-track { grid-auto-columns:calc((100% - 48px)/3); align-items:stretch; }
.ll-feedback .ll-person-card { display:flex; flex-direction:column; border-radius:18px; }
.ll-feedback .ll-person-photo { height:190px; width:100%; flex-shrink:0; }
.ll-feedback .ll-person-photo img { object-position:50% 30%; }
.ll-feedback .ll-person-copy { align-self:stretch; padding:24px; flex:1; }
.ll-feedback .ll-person-copy>.ll-icon { display:block; width:30px; height:30px; color:#9c7734; margin-bottom:10px; }
.ll-feedback .ll-person-copy h3 { font-size:23px; margin:10px 0 14px; }
.ll-feedback .ll-person-copy p { font-size:15px; }
.ll-demo-label { display:inline-block; color:#796241; font-size:10px; letter-spacing:.015em; }
.ll-story-topic { display:block; padding-top:18px; margin-top:22px; border-top:1px solid var(--ll-line); font-size:12px; color:var(--ll-taupe); }
.ll-person-photo img { object-position:center 30%; }
.ll-socials a,.ll-social-pending { justify-content:flex-start; align-items:center; gap:8px; }
.ll-socials .ll-icon { width:20px; height:20px; color:var(--ll-gold-100); }
.ll-social-pending small { padding-left:28px; }
@media(max-width:1020px) {
 .ll-course-grid { gap:16px; }
 .ll-course-content { padding:20px; }
 .ll-course-content h3 { font-size:23px; }
 .ll-course-photo { min-height:210px; }
 .ll-feedback .ll-carousel-track { grid-auto-columns:calc((100% - 24px)/2); }
}
@media(max-width:680px) {
 .ll-brand { width:125px; min-width:125px; }
 .ll-brand .ll-logo-svg { width:125px; height:55px; }
 .ll-eyebrow { font-size:11px; margin-bottom:22px; }
 .ll-eyebrow .ll-icon { width:32px; height:32px; }
 .ll-course-grid { grid-template-columns:1fr; gap:24px; }
 .ll-course-photo { min-height:230px; }
 .ll-course-content { padding:24px; }
 .ll-course-content h3 { font-size:27px; }
 .ll-course-actions { flex-wrap:nowrap; }
 .ll-feedback .ll-carousel-track { grid-auto-columns:88%; }
 .ll-feedback .ll-person-photo { height:210px; }
 .ll-photo-frame.has-image figcaption { font-size:12px; max-width:calc(100% - 32px); padding:8px 10px; }
 .ll-hero-photo.has-image figcaption { bottom:54px; }
 .ll-dialog-photo { min-height:190px; }
 .ll-course-dialog { max-height:calc(100dvh - 28px); width:calc(100% - 24px); }
 .ll-dialog-content { padding:25px; }
 .ll-dialog-content h2 { font-size:29px; }
 .ll-step .ll-feature-icon { width:32px; height:32px; }
}
/* Portraits remain fully legible in compact feedback cards. */
.ll-feedback .ll-person-card { position:relative; }
.ll-feedback .ll-person-photo { width:76px; height:76px; border-radius:50%; margin:26px 26px 0; }
.ll-feedback .ll-person-photo img { object-position:center 38%; }
.ll-feedback .ll-person-copy { padding:20px 26px 26px; display:flex; flex-direction:column; }
.ll-feedback .ll-person-copy>.ll-icon { position:absolute; right:26px; top:35px; width:34px; height:34px; opacity:.6; }
.ll-feedback .ll-story-topic { margin-top:auto; }
.ll-feedback .ll-person-copy>p { padding-bottom:22px; }
.ll-hero h1 .ll-gold-word { color:#b98a25; }
@media(prefers-reduced-motion:reduce) { .ll-course-dialog[open] { animation:none; } }

/* Spacing system: logo sits inside explicit padding, not a cropped navbar. */
:root { --ll-section-space:clamp(64px,6vw,88px); --ll-content-gap:32px; --ll-ease:cubic-bezier(.22,1,.36,1); }
.ll-nav { min-height:86px; padding-block:14px; }
.ll-brand { width:140px; min-width:140px; flex:0 0 140px; }
.ll-brand .ll-logo-svg { width:140px; height:58px; }
.ll-header.is-scrolled .ll-nav { min-height:86px; }
.ll-footer-brand { width:164px; background:transparent; border-radius:0; padding:0; margin-bottom:22px; }
.ll-footer-brand .ll-logo-svg { width:164px; height:144px; filter:brightness(0) invert(1); }
.ll-footer-grid { gap:48px; }
.ll-footer-grid>div:first-child>p { margin-top:0; }
.ll-footer-heading { padding-bottom:40px; margin-bottom:40px; }
.ll-section { padding-block:var(--ll-section-space); }
.ll-section-head { margin-bottom:36px; }
.ll-section-head p,.ll-people-head p { margin-top:18px; }
.ll-people-head { margin-bottom:36px; }
.ll-media-split { gap:56px; }
.ll-hero { padding:52px 0 60px; }
.ll-hero-grid { gap:52px; }
.ll-hero-art { padding-bottom:38px; }
.ll-hero-copy { margin-top:24px; }
.ll-hero-cta { margin-top:28px; }
.ll-course-content { padding:28px; }
.ll-course-content p { margin-bottom:24px; }
.ll-course-actions { gap:10px; }
.ll-card h3 { margin-bottom:12px; }
.ll-booking-points { margin:28px 0; }
.ll-footer-bottom { align-items:center; flex-wrap:wrap; }
.ll-word-ribbon { overflow:hidden; border-block:1px solid var(--ll-line); background:#fffdf7; padding:22px 0; }
.ll-ribbon-track { display:flex; width:max-content; }
.ll-ribbon-group { display:flex; align-items:center; gap:48px; padding-right:48px; flex-shrink:0; }
.ll-ribbon-group span { font-size:clamp(20px,2.1vw,30px); color:var(--ll-brown); letter-spacing:-.5px; white-space:nowrap; }
.ll-ribbon-group .ll-icon { width:28px; height:28px; color:#a7833f; }
#about { border-top:0; }
.ll-hero h1 .ll-title-line { display:block; color:var(--ll-ink); }
.ll-hero h1 .ll-title-line:last-child { color:var(--ll-brown); }
.ll-gold-word { position:relative; display:inline-block; }
.ll-gold-word::after { content:''; position:absolute; left:0; bottom:-5px; width:100%; height:5px; border:2px solid #e1bc65; border-color:#e1bc65 transparent transparent; border-radius:50%; transform-origin:left; }
.ll-hero-art { perspective:1000px; }
.ll-hero-photo { transition:rotate .65s var(--ll-ease),box-shadow .6s; }
.ll-orbit { animation:none; }
.ll-floating-note { animation:none; }
.ll-stagger { opacity:1; transform:none; }
.ll-step { --ll-step-progress:0; }
.ll-step::after { content:''; position:absolute; top:-1px; left:0; width:100%; height:2px; background:var(--ll-gold-300); transform:scaleX(var(--ll-step-progress)); transform-origin:left; transition:transform .65s var(--ll-ease); }
.ll-step.is-inview { --ll-step-progress:1; }
.ll-carousel-controls { gap:20px; }
.ll-carousel-play { font-size:16px !important; }
.ll-back-top { background:linear-gradient(#fff,#fff) padding-box,conic-gradient(#b98a25 calc(var(--ll-scroll-progress,0)*1turn),#eee7da 0) border-box; border:2px solid transparent; }
.ll-btn .ll-icon,.ll-text-link .ll-icon,.ll-course-details .ll-icon { transition:translate .25s var(--ll-ease); }
.ll-btn:hover .ll-icon,.ll-text-link:hover .ll-icon,.ll-course-details:hover .ll-icon { translate:3px -3px; }
 .ll-motion-on .ll-eyebrow { animation:ll-enter .8s var(--ll-ease) both; }
 .ll-motion-on .ll-title-line { animation:ll-title-enter 1.05s var(--ll-ease) both; }
 .ll-motion-on .ll-title-line:first-child { animation-delay:.08s; }
 .ll-motion-on .ll-title-line:last-child { animation-delay:.2s; }
 .ll-motion-on .ll-hero-copy { animation:ll-enter .9s .32s var(--ll-ease) both; }
 .ll-motion-on .ll-hero-cta { animation:ll-enter .9s .44s var(--ll-ease) both; }
 .ll-motion-on .ll-hero-photo { animation:ll-photo-enter 1.2s .1s var(--ll-ease) both; }
 .ll-motion-on .ll-gold-word::after { animation:ll-draw .8s .75s var(--ll-ease) both; }
 .ll-motion-on .ll-orbit { animation:ll-orbit-breathe 9s ease-in-out infinite; }
 .ll-motion-on .ll-floating-note { animation:ll-note-float 6s ease-in-out infinite; }
 .ll-motion-on .ll-hero-stamp { animation:ll-stamp-sway 8s ease-in-out infinite; transform-origin:50% 10%; }
 .ll-motion-on .ll-eyebrow .ll-icon { animation:ll-sun-turn 32s linear infinite; }
 .ll-motion-on .ll-ribbon-track { animation:ll-ribbon-drift 38s linear infinite; }
 .ll-word-ribbon:hover .ll-ribbon-track { animation-play-state:paused; }
 .ll-motion-on .ll-stagger { opacity:0; transform:translateY(32px); transition:opacity .85s var(--ll-ease),transform .85s var(--ll-ease); transition-delay:var(--ll-delay,0ms); }
 .ll-motion-on .ll-stagger.is-inview { opacity:1; transform:none; }
 .ll-motion-on .ll-image-reveal { clip-path:inset(0 0 10% 0 round 18px); transition:clip-path 1.05s var(--ll-ease),opacity .9s,transform .9s var(--ll-ease); }
 .ll-motion-on .ll-image-reveal.is-inview { clip-path:inset(0 0 0 0 round 18px); }
 .ll-motion-on .ll-parallax-image { scale:1.09; translate:0 var(--ll-image-shift,0px); }
 .ll-motion-on .ll-feature-icon { transition:transform .45s var(--ll-ease); }
 .ll-card:hover .ll-feature-icon { transform:translateY(-4px) rotate(-7deg); }
 .ll-motion-paused *, .ll-motion-paused *::before,.ll-motion-paused *::after { animation-play-state:paused !important; }
 .ll-motion-paused .ll-stagger { opacity:1; transform:none; clip-path:none; }
@keyframes ll-enter { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes ll-title-enter { from { opacity:0; transform:translateY(30px); clip-path:inset(0 0 100% 0); } to { opacity:1; transform:none; clip-path:inset(-10% -2% -12% -2%); } }
@keyframes ll-photo-enter { from { opacity:0; transform:translateY(20px) scale(.96); } to { opacity:1; transform:none; } }
@keyframes ll-draw { from { transform:scaleX(0); } to { transform:scaleX(1); } }
@keyframes ll-orbit-breathe { 0%,100% { transform:rotate(6deg) scale(1); } 50% { transform:rotate(2deg) scale(1.025); } }
@keyframes ll-note-float { 0%,100% { transform:translateY(0) rotate(-1deg); } 50% { transform:translateY(-10px) rotate(1deg); } }
@keyframes ll-stamp-sway { 0%,100% { transform:rotate(8deg); } 50% { transform:rotate(3deg) translateY(-5px); } }
@keyframes ll-sun-turn { to { transform:rotate(360deg); } }
@keyframes ll-ribbon-drift { to { transform:translateX(-50%); } }
@media(max-width:1020px) {
 .ll-nav { min-height:80px; padding-block:12px; }
 .ll-header.is-scrolled .ll-nav { min-height:80px; }
 .ll-brand,.ll-brand .ll-logo-svg { width:130px; min-width:130px; }
 .ll-brand { flex-basis:130px; }
 .ll-brand .ll-logo-svg { height:56px; }
 .ll-media-split { gap:32px; }
 .ll-course-content { padding:22px; }
 .ll-hero-grid { gap:28px; }
}
@media(max-width:680px) {
 :root { --ll-section-space:56px; }
 .ll-nav { min-height:76px; padding-block:12px; }
 .ll-header.is-scrolled .ll-nav { min-height:76px; }
 .ll-brand,.ll-brand .ll-logo-svg { width:120px; min-width:120px; }
 .ll-brand { flex-basis:120px; }
 .ll-brand .ll-logo-svg { height:52px; }
 .ll-hero { padding:32px 0 42px; }
 .ll-hero-grid { gap:30px; }
 .ll-hero-art { margin:0 6px; padding-bottom:32px; }
 .ll-section-head,.ll-people-head { margin-bottom:28px; }
 .ll-section-head p,.ll-people-head p { margin-top:16px; }
 .ll-eyebrow { margin-bottom:20px; }
 .ll-hero-copy { margin-top:20px; }
 .ll-hero-cta { margin-top:24px; }
 .ll-word-ribbon { padding-block:17px; }
 .ll-ribbon-group { gap:28px; padding-right:28px; }
 .ll-ribbon-group .ll-icon { width:22px; height:22px; }
 .ll-footer { padding-top:48px; }
 .ll-footer-grid { gap:32px; }
 .ll-footer-heading { padding-bottom:32px; margin-bottom:32px; }
 .ll-footer-brand { width:145px; margin-bottom:20px; }
 .ll-footer-brand .ll-logo-svg { width:145px; height:128px; }
 .ll-footer-bottom { align-items:flex-start; margin-top:32px; }
 .ll-course-content { padding:24px; }
}
@media(prefers-reduced-motion:reduce) {
 html:not(.ll-motion-on) .ll-stagger { opacity:1 !important; transform:none !important; clip-path:none !important; }
 html:not(.ll-motion-on) .ll-parallax-image { translate:none !important; scale:1 !important; }
}

.ll-teachers .ll-person-photo {
  height: 380px;
}

.ll-feedback .ll-person-photo {
  width: 118px;
  height: 118px;
  margin: 30px 30px 0;
}

.ll-feedback .ll-person-copy > .ll-icon {
  top: 48px;
}

@media(max-width:900px) {
  .ll-teachers .ll-person-photo {
    height: 340px;
  }

  .ll-feedback .ll-person-photo {
    width: 104px;
    height: 104px;
  }
}

@media(max-width:640px) {
  .ll-teachers .ll-person-photo {
    height: 330px;
  }

  .ll-feedback .ll-person-photo {
    width: 96px;
    height: 96px;
    margin: 24px 24px 0;
  }
}


@media (max-width: 640px) {
  .ll-form-panel,
  .ll-form,
  .ll-form-grid,
  .ll-field {
    max-width: 100%;
    min-width: 0;
  }

  .ll-field input[type="date"] {
    font-size: 16px;
    height: var(--ll-control-height);
    min-height: var(--ll-control-height);
    line-height: 1.3;
    padding-left: 12px;
    padding-right: 10px;
    width: 100%;
  }

  .ll-field input[type="date"]::-webkit-calendar-picker-indicator {
    flex: 0 0 auto;
    margin-left: 0;
    padding: 0;
  }
}

/* 8-Step Journey Layout */
@media (min-width: 980px) {
  .ll-steps {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 36px 28px !important;
  }
}
@media (max-width: 979px) and (min-width: 681px) {
  .ll-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px 20px !important;
  }
}
.ll-step::before {
  content: counter(steps, decimal-leading-zero) !important;
}

/* Community Section (Speak Up Global x JCI Trevi) */
.ll-community {
  background: #faf7f2;
  border-top: 1px solid var(--ll-line);
  position: relative;
  overflow: hidden;
}

.ll-community .ll-media-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 68px);
  align-items: center;
}

.ll-community-visual {
  position: relative;
}

.ll-community-frame-wrap {
  position: relative;
  padding-top: 64px;
  padding-bottom: 0;
}

.ll-community-photo {
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(79, 55, 33, 0.12) !important;
  min-height: 480px;
  background: #e8ded1;
  position: relative;
}

.ll-community-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ll-community-partner-badge {
  position: absolute;
  top: 0;
  right: 24px;
  bottom: auto;
  background: #ffffff;
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(79, 55, 33, 0.2);
  border: 1px solid var(--ll-line);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ll-community-partner-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(79, 55, 33, 0.26);
}

.ll-community-partner-badge img {
  height: 118px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
}

.ll-community .ll-eyebrow,
.ll-community-heading {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: -1.2px;
  font-weight: 700;
  color: var(--ll-brown);
  margin: 0 0 16px;
}

.ll-community .ll-eyebrow .ll-icon,
.ll-community-heading .ll-icon {
  width: 38px;
  height: 38px;
  stroke-width: 1.35;
  color: #927038;
  flex-shrink: 0;
}

.ll-community-subtitle {
  margin: 0 0 18px;
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.38;
  font-weight: 600;
  color: #6a533f;
  letter-spacing: -0.4px;
}

.ll-community-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ll-ink);
  margin: 0 0 28px;
  font-weight: 500;
}

.ll-community-features {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.ll-community-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--ll-line);
  border-radius: 14px;
  transition: transform 0.25s var(--ll-ease), box-shadow 0.25s var(--ll-ease);
}

.ll-community-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79, 55, 33, 0.08);
}

.ll-community-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ll-gold-100);
  color: var(--ll-brown);
  flex-shrink: 0;
  margin-top: 2px;
}

.ll-community-feature-icon .ll-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}

.ll-community-feature h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ll-brown);
}

.ll-community-feature p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ll-muted);
}

.ll-community-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

@media (max-width: 900px) {
  .ll-community .ll-media-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ll-community-frame-wrap {
    padding-top: 42px;
  }

  .ll-community-photo,
  .ll-community-photo img {
    min-height: 320px;
    height: 320px;
  }

  .ll-community-partner-badge {
    top: 0;
    right: 16px;
    bottom: auto;
    padding: 10px 16px;
    border-radius: 12px;
  }

  .ll-community-partner-badge img {
    height: 76px;
    max-width: 260px;
  }

  .ll-community .ll-eyebrow,
  .ll-community-heading {
    font-size: clamp(24px, 5.5vw, 32px);
    margin-bottom: 12px;
    gap: 10px;
  }

  .ll-community .ll-eyebrow .ll-icon,
  .ll-community-heading .ll-icon {
    width: 30px;
    height: 30px;
  }

  .ll-community-subtitle {
    font-size: 17px;
    margin-bottom: 14px;
  }
}

/* ==========================================================================
   Assessment Callout & QR Code (Theme v1.6.0)
   ========================================================================== */
.ll-booking-assessment {
  margin-top: 32px;
  background: var(--ll-soft);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ll-booking-assessment-info {
  flex: 1;
  min-width: 0;
}

.ll-booking-assessment-title {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ll-brown);
}

.ll-booking-assessment-qr {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--ll-white);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius-sm);
  padding: 8px 10px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ll-booking-assessment-qr:hover {
  transform: translateY(-2px);
  border-color: var(--ll-taupe);
  box-shadow: 0 8px 20px rgba(79, 55, 33, 0.08);
}

.ll-booking-assessment-qr img {
  width: 92px;
  height: 92px;
  display: block;
}

.ll-booking-assessment-qr span {
  font-size: 11px;
  color: var(--ll-muted);
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 640px) {
  .ll-booking-assessment {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 18px;
  }

  .ll-booking-assessment .ll-btn {
    width: 100%;
    justify-content: center;
  }

  .ll-booking-assessment-qr {
    align-self: center;
  }
}


