/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--color-header);
}

.site-header__inner {
  position: relative;
  width: var(--site-max);
  max-width: 100%;
  height: var(--header-h);
  margin-inline: auto;
}

.site-brand {
  position: absolute;
  left: -30px;
  top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.site-brand__logo {
  width: 120px;
  height: 117px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-brand__name {
  position: absolute;
  left: 92px;
  top: 41px;
  font: var(--logo-text);
  color: var(--color-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__burger {
  display: none;
}

.site-nav {
  position: absolute;
  right: 0;
  top: 38px;
}

.site-nav__list {
  display: flex;
  align-items: center;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: block;
  padding: 0 10px;
  font: var(--nav);
  line-height: 46px;
  color: var(--color-gold-btn);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__link[aria-current="page"] {
  color: var(--color-text-white);
}

.site-nav__toggle {
  display: none;
}

.site-nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.site-nav__submenu a {
  display: block;
  padding: 10px 14px;
  font: var(--nav);
  color: var(--color-text);
  text-transform: uppercase;
}

.site-nav__item--has-submenu:hover .site-nav__submenu,
.site-nav__item--has-submenu:focus-within .site-nav__submenu {
  display: block;
}

/* §1 Hero — 582px */
.hero {
  position: relative;
  height: 582px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__stage {
  position: absolute;
  inset: 0;
}

.hero__logo-link {
  position: absolute;
  left: 50%;
  top: 94px;
  transform: translateX(-50%);
}

.hero__logo {
  width: 249px;
  height: 257px;
  object-fit: contain;
}

.hero__quick-links {
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  display: flex;
  gap: 33px;
}

.hero__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: var(--btn-h);
  background: var(--color-gold-btn);
  color: var(--color-text-white);
  font: var(--btn);
  text-transform: uppercase;
}

/* §2 Intro band — 171px */
.intro-band {
  height: 171px;
  background: var(--color-gold-band);
  display: flex;
  align-items: center;
}

.intro-band__text {
  font: var(--body-lg);
  text-align: center;
  text-transform: uppercase;
}

/* §3 Under canopy — 628px */
.under-canopy {
  height: 628px;
  background: #000;
}

.under-canopy__inner {
  padding-top: 67px;
  text-align: center;
}

.under-canopy__product-img {
  margin-top: -1px;
}

.under-canopy__heading {
  font: var(--text-xl);
  text-transform: uppercase;
  max-width: 527px;
  margin-inline: auto;
  text-align: center;
}

.under-canopy__heading-gold {
  color: var(--color-gold-btn);
}

.under-canopy__heading-white {
  color: var(--color-text-white);
}

.under-canopy__product-img {
  width: 813px;
  height: 127px;
  object-fit: contain;
  margin: 0 auto;
}

.under-canopy__copy {
  width: 588px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 0;
  margin-top: 0;
  font: var(--body-md);
  color: var(--color-text-white);
  text-transform: uppercase;
}

.under-canopy__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

/* §4 Lens showcase — 689px */
.lens-showcase {
  position: relative;
  height: 689px;
  overflow: hidden;
}

.lens-showcase__bg {
  position: absolute;
  inset: 0;
  object-position: left center;
}

.lens-showcase__stage {
  position: relative;
  z-index: 1;
  width: var(--site-max);
  max-width: 100%;
  height: 100%;
  margin-inline: auto;
}

.lens-showcase__logo {
  position: absolute;
  right: 29px;
  top: 156px;
  width: 377px;
  height: 377px;
  object-fit: contain;
}

.lens-showcase__note {
  position: absolute;
  left: 89px;
  bottom: 73px;
  width: 800px;
  max-width: calc(100% - 89px);
  font: var(--body-md);
  color: var(--color-text-white);
  text-align: center;
  text-transform: uppercase;
}

/* §5 Main content — 1873px, black bg */
.main-content {
  background: #000;
  color: var(--color-text-white);
  height: 1873px;
}

.main-content .heading-xl,
.main-content .heading-lg,
.main-content .body-md,
.main-content .feature-block__title {
  color: var(--color-text-white);
}

.main-content .feature-block__label {
  color: var(--color-gold-btn);
  font: var(--text-md);
  text-transform: uppercase;
}

.main-content__inner {
  padding-top: 84px;
  padding-bottom: 154px;
  height: 100%;
  box-sizing: border-box;
}

.main-content__title,
.main-content__subtitle,
.feature-block,
.main-content__actions {
  margin-left: var(--content-offset);
  max-width: 527px;
}

.main-content__subtitle {
  margin-top: 8px;
}

.feature-block {
  margin-top: 28px;
}

.feature-block__label {
  margin-bottom: 2px;
}

.feature-block__title {
  margin-bottom: 10px;
}

.feature-block__title--narrow {
  max-width: 304px;
}

.feature-block .body-md {
  max-width: 527px;
}

.main-content__actions {
  margin-top: 48px;
  text-align: center;
}

/* §6 Features band — 500px */
.features-band {
  height: 500px;
  overflow: hidden;
}

.features-band__bg,
.stories-band__bg,
.reviews-band__bg {
  width: 100%;
  height: 100%;
}

/* §7 Spectrums — 1813px, black bg */
.spectrums {
  background: #000;
  height: 1813px;
}

.spectrums .heading-xl,
.spectrums .heading-lg,
.spectrums .body-md {
  color: var(--color-text-white);
}

.spectrums .spectrum-row__title {
  color: var(--color-gold-btn);
}

.spectrums__inner {
  padding-top: 87px;
  padding-bottom: 78px;
  height: 100%;
  box-sizing: border-box;
}

.spectrums__title,
.spectrums__intro,
.spectrum-row__title,
.spectrum-row__copy,
.spectrums__actions {
  margin-left: var(--content-offset);
  max-width: 527px;
  text-align: center;
}

.spectrum-row__title {
  color: var(--color-gold-btn);
  max-width: 527px;
  margin-bottom: 8px;
}

.spectrum-row__copy {
  margin-bottom: 0;
}

.spectrums__intro {
  margin-top: 9px;
  margin-bottom: 72px;
}

.spectrum-row {
  margin-bottom: 39px;
}

.spectrum-row__media {
  display: flex;
  gap: 0;
  margin-left: 107px;
  margin-bottom: 11px;
}

.spectrum-row__media img:first-child {
  width: 316px;
  height: 143px;
  object-fit: cover;
}

.spectrum-row__media img:last-child {
  width: 472px;
  height: auto;
  object-fit: contain;
  margin-left: -25px;
  margin-top: -9px;
}

.spectrums__actions {
  margin-top: 8px;
  text-align: center;
}

/* §8 Stories band — 588px */
.stories-band {
  height: 588px;
  overflow: hidden;
}

.stories-band__bg {
  width: 100%;
  height: 100%;
}

/* removed duplicate reviews-band__bg rules below */

/* §9 Stories content — 734px, black bg */
.stories-content {
  background: #000;
  height: 734px;
  overflow: hidden;
}

.stories-content .heading-xl,
.stories-content .heading-lg {
  color: var(--color-text-white);
}

.stories-content__inner {
  height: 734px;
  padding-top: 61px;
  padding-bottom: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.stories-content__title,
.stories-content__subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 527px;
  text-align: center;
}

.stories-content__subtitle {
  margin-top: 9px;
  margin-bottom: 46px;
}

.testimonials {
  display: flex;
  gap: 24px;
  margin-left: 133px;
}

.testimonial-bubble {
  position: relative;
  width: 345px;
  flex-shrink: 0;
  padding-bottom: 10px;
}

.testimonial-bubble__box {
  position: relative;
  background: #fff;
  border: 6px solid var(--color-gold-btn);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  padding: 12px 16px 18px;
  text-align: center;
}

.testimonial-bubble__tail {
  position: absolute;
  bottom: 0;
  left: 34px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: var(--color-gold-btn);
  border-bottom-width: 0;
}

.testimonial-bubble__logo {
  width: 131px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.testimonial-bubble__quote {
  font: var(--quote);
  color: var(--color-text);
  text-transform: uppercase;
  text-align: left;
  margin: 0 auto 10px;
  max-width: 269px;
}

.testimonial-bubble__attr {
  font: var(--quote);
  color: var(--color-gold-btn);
  text-transform: uppercase;
}

.stories-content__actions {
  margin-top: 20px;
  margin-left: 0;
  text-align: center;
}

/* §10 Reviews band — 500px */
.reviews-band {
  height: 500px;
  overflow: hidden;
}

.reviews-band__bg {
  width: 100%;
  height: 100%;
}

/* Footer — 432px */
.site-footer {
  height: 432px;
  background: var(--color-footer);
  color: var(--color-text-white);
  position: relative;
}

.site-footer__inner {
  position: relative;
  width: var(--site-max);
  max-width: 100%;
  height: 100%;
  margin-inline: auto;
}

.site-footer__col-left {
  position: absolute;
  left: 15px;
  top: 38px;
  width: 432px;
}

.site-footer__intro {
  font: var(--footer-md);
  text-transform: uppercase;
  line-height: 1.3;
}

.site-footer__line {
  font: var(--footer-lg);
  text-transform: uppercase;
  margin-top: 0;
  line-height: 18px;
}

.site-footer__line--spacer {
  height: 18px;
}

.site-footer__col-right {
  position: absolute;
  right: 15px;
  top: 100px;
  width: 432px;
  text-align: right;
}

.site-footer__legal-link {
  font: var(--footer-sm);
  color: var(--color-text-white);
  text-transform: uppercase;
  text-decoration: underline;
}

.site-footer__social {
  position: absolute;
  right: 15px;
  top: 38px;
}

.site-footer__social img {
  width: 32px;
  height: 32px;
}

.site-footer__logo {
  position: absolute;
  right: 72px;
  bottom: 42px;
  width: 162px;
  height: 123px;
  object-fit: contain;
}

.site-footer__contact-btn {
  position: absolute;
  left: 15px;
  bottom: 65px;
}

.site-footer__copyright {
  position: absolute;
  left: 15px;
  bottom: 26px;
  font: var(--footer-md);
  text-transform: uppercase;
}

/* Rebate pill */
.rebate-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  height: 48px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eab308, #ca8a04);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.rebate-fab__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #eab308;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.rebate-fab__text {
  text-transform: none;
  font-weight: 600;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 199;
}

.chat-widget__btn {
  height: 37px;
  padding: 0 16px;
  border-radius: 5px;
  background: #fff;
  color: #000;
  font-size: 13.33px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.rebate-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 24px;
}

.rebate-modal[hidden] {
  display: none;
}

.rebate-modal__panel {
  position: relative;
  width: min(100%, 520px);
  background: #fff;
  color: #000;
  padding: 32px;
  border-radius: 8px;
}

.rebate-modal__panel h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: none;
}

.rebate-modal__section {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 6px;
  text-transform: none;
}

.rebate-modal__hint {
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
  margin: 0;
}

.rebate-modal__panel p {
  font-size: 16px;
  line-height: 1.4;
  text-transform: none;
}

.rebate-modal__panel [data-close-modal] {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: #666;
}

/* About Us page — full-bleed backgrounds; content in 980px centered column */
.page-about .media-cover {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.page-about .about-hero__stage,
.page-about .about-journey__inner,
.page-about .about-location__inner,
.page-about .about-culture__stage {
  position: relative;
  z-index: 1;
}

.about-hero {
  position: relative;
  height: 366px;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__stage {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 366px;
  padding-top: 24px;
}

.about-hero__logo {
  width: 600px;
  height: 318px;
  object-fit: contain;
}

.about-meet {
  background: #000;
  color: var(--color-text-white);
  height: 465px;
  box-sizing: border-box;
  padding: 49px 0 52px;
}

.about-meet__inner {
  max-width: 712px;
}

.about-meet__title {
  font-size: 100px;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 712px;
}

.about-meet__title span {
  display: block;
}

.about-meet__tagline {
  margin-top: 10px;
  font: var(--text-lg);
  color: var(--color-text-white);
  text-transform: uppercase;
}

.about-meet__intro {
  margin-top: 15px;
  font: var(--body-md);
  color: var(--color-text-white);
  text-transform: uppercase;
  line-height: 1.1;
}

.about-section-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-text);
  text-transform: uppercase;
  text-align: center;
}

.about-section-title--white {
  color: var(--color-text-white);
}

.about-section-title--on-image {
  color: var(--color-text-white);
}

.about-section-copy {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  text-transform: uppercase;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.about-section-copy + .about-section-copy {
  margin-top: 25px;
}

.about-section-copy--white {
  color: var(--color-text-white);
}

.about-section-copy--on-image {
  color: var(--color-text-white);
}

.about-journey {
  position: relative;
  height: 565px;
  overflow: hidden;
}

.about-journey__bg {
  position: absolute;
  inset: 0;
}

.about-journey__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 139px 0 80px;
}

.about-locations-intro {
  background: #000;
  height: 299px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.about-locations-intro__inner {
  text-align: center;
}

.about-location {
  position: relative;
  height: 592px;
  overflow: hidden;
}

.about-location__bg {
  position: absolute;
  inset: 0;
}

.about-location__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 592px;
  padding: 0 0 72px;
  text-align: center;
}

.about-location__label {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-white);
  text-transform: uppercase;
}

.about-location__title {
  margin-top: 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-text-white);
  text-transform: uppercase;
  max-width: 900px;
}

.about-global {
  background: #000;
  height: 500px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.about-global__inner {
  text-align: center;
}

.about-global__inner .about-section-title,
.about-global__inner .about-section-copy {
  max-width: 637px;
  margin-inline: auto;
}

.about-culture {
  position: relative;
  height: 637px;
  overflow: hidden;
}

.about-culture__bg {
  position: absolute;
  inset: 0;
}

.about-culture__stage {
  position: relative;
  z-index: 1;
  height: 637px;
}

.about-culture__logo {
  position: absolute;
  right: 88px;
  top: 128px;
  width: 364px;
  height: 364px;
  object-fit: contain;
}

.about-culture__copy {
  position: absolute;
  left: 50%;
  bottom: 47px;
  transform: translateX(-50%);
  width: 800px;
  max-width: calc(100% - 32px);
  font: var(--body-md);
  color: var(--color-text-white);
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}

.about-support {
  background: #000;
  height: 501px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.about-support__inner {
  text-align: center;
}

.about-support__inner .about-section-title,
.about-support__inner .about-section-copy {
  max-width: 637px;
  margin-inline: auto;
}

.about-support__actions {
  margin-top: 36px;
  text-align: center;
}
