@import url("https://fonts.googleapis.com/css2?family=Chewy&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap");


:root {
  --primary: #A4CA4F;
  --primary-dark: #1e9103;
  --primary-light: #5fcf6f;
  --primary-subtle: #f0fce8;

  --secondary: #1F2A34;
  --secondary-dark: #121A22;
  --secondary-light: #344554;
  --secondary-subtle: #EEF3F6;

--cta: #7FAE2E;
--cta-dark: #5F8F18;
--cta-light: #C2E574;
--cta-subtle: #F3FAE6;

  --accent: #ffe662;
  --accent-dark: #ccaa00;
  --accent-light: #c0e172;
  --accent-subtle: #fffde0;

  --logo-burgundy: #7A1730;
  --logo-burgundy-dark: #4A1520;

  --white: #FFFFFF;
  --cream: #fffcef;
  --cream-dark: #f0e8d4;
  --surface: #FFFFFF;
  --surface-soft: #F6F8F9;

  --dark: #18202A;
  --text: #3A3D42;
  --muted: #74787C;
  --light-text: #FFFFFF;

  --badge-bg: #f0fce8;
  --badge-border: #a0d880;

  --border: #E3E7EA;
  --shadow: rgba(57, 181, 74, 0.12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --container: 1360px;

  --font-display: "Chewy", cursive;
  --font-body: "Poppins", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  background: var(--cream);
  color: var(--text);
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

button {
  cursor: pointer;
  border: 0;
}

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

a {
  color: inherit;
}

.ll-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-dark);
}

.ll-header__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ll-logo {
  width: 200px;
  text-decoration: none;
}

.ll-logo img {
  width: 100%;
  height: auto;
}

.ll-header__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.ll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease,
    transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.ll-btn--primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
}

.ll-btn--primary:hover {
  background: var(--cta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
}

.ll-btn--outline {
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.ll-btn--outline:hover {
  background: var(--primary-subtle);
  transform: translateY(-2px);
}

.ll-btn--outline-dark {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: 0.22s ease;
}

.ll-btn--outline-dark:hover {
  background: var(--primary-subtle);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.ll-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 80px) 0;
  background: var(--cream);
}

.ll-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 181, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ll-hero__overlay {
  display: none;
}

.ll-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: start;
  gap: clamp(32px, 4vw, 60px);
}

.ll-hero__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge — brand green */
.ll-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  margin-bottom: 20px;
  border-radius: var(--radius-pill);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  box-shadow: 0 10px 30px rgba(57, 181, 74, 0.10);
  max-width: max-content;
  cursor: pointer;
}

.ll-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
  flex-shrink: 0;
}

/* Title — Chewy display */
.ll-hero__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 400;
  font-family: var(--font-display);
}

.ll-hero__title span {
  color: var(--primary);
}

.ll-hero__subheadline {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
  font-weight: 400;
}

/* Hero photo */
.ll-hero__single-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  margin-top: 24px;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(57, 181, 74, 0.18);
}

.ll-hero__single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ll-hero__single-img:hover img {
  transform: scale(1.03);
}

.ll-hero__img-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(57, 181, 74, 0.32);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.ll-hero__img-pill i {
  font-size: 11px;
  color: var(--accent);
}

.ll-hero__img-rating {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(57, 181, 74, 0.15);
  box-shadow: 0 10px 30px rgba(57, 181, 74, 0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  pointer-events: none;
}

.ll-hero__img-badge-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cta-light) 100%);
  display: grid;
  place-items: center;
  color: var(--dark);
  font-size: 15px;
}

.ll-hero__img-rating strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.ll-hero__img-rating small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.ll-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.ll-info-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
}

.ll-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
}

.ll-info-item i {
  color: var(--primary);
  width: 16px;
  flex-shrink: 0;
}

/* ── Hero form card ── */
.ll-hero__form-col {
  position: sticky;
  top: 100px;
}

.ll-hero__form-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(57, 181, 74, 0.12);
  box-shadow: 0 4px 6px rgba(57, 181, 74, 0.04),
    0 24px 70px rgba(57, 181, 74, 0.12);
  overflow: hidden;
}

.ll-hero__form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.ll-hero__form-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
}

.ll-hero__form-header h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.ll-hero__form-header p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.ll-hero__form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary-subtle);
  border-bottom: 1px solid rgba(57, 181, 74, 0.15);
  flex-wrap: wrap;
}

.ll-hero__form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-dark);
}

.ll-hero__form-trust i {
  font-size: 11px;
  color: var(--primary);
}

.ll-hero__form-card .ll-iframe-wrap {
  border-radius: 0;
  border: none;
  box-shadow: none;
  min-height: 520px;
  background: var(--white);
}

.ll-hero__form-card .ll-iframe-wrap iframe {
  height: 620px;
}

/* ══════════════════════════════════════
   IFRAME (shared)
══════════════════════════════════════ */
.ll-iframe-wrap {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(57, 181, 74, 0.12);
  box-shadow: 0 20px 60px rgba(57, 181, 74, 0.08);
}

.ll-iframe-wrap iframe {
  width: 100%;
  height: 655px;
  border: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ll-iframe-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: 0.3s ease;
}

.ll-iframe-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ll-iframe-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(57, 181, 74, 0.18);
  border-top-color: var(--primary);
  animation: skSpin 0.8s linear infinite;
}

@keyframes skSpin {
  to {
    transform: rotate(360deg);
  }
}

.ll-iframe-loader p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* ══════════════════════════════════════
   FLOATING CTA — brand orange
══════════════════════════════════════ */
.ll-floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  min-height: 54px;
  padding: 15px 28px;
  border: none;
  border-radius: 999px;
  background: var(--cta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
  transition: 0.22s ease;
}

.ll-floating-cta:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.ll-section {
  position: relative;
  padding: clamp(70px, 7vw, 110px) 0;
}

.ll-container {
  width: min(var(--container, 1360px), calc(100% - 48px));
  margin: 0 auto;
}

.ll-section-head {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 58px);
  text-align: center;
}

.ll-section-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ll-section-title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  font-family: var(--font-display);
}

.ll-section-title span {
  color: var(--cta);
}

.ll-section-subtitle {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.ll-gallery-section {
  background: var(--white);
}

.ll-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 245px 245px;
  gap: 22px;
}

.ll-gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border-radius: 24px;
  background: var(--cream-dark);
  border: 1px solid rgba(57, 181, 74, 0.14);
  box-shadow: 0 18px 50px rgba(57, 181, 74, 0.08);
  cursor: pointer;
}

.ll-gallery-card--large {
  grid-row: span 2;
}

.ll-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ll-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 107, 46, 0.30), transparent 60%);
  z-index: 1;
}

.ll-gallery-card:hover img {
  transform: scale(1.06);
}

.ll-gallery-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 2;
}

.ll-gallery-card__content h3 {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.ll-gallery-card__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ll-gallery-card:hover .ll-gallery-card__zoom {
  opacity: 1;
  transform: scale(1);
}

/* ── Gallery Lightbox ── */
.ll-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 50, 22, 0.88);
  backdrop-filter: blur(10px);
  padding: 20px;
}

.ll-gallery-lightbox.is-open {
  display: flex;
  flex-direction: column;
}

.ll-gallery-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ll-gallery-lightbox__close:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}

.ll-gallery-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.ll-gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.08);
}

.ll-gallery-lightbox__nav--prev {
  left: 20px;
}

.ll-gallery-lightbox__nav--next {
  right: 20px;
}

.ll-gallery-lightbox__img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-height: 100%;
}

.ll-gallery-lightbox__image {
  max-width: min(1100px, 80vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  animation: skLightboxIn 0.24s ease;
}

.ll-gallery-lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.ll-gallery-lightbox__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.ll-gallery-lightbox__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.25s ease;
}

.ll-gallery-lightbox__dot.is-active {
  width: 26px;
  background: var(--cta);
}

@keyframes skLightboxIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ══════════════════════════════════════
   WHY SECTION
══════════════════════════════════════ */
.ll-why-section {
  background: var(--white);
}

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

.ll-why-card {
  position: relative;
  min-height: 315px;
  padding: 34px;
  background: rgba(240, 252, 232, 0.3);
  border: 1px solid rgba(57, 181, 74, 0.16);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ll-why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--primary);
}

.ll-why-card:hover {
  transform: translateY(-6px);
}

.ll-why-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: var(--accent-light);
  /* #c0e172 brand light green */
  font-size: 22px;
}

.ll-why-card h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.ll-why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   CCS / KINDER FEE SECTION
══════════════════════════════════════ */
.ll-kinder-fee-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 125px) 0;
  background: linear-gradient(110deg, var(--primary-subtle) 0%, var(--white) 46%, #f7fdf8 100%);
}

.ll-kinder-fee-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 64px;
}

.ll-kinder-fee-title {
  margin: 0;
  max-width: 650px;
  color: var(--dark);
  font-size: clamp(40px, 4.3vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  font-family: var(--font-display);
}

.ll-kinder-fee-title span {
  color: var(--cta);
  font-style: italic;
}

.ll-kinder-fee-copy {
  margin-top: 26px;
  display: grid;
  gap: 24px;
}

.ll-kinder-fee-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.85;
}

.ll-kinder-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 28px 0 32px;
}

.ll-kinder-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(57, 181, 74, 0.18);
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(57, 181, 74, 0.08);
}

.ll-kinder-pills i {
  color: var(--primary);
  font-size: 12px;
}

/* ── Included card ── */
.ll-included-card {
  width: 100%;
  max-width: 610px;
  justify-self: end;
  padding: clamp(30px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(57, 181, 74, 0.14);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(57, 181, 74, 0.10);
}

.ll-included-card h3 {
  margin: 0 0 28px;
  color: var(--dark);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.ll-included-list {
  display: grid;
  gap: 27px;
}

.ll-included-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: start;
}

.ll-included-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ll-included-item--meal .ll-included-icon {
  color: var(--primary-dark);
  background: var(--accent-light);
}

.ll-included-item--nappy .ll-included-icon {
  color: var(--cta-dark);
  background: var(--cta-subtle);
}

.ll-included-item--kinder .ll-included-icon {
  color: var(--primary-dark);
  background: var(--primary-subtle);
}

.ll-included-item--updates .ll-included-icon {
  color: var(--primary);
  background: var(--cream-dark);
}

.ll-included-item h4 {
  margin: 0 0 7px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.ll-included-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.ll-included-item a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.ll-included-item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════
   ROOMS
══════════════════════════════════════ */
.ll-rooll-section {
  background: var(--cream);
}

.ll-rooll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  gap: 14px;
  margin: 0 auto;
}

.ll-room-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(57, 181, 74, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(57, 181, 74, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ll-room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(57, 181, 74, 0.14);
}

.ll-room-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--cream-dark);
}

.ll-room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ll-room-card:hover .ll-room-card__media img {
  transform: scale(1.06);
}

.ll-room-age {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(57, 181, 74, 0.14);
}

.ll-room-card__body {
  padding: 26px 24px 28px;
}

.ll-room-card__body h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-display);
}

.ll-room-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   EDUCATOR / DIRECTOR SECTION
   Dark green background (brand)
══════════════════════════════════════ */
.ll-director-section {
  background: var(--primary-dark);
  padding: clamp(64px, 8vw, 112px) 0;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.ll-director-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 60%, rgba(57, 181, 74, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 10%, rgba(30, 107, 46, 0.30) 0%, transparent 50%);
  pointer-events: none;
}

.ll-director-container {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.ll-director-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}

.ll-director-photo {
  position: relative;
  width: 100%;
  max-width: 480px;
  justify-self: end;
}

.ll-director-photo__frame {
  position: relative;
  aspect-ratio: 0.88 / 1;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ll-director-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ll-director-content {
  max-width: 680px;
}

.ll-director-kicker {
  margin: 0 0 20px;
  color: var(--accent-light);
  /* #c0e172 brand light green */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ll-director-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
  flex-shrink: 0;
}

.ll-director-quote {
  position: relative;
  padding: 22px;
  margin: 0 0 30px;
  border-left: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.06);
}

.ll-director-quote p {
  margin: 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.ll-director-body {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.ll-director-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14.5px, 1.35vw, 17px);
  line-height: 1.85;
}

.ll-director-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ll-director-signature__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.ll-director-signature__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ll-director-signature__avatar-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
}

.ll-director-signature__text strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.2;
}

.ll-director-signature__text span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.ll-director-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 0;
  background: var(--cta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
  text-decoration: none;
}

.ll-director-btn:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
}

.ll-director-btn i {
  transition: transform 0.22s ease;
}

.ll-director-btn:hover i {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.ll-testimonials-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.ll-testimonials-head {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.ll-testimonials-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ll-testimonials-title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 1.08;
}

.ll-testimonials-title span {
  display: block;
  color: var(--cta);
}

.ll-testimonials-rating {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.ll-testimonials-rating__score {
  color: var(--dark);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 1;
}

.ll-testimonials-rating__meta {
  text-align: left;
}

.ll-testimonials-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  /* #ffe662 brand yellow */
  font-size: 21px;
}

.ll-testimonials-rating__meta p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.ll-testimonial-card {
  min-height: 280px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(57, 181, 74, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(57, 181, 74, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.ll-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(57, 181, 74, 0.12);
}

.ll-testimonial-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  color: var(--accent);
  /* #ffe662 brand yellow */
  font-size: 14px;
}

.ll-testimonial-text {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-style: italic;
  line-height: 1.85;
}

.ll-testimonial-name {
  margin: 24px 0 0;
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
}

.ll-testimonials-footer {
  margin-top: 34px;
  text-align: center;
}

.ll-testimonials-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
}

.ll-testimonials-link:hover {
  color: var(--primary-dark);
}

/* ══════════════════════════════════════
   LOCATION / BOOK A TOUR SECTION
   Dark green bg (brand)
══════════════════════════════════════ */
.ll-location-section {
  background: var(--primary-dark);
  overflow: hidden;
}

.ll-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.86fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.ll-location-left {
  max-width: 650px;
}

.ll-location-title {
  margin: 0;
  color: var(--cream);
  font-size: 54px;
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: 0;
}

.ll-location-title span {
  color: var(--accent);
  /* brand yellow */
}

.ll-location-info-card {
  margin-top: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(57, 181, 74, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(57, 181, 74, 0.08);
  display: grid;
  gap: 18px;
}

.ll-location-serving {
  margin: 18px 0 0;
  color: var(--cream-dark);
  font-size: 16px;
  line-height: 1.75;
}

.ll-location-serving strong {
  color: var(--dark);
  font-weight: 700;
}

.ll-location-form-card {
  width: 100%;
}

.ll-location-iframe-wrap {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
}

.ll-location-iframe-wrap iframe {
  width: 100%;
  height: 655px;
  border: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.ll-faq-section {
  background: var(--white);
}

.ll-faq-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.ll-faq-title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  font-family: var(--font-display);
}

.ll-faq-title span {
  display: block;
  color: var(--cta);
  font-family: var(--font-display);
}

.ll-faq-subtitle {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.ll-faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(57, 181, 74, 0.14);
}

.ll-faq-item {
  border-bottom: 1px solid rgba(57, 181, 74, 0.14);
}

.ll-faq-question {
  width: 100%;
  padding: 26px 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  color: var(--dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  font-family: var(--font-body);
}

.ll-faq-question span:first-child {
  flex: 1;
}

.ll-faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ll-faq-icon::before,
.ll-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: 0.25s ease;
}

.ll-faq-icon::before {
  width: 16px;
  height: 2px;
}

.ll-faq-icon::after {
  width: 2px;
  height: 16px;
}

.ll-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.ll-faq-answer__inner {
  overflow: hidden;
  padding: 0 40px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.85;
}

.ll-faq-item.is-active .ll-faq-answer {
  grid-template-rows: 1fr;
}

.ll-faq-item.is-active .ll-faq-answer__inner {
  padding-bottom: 24px;
}

.ll-faq-item.is-active .ll-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.ll-faq-item.is-active .ll-faq-icon::before,
.ll-faq-item.is-active .ll-faq-icon::after {
  background: var(--cta);
}

.ll-faq-item:hover .ll-faq-question {
  color: var(--primary);
}

/* ══════════════════════════════════════
   FOOTER — dark green
══════════════════════════════════════ */
.ll-footer {
  position: relative;
  background: var(--primary-dark);
  color: var(--white);
  padding: 64px 0 34px;
}

.ll-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1.05fr 0.82fr;
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.ll-footer-brand {
  max-width: 330px;
}

.ll-footer-logo {
  display: inline-block;
  width: 200px;
  margin-bottom: 24px;
  text-decoration: none;
}

.ll-footer-logo img {
  width: 100%;
  height: auto;
}

.ll-footer-brand p {
  margin: 0;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
}

.ll-footer-col h3 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ll-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.ll-footer-col li,
.ll-footer-col a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  text-decoration: none;
  line-height: 1.55;
}

.ll-footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ll-footer-contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.ll-footer-contact i {
  margin-top: 3px;
  color: var(--accent-light);
  /* brand light green #c0e172 */
  font-size: 15px;
}

.ll-footer-bottom {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.ll-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
}

/* ══════════════════════════════════════
   OPEN DAY SECTION
══════════════════════════════════════ */
.ll-openday-section {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 7vw, 96px) 0;
  background:
    linear-gradient(135deg, rgba(30, 65, 14, 0.68) 0%, rgba(45, 92, 26, 0.42) 100%),
    url('https://littlelioncastlehill.com.au/wp-content/uploads/2026/04/fa53d9914ce1ead856c8e42fd07ab114-e1762408001584.webp') center / cover no-repeat;
}

.ll-openday-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ll-openday-section::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.ll-openday-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}

.ll-openday-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: max-content;
}

.ll-openday-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  /* #c0e172 brand light green */
  box-shadow: 0 0 0 5px rgba(192, 225, 114, 0.25);
  flex-shrink: 0;
  animation: llPulse 2s ease-in-out infinite;
}

@keyframes llPulse {

  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(192, 225, 114, 0.25);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(192, 225, 114, 0.08);
  }
}

.ll-openday-title {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.18;
}

.ll-openday-highlight {
  display: inline-block;
  padding: 2px 14px 4px;
  margin: 0 4px;
  border-radius: 10px;
  background: var(--cta);
  color: var(--white);
  font-style: italic;
  white-space: nowrap;
  line-height: 1.3;
}

.ll-openday-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
}

.ll-openday-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ll-openday-meta i {
  color: var(--accent-light);
  font-size: 13px;
}

.ll-openday-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ll-openday-activities span {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: default;
  backdrop-filter: blur(5px);
}

.ll-openday-activities span:hover {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.30);
}

/* Brand orange button */
.ll-openday-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 30px;
  margin-top: 32px;
  border-radius: var(--radius-pill);
  border: 0;
  background: var(--cta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.ll-openday-btn:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(164, 202, 79, 0.30);
}

.ll-openday-card-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ll-openday-date-card {
  width: 100%;
  max-width: 320px;
  padding: clamp(32px, 4vw, 46px) clamp(28px, 3.5vw, 42px);
  background: #F5F0E8;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05),
    0 24px 72px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.ll-openday-date-card:hover {
  transform: rotate(0deg);
}

.ll-openday-date-card__num {
  color: var(--logo-burgundy);
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 110px);
  font-weight: 400;
  line-height: 1;
}

.ll-openday-date-card__label {
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  font-style: italic;
  margin-top: 4px;
  line-height: 1.2;
}

.ll-openday-date-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  margin-top: 18px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  /* brand green */
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.ll-openday-date-card__tc {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}

/* ══════════════════════════════════════
   FIND US / MAP SECTION
══════════════════════════════════════ */
.ll-findus-section {
  background: var(--surface);
  padding: clamp(70px, 7vw, 110px) 0;
}

.ll-findus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.ll-findus-title {
  margin: 12px 0 36px;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.1;
}

.ll-findus-title span {
  color: var(--primary);
  font-style: italic;
}

.ll-findus-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ll-findus-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.ll-findus-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ll-findus-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 15px;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ll-findus-info-text strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ll-findus-info-text p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.ll-findus-info-text a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ll-findus-info-text a:hover {
  color: var(--primary);
}

.ll-findus-serving {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--primary-subtle);
  border: 1px solid rgba(57, 181, 74, 0.18);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(57, 181, 74, 0.06);
}

.ll-findus-serving__label {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ll-findus-serving__areas {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.7;
}

.ll-findus-map-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.04), 0 24px 70px rgba(0, 0, 0, 0.10);
  background: var(--cream-dark);
}

.ll-findus-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.ll-trust-bar {
  background: var(--primary-dark);
  padding: 28px 0;
}

.ll-trust-bar__grid {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ll-trust-bar__item {
  text-align: center;
  padding: 0 40px;
}

.ll-trust-bar__item strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 1;
}

.ll-trust-bar__item span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
}

.ll-trust-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
/* ══════════════════════════════════════
   NATURE MEETS NURTURE SECTION
══════════════════════════════════════ */
.ll-nature-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* ── Stat strip ── */
.ll-nature-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: clamp(36px, 5vw, 56px);
    background: var(--white);
    border: 1px solid rgba(57, 181, 74, 0.14);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(57, 181, 74, 0.07);
}

.ll-nature-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
}

.ll-nature-stat__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    font-size: 18px;
}

.ll-nature-stat div strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
}

.ll-nature-stat div span {
    display: block;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.4;
}

.ll-nature-stat__divider {
    width: 1px;
    background: rgba(57, 181, 74, 0.14);
    align-self: stretch;
    margin: 14px 0;
}

/* ── Desktop photo grid ── */
.ll-nature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 260px 210px;
    gap: 14px;
}

.ll-nature-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--cream-dark);
    border: 1px solid rgba(57, 181, 74, 0.10);
}

.ll-nature-img--tall {
    grid-row: span 2;
}

.ll-nature-img--wide {
    grid-column: span 2;
}

.ll-nature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.ll-nature-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 60, 18, 0.40), transparent 52%);
    z-index: 1;
    pointer-events: none;
}

.ll-nature-img:hover img {
    transform: scale(1.05);
}

.ll-nature-img__tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.93);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
}

.ll-nature-img__tag i {
    font-size: 11px;
    color: var(--primary);
}

/* Mobile slider — hidden on desktop */
.ll-nature-slider {
    display: none;
}

/* ── Bottom CTA ── */
.ll-nature-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: clamp(32px, 4vw, 48px);
    padding: 28px 36px;
    background: var(--white);
    border: 1px solid rgba(57, 181, 74, 0.14);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(57, 181, 74, 0.07);
}

.ll-nature-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .ll-hero__inner {
    grid-template-columns: 1fr;
  }

  .ll-hero__content {
    order: 1;
  }

  .ll-hero__form-col {
    order: 2;
    position: static;
  }

  .ll-hero__single-img {
    aspect-ratio: 16/8;
  }

  .ll-rooll-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .ll-location-left {
    max-width: 100%;
  }

  .ll-location-title {
    font-size: 38px;
  }

  .ll-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }

  .ll-gallery-card--large {
    grid-column: span 2;
    grid-row: auto;
  }

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

  .ll-director-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ll-director-photo {
    justify-self: center;
    max-width: 420px;
    width: 100%;
  }

  .ll-director-content {
    max-width: 100%;
  }

  .ll-openday-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ll-openday-card-col {
    order: -1;
  }

  .ll-openday-date-card {
    max-width: 260px;
    transform: rotate(0deg);
    padding: 28px 32px;
  }

  .ll-openday-date-card__num {
    font-size: 80px;
  }

  .ll-openday-date-card__label {
    font-size: 22px;
  }

  .ll-findus-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ll-findus-map-wrap {
    height: 380px;
  }

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

  .ll-included-card {
    max-width: 100%;
    justify-self: stretch;
  }
  .ll-nature-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 240px 220px 220px;
  }
  .ll-nature-img--tall {
      grid-row: span 1;
  }
  .ll-nature-img--wide {
      grid-column: span 2;
  }
}

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

  .ll-trust-bar__grid {
    gap: 0;
  }

  .ll-trust-bar__item {
    padding: 0 20px;
  }

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

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

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

  .ll-btn {
    width: 100%;
  }

  .ll-hero__single-img {
    aspect-ratio: 4/3;
    border-radius: 16px;
  }

  .ll-hero__form-card {
    border-radius: 18px;
  }

  .ll-hero__form-header {
    padding: 18px 20px 16px;
    gap: 12px;
  }

  .ll-hero__form-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

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

  .ll-director-section {
    padding: 52px 0 60px;
  }

  .ll-director-container {
    width: min(100%, calc(100% - 28px));
  }

  .ll-director-photo {
    max-width: 100%;
  }

  .ll-director-photo__frame {
    border-radius: 22px;
    aspect-ratio: 1/0.85;
  }

  .ll-director-btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .ll-kinder-fee-section {
    padding: 60px 0;
  }

  .ll-kinder-fee-grid {
    gap: 34px;
  }

  .ll-kinder-fee-title {
    font-size: clamp(34px, 10vw, 44px);
  }

  .ll-kinder-pills span {
    width: 100%;
    min-height: 42px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .ll-included-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .ll-included-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .ll-included-list {
    gap: 24px;
  }

  .ll-included-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .ll-included-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 16px;
  }

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

  .ll-openday-date-card {
    max-width: 100%;
  }
  .ll-nature-stats {
      flex-direction: column;
      border-radius: 16px;
  }
  .ll-nature-stat {
      padding: 16px 20px;
  }
  .ll-nature-stat__divider {
      width: auto;
      height: 1px;
      margin: 0 20px;
      align-self: auto;
  }
}

@media (max-width: 480px) {
  .ll-logo {
    width: 150px;
  }

  .ll-hero__title {
    font-size: clamp(24px, 8vw, 34px);
  }

  .ll-hero__single-img {
    aspect-ratio: 4/3;
    border-radius: 14px;
  }

  .ll-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ll-gallery-card {
    min-height: 150px;
    border-radius: 16px;
  }

  .ll-gallery-card--large {
    grid-column: span 2;
    min-height: 200px;
  }

  .ll-gallery-card__zoom {
    opacity: 1;
    transform: scale(1);
  }

  .ll-trust-bar__divider {
    display: none;
  }

  .ll-trust-bar__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .ll-trust-bar__item {
    padding: 0 12px;
  }

  .ll-trust-bar__item span {
    font-size: 9px;
  }

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

  .ll-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .ll-director-photo__frame {
    aspect-ratio: 1;
    border-radius: 18px;
  }

  .ll-director-photo__frame img {
    object-position: top center;
  }

  .ll-openday-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .ll-openday-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ll-openday-activities span {
    font-size: 12.5px;
    padding: 8px 14px;
  }

  .ll-findus-title {
    font-size: clamp(28px, 9vw, 40px);
    margin-bottom: 28px;
  }

  .ll-findus-map-wrap {
    height: 300px;
    border-radius: 18px;
  }

  .ll-findus-info-icon {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .ll-findus-serving {
    padding: 16px 18px;
  }

  .ll-why-grid {
    gap: 16px;
  }

  .ll-why-card h3 {
    font-size: 18px;
  }

  .ll-faq-head {
    margin-bottom: 24px;
  }

  .ll-header-cta-btn,
  .header-cta-btn {
    min-height: 36px !important;
    padding: 10px 16px;
    font-size: 13px;
  }

  .ll-location-title {
    font-size: 32px;
  }
  .ll-nature-grid {
        display: none;
    }

    .ll-nature-slider {
        display: block;
        position: relative;
        border-radius: 18px;
        overflow: hidden;
    }

    .ll-nature-slider__track {
        display: flex;
        width: 100%;
        transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
    }

    .ll-nature-slide {
        position: relative;
        width: 100%;          /* ← was min-width: 100% */
        flex: 0 0 100%;       /* ← key fix: don't grow, don't shrink, always full width */
        height: 260px;
        overflow: hidden;
        border-radius: 18px;
        flex-shrink: 0;
    }

    .ll-nature-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .ll-nature-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(18, 60, 18, 0.42), transparent 52%);
        pointer-events: none;
    }

    .ll-nature-slide .ll-nature-img__tag {
        position: absolute;
        bottom: 14px;
        left: 14px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.93);
        color: var(--primary-dark);
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    }

    .ll-nature-slide .ll-nature-img__tag i {
        font-size: 11px;
        color: var(--primary);
    }

    .ll-nature-slider__dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 14px;
    }

    .ll-nature-slider__dot {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        border: none;
        padding: 0;
        background: rgba(57, 181, 74, 0.25);
        cursor: pointer;
        transition: 0.25s ease;
    }

    .ll-nature-slider__dot.is-active {
        width: 24px;
        background: var(--cta);
    }

    .ll-nature-stats {
        flex-direction: column;
        border-radius: 14px;
    }

    .ll-nature-stat {
        padding: 14px 16px;
        gap: 12px;
    }

    .ll-nature-stat__icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 10px;
    }

    .ll-nature-stat div strong {
        font-size: 14.5px;
    }

    .ll-nature-stat div span {
        font-size: 12px;
    }

    .ll-nature-cta {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
        gap: 14px;
        border-radius: 16px;
    }

    .ll-nature-cta .ll-btn {
        width: 100%;
        justify-content: center;
    }
}