:root {
  --bg: #f8faf9;
  --surface: #ffffff;
  --surface-soft: #f1f5f2;
  --text: #1b2620;
  --muted: #5e6d63;
  --brand: #1b5e20;
  --brand-strong: #124116;
  --brand-yellow: #fdd835;
  --nav-menu-trigger-bg: #124116;
  --nav-menu-trigger-text: #fdd835;
  --nav-menu-panel-bg: #fdd835;
  --nav-menu-panel-text: #124116;
  --brand-blue: #1565c0;
  --border: rgba(0, 0, 0, 0.08);
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: "Muli";
  src: url("../wp-content/uploads/2025/03/Muli.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Muli";
  src: url("../wp-content/uploads/2025/03/Muli-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 140px;
  height: auto;
  transition: var(--transition);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--brand);
}

.site-nav > a[aria-current="page"] {
  color: var(--brand);
  font-weight: 600;
  position: relative;
}

.site-nav > a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

/* Dropdown labels look like plain nav links until hover / open / keyboard focus */
.nav-dropbtn {
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.85;
  transition: var(--transition);
}

.nav-dropdown:hover .nav-dropbtn,
.nav-dropdown.open .nav-dropbtn,
.nav-dropdown:focus-within .nav-dropbtn {
  background: var(--nav-menu-trigger-bg);
  color: var(--nav-menu-trigger-text);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(9, 22, 13, 0.2);
  opacity: 1;
}

.nav-dropbtn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--brand-yellow);
  border: 2px solid rgba(18, 65, 22, 0.2);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(9, 22, 13, 0.18);
  padding: 0.55rem 0.5rem;
  display: none;
  z-index: 1001;
}

/* Desktop: yellow submenu while hovering or keyboard focus inside the dropdown */
@media (min-width: 993px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }

  /* Click/touch "open" state does not keep the menu open on desktop */
  .nav-dropdown.open .nav-dropdown-menu {
    display: none;
  }

  /* Bridge the gap so moving from button to panel does not close the menu */
  .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 12px;
  }
}

/* Tablet & mobile: submenu toggles open via .open (click), stays yellow */
@media (max-width: 992px) {
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
}

.site-nav .nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nav-menu-panel-text);
  opacity: 1;
}

.site-nav .nav-dropdown-menu a:hover {
  background: rgba(18, 65, 22, 0.12);
  color: var(--nav-menu-panel-text);
}

.site-nav .nav-dropdown-menu a[aria-current="page"] {
  background: var(--nav-menu-trigger-bg);
  color: var(--nav-menu-panel-bg);
}

.site-nav .nav-dropdown-menu a[aria-current="page"]::after {
  display: none;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--brand-strong);
  padding: 0.45rem 0.8rem;
  font-weight: 600;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--brand-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  background: var(--brand);
  color: #ffffff;
  transform: translateY(-2px);
}

.header-cta {
  margin-left: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.header-link-quick {
  margin-left: 0.2rem;
  color: var(--brand-strong);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav-cta-mobile {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(480px, 85vh, 1000px);
  display: flex;
  align-items: center;
  background: var(--brand-strong);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-contain,
.hero-slide-campaign,
.hero-slide-brand {
  background: var(--brand-strong);
}

.hero-slide-contain img,
.hero-slide-campaign img,
.hero-slide-brand img {
  object-fit: cover;
  /* Slight vertical bias so title + bottom labels stay inside the crop */
  object-position: center 44%;
}

.hero-slide-sightsave img {
  object-fit: cover;
  object-position: center center;
}

.hero-slide-eyehero img {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(800px, 90%);
  margin: 0 auto;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  display: none;
}

.hero-content.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-accent {
  color: var(--brand-yellow);
}

.hero.show-content .hero-overlay {
  opacity: 1;
}

/* SightSave / Eye Hero slides: lighter overlay so banner art shows; text sits directly on image */
.hero.show-content.hero--sightsave-slide .hero-overlay {
  opacity: 0.28;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.06) 45%,
    rgba(0, 0, 0, 0.03) 100%
  );
}

.hero.show-content.hero--eyehero-slide .hero-overlay {
  opacity: 0.32;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.12) 42%,
    rgba(0, 0, 0, 0.02) 72%,
    transparent 100%
  );
}

.hero-content.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.hero-content--brandstory {
  color: #111;
  max-width: 460px;
}

.hero-content--brandstory h1 {
  margin-bottom: 0.35rem;
}

.hero-content--brandstory p {
  margin: 0;
  color: #2a2a2a;
  font-size: 1.15rem;
}

.hero-brand-highlight {
  color: #0d3a17;
}

.hero-brand-cta {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* SightSave slide: copy on the left */
.hero.hero--sightsave-slide {
  justify-content: flex-start;
  align-items: center;
  padding-left: clamp(5.5rem, 6vw + 3rem, 9rem);
  padding-right: clamp(0.75rem, 3vw, 1.5rem);
}

/* Eye Hero: copy on the right — clears center artwork + next-arrow side */
.hero.hero--eyehero-slide {
  justify-content: flex-end;
  align-items: center;
  padding-right: clamp(5.5rem, 6vw + 3rem, 9rem);
  padding-left: clamp(0.75rem, 3vw, 1.5rem);
}

.hero .hero-content.hero-content--sightsave {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  max-width: none;
  width: min(38rem, 90%);
  align-self: center;
}

.hero .hero-content.hero-content--eyehero {
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  max-width: none;
  width: min(22rem, 42vw);
  align-self: center;
}

.hero-sightsave-panel {
  max-width: 100%;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-sightsave-tagline {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.4;
  color: #0f2414;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-sightsave-name {
  color: var(--brand-strong);
  font-weight: 700;
}

.hero-sightsave-screening {
  font-weight: 500;
  color: #1a1a1a;
}

.hero-sightsave-headline {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--brand-strong);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9), 0 0 1px rgba(255, 255, 255, 0.8);
}

.hero-sightsave-panel h2.hero-sightsave-headline {
  margin-top: 0;
}

.hero-sightsave-line {
  display: block;
}

.hero-sightsave-alert {
  color: #b71c1c;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
}

.hero-sightsave-offer {
  margin: 0 0 1.25rem;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.5;
  font-weight: 600;
  color: var(--brand-strong);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-sightsave-free {
  color: #c62828;
  font-weight: 800;
  margin-right: 0.2rem;
}

.hero-sightsave-cta {
  display: inline-flex;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
}

/* Eye Hero slide */
.hero-eyehero-panel {
  max-width: 100%;
  padding: 1.15rem 1.35rem;
  background: rgba(248, 250, 249, 0.94);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-eyehero-kicker {
  margin: 0 0 0.5rem;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.hero-eyehero-headline {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  color: var(--brand-strong);
}

.hero-eyehero-lead {
  margin: 0 0 1.1rem;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.5;
  font-weight: 600;
  color: #0f2414;
  text-shadow: none;
  max-width: none;
}

.hero-eyehero-cta {
  display: inline-flex;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
}

.kicker {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  opacity: 0.9;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.12;
  margin-top: 0;
  letter-spacing: -0.015em;
}

h1 {
  margin: 0.6rem 0 0.8rem;
  font-size: clamp(2.1rem, 7vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

@media (min-width: 981px) {
  .hero-content {
    margin-left: auto;
    margin-right: clamp(1.5rem, 7vw, 7rem);
  }

  .hero-content--brandstory {
    margin-right: clamp(2rem, 9vw, 8rem);
    text-align: left;
  }

  .hero .hero-content.hero-content--sightsave {
    width: min(38rem, 48vw);
  }

  .hero .hero-content.hero-content--eyehero {
    width: min(24rem, 34vw);
  }
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hero-control:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev {
  left: 2rem;
}

.hero-next {
  right: 2rem;
}

.hero-dots {
  display: none;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.is-active {
  background: #fff;
  width: 24px;
}

.section {
  padding: clamp(2.75rem, 5vw, 4.9rem) 0;
}

.video-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.video-title {
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.04;
}

.video-title span {
  color: var(--brand);
  font-weight: 700;
}

.video-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.video-carousel-stage {
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
  padding: 0.75rem 0 1.25rem;
}

.video-slides {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.8vw, 1.35rem);
  width: 100%;
  min-height: min(48vw, 380px);
}

.video-slide {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  transition:
    flex-grow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.45s ease,
    transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.45s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slide--left {
  order: 0;
  flex: 0.82 1 0;
  z-index: 1;
  opacity: 0.9;
}

.video-slide--center {
  order: 1;
  flex: 2.15 1 0;
  z-index: 3;
  opacity: 1;
}

.video-slide--right {
  order: 2;
  flex: 0.82 1 0;
  z-index: 1;
  opacity: 0.9;
}

.video-slide--hidden {
  display: none;
}

.video-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 28px rgba(15, 35, 20, 0.12);
  transform-origin: center center;
  transition:
    box-shadow 0.45s ease,
    transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.45s ease;
}

.video-slide--center .video-frame {
  box-shadow:
    0 12px 40px rgba(13, 58, 23, 0.18),
    0 28px 60px rgba(0, 0, 0, 0.14);
}

.video-slide--left .video-frame {
  filter: blur(5px) saturate(0.92);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: scale(0.94) rotateY(5deg);
}

.video-slide--right .video-frame {
  filter: blur(5px) saturate(0.92);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: scale(0.94) rotateY(-5deg);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-slide:not(.video-slide--center) .video-frame iframe {
  pointer-events: none;
}

.video-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border: none;
  background: #fff;
  border-radius: 50%;
  color: var(--brand);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.video-prev {
  left: 12%;
  transform: translate(-50%, -50%);
}

.video-next {
  right: 12%;
  transform: translate(50%, -50%);
}

@media (prefers-reduced-motion: reduce) {
  .video-slide,
  .video-frame {
    transition: none;
  }

  .video-slide--left .video-frame,
  .video-slide--right .video-frame {
    filter: none;
    opacity: 0.92;
    transform: none;
  }
}

.video-dots {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.video-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  border: 1px solid #8ea596;
  background: #dbe7de;
  cursor: pointer;
}

.video-dot.is-active {
  background: #0d3a17;
  border-color: #0d3a17;
}

@media (max-width: 560px) {
  .video-carousel-stage {
    perspective: none;
  }

  .video-slide--left,
  .video-slide--right {
    display: none;
  }

  .video-slide--center {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .video-slides {
    min-height: auto;
    gap: 0;
  }

  .video-prev {
    left: 0.65rem;
    transform: translateY(-50%);
  }

  .video-next {
    right: 0.65rem;
    transform: translateY(-50%);
  }
}

.booklet-section {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
  padding: clamp(4rem, 12vw, 8rem) 0;
}

.booklet-title {
  text-align: center;
  margin-bottom: 1.2rem;
}

.booklet-title span {
  color: var(--brand);
}

.booklet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.booklet-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.booklet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.booklet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.booklet-card:hover img {
  transform: scale(1.04);
}

.booklet-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 0.6rem;
  background: linear-gradient(to top, rgba(10, 24, 16, 0.68), rgba(10, 24, 16, 0));
}

.booklet-overlay p {
  margin: 0 0 0.35rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  font-weight: 600;
}

.booklet-btn {
  display: inline-block;
  border: 0;
  width: 100%;
  padding: 0.52rem 0.7rem;
  border-radius: 3px;
  background: #0d3a17;
  color: #fff;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.booklet-btn:hover {
  background: #124d22;
}

.booklet-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.booklet-modal.open {
  display: block;
}

.booklet-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 10, 0.6);
  backdrop-filter: blur(2px);
}

.booklet-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 94%);
  margin: 4.5vh auto;
  margin-top: max(2vh, env(safe-area-inset-top));
  border-radius: 14px;
  background: #f5f7f4;
  box-shadow: 0 20px 55px rgba(4, 10, 7, 0.36);
  padding: 1rem 1.1rem 1.4rem;
}

.booklet-modal-close {
  position: absolute;
  right: 0.7rem;
  top: 0.4rem;
  border: 0;
  background: transparent;
  font-size: 1.9rem;
  cursor: pointer;
  color: #152118;
}

.booklet-flip-wrap {
  min-height: 500px;
}

.booklet-flip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.2rem 2.2rem 0.8rem;
}

.booklet-flip-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.booklet-flip-viewer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.booklet-flip-nav {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid #bfd0c3;
  background: #fff;
  font-size: 1.35rem;
  color: #17301f;
  cursor: pointer;
}

.booklet-flip-stage {
  perspective: 1500px;
  min-height: 450px;
  border-radius: 10px;
  background: #e5ebe7;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.booklet-flip-stage .stf__parent {
  width: 100% !important;
  min-height: 450px;
}

.booklet-source {
  display: none;
}

.booklet-flip-page {
  background: #fff;
  overflow: hidden;
}

.booklet-flip-page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e1e7e2;
}

.booklet-flip-page canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  background: #e1e7e2;
}

.booklet-pdf-embed {
  width: 100%;
  min-height: 450px;
  border: 0;
  background: #fff;
}

.booklet-page-indicator {
  text-align: center;
  margin: 0.6rem 0 0;
  color: #455a4d;
  margin: 0;
  font-size: 0.92rem;
}

.designers-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9, 14, 11, 0.75), rgba(9, 14, 11, 0.6)),
    url("../img/designer-bg-1.webp") center 36% / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(4rem, 12vw, 8rem) 0;
}

.designers-inner {
  text-align: center;
  padding-block: 4.2rem;
  max-width: 760px;
}

.designers-inner h2 {
  margin-bottom: 0.7rem;
}

.designers-inner p {
  margin: 0 auto 1rem;
  max-width: 640px;
  color: #f1f6f2;
  line-height: 1.35;
}

.value-story-section {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
  padding: clamp(4rem, 12vw, 8rem) 0;
}

.value-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.value-copy h2 {
  margin-bottom: 0.6rem;
}

.value-copy h2 span {
  color: var(--brand);
}

.value-subtitle {
  margin-top: 0;
  color: #6a756d;
}

.value-copy p:last-child {
  margin-bottom: 0;
  line-height: 1.32;
  max-width: 540px;
  text-align: justify;
}

.value-media {
  display: flex;
  justify-content: center;
}

.value-video-card {
  position: relative;
  width: min(480px, 100%);
  transform: rotate(-3deg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  transition: var(--transition);
}

.value-video-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.value-video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #dfe5e1;
}

.value-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(7deg);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 0;
  background: #0d3a17;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(13, 58, 23, 0.4);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  animation: playPulse 2.2s ease-in-out infinite;
}

.value-video-card:hover .value-play-btn {
  transform: translate(-50%, -50%) rotate(7deg) scale(1.09);
  box-shadow: 0 0 0 10px rgba(13, 58, 23, 0.12), 0 14px 30px rgba(13, 58, 23, 0.5);
  background: #125022;
}

.value-video-card:hover .value-play-btn::before {
  transform: scale(1.14);
  opacity: 0;
}

.value-play-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(13, 58, 23, 0.32);
  transform: scale(1);
  opacity: 1;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

@keyframes playPulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(13, 58, 23, 0.4), 0 0 0 0 rgba(13, 58, 23, 0.22);
  }

  50% {
    box-shadow: 0 10px 24px rgba(13, 58, 23, 0.48), 0 0 0 12px rgba(13, 58, 23, 0);
  }
}

.value-video-card.playing .value-play-btn {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.section-alt {
  background: var(--surface-soft);
  border-block: 1px solid var(--border);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.4rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 8px 22px rgba(25, 70, 33, 0.07);
}

.card.accent {
  background: linear-gradient(140deg, #0d3a17, #1f5f2e);
  color: #fff;
  border-color: transparent;
}

.card.accent .btn {
  margin-top: 0.8rem;
}

.text-link {
  color: var(--brand);
  font-weight: 600;
}

.section-intro {
  color: var(--muted);
  margin-top: 0;
}

.collection-intro {
  max-width: 560px;
  margin: -0.2rem auto 1.4rem;
  text-align: center;
  color: #5d6b61;
  line-height: 1.35;
}

#collections h2 {
  text-align: center;
}

#collections h2 span {
  color: var(--brand);
}

.collections-showcase {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.7rem;
  min-height: 420px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
  opacity: 0.8;
  transition: var(--transition);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-card:hover::after {
  opacity: 1;
}

.collection-glasses {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.collection-sunglasses {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.collection-kids {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.collection-contact {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.collection-tag {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.collection-card:hover .collection-tag {
  background: var(--brand);
  border-color: var(--brand);
}

.resource-list {
  display: grid;
  gap: 0.7rem;
}

.resource-list a {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  text-decoration: none;
  font-weight: 500;
}

.resource-list a:hover {
  border-color: var(--brand);
}

.site-footer {
  background: #fff200;
  color: #194621;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links a {
  display: inline-block;
  border: 1px solid #2f4b36;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  text-decoration: none;
}

.social-links a:hover {
  border-color: #6cb17d;
}

.footer-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: #2f4b36;
}

.footer-card a {
  display: block;
  margin-bottom: 0.4rem;
  text-decoration: none;
}

.copyright {
  margin: 1.7rem 0 0;
  padding: 1rem 4%;
  text-align: center;
  border-top: 1px solid #29412f;
  color: #c8d8cc;
}

.site-footer-mega {
  background: #fff200;
  color: #194621;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-mega-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.6rem;
}

.footer-brand-logo {
  width: 200px;
  height: auto;
}

.footer-hours-title {
  margin: 1.4rem 0 0.35rem;
  font-size: 0.98rem;
}

.footer-hours {
  margin: 0;
  color: #194621;
  line-height: 1.55;
}

.footer-social-icons {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
}

.footer-social-icons a {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(25, 70, 33, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #194621;
  text-decoration: none;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.footer-social-icons a:hover {
  background: rgba(25, 70, 33, 0.08);
  border-color: rgba(25, 70, 33, 0.8);
}

.footer-social-icons svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.footer-links-col h3 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #194621;
}

.footer-links-col a {
  display: block;
  color: #194621;
  text-decoration: none;
  margin: 0.3rem 0;
}

.footer-links-col a:hover {
  color: #0d3a17;
  transform: translateX(5px);
}

.site-footer-mega .copyright {
  margin-top: 2.7rem;
  border-top-color: rgba(25, 70, 33, 0.25);
  color: #194621;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero-content:not(.hero-content--sightsave):not(.hero-content--eyehero) {
    text-align: center;
  }
  .hero-content--sightsave,
  .hero-content--eyehero {
    text-align: left;
  }
  .hero-actions {
    justify-content: center;
  }
  .video-shell {
    max-width: 100%;
    padding: 0 0.35rem;
  }

  .video-control {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .video-prev {
    left: 7%;
    transform: translate(-50%, -50%);
  }

  .video-next {
    right: 7%;
    transform: translate(50%, -50%);
  }

  .video-dots {
    margin-top: 2rem;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booklet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .collection-glasses {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .collection-sunglasses {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .collection-kids {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .collection-contact {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .grid-2,
  .value-story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-copy p:last-child {
    max-width: none;
  }

  .value-video-card {
    transform: none;
  }

  .value-play-btn {
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 992px) {
  html.nav-open,
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f5f7f4;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 4%;
    display: none;
    gap: 0.85rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .nav-dropbtn {
    font-size: 0.92rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 0.45rem;
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .header-link-quick {
    display: none;
  }

  .site-nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .collections-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }

  .collection-glasses,
  .collection-sunglasses,
  .collection-kids,
  .collection-contact {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-control {
    width: 2rem;
    height: 2rem;
    font-size: 1.05rem;
  }

  .hero-prev {
    left: 0.55rem;
  }

  .hero-next {
    right: 0.55rem;
  }

  .hero-content:not(.hero-content--sightsave):not(.hero-content--eyehero) {
    margin-inline: auto;
    width: 100%;
    text-align: center;
    padding-block: 3.6rem;
  }

  .hero-content--sightsave {
    margin-inline: 0 auto;
    text-align: left;
    padding-block: 3.6rem;
    padding-inline: 0;
    width: 100%;
    max-width: 92%;
  }

  .hero-content--eyehero {
    margin-inline: auto 0;
    text-align: left;
    padding-block: 3.6rem;
    padding-inline: 0;
    width: 100%;
    max-width: 92%;
  }

  .hero.hero--sightsave-slide {
    padding-left: max(4rem, 5vw);
    padding-right: 5%;
  }

  .hero.hero--eyehero-slide {
    padding-right: max(4rem, 5vw);
    padding-left: 5%;
    justify-content: flex-end;
  }

  .booklet-grid {
    grid-template-columns: 1fr;
  }

  .booklet-flip-wrap {
    min-height: auto;
  }

  .booklet-flip-head {
    margin-inline: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .booklet-flip-viewer {
    grid-template-columns: 1fr;
  }

  .booklet-flip-nav {
    display: none;
  }

  .booklet-flip-stage {
    min-height: 360px;
  }

  .footer-mega-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.site-header.is-sticky {
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.site-header.is-sticky .header-inner {
  height: 64px;
}

.site-header.is-sticky .brand-logo {
  width: 110px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Homepage — Google reviews */
.home-reviews-section {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: #2d3d34;
  background-image:
    linear-gradient(
      165deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(13, 58, 23, 0.52) 45%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url("../img/optisaver-google.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 95% 85% at 50% 45%, transparent 0%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.home-reviews-shell {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 50px rgba(13, 58, 23, 0.08),
    0 4px 16px rgba(66, 133, 244, 0.06);
}

.home-reviews-hero {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.home-reviews-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.home-reviews-google-g {
  flex-shrink: 0;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
}

.home-reviews-google-wordmark {
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  user-select: none;
}

.home-reviews-google-wordmark .gw {
  display: inline-block;
}

.home-reviews-google-wordmark .gw-b {
  color: #4285f4;
}

.home-reviews-google-wordmark .gw-r {
  color: #ea4335;
}

.home-reviews-google-wordmark .gw-y {
  color: #fbbc04;
}

.home-reviews-google-wordmark .gw-b2 {
  color: #4285f4;
}

.home-reviews-google-wordmark .gw-g {
  color: #34a853;
}

.home-reviews-google-wordmark .gw-r2 {
  color: #ea4335;
}

.home-reviews-badge {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5f6368;
}

.home-reviews-title {
  font-family: var(--font-heading);
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  color: #0d3a17;
  line-height: 1.2;
}

.home-reviews-title span {
  color: var(--brand);
}

.home-reviews-lead {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Google reviews carousel (by outlet) */
.home-reviews-carousel {
  margin-top: 0.25rem;
}

.home-reviews-slide-status {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-strong);
  margin: 0 0 0.85rem;
  min-height: 1.35em;
}

.home-reviews-carousel-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}

.home-reviews-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  outline: none;
}

.home-reviews-viewport:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.home-reviews-track {
  --slide-count: 1;
  --slide-index: 0;
  display: flex;
  width: calc(var(--slide-count) * 100%);
  transform: translateX(calc(-100% * var(--slide-index) / var(--slide-count)));
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .home-reviews-track {
    transition: none;
  }
}

.home-reviews-slide {
  flex: 0 0 calc(100% / var(--slide-count));
  min-width: 0;
  padding: 0 0.2rem;
  box-sizing: border-box;
}

.home-reviews-slide-cta {
  margin: 1rem 0 0;
  text-align: center;
}

.home-reviews-slide-empty {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0;
  padding: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-reviews-slide--error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.home-reviews-slide-error-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d3a17;
}

.home-reviews-slide-error-msg {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 22rem;
}

.home-reviews-slider-btn {
  flex: 0 0 auto;
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--brand-strong);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.home-reviews-slider-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.home-reviews-slider-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.home-reviews-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.home-reviews-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(13, 58, 23, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background 0.2s ease;
}

.home-reviews-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--brand);
}

.home-reviews-dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .home-reviews-carousel-inner {
    gap: 0;
  }

  .home-reviews-slider-btn {
    display: none;
  }
}

.home-reviews-summary {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  padding: 1.1rem 1.35rem;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(66, 133, 244, 0.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.home-reviews-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #4285f4, #34a853);
}

.home-reviews-summary-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  padding-left: 0.35rem;
}

.home-reviews-summary-stars {
  letter-spacing: 0.06em;
  color: #f9a825;
  font-size: 1.2rem;
  line-height: 1;
}

.home-reviews-summary-meta {
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
}

.home-reviews-summary-note {
  margin: 0.65rem 0 0;
  padding-left: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.home-reviews-summary-note strong {
  color: var(--text);
  font-weight: 600;
}

.home-reviews-placeholder {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.35rem;
}

.home-review-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.2rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 280px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.home-review-card--expanded {
  min-height: 0;
}

.home-review-card::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  width: 4.5rem;
  height: 4.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' opacity='0.07' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' opacity='0.07' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' opacity='0.07' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' opacity='0.07' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 1;
  pointer-events: none;
}

.home-review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(66, 133, 244, 0.22);
}

.home-review-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  position: relative;
  z-index: 1;
}

.home-review-author {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.home-review-when {
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: auto;
}

.home-review-stars {
  letter-spacing: 0.05em;
  color: #f9a825;
  font-size: 0.95rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.home-review-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: 0.15rem;
  position: relative;
  z-index: 1;
}

.home-review-body .home-review-text {
  flex: 1 1 auto;
  min-height: 0;
}

.home-review-text {
  margin: 0;
  font-size: 0.92rem;
  color: #3d4a42;
  line-height: 1.55;
  quotes: none;
  position: relative;
}

.home-review-text.home-review-text--truncated {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.home-review-text.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.home-review-toggle {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.35rem 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  flex-shrink: 0;
  z-index: 2;
}

.home-review-toggle:hover {
  color: var(--brand-strong);
}

.home-review-toggle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 2px;
}

.home-review-toggle[hidden] {
  display: none;
}

.home-reviews-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.home-reviews-foot {
  margin: 0;
}

.home-reviews-maps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.home-reviews-btn-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.home-reviews-store-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-reviews-store-link:hover {
  color: var(--brand-strong);
}

.home-reviews-attribution {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.home-reviews-maps-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #5f6368;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-reviews-maps-inline:hover {
  color: #4285f4;
}

.home-reviews-attribution-g {
  flex-shrink: 0;
}

.home-reviews-attribution-note::before {
  content: "·";
  margin: 0 0.35rem 0 0;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .home-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .home-reviews-shell {
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
  }
}

/* FAQ Sections */
.faq-section {
  padding: 2.8rem 0;
}

.faq-section h2 {
  margin: 0 0 1.25rem;
  color: #0d3a17;
  text-align: center;
}

.faq-section .container {
  width: min(860px, 94%);
  background: linear-gradient(180deg, #ffffff, #f8fbf8);
  border: 1px solid #dbe7dc;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(13, 58, 23, 0.08);
  padding: clamp(1rem, 2.8vw, 1.6rem);
}

.faq-section details {
  border-top: 1px solid #e5ebdf;
  padding: 0.2rem 0;
}

.faq-section details:first-of-type {
  border-top: 0;
}

.faq-section summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #1a2f22;
  line-height: 1.4;
  border-radius: 10px;
  padding: 0.9rem 2.5rem 0.9rem 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #0d3a17;
  transition: transform 0.2s ease;
}

.faq-section details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-section summary:hover {
  background: rgba(13, 58, 23, 0.06);
}

.faq-section details[open] summary {
  background: rgba(13, 58, 23, 0.08);
  color: #0d3a17;
}

.faq-section details p {
  margin: 0.15rem 0 0.75rem;
  padding: 0 0.9rem 0.9rem;
  color: #445248;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .faq-section .container {
    border-radius: 14px;
    padding: 1rem;
  }

  .faq-section summary {
    padding-right: 2.2rem;
  }
}

@media (max-width: 980px) {
  .hero-control {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
  .hero-prev { left: 1rem; }
  .hero-next { right: 1rem; }
  
  .video-control {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  .video-prev {
    left: 7%;
    transform: translate(-50%, -50%);
  }
  .video-next {
    right: 7%;
    transform: translate(50%, -50%);
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: min(620px, 88vh);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: min(520px, 86vh);
  }
}
