/* 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;
  /* Wix menu: 5px item chrome + 10px label pad = 15px each side */
  padding: 0 15px;
  font: var(--nav);
  font-weight: 400;
  line-height: 46px;
  color: var(--color-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__link[aria-current="page"] {
  color: var(--color-text-white);
  /* Wix current item stays roman/400 — white color marks active, not bold */
  font-weight: 400;
}

.site-nav__toggle {
  display: none;
}

.site-nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-header);
  z-index: 10;
}

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

.site-nav__submenu a:hover {
  color: var(--color-text-white);
}

.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%;
  /* Match www.esttech.com LED LIGHTS button: y=406 within 582px hero */
  bottom: 139px;
  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);
  color: #000;
  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: start;
}

.under-canopy__heading-gold {
  font-family: var(--font-light);
  font-weight: 400;
  color: var(--color-gold-btn);
}

.under-canopy__heading-white {
  font-family: var(--font-roman);
  font-weight: 700;
  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: 400 18px/19.8px var(--font-roman);
  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;
  max-width: 304px;
}

.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: start;
}

.spectrum-row__title {
  color: var(--color-gold-btn);
  max-width: 304px;
  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: var(--content-offset);
  margin-right: 0;
  max-width: 527px;
  width: 100%;
  text-align: start;
}

.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: #000;
  text-transform: uppercase;
  text-align: start;
  margin: 0 auto 10px;
  max-width: 269px;
}

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

.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: 0;
  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 FAB — match www.esttech.com #rebate-fab (scoped to avoid .btn clash) */
:root {
  --rebate-y5: #eab308;
  --rebate-y6: #ca8a04;
  --rebate-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

#rebate-fab {
  position: fixed !important;
  left: 32px;
  bottom: 32px;
  z-index: 2147483647;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  pointer-events: auto;
}

#rebate-fab[hidden] {
  display: none !important;
}

#rebate-fab button {
  all: unset;
  cursor: pointer;
  display: block;
}

#rebate-fab #rebate-fab-dismiss {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s, background 0.15s;
}

#rebate-fab #rebate-fab-dismiss:hover {
  transform: scale(1.08);
  background: #000;
}

#rebate-fab .w {
  position: relative;
}

#rebate-fab .ping {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--rebate-y5);
  opacity: 0.75;
  animation: rebate-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes rebate-ping {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  70%,
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

#rebate-fab .btn {
  display: block;
  min-width: 0;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rebate-y5), var(--rebate-y6));
  color: #000;
  font: inherit;
  text-transform: none;
  box-shadow: var(--rebate-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

#rebate-fab .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.35);
}

#rebate-fab .inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

#rebate-fab .badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#rebate-fab .t1 {
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
  text-transform: none !important;
}

#rebate-fab .t2 {
  font-size: 13px;
  opacity: 0.8;
  white-space: nowrap;
  margin-top: 2px;
  text-transform: none !important;
}

#rebate-fab .arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

#rebate-fab button:hover .arrow {
  transform: translateX(4px);
}

#rebate-fab .spark {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  animation: rebate-pulse 1.2s ease-in-out infinite;
}

@keyframes rebate-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

/* Rebate modal — match www.esttech.com #rebate-modal (scoped under #rebate-modal) */
#rebate-modal {
  --rebate-ov: rgba(0, 0, 0, 0.6);
  --rebate-muted: #6b7280;
  --rebate-bd: #d1d5db;
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rebate-ov);
  backdrop-filter: blur(6px);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111;
}

#rebate-modal[hidden] {
  display: none !important;
}

#rebate-modal .panel {
  width: min(900px, calc(100vw - 32px));
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--rebate-shadow);
  position: relative;
}

#rebate-modal .head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 24px 32px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--rebate-y5), var(--rebate-y6));
  color: #000;
}

#rebate-modal .close {
  all: unset;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
}

#rebate-modal .close:hover {
  background: rgba(0, 0, 0, 0.08);
}

#rebate-modal .h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  text-transform: none;
  line-height: 1.2;
}

#rebate-modal .desc {
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
  text-transform: none;
  font-size: 16px;
  padding-right: 36px;
}

#rebate-modal .body {
  padding: 24px 32px;
}

#rebate-modal .sec {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rebate-y5);
  text-transform: none;
}

#rebate-modal .sec--contact {
  margin-top: 18px;
}

#rebate-modal .f {
  margin-bottom: 14px;
}

#rebate-modal .lab {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
  text-transform: none !important;
}

#rebate-modal .inp {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--rebate-bd);
  outline: none;
  box-sizing: border-box;
  font: inherit;
  font-size: 16px;
  color: #111;
  background: #fff;
  text-transform: none;
}

#rebate-modal .inp:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.35);
}

#rebate-modal .inp.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

#rebate-modal .err {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.3;
  color: #dc2626;
  text-transform: none;
}

#rebate-modal .err[hidden] {
  display: none !important;
}

#rebate-modal .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  #rebate-modal .grid3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }
}

#rebate-modal .submit {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  background: linear-gradient(90deg, var(--rebate-y5), var(--rebate-y6));
  text-transform: none;
}

#rebate-modal .submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

#rebate-modal .note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--rebate-muted);
  text-align: center;
  text-transform: none !important;
  line-height: 1.4;
}

#rebate-modal .ok {
  text-align: center;
  padding: 56px 12px;
}

#rebate-modal .ok[hidden] {
  display: none !important;
}

#rebate-modal .ok .c {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

#rebate-modal .ok h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  text-transform: none;
}

#rebate-modal .ok p {
  margin: 0;
  color: var(--rebate-muted);
  text-transform: none;
  line-height: 1.4;
}

@media (max-width: 640px) {
  #rebate-fab {
    left: 16px;
    bottom: 16px;
  }

  #rebate-fab .t1 {
    font-size: 15px;
  }

  #rebate-fab .t2 {
    font-size: 12px;
  }

  #rebate-fab .inner {
    padding: 12px 14px;
    gap: 10px;
  }

  #rebate-fab .badge {
    width: 34px;
    height: 34px;
  }

  #rebate-modal .head,
  #rebate-modal .body {
    padding: 20px 18px;
  }

  #rebate-modal .h2 {
    font-size: 22px;
  }
}

/* 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;
  margin-inline: auto;
}

.about-meet__title {
  font-family: var(--font-roman);
  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: 0;
  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-family: var(--font-roman);
  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: center;
  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-family: var(--font-roman);
  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: start;
}

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

.about-global__inner .about-section-copy {
  /* www: ~12px after 2-line 54px title (title→copy ≈ 109px) */
  margin-top: 12px;
}

.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: start;
}

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

.about-support__inner .about-section-copy {
  /* www: ~11–12px after multi-line 54px title */
  margin-top: 12px;
}

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

/* Site-wide form toast */
.ims-toast-host {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: min(420px, calc(100vw - 32px));
  pointer-events: none;
}

.ims-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: auto;
  font: 400 14px/1.45 var(--font-light);
}

.ims-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ims-toast__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-top: 1px;
}

.ims-toast--success .ims-toast__icon {
  background: rgba(212, 168, 11, 0.18);
  color: var(--color-gold-btn);
}

.ims-toast--error .ims-toast__icon {
  background: rgba(220, 38, 38, 0.18);
  color: #f87171;
}

.ims-toast__text {
  flex: 1;
  margin: 4px 0 0;
}

.ims-toast__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: -2px -4px 0 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.ims-toast__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
