/**
 * Lens + Linen � Homepage Styles
 * Scoped under .ll-homepage body class to prevent bleed into other pages.
 */

/* -------------------------------------------
   CSS VARIABLES
------------------------------------------- */
:root {
  --ll-cream: #F6F1EB;
  --ll-warm-white: #FDFBF8;
  --ll-stone: #D4C9BC;
  --ll-stone-dark: #B8A99A;
  --ll-navy: #1A2236;
  --ll-navy-light: #2A3550;
  --ll-ink: #0F1520;
  --ll-gold: #C4A46C;
  --ll-gold-light: #D4BC92;
  --ll-text-body: #4A4440;
  --ll-text-muted: #8A8078;
  --ll-serif: 'Cormorant Garamond', Georgia, serif;
  --ll-sans: 'Outfit', sans-serif;
}

/* -------------------------------------------
   RESET / BASE
------------------------------------------- */
.ll-homepage {
  font-family: var(--ll-sans) !important;
  background: var(--ll-warm-white) !important;
  color: var(--ll-text-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

/* Reset Astra defaults that might interfere */
.ll-homepage .entry-content,
.ll-homepage .site-content,
.ll-homepage .ast-container {
  max-width: none;
  padding: 0;
  margin: 0;
}

/* -------------------------------------------
   ASTRA / WOOCOMMERCE NUCLEAR OVERRIDES
------------------------------------------- */

/* --- Headings: Astra sets line-height:0 globally! --- */
.ll-homepage h1,
.ll-homepage h2,
.ll-homepage h3,
.ll-homepage h4,
.ll-homepage h5,
.ll-homepage h6 {
  font-family: var(--ll-serif) !important;
  line-height: 1.2 !important;
  letter-spacing: normal !important;
  color: var(--ll-navy) !important;
  margin: 0 !important;
  padding: 0 !important;
  font-weight: 300 !important;
}

.ll-homepage h4 {
  font-family: var(--ll-sans) !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
}

/* --- Buttons: Astra forces border-radius:30px, padding:20px 30px on everything --- */
.ll-homepage button,
.ll-homepage input[type="submit"],
.ll-homepage input[type="button"],
.ll-homepage input[type="reset"],
.ll-homepage .ff-btn,
.ll-homepage .ff-btn-submit,
.ll-homepage .carousel-btn,
.ll-homepage .btn-primary,
.ll-homepage .nav-cta,
.ll-homepage .download-btn,
.ll-homepage .tab-btn {
  border-radius: 2px !important;
  border-top-left-radius: 2px !important;
  border-top-right-radius: 2px !important;
  border-bottom-left-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
  font-family: var(--ll-sans) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  line-height: 1.4 !important;
}

/* --- Links: Astra sets link color to #1b2c58 --- */
.ll-homepage a {
  color: inherit;
  text-decoration: none;
}

.ll-homepage a:hover,
.ll-homepage a:focus {
  color: inherit;
}

/* --- Body text: Astra forces Inter everywhere --- */
.ll-homepage p,
.ll-homepage li,
.ll-homepage span,
.ll-homepage div,
.ll-homepage label,
.ll-homepage input,
.ll-homepage textarea,
.ll-homepage select,
.ll-homepage button {
  font-family: inherit;
}

/* --- Selection color override --- */
.ll-homepage ::selection {
  background-color: var(--ll-gold) !important;
  color: var(--ll-navy) !important;
}

/* --- WooCommerce quantity / cart artifacts --- */
.ll-homepage .woocommerce,
.ll-homepage .woocommerce-page {
  display: none !important;
}

/* --- Astra's p margin-bottom override --- */
.ll-homepage p {
  margin-bottom: 0;
}

/* --- Astra blockquote border --- */
.ll-homepage blockquote {
  border: none !important;
  margin: 0 !important;
}

/* --- Fluent Forms: override Astra's input styling --- */
.ll-homepage .fluentform input[type="text"],
.ll-homepage .fluentform input[type="email"],
.ll-homepage .fluentform input[type="tel"],
.ll-homepage .fluentform input[type="url"],
.ll-homepage .fluentform textarea,
.ll-homepage .fluentform select {
  border-radius: 2px !important;
  border-style: solid !important;
  border-width: 1px !important;
  outline: none !important;
  font-family: var(--ll-sans) !important;
}

.ll-homepage .fluentform input:focus,
.ll-homepage .fluentform textarea:focus {
  border-color: var(--ll-gold) !important;
  outline: none !important;
  box-shadow: none !important;
}

/* --- Fluent Forms button: override Astra's button nuke --- */
.ll-homepage .ff-btn.ff-btn-submit {
  padding: 0.85rem 2rem !important;
  background: var(--ll-navy) !important;
  color: var(--ll-warm-white) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.ll-homepage .ff-btn.ff-btn-submit:hover,
.ll-homepage .ff-btn.ff-btn-submit:focus {
  background: var(--ll-gold) !important;
  color: var(--ll-navy) !important;
}

/* --- Prevent Astra's list styling from interfering --- */
.ll-homepage ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ll-homepage ul li::before {
  display: none !important;
}

/* Grain overlay */
.ll-homepage::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* -------------------------------------------
   PROMO BANNER
------------------------------------------- */
.ll-homepage .promo-banner {
  background: var(--ll-navy);
  text-align: center;
  padding: 0.65rem 2rem;
  position: relative;
  z-index: 200;
}

.ll-homepage .promo-banner a {
  font-family: var(--ll-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.ll-homepage .promo-banner a:hover { color: var(--ll-gold) !important; }

.ll-homepage .promo-banner a strong {
  color: var(--ll-gold);
  font-weight: 500;
}

.ll-homepage .promo-banner .arrow-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.ll-homepage .promo-banner a:hover .arrow-link { transform: translateX(3px); }

/* -------------------------------------------
   NAV
------------------------------------------- */
.ll-homepage .ll-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.15rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.25, 0, 0.1, 1);
}

.ll-homepage.has-banner .ll-nav { top: 36px; }
.ll-homepage.has-banner .ll-nav.scrolled { top: 0; }

.ll-homepage .ll-nav.scrolled {
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 3rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.ll-homepage .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ll-homepage .nav-logo-img {
  height: 28px;
  width: auto;
}

.ll-homepage .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.ll-homepage .nav-links li { margin: 0; padding: 0; }
.ll-homepage .nav-links li::before { display: none; }

.ll-homepage .nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ll-navy);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.ll-homepage .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ll-gold);
  transition: width 0.3s ease;
}

.ll-homepage .nav-links a:hover::after { width: 100%; }

.ll-homepage .nav-account {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  top: 1px;
}

.ll-homepage .nav-account svg {
  width: 14px;
  height: 14px;
  stroke: var(--ll-navy);
  stroke-width: 1.5;
  fill: none;
  vertical-align: middle;
  position: relative;
  top: -0.5px;
}

.ll-homepage .nav-account::after { display: none !important; }

.ll-homepage .nav-cta {
  font-size: 0.73rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  padding: 0.6rem 1.4rem 0.52rem !important;
  background: var(--ll-navy) !important;
  color: var(--ll-warm-white) !important;
  border-radius: 2px !important;
  border-top-left-radius: 2px !important;
  border-top-right-radius: 2px !important;
  border-bottom-left-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
  border: none !important;
  transition: all 0.3s ease;
  line-height: 1.4 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.ll-homepage .nav-cta:hover {
  background: var(--ll-gold) !important;
  color: var(--ll-navy) !important;
}

.ll-homepage .nav-cta::after { display: none !important; }

.ll-homepage .nav-hamburger {
  display: none;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  padding: 4px !important;
}

.ll-homepage .nav-hamburger svg {
  width: 24px;
  height: 24px;
  stroke: var(--ll-navy);
  stroke-width: 1.5;
  fill: none;
}

/* Mobile drawer */
.ll-homepage .nav-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--ll-warm-white);
  z-index: 150;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.25, 0, 0.1, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.ll-homepage .nav-mobile-drawer.open { right: 0; }

.ll-homepage .nav-drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
}

.ll-homepage .nav-drawer-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--ll-navy);
  stroke-width: 2;
  stroke-linecap: round;
}

.ll-homepage .nav-mobile-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ll-homepage .nav-mobile-drawer li { margin: 0; padding: 0; }
.ll-homepage .nav-mobile-drawer li::before { display: none; }

.ll-homepage .nav-mobile-drawer a {
  display: block;
  padding: 0.9rem 0;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ll-navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ll-homepage .nav-mobile-drawer .nav-cta {
  margin-top: 1rem;
  text-align: center;
  display: block;
  padding: 0.85rem 1.4rem !important;
}

/* -------------------------------------------
   HERO
------------------------------------------- */
.ll-homepage .hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.ll-homepage .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 6rem 6rem;
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
}

.ll-homepage .hero-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ll-gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: llFadeUp 0.8s 0.3s forwards;
}

.ll-homepage .hero h1 {
  font-family: var(--ll-serif) !important;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  color: var(--ll-navy) !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 2rem !important;
  opacity: 0;
  animation: llFadeUp 0.8s 0.5s forwards;
}

.ll-homepage .hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ll-gold);
}

.ll-homepage .hero-desc {
  font-size: 1.05rem;
  color: var(--ll-text-muted);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: llFadeUp 0.8s 0.7s forwards;
}

.ll-homepage .hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: llFadeUp 0.8s 0.9s forwards;
}

/* Shared buttons */
.ll-homepage .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 1.9rem !important;
  background: var(--ll-navy) !important;
  color: var(--ll-warm-white) !important;
  font-family: var(--ll-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none;
  border: none !important;
  border-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0, 0.1, 1);
  line-height: 1.4 !important;
}

.ll-homepage .btn-primary:hover {
  background: var(--ll-gold) !important;
  color: var(--ll-navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(26,34,54,0.12);
  border-color: var(--ll-gold) !important;
}

.ll-homepage .btn-primary .arrow { transition: transform 0.3s ease; }
.ll-homepage .btn-primary:hover .arrow { transform: translateX(4px); }

.ll-homepage .btn-secondary {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ll-navy);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ll-stone);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ll-homepage .btn-secondary:hover {
  border-color: var(--ll-gold);
  color: var(--ll-gold);
}

.ll-homepage .hero-visual {
  position: relative;
  background: var(--ll-cream);
  overflow: hidden;
  grid-column: 2;
  grid-row: 1;
}

.ll-homepage .hero-image-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: llFadeScale 1.2s 0.4s forwards;
}

.ll-homepage .hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtle accent � single thin ring, no floating line */
.ll-homepage .hero-visual .accent-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid var(--ll-stone);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
  pointer-events: none;
}

/* Hide the accent-line (was looking like stray fragment) */
.ll-homepage .hero-visual .accent-line {
  display: none;
}

/* -------------------------------------------
   TRUST BAR
------------------------------------------- */
.ll-homepage .trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ll-homepage .trust-item {
  padding: 2.8rem 2rem;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}

.ll-homepage .trust-item:hover { background: var(--ll-cream); }

.ll-homepage .trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(0,0,0,0.06);
}

.ll-homepage .trust-number {
  font-family: var(--ll-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ll-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ll-homepage .trust-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ll-text-muted);
}

/* -------------------------------------------
   SHARED SECTION STYLES
------------------------------------------- */
.ll-homepage section {
  padding: 8rem 6rem;
}

.ll-homepage .section-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ll-gold);
  margin-bottom: 1.5rem;
}

.ll-homepage .section-title {
  font-family: var(--ll-serif) !important;
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  font-weight: 300 !important;
  color: var(--ll-navy) !important;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem !important;
}

.ll-homepage .section-desc {
  font-size: 1rem;
  color: var(--ll-text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* -------------------------------------------
   VIDEO CAROUSEL
------------------------------------------- */
.ll-homepage .products { background: var(--ll-cream); position: relative; }

.ll-homepage .products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 6rem;
  right: 6rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ll-stone), transparent);
}

.ll-homepage .products-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.ll-homepage .products-header .section-desc { margin: 0 auto; }

.ll-homepage .video-carousel-wrapper {
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ll-homepage .video-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ll-ink);
  aspect-ratio: 16/9;
}

.ll-homepage .carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0.1, 1);
  height: 100%;
}

.ll-homepage .bunny-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ll-homepage .bunny-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ll-homepage .bunny-slide.is-ready video { opacity: 1; }

.ll-homepage .carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.ll-homepage .carousel-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
  border: 1px solid var(--ll-stone) !important;
  background: var(--ll-warm-white) !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--ll-navy) !important;
  font-size: 0.9rem !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.ll-homepage .carousel-btn:hover {
  background: var(--ll-navy) !important;
  color: var(--ll-warm-white) !important;
  border-color: var(--ll-navy) !important;
}

.ll-homepage .carousel-dots { display: flex; gap: 0.5rem; }

.ll-homepage .carousel-dot {
  width: 8px !important;
  height: 8px !important;
  min-height: 0 !important;
  border-radius: 50% !important;
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
  background: var(--ll-stone) !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
}

.ll-homepage .carousel-dot.active {
  background: var(--ll-gold) !important;
  transform: scale(1.2);
}

/* -------------------------------------------
   PRODUCT CARDS
------------------------------------------- */
.ll-homepage .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ll-homepage .product-card {
  background: var(--ll-warm-white);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0, 0.1, 1);
}

.ll-homepage .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15,21,32,0.1);
}

.ll-homepage .product-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #E8E0D6, #D4C9BC);
  position: relative;
  overflow: hidden;
}

.ll-homepage .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0.1, 1);
}

.ll-homepage .product-card:hover .product-image img { transform: scale(1.04); }

.ll-homepage .product-info { padding: 1.8rem; }

.ll-homepage .product-name {
  font-family: var(--ll-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ll-navy);
  margin-bottom: 0.3rem;
}

.ll-homepage .product-subtitle {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ll-gold);
  margin-bottom: 1rem;
}

.ll-homepage .product-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.ll-homepage .product-details li {
  font-size: 0.85rem;
  color: var(--ll-text-muted);
  padding-left: 1rem;
  position: relative;
}

.ll-homepage .product-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 1px;
  background: var(--ll-gold);
}

/* -------------------------------------------
   SMILES, GUARANTEED
------------------------------------------- */
.ll-homepage .smiles {
  background: var(--ll-navy);
  color: var(--ll-warm-white);
  position: relative;
  overflow: hidden;
}

.ll-homepage .smiles::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(196,164,108,0.08);
}

.ll-homepage .smiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ll-homepage .smiles .section-tag { color: var(--ll-gold-light) !important; }
.ll-homepage .smiles .section-title { color: var(--ll-warm-white) !important; }
.ll-homepage .smiles .section-desc { color: rgba(255,255,255,0.6) !important; margin-bottom: 2.5rem; }

.ll-homepage .smiles-video-wrapper {
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.ll-homepage .bunny-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ll-homepage .bunny-embed.bunny-16x9 { aspect-ratio: 16/9; }
.ll-homepage .bunny-embed.bunny-4x3 { aspect-ratio: 4/3; }
.ll-homepage .bunny-embed.is-ready { visibility: visible; opacity: 1; }

.ll-homepage .bunny-embed video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -------------------------------------------
   EXPERIENCE
------------------------------------------- */
.ll-homepage .experience { background: var(--ll-warm-white); }

.ll-homepage .experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.ll-homepage .experience-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.ll-homepage .exp-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.ll-homepage .exp-feature-num {
  font-family: var(--ll-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ll-gold);
  line-height: 1;
  min-width: 30px;
}

.ll-homepage .exp-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ll-navy);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.ll-homepage .exp-feature-text p {
  font-size: 0.88rem;
  color: var(--ll-text-muted);
  line-height: 1.6;
}

.ll-homepage .experience-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ll-homepage .exp-visual-card {
  background: var(--ll-cream);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 3px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.ll-homepage .exp-visual-card:hover {
  border-color: var(--ll-gold);
  transform: translateY(-2px);
}

.ll-homepage .exp-visual-card .big-stat {
  font-family: var(--ll-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ll-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ll-homepage .exp-visual-card .stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ll-text-muted);
}

/* -------------------------------------------
   PRICING
------------------------------------------- */
.ll-homepage .pricing { background: var(--ll-cream); }

.ll-homepage .pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.ll-homepage .pricing-header .section-desc { margin: 0 auto; }

.ll-homepage .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.ll-homepage .pricing-card {
  border: 1px solid var(--ll-gold);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  background: var(--ll-warm-white);
}

.ll-homepage .pricing-card.featured {
  background: linear-gradient(to bottom, rgba(196,164,108,0.04), var(--ll-warm-white));
}

.ll-homepage .pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ll-gold);
  color: var(--ll-navy);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  border-radius: 2px;
}

.ll-homepage .pricing-card:hover { }

.ll-homepage .pricing-name {
  font-family: var(--ll-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ll-navy);
  margin-bottom: 0.5rem;
}

.ll-homepage .pricing-subtitle {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ll-text-muted);
  margin-bottom: 1.5rem;
}

.ll-homepage .pricing-price {
  font-family: var(--ll-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ll-navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ll-homepage .pricing-shipping {
  font-size: 0.78rem;
  color: var(--ll-text-muted);
  margin-bottom: 2rem;
}

.ll-homepage .pricing-divider {
  width: 30px;
  height: 1px;
  background: var(--ll-gold);
  margin: 0 auto 1.5rem;
}

.ll-homepage .pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
  margin: 0;
  padding: 0;
}

.ll-homepage .pricing-includes li {
  font-size: 0.85rem;
  color: var(--ll-text-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
}

.ll-homepage .pricing-includes li::before { display: none; }

.ll-homepage .pricing-includes li .check {
  color: var(--ll-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ll-homepage .pricing-cta { text-align: center; }

/* -------------------------------------------
   GET STARTED
------------------------------------------- */
.ll-homepage .get-started { background: var(--ll-warm-white); }

.ll-homepage .get-started-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.ll-homepage .get-started-header .section-desc { margin: 0 auto; }

.ll-homepage .get-started-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.ll-homepage .gs-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 3px;
  padding: 3rem 2.5rem;
  background: var(--ll-warm-white);
  transition: border-color 0.3s ease;
}

.ll-homepage .gs-card:hover { border-color: var(--ll-gold); }

.ll-homepage .gs-card h3 {
  font-family: var(--ll-serif) !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--ll-navy) !important;
  margin-bottom: 0.8rem !important;
  line-height: 1.3 !important;
}

.ll-homepage .gs-card p {
  font-size: 0.9rem;
  color: var(--ll-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ll-homepage .download-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ll-homepage .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem !important;
  border: 1px solid var(--ll-navy) !important;
  border-radius: 2px !important;
  border-top-left-radius: 2px !important;
  border-top-right-radius: 2px !important;
  border-bottom-left-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
  color: var(--ll-navy) !important;
  background: transparent !important;
  font-family: var(--ll-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.4 !important;
}

.ll-homepage .download-btn:hover {
  background: var(--ll-navy) !important;
  color: var(--ll-warm-white) !important;
}

.ll-homepage .download-btn svg { width: 16px; height: 16px; }

.ll-homepage .mobile-reminder {
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: rgba(196,164,108,0.08);
  border-radius: 3px;
  font-size: 0.85rem;
  color: var(--ll-text-body);
  line-height: 1.6;
}

.ll-homepage .mobile-reminder strong { color: var(--ll-navy); }

/* -------------------------------------------
   FLUENT FORMS STYLING
------------------------------------------- */
.ll-homepage .ll-form-wrap .fluentform,
.ll-homepage .ll-form-wrap .frm-fluent-form {
  font-family: var(--ll-sans);
}

.ll-homepage .ll-form-wrap .ff-el-input--label label {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ll-navy);
  margin-bottom: 0.4rem;
}

.ll-homepage .ll-form-wrap input[type="text"],
.ll-homepage .ll-form-wrap input[type="email"],
.ll-homepage .ll-form-wrap input[type="tel"],
.ll-homepage .ll-form-wrap input[type="url"],
.ll-homepage .ll-form-wrap textarea,
.ll-homepage .ll-form-wrap select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  font-family: var(--ll-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ll-navy);
  background: var(--ll-warm-white);
  transition: border-color 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.ll-homepage .ll-form-wrap input:focus,
.ll-homepage .ll-form-wrap textarea:focus,
.ll-homepage .ll-form-wrap select:focus {
  border-color: var(--ll-gold);
}

.ll-homepage .ll-form-wrap input::placeholder,
.ll-homepage .ll-form-wrap textarea::placeholder {
  color: var(--ll-stone-dark);
}

.ll-homepage .ll-form-wrap .ff-btn-submit,
.ll-homepage .ll-form-wrap button[type="submit"] {
  padding: 0.85rem 2rem;
  background: var(--ll-navy);
  color: var(--ll-warm-white);
  font-family: var(--ll-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ll-homepage .ll-form-wrap .ff-btn-submit:hover,
.ll-homepage .ll-form-wrap button[type="submit"]:hover {
  background: var(--ll-gold);
  color: var(--ll-navy);
}

.ll-homepage .ll-form-wrap .ff-el-group { margin-bottom: 1rem; }

/* Name fields: full-width, side-by-side with gap */
.ll-homepage .ll-form-wrap .ff-name-field-wrapper .ff-t-container {
  display: flex !important;
  gap: 1rem;
  width: 100%;
}

.ll-homepage .ll-form-wrap .ff-name-field-wrapper .ff-t-cell {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 480px) {
  .ll-homepage .ll-form-wrap .ff-name-field-wrapper .ff-t-container {
    flex-direction: column;
    gap: 0;
  }
}

.ll-homepage .ll-form-wrap .ff-message-success {
  background: rgba(196,164,108,0.1);
  border: 1px solid var(--ll-gold);
  color: var(--ll-navy);
  padding: 1rem;
  border-radius: 3px;
  font-size: 0.9rem;
}

/* -------------------------------------------
   CONTENT PAGE (privacy, terms, etc.)
------------------------------------------- */
.ll-content-page {
  background: var(--ll-warm-white, #FDFBF8);
}

.ll-content-main {
  padding: 5rem 1.5rem 4rem;
  max-width: 820px;
  margin: 0 auto;
}

.ll-content-title {
  font-family: var(--ll-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--ll-navy);
  margin: 0 0 2rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.ll-content-body {
  font-family: var(--ll-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ll-text-body);
}

.ll-content-body h1,
.ll-content-body h2,
.ll-content-body h3,
.ll-content-body h4,
.ll-content-body h5,
.ll-content-body h6 {
  font-family: var(--ll-serif);
  font-weight: 400;
  color: var(--ll-navy);
  line-height: 1.25;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.ll-content-body h2 { font-size: 1.75rem; }
.ll-content-body h3 { font-size: 1.35rem; }
.ll-content-body h4 { font-size: 1.15rem; }
.ll-content-body h5,
.ll-content-body h6 { font-size: 1rem; font-family: var(--ll-sans); font-weight: 600; }

.ll-content-body p {
  margin: 0 0 1.25rem;
}

.ll-content-body a {
  color: var(--ll-gold);
  border-bottom: 1px solid rgba(196, 164, 108, 0.4);
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.ll-content-body a:hover {
  border-bottom-color: var(--ll-gold);
}

.ll-content-body ul,
.ll-content-body ol {
  margin: 0 0 1.5rem 1.25rem;
  padding: 0;
}
.ll-content-body li {
  margin-bottom: 0.5rem;
}
.ll-content-body ul { list-style: disc; }
.ll-content-body ol { list-style: decimal; }

.ll-content-body strong { color: var(--ll-navy); font-weight: 600; }

.ll-content-body hr {
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 2.5rem 0;
}

.ll-content-body blockquote {
  border-left: 3px solid var(--ll-gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ll-text-muted);
}

@media (max-width: 640px) {
  .ll-content-main {
    padding: 3.5rem 1.25rem 3rem;
  }
}

/* -------------------------------------------
   REMINDER SCHEDULER (mobile only)
------------------------------------------- */
.ll-reminder--hidden { display: none; }

.ll-reminder-prompt {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  animation: llFadeSlideUp 0.4s ease both;
}

@keyframes llFadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ll-reminder-prompt > p {
  font-size: 0.9rem;
  color: var(--ll-text-muted);
  margin: 0 0 0.5rem;
}

.ll-reminder-toggle {
  display: inline-block;
  color: var(--ll-gold);
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  text-decoration: none;
  border-bottom: 1px solid var(--ll-gold);
}

.ll-reminder-picker {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.ll-reminder-picker.open {
  max-height: 400px;
  opacity: 1;
  margin-top: 1rem;
}

.ll-reminder-label {
  font-size: 0.85rem;
  color: var(--ll-text-muted);
  margin: 0 0 0.5rem;
}

.ll-day-chips,
.ll-time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ll-chip {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--ll-stone);
  border-radius: 999px;
  background: transparent;
  color: var(--ll-text-body);
  font-family: var(--ll-sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.ll-day-chips .ll-chip {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ll-chip.selected {
  background: var(--ll-gold);
  border-color: var(--ll-gold);
  color: #fff;
}

.ll-reminder-submit {
  background: var(--ll-gold);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 0.75rem 1.5rem;
  font-family: var(--ll-sans);
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s ease;
}
.ll-reminder-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ll-reminder-status {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: var(--ll-text-muted);
}
.ll-reminder-status.error {
  color: #c0392b;
}

/* -------------------------------------------
   ABOUT
------------------------------------------- */
.ll-homepage .about { background: var(--ll-cream); }

.ll-homepage .about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.ll-homepage .about-photo {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ll-stone);
}

.ll-homepage .about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ll-homepage .about-content .section-desc {
  max-width: none;
  margin-bottom: 1.5rem;
}

.ll-homepage .about-content .section-desc:last-child { margin-bottom: 0; }

/* -------------------------------------------
   CONTACT
------------------------------------------- */
.ll-homepage .contact { background: var(--ll-warm-white); }

.ll-homepage .contact-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.ll-homepage .contact-header .section-desc { margin: 0 auto; }
.ll-homepage .contact-tabs { max-width: 640px; margin: 0 auto; }

.ll-homepage .tab-buttons {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ll-homepage .tab-btn {
  padding: 0.8rem 1.5rem !important;
  font-family: var(--ll-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: none !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  color: var(--ll-text-muted) !important;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.4 !important;
}

.ll-homepage .tab-btn.active,
.ll-homepage .tab-btn:hover {
  color: var(--ll-navy) !important;
  border-bottom-color: var(--ll-gold) !important;
  background: none !important;
}

.ll-homepage .tab-content { display: none; }
.ll-homepage .tab-content.active { display: block; }

/* -------------------------------------------
   FOOTER
------------------------------------------- */
.ll-homepage .ll-footer {
  background: var(--ll-navy);
  color: rgba(255,255,255,0.4);
  padding: 4rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ll-homepage .footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ll-homepage .footer-logo-img {
  height: 24px;
  width: auto;
}

.ll-homepage .footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ll-homepage .footer-links li { margin: 0; padding: 0; }
.ll-homepage .footer-links li::before { display: none; }

.ll-homepage .footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none !important;
  transition: color 0.3s;
}

.ll-homepage .footer-links a:hover { color: var(--ll-gold) !important; }
.ll-homepage .footer-copy { font-size: 0.75rem; letter-spacing: 0.05em; }

/* -------------------------------------------
   ANIMATIONS
------------------------------------------- */
@keyframes llFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes llFadeScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes llFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.ll-homepage .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0, 0.1, 1);
}

.ll-homepage .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.ll-homepage .stagger-1 { transition-delay: 0.1s; }
.ll-homepage .stagger-2 { transition-delay: 0.2s; }
.ll-homepage .stagger-3 { transition-delay: 0.3s; }
.ll-homepage .stagger-4 { transition-delay: 0.4s; }

.ll-homepage .nav-mobile-drawer.open {
  z-index: 250;
}

/* =============================================
   RESPONSIVE
   
   Three breakpoints:
   1100px � general spacing tightens
   1024px � nav hamburger + hero stacks
    768px � everything else stacks
   
   IMPORTANT: The .hero-tag-mobile element has
   style="display:none" in the HTML. The 1024px
   media query overrides it with !important.
   No base CSS rule needed for hiding.
============================================= */

@media (max-width: 1200px) {
  .ll-homepage section { padding: 5rem 3rem; }
  .ll-homepage .hero-content { padding: 6rem 3rem; }
  .ll-homepage .products-grid,
  .ll-homepage .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .ll-homepage .ll-nav { padding: 1rem 2rem; }
  .ll-homepage .ll-footer { padding: 3rem; }
  .ll-homepage .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* --- TABLET: hamburger nav + hero stacks --- */
@media (max-width: 1024px) {
  /* Nav ? hamburger */
  .ll-homepage .nav-links { display: none; }
  .ll-homepage .nav-hamburger { display: block; }
  .ll-homepage.has-banner .ll-nav { top: 34px; }
  .ll-homepage .promo-banner {
    z-index: 50;
  }

  .ll-homepage .ll-nav {
    z-index: 250;
  }

  .ll-homepage .nav-mobile-drawer.open {
    z-index: 300;
  }
  /* Hero ? single column stack */
  .ll-homepage .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 3rem !important;
  }

  /* Show mobile eyebrow � display:block !important overrides inline style="display:none" */
  .ll-homepage .hero > .hero-tag-mobile {
    display: block !important;
    order: 1;
    grid-column: 1;
    grid-row: auto;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ll-gold);
    text-align: left;
    padding: 6rem 0 1rem;
    margin: 0;
  }

  /* Hide the desktop eyebrow inside hero-content */
  .ll-homepage .hero-content .hero-tag { display: none !important; }

  .ll-homepage .hero-visual {
    order: 2;
    height: auto;
    aspect-ratio: 2 / 1.25;
    min-height: 260px;
    grid-column: 1;
    grid-row: auto;
  }

  .ll-homepage .hero-content {
    order: 3;
    padding: 2rem 0 3rem !important;
    text-align: left;
    grid-column: 1;
    grid-row: auto;
  }

  .ll-homepage .hero h1 { margin-bottom: 1.2rem !important; }
  .ll-homepage .hero-desc { margin-bottom: 1.5rem; }
  .ll-homepage .hero-actions { justify-content: flex-start; flex-wrap: wrap; gap: 1rem; }
}

/* --- PHONE: everything else stacks --- */
/* --- PHONE: everything else stacks --- */
@media (max-width: 768px) {
  .ll-homepage section { padding: 4rem 2rem; }

  /* Hero image: square frame, centered crop */
  .ll-homepage .hero-visual {
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  .ll-homepage .hero-image-wrapper {
    position: absolute;
    inset: 0;
  }

  .ll-homepage .hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* Tighten hero horizontal padding on phones */
  .ll-homepage .hero {
    padding: 0 2rem !important;
  }

  /* Consistent left alignment for all section headers on mobile */
  .ll-homepage .section-tag,
  .ll-homepage .section-title,
  .ll-homepage .section-desc {
    text-align: left !important;
  }

  .ll-homepage .products-header,
  .ll-homepage .pricing-header,
  .ll-homepage .get-started-header,
  .ll-homepage .contact-header {
    text-align: left !important;
    max-width: none !important;
  }

  .ll-homepage .get-started-header .section-desc,
  .ll-homepage .pricing-header .section-desc {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ll-homepage .experience-grid,
  .ll-homepage .smiles-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ll-homepage .products-grid,
  .ll-homepage .pricing-grid { grid-template-columns: 1fr; }
  .ll-homepage .pricing-cta { text-align: left; }
  .ll-homepage .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .ll-homepage .get-started-grid { grid-template-columns: 1fr; }

  /* About: titles above photo on mobile */
  .ll-homepage .about-grid { grid-template-columns: 1fr; }
  .ll-homepage .about-content { order: 1; }
  .ll-homepage .about-photo { order: 2; max-width: 320px; margin: 0 auto; }

  /* Footer: stack nav links */
  .ll-homepage .ll-footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .ll-homepage .footer-links {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center;
  }
  .ll-homepage .footer-links li { display: block; }

  .ll-homepage .download-btns { flex-direction: column; }
  .ll-homepage .promo-banner { padding: 0.55rem 1.5rem; }
  .ll-homepage .promo-banner a { font-size: 0.68rem; letter-spacing: 0.05em; }
  .ll-homepage .products::before { left: 2rem; right: 2rem; }
}