/* =========================================================
   Teed Up Theme Styles
   Single maintained stylesheet. Keep section comments intact
   for developer-friendly navigation and future WordPress/ACF work.
   ========================================================= */

/* =========================================================
   Design Tokens
   ========================================================= */
:root {
  --color-brand-forest: #003415;
  --color-brand-forest-deep: #001d0d;
  --color-brand-lime: #e3f956;
  --color-brand-lime-soft: #ecff73;
  --color-ink: #020705;
  --color-muted: #5a625d;
  --color-white: #ffffff;
  --color-surface: #f7f8f4;
  --color-surface-soft: #eef2ec;
  --color-line: #dbe2dc;
  --color-glass: rgba(36, 38, 37, .72);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.16);
  --shadow-button: 0 15px 36px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --font-sans: "Inter", Arial, sans-serif;
  --container: 1720px;
  --gutter: clamp(16px, 4vw, 100px);
  --section-y: clamp(48px, 7vw, 104px);
  --type-hero: clamp(3rem, 5.6vw, 6.625rem);
  --type-section: clamp(2.25rem, 4.15vw, 4.5rem);
  --type-card: clamp(1.375rem, 1.8vw, 2.25rem);
  --type-product-hero: clamp(2.375rem, 4.17vw, 5rem);
  --product-hero-height: clamp(600px, 40.75vw, 782px);
  --product-hero-content: 1188px;
  --product-hero-gutter: clamp(24px, 5.21vw, 100px);
  --product-hero-header-offset: clamp(102px, 7.6vw, 146px);
  --product-hero-edge-gap: clamp(48px, 3.85vw, 74px);
  --product-wide: 1861px;
}

/* =========================================================
   Base Elements
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-sans);
  line-height: 1.45;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-brand-lime);
  outline-offset: 3px;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section--dark {
  color: var(--color-white);
  background: var(--color-brand-forest-deep);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .22);
}

.btn--lime {
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
}

.btn--white {
  color: var(--color-brand-forest);
  background: var(--color-white);
}

.btn--dark {
  color: var(--color-white);
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
}

.btn--outline {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, .45);
}

.btn--lime:hover {
  background: var(--color-brand-lime-soft);
}

.btn--white:hover {
  background: var(--color-brand-lime);
}

.btn--dark:hover {
  background: #004d20;
}

.btn--large {
  min-width: 170px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row .btn {
  flex: 0 1 auto;
}

.slider-controls,
.inline-controls {
  display: flex;
  gap: 14px;
}

.slider-controls {
  position: absolute;
  right: 7.3%;
  bottom: 70px;
  z-index: 2;
}

.slider-controls button,
.inline-controls button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  color: var(--color-brand-forest);
  background: var(--color-white);
  font-size: 26px;
  cursor: pointer;
}

.slider-controls button:last-child,
.inline-controls button:last-child {
  background: var(--color-brand-lime);
}

.kicker {
  margin: 0 0 14px;
  color: var(--color-brand-forest);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.kicker--center {
  text-align: center;
}

h2,
.section-title {
  margin: 0;
  color: var(--color-brand-forest);
  font-size: var(--type-section);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 48px;
  text-align: center;
}

.section-title--compact {
  margin-bottom: 30px;
}

.welcome img,
.technology img,
.split>img,
.faq-contact img,
.location img,
.app-download img {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding-left: 50px;
  border-bottom: 1px solid #e4e8e2;
  color: #1c241f;
  font-size: 18px;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.section--dark .kicker,
.video-section .kicker,
.lesson-banner .kicker {
  color: var(--color-brand-lime);
}

.welcome p,
.section--dark p {
  color: rgba(255, 255, 255, .78);
}

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--color-brand-forest);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .82));
}

.service-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.service-card p,
.service-card span {
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.service-card h3 {
  margin: 8px 0;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1;
}

.service-card--wide {
  min-height: 430px;
}

.section-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
}

.split,
.two-col {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
}

.technology p,
.split p,
.location p,
.app-download p {
  color: var(--color-muted);
  font-size: 18px;
}

.feature-list--plain li,
.feature-list--compact li {
  min-height: 42px;
  border: 0;
  color: var(--color-muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

.form-grid__full {
  grid-column: 1 / -1;
}

label {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  padding: 12px;
  background: #f8faf7;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.toast {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: none;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .24);
  font-weight: 800;
}

.toast.is-visible {
  display: block;
}

@media (max-width: 1199px) {

  .split,
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
  .mbl-hide{
    display: none !important;
  }
}

@media (max-width: 991px) {

  .split,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --section-y: 56px;
    --gutter: 18px;
  }

  h2,
  .section-title {
    font-size: 34px;
  }

  .section-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row .btn {
    flex-basis: 100%;
  }
}

@media (max-width: 479px) {

  h2,
  .section-title {
    font-size: 29px;
  }

  .btn {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .button-row .btn {
    flex-basis: 100%;
  }
}

/* =========================================================
   Header And Menu
   ========================================================= */
.site-header {
  position: absolute;
  z-index: 30;
  top: 60px;
  left: 50%;
  width: min(100% - 56px, 1864px);
  transform: translateX(-50%);
}

.site-header__bar {
  position: relative;
  display: grid;
  height: 78px;
  min-height: 78px;
  grid-template-columns: minmax(0, 1fr) 240px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-pill);
  background: rgba(38, 40, 39, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.site-header__brand {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  transform: translate(-50%, -50%);
}

.site-header__brand img {
  width: 142px;
  height: 142px;
  border-radius: 50%;
}

.site-header__nav {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.site-header__nav--right {
  grid-column: 3;
  justify-content: flex-end;
}

.site-header__nav>a:not(.btn),
.nav-item>button,
.icon-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 24px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .08);
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
}

.nav-item {
  position: relative;
}

.nav-item>button {
  padding-right: 18px;
}

.nav-item>button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.icon-link {
  width: 60px;
  padding: 0;
  border-radius: 50%;
}

.icon-link svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.2;
  transform: scale(1.7);
  transform-origin: center;
}

.site-header .btn {
  min-height: 60px;
  padding-inline: 30px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  white-space: nowrap;
}

.site-header__nav>a:not(.btn),
.nav-item>button,
.icon-link,
.site-header .btn {
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-header__nav>a:not(.btn):hover,
.nav-item>button:hover,
.icon-link:hover {
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
}

.site-header .btn--lime {
  color: #000000;
  background: var(--color-brand-lime);
}

.site-header .btn--lime:hover {
  background: var(--color-brand-lime-soft);
}

.site-header .btn--white:hover {
  background: var(--color-brand-lime);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  min-width: 230px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 28, 12, .98);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.nav-menu.is-open {
  display: grid;
}

.nav-menu a {
  padding: 11px 12px;
  color: var(--color-white);
  border-radius: 8px;
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
}

.site-header__toggle {
  display: none;
  width: 54px;
  height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
}

.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  margin: 0;
  background: currentColor;
}

@media (max-width: 1199px) {
  .site-header {
    top: 17px;
    width: calc(100% - 28px);
  }

  .site-header__bar {
    height: auto;
    min-height: 78px;
    grid-template-columns: auto 1fr auto;
    border-radius: 28px;
  }

  .site-header__brand {
    position: static;
    grid-column: 1;
    width: auto;
    height: auto;
    justify-self: start;
    order: -1;
    transform: none;
  }

  .site-header__brand img {
    width: 58px;
    height: 58px;
  }

  .site-header__toggle {
    position: fixed;
    top: 29px;
    right: 26px;
    z-index: 40;
    display: flex;
  }

  .site-header__nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__nav--right {
    justify-content: flex-start;
  }

  .site-header.is-open .site-header__nav {
    display: flex;
  }

  .site-header__nav>a,
  .nav-item>button,
  .icon-link {
    width: 100%;
    justify-content: flex-start;
  }

  .icon-link {
    padding-inline: 16px;
  }

  .nav-menu {
    position: static;
    margin-top: 8px;
  }
}

@media (max-width: 1599px) and (min-width: 1200px) {
  .site-header__bar {
    grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
  }

  .site-header__nav>a:not(.btn),
  .nav-item>button,
  .icon-link {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 16px;
    line-height: 26px;
  }

  .nav-item>button {
    padding-right: 14px;
  }

  .icon-link {
    width: 54px;
    padding: 0;
  }

  .icon-link svg {
    width: 38px;
    height: 38px;
    stroke-width: 3.4;
  }

  .site-header .btn {
    min-height: 54px;
    padding-inline: 22px;
    font-size: 16px;
    line-height: 26px;
  }
}

/* =========================================================
   Banner Hero
   ========================================================= */
.hero {
  position: relative;
  height: 916px;
  min-height: 916px;
  display: block;
  overflow: hidden;
  color: var(--color-white);
  background: #020705;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(ellipse 900px 420px at 30% 51%, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0) 68%),
    radial-gradient(ellipse 380px 150px at 92% 95%, rgba(0, 0, 0, .62), rgba(0, 0, 0, 0) 78%),
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .38) 23%, rgba(0, 0, 0, .05) 62%, rgba(0, 0, 0, .14)),
    linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18) 30%, rgba(0, 0, 0, 0) 68%);
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.015);
  transition: opacity .55s ease, transform 1.2s ease;
}

.hero__slide:nth-child(1) {
  background-image: url("../img/hero.jpg");
  background-size: 100% 100%;
}

.hero__slide:nth-child(2) {
  background-image: url("../img/banner-slide2.webp");
}

.hero__slide:nth-child(3) {
  background-image: url("../img/banner-slide3.webp");
}

.hero__slide[style] {
  background-image: var(--hero-desktop-image);
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 365px;
}

.hero h1 {
  width: min(940px, 100%);
  margin: 0 0 24px;
  font-size: clamp(52px, 4.17vw, 80px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--color-brand-lime);
}

.hero p {
  margin: 0 0 34px;
  font-size: 25px;
  line-height: 38px;
}

.hero .button-row {
  gap: 10px;
}

.hero .btn {
  min-height: 64px;
  padding-inline: 32px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.hero .btn--lime {
  color: #000000;
}

.hero__meter {
  position: absolute;
  right: -140px;
  bottom: 29px;
  width: 126px;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}

.hero .slider-controls {
  right: 7.35%;
  bottom: 39px;
  z-index: 3;
  align-items: center;
}

.hero .slider-controls button {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  font-size: 0;
}

.hero .slider-controls button img {
  width: 24px;
  height: 24px;
}

/* =========================================================
   Product Page
   ========================================================= */
.product-page {
  background: var(--color-white);
}

.product-hero {
  position: relative;
  display: flex;
  min-height: var(--product-hero-height);
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-white);
  background: var(--color-brand-forest-deep);
  padding: calc(var(--product-hero-header-offset) + var(--product-hero-edge-gap)) var(--product-hero-gutter) var(--product-hero-edge-gap);
}

.product-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(353deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .16) 100%),
    linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .06) 32%, rgba(0, 0, 0, .16) 100%);
}

.product-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.product-hero__content {
  display: flex;
  width: min(100%, var(--product-hero-content));
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 1.45vw, 28px);
}

.product-hero__title {
  width: min(100%, 1149px);
  margin: 0;
  color: var(--color-white);
  font-family: "Montserrat", var(--font-sans);
  font-size: var(--type-product-hero);
  font-weight: 700;
  line-height: 1.075;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-hero__title span,
.product-hero__title em {
  color: var(--color-brand-lime);
  font-style: normal;
}

.product-hero__intro,
.product-hero__copy,
.product-hero__copy p {
  margin: 0;
  color: var(--color-white);
}

.product-hero__intro {
  font-size: clamp(1.25rem, 1.46vw, 1.75rem);
  font-weight: 700;
  line-height: 1.285;
}

.product-hero__copy {
  width: min(100%, 1140px);
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  line-height: 1.5;
}

.product-hero__button {
  min-width: 170px;
  min-height: 64px;
  padding: 16px 32px;
  color: #000000;
  font-size: clamp(1rem, 1.04vw, 1.25rem);
  font-weight: 500;
}

@media (max-width: 1199px) {
  .product-hero {
    --product-hero-header-offset: clamp(96px, 10vw, 120px);
    --product-hero-edge-gap: clamp(42px, 4.7vw, 56px);
    min-height: clamp(560px, 72vw, 680px);
  }

  .product-hero__content {
    width: min(100%, 760px);
  }
}

@media (max-width: 767px) {
  .product-hero {
    --product-hero-header-offset: 90px;
    --product-hero-edge-gap: 48px;
    min-height: 640px;
    padding-inline: 24px;
  }

  .product-hero__title {
    font-size: clamp(2.25rem, 10.2vw, 3.5rem);
  }

  .product-hero__copy {
    font-size: 1rem;
  }
}

.product-difference {
  overflow: hidden;
  background: var(--color-white);
  padding: clamp(56px, 5.25vw, 100px) 0 clamp(64px, 7.4vw, 142px);
}

.product-difference__inner {
  display: flex;
  width: min(calc(100% - 58px), var(--product-wide));
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 2.6vw, 50px);
}

.product-difference__header {
  display: flex;
  width: min(100%, 900px);
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.56vw, 30px);
  text-align: center;
}

.product-difference__eyebrow {
  margin: 0;
}

.product-difference__title {
  margin: 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(2.4rem, 3.55vw, 4.25rem);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-difference__title span,
.product-difference__title em {
  color: var(--color-brand-forest);
  font-style: normal;
}

.product-difference__copy,
.product-difference__copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.04vw, 1.25rem);
  line-height: 1.6;
}

.product-difference__cards {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 26px;
}

.product-difference-card {
  position: relative;
  display: flex;
  flex: 1 1 calc((100% - 52px) / 3);
  max-width: 557px;
  min-height: 0;
  aspect-ratio: 557 / 565;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  color: var(--color-white);
  background: var(--color-brand-forest-deep);
  padding: clamp(22px, 2.08vw, 40px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.product-difference-card::before,
.product-difference-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.product-difference-card::before {
  z-index: 1;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color .25s ease;
}

.product-difference-card::after {
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .26) 42%, rgba(0, 0, 0, .76) 100%);
  transition: background .25s ease;
}

.product-difference-card:hover::before,
.product-difference-card:focus-visible::before,
.product-difference-card:first-child::before {
  border-color: var(--color-brand-lime);
}

.product-difference-card:hover::after,
.product-difference-card:focus-visible::after,
.product-difference-card:first-child::after {
  background: linear-gradient(180deg, rgba(0, 52, 21, .1) 0%, rgba(0, 52, 21, .35) 43%, rgba(0, 25, 10, .88) 100%);
}

.product-difference-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-difference-card:hover .product-difference-card__image,
.product-difference-card:focus-visible .product-difference-card__image,
.product-difference-card:first-child .product-difference-card__image {
  transform: scale(1.045);
}

.product-difference-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.product-difference-card__title {
  max-width: 100%;
  margin: 0;
  color: var(--color-white);
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.45rem, 1.87vw, 2.25rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.product-difference-card__subtitle {
  margin: 4px 0 0;
  color: var(--color-white);
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  font-weight: 700;
  line-height: 1.32;
}

.product-difference-card__text {
  margin: clamp(10px, 1.25vw, 24px) 0 0;
  color: var(--color-white);
  font-size: clamp(.95rem, 1.04vw, 1.25rem);
  line-height: 1.6;
}

.product-difference-card__text-hover {
  display: none;
}

.product-difference-card:hover .product-difference-card__text-hover,
.product-difference-card:focus-visible .product-difference-card__text-hover,
.product-difference-card:first-child .product-difference-card__text-hover {
  display: inline;
}

.product-difference-card:hover .product-difference-card__text-hover+.product-difference-card__text-default,
.product-difference-card:focus-visible .product-difference-card__text-hover+.product-difference-card__text-default,
.product-difference-card:first-child .product-difference-card__text-hover+.product-difference-card__text-default {
  display: none;
}

@media (max-width: 1199px) {
  .product-difference__cards {
    gap: 24px;
  }

  .product-difference-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .product-difference {
    padding: 46px 0 56px;
  }

  .product-difference__inner {
    width: min(calc(100% - 32px), var(--product-wide));
  }

  .product-difference__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .product-difference-card {
    flex-basis: 100%;
    max-width: 100%;
    min-height: 430px;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero__content {
    padding-top: 250px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 680px;
  }

  .hero__slide {
    background-position: center center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
    line-height: 28px;
  }

  .hero .slider-controls {
    right: 24px;
    bottom: 32px;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 656px;
  }

  .hero__content {
    padding-top: 255px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero .button-row {
    gap: 16px;
  }

  .hero .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero .slider-controls button {
    width: 56px;
    height: 56px;
  }

  .hero__meter {
    display: none;
  }
}

/* =========================================================
   Why Teed Up
   ========================================================= */
.why-teed-up {
  position: relative;
  overflow: hidden;
  padding-block: 0;
  background: var(--color-white);
}

/* .why-teed-up::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  content: "";
  background: var(--color-brand-forest-deep);
} */

.why-teed-up__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .58;
}

.why-teed-up__decor--top {
  top: -512px;
  right: -32px;
  width: 700px;
  height: 976px;
  background-image: url("../img/why-teed-up/Ellipse 2.png");
}

.why-teed-up__decor--bottom {
  right: 84px;
  right: -54px;
  bottom: 40px;
  width: 407px;
  height: 683px;
  background-image: url("../img/why-teed-up/Ellipse 3.png");
}

.why-teed-up__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 553px 680px 370px;
  align-items: start;
  gap: 52px;
  padding-top: 77px;
  padding-bottom: 153px;
}

.why-teed-up__media {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.why-teed-up__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-teed-up__media--primary {
  width: 553px;
  height: 804px;
}

.why-teed-up__media--secondary {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  width: 370px;
  height: 409px;
  /* margin-top: 414px; */
}

.why-teed-up__content {
  grid-column: 2 / 4;
  grid-row: 1;
  /* padding-top: 31px; */
}

.why-teed-up__eyebrow {
  margin: 0 0 21px;
  color: var(--color-brand-forest);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: .48em;
  text-transform: uppercase;
}

.why-teed-up__title {
  /* max-width: 1000px;
  margin: 0 0 39px;
  color: #000000;
  font-size: 66px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase; */
  color: #000000;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-family: 'Montserrat';
}

.why-teed-up__title span {
  /* display: block; */
  color: var(--color-brand-forest);
}

.services__title span,
.booths__title span {
  color: var(--color-brand-forest);
}

.why-teed-up__features {
  width: 680px;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-teed-up__feature {
  min-height: 72px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .09);
  color: #000000;
  font-size: 23px;
  font-weight: 400;
  line-height: 32px;
}

/* .why-teed-up__feature:last-child {
  border-bottom: 0;
} */

.why-teed-up__feature img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.practice-connect {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.practice-connect::after {
  position: absolute;
  top: -80px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid #e4e9e3;
  border-radius: 50%;
  content: "";
}

.practice-connect__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 560px) minmax(420px, 1fr) minmax(240px, 380px);
  align-items: center;
  gap: clamp(30px, 4vw, 74px);
}

.practice-connect__image {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.practice-connect__image--large {
  min-height: 720px;
  object-fit: cover;
}

.practice-connect__image--small {
  align-self: end;
}

.practice-connect h2 span {
  color: var(--color-brand-forest);
}

@media (max-width: 1199px) {
  .why-teed-up__grid {
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 1fr);
    gap: 34px;
  }

  .why-teed-up__media--primary {
    width: 100%;
    height: 650px;
  }

  .why-teed-up__content {
    grid-column: auto;
    grid-row: auto;
    padding-top: 0;
  }

  .why-teed-up__title {
    font-size: 46px;
  }

  .why-teed-up__feature {
    min-height: 64px;
    font-size: 19px;
    line-height: 28px;
  }

  .why-teed-up__features {
    width: 100%;
  }

  .why-teed-up__media--secondary {
    grid-column: 2;
    grid-row: auto;
    width: min(100%, 370px);
    height: 409px;
    margin-top: -250px;
    justify-self: end;
  }

  .practice-connect__grid {
    grid-template-columns: 1fr 1fr;
  }

  .practice-connect__image--small {
    display: none;
  }
}

@media (max-width: 991px) {
  .why-teed-up__grid {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 78px;
  }

  .why-teed-up__media--primary {
    height: auto;
    aspect-ratio: 553 / 823;
  }

  .why-teed-up__media--secondary {
    grid-column: auto;
    width: min(100%, 370px);
    height: auto;
    aspect-ratio: 370 / 409;
    margin-top: 0;
    justify-self: start;
  }

  .why-teed-up__decor--top {
    top: -470px;
    right: -390px;
  }

  .why-teed-up__decor--bottom {
    display: none;
  }

  .practice-connect__grid {
    grid-template-columns: 1fr;
  }

  .practice-connect__image--large {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
  }
}

@media (max-width: 575px) {
  .why-teed-up__grid {
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .why-teed-up__media {
    border-radius: 12px;
  }

  .why-teed-up__eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: .36em;
  }

  .why-teed-up__title {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .why-teed-up__feature {
    min-height: 58px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 13px;
    font-size: 16px;
    line-height: 24px;
  }

  .why-teed-up__feature img {
    width: 28px;
    height: 28px;
  }

  .why-teed-up__features {
    width: 100%;
  }
}

/* =========================================================
   Welcome Teed Up
   ========================================================= */
.welcome-teed-up {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: #00190a;
}

.welcome-teed-up__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 430px 574px minmax(520px, 678px);
  align-items: center;
  column-gap: 18px;
  /* min-height: 855px; */
  padding-top: 100px;
  padding-bottom: 100px;
}

.welcome-teed-up__intro {
  position: relative;
  width: 430px;
  padding-top: 40px;
}

.welcome-teed-up__intro::before {
  position: absolute;
  z-index: 0;
  left: -52px;
  top: 214px;
  width: 466.65px;
  height: 502.2px;
  content: "";
  background: url("../img/welcome-teed-up/Group 1707492292.png") center / contain no-repeat;
  opacity: 1;
  pointer-events: none;
}

.welcome-teed-up__intro>* {
  position: relative;
  z-index: 1;
}

.welcome-teed-up__eyebrow {
  margin: 0 0 30px;
  color: var(--color-brand-lime);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.welcome-teed-up__title {
  margin: 0 0 40px;
  color: var(--color-white);
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.welcome-teed-up__title span {
  color: var(--color-brand-lime);
}

.welcome-teed-up__summary {
  width: 430px;
  margin: 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.welcome-teed-up__stats {
  display: grid;
  grid-template-columns: 80px 1px 84px 1px 120px;
  align-items: center;
  column-gap: 36px;
  width: 430px;
  min-height: 119px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.welcome-teed-up__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  gap: 16px;
  min-width: 0;
  min-height: 117px;
  text-align: center;
}

.welcome-teed-up__stat--courses {
  width: 80px;
}

.welcome-teed-up__stat--bays {
  width: 84px;
}

.welcome-teed-up__stat--suite {
  width: 120px;
}

.welcome-teed-up__divider {
  width: 1px;
  height: 117px;
  background: url("../img/welcome-teed-up/Vector 13.svg") center / 1px 117px no-repeat;
  list-style: none;
  opacity: 1;
}

.welcome-teed-up__stat img {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  object-fit: contain;
}

.welcome-teed-up__stat strong {
  display: block;
  color: var(--color-brand-lime);
  font-family: "Montserrat", var(--font-sans);
  font-size: 40px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
}

.welcome-teed-up__stat span {
  display: block;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  white-space: nowrap;
}

.welcome-teed-up__media {
  overflow: hidden;
  width: 574px;
  /* height: 655px; */
  margin: 0;
  border-radius: 20px;
}

.welcome-teed-up__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.welcome-teed-up__content {
  width: 678px;
  margin-left: 35px;
  padding-top: 40px;
}

.welcome-teed-up__content p {
  width: 678px;
  margin: 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.welcome-teed-up__content p+p {
  margin-top: 32px;
}

.welcome-teed-up__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
}

.welcome-teed-up__actions .btn {
  min-width: 170px;
  min-height: 63px;
  padding: 24px 32px;
  font-size: 20px;
  font-weight: 500;
}

.welcome-teed-up__actions .btn--white {
  min-width: 243px;
}

@media (max-width: 1599px) {
  .welcome-teed-up__grid {
    grid-template-columns: minmax(320px, 430px) minmax(420px, 574px) minmax(360px, 1fr);
    column-gap: 34px;
  }

  .welcome-teed-up__title {
    font-size: 58px;
    line-height: 64px;
  }

  .welcome-teed-up__content {
    width: 100%;
    margin-left: 0;
  }

  .welcome-teed-up__content p {
    width: 100%;
  }
}

@media (max-width: 1299px) {
  .welcome-teed-up__grid {
    grid-template-columns: minmax(300px, .8fr) minmax(380px, 1fr);
    align-items: stretch;
    min-height: 0;
    padding-top: 78px;
    padding-bottom: 80px;
  }

  .welcome-teed-up__media {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    height: auto;
    aspect-ratio: 574 / 654;
  }

  .welcome-teed-up__content {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 900px;
    padding-top: 0;
  }

  .welcome-teed-up__content p {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .welcome-teed-up__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .welcome-teed-up__intro,
  .welcome-teed-up__content {
    padding-top: 0;
  }

  .welcome-teed-up__media {
    grid-column: auto;
    grid-row: auto;
    max-width: 574px;
  }

  .welcome-teed-up__title {
    font-size: 46px;
  }

  .welcome-teed-up__summary,
  .welcome-teed-up__content p {
    max-width: 100%;
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .welcome-teed-up__intro::before {
    left: 50%;
    top: 190px;
    width: 360px;
    height: 388px;
    transform: translateX(-50%);
  }

  .welcome-teed-up__grid {
    gap: 30px;
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .welcome-teed-up__eyebrow {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .3em;
  }

  .welcome-teed-up__title {
    margin-bottom: 16px;
    font-size: 34px;
  }

  .welcome-teed-up__summary,
  .welcome-teed-up__content p {
    font-size: 16px;
    line-height: 26px;
  }

  .welcome-teed-up__stats {
    width: 100%;
    grid-template-columns: minmax(62px, 1fr) 1px minmax(62px, 1fr) 1px minmax(90px, 1fr);
    column-gap: 7px;
    margin-top: 32px;
  }

  .welcome-teed-up__stat--courses,
  .welcome-teed-up__stat--bays,
  .welcome-teed-up__stat--suite {
    width: 100%;
  }

  .welcome-teed-up__stat img {
    width: 34px;
    height: 34px;
  }

  .welcome-teed-up__stat strong {
    font-size: 32px;
  }

  .welcome-teed-up__stat span {
    font-size: 15px;
    line-height: 20px;
  }

  .welcome-teed-up__content p+p {
    margin-top: 22px;
  }

  .welcome-teed-up__actions {
    gap: 12px;
    margin-top: 30px;
  }

  .welcome-teed-up__actions .btn {
    width: 100%;
    min-height: 56px;
    font-size: 17px;
  }
}

/* =========================================================
   Services
   ========================================================= */
.services {
  overflow: hidden;
  padding: 120px 0 92px;
  background: var(--color-white);
}

.services__inner {
  width: min(100% - 58px, 1861px);
  margin-inline: auto;
}

.services__header {
  display: flex;
  width: min(100%, 887px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 50px;
  text-align: center;
}

.services__eyebrow {
  margin: 0;
  color: var(--color-brand-forest);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.services__title {
  max-width: 887px;
  margin: 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -2px;
  text-align: center;
  text-transform: uppercase;
}

.services__slider {
  overflow: hidden;
}

.services__track {
  --services-card-gap: 23px;
  --services-card-width: calc((100% - 69px) / 4);

  display: flex;
  align-items: center;
  gap: var(--services-card-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.services__track::-webkit-scrollbar {
  display: none;
}

.services__track:focus {
  outline: 0;
}

.services__page {
  display: contents;
}

.services .service-card {
  position: relative;
  flex: 0 0 var(--services-card-width);
  width: var(--services-card-width);
  min-height: 0;
  height: 565px;
  overflow: hidden;
  border-radius: 20px;
  color: var(--color-white);
  background: var(--color-brand-forest);
  scroll-snap-align: start;
  box-shadow: none;
}

.services .service-card::before {
  position: absolute;
  z-index: 2;
  inset: 8px;
  content: "";
  border: 1px solid var(--color-brand-lime);
  border-radius: 16px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.services .service-card:hover::before,
.services .service-card:focus-within::before {
  opacity: 1;
}

.services .service-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51.77%, rgba(0, 0, 0, .4) 66.58%, rgba(0, 0, 0, .8) 98.58%);
  transition: background .25s ease;
}

.services .service-card:hover::after,
.services .service-card:focus-within::after {
  background: linear-gradient(180deg, rgba(0, 34, 14, 0) 5.05%, rgba(0, 34, 14, .4) 35.48%, rgba(0, 34, 14, .8) 85.42%);
}

.services .service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .service-card__content {
  position: absolute;
  z-index: 3;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 0;
  transition: padding-bottom .28s ease;
}

.services .service-card:hover .service-card__content,
.services .service-card:focus-within .service-card__content {
  padding-bottom: 76px;
}

.services .service-card h3 {
  width: 100%;
  margin: 0;
  color: var(--color-white);
  font-family: "Montserrat", var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0;
}

.services .service-card p {
  width: 100%;
  margin: 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.service-card__button {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  min-width: 160px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  color: #000000;
  background: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  opacity: 0;
  pointer-events: none;
  transform: perspective(420px) rotateX(-90deg) translateY(10px);
  transform-origin: top center;
  transition: background-color .2s ease, opacity .22s ease, transform .28s ease;
}

.services .service-card:hover .service-card__button,
.services .service-card:focus-within .service-card__button {
  opacity: 1;
  pointer-events: auto;
  transform: perspective(420px) rotateX(0) translateY(0);
}

.service-card__button:hover {
  background: var(--color-brand-lime);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .services .service-card::before {
    opacity: 1;
  }

  .services .service-card::after {
    background: linear-gradient(180deg, rgba(0, 34, 14, 0) 5.05%, rgba(0, 34, 14, .4) 35.48%, rgba(0, 34, 14, .8) 85.42%);
  }

  .services .service-card__content {
    padding-bottom: 76px;
  }

  .services .service-card .service-card__button {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

.services__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.services__button {
  display: inline-flex;
  width: 229px;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 24px 32px;
  color: var(--color-white);
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.services__button:hover {
  background: #004d20;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.services__rule {
  flex: 1 1 auto;
  height: 1px;
  min-width: 60px;
  background: url("../img/our-services/Frame 2085662986.png") center / 100% 1px no-repeat;
  opacity: .2;
}

.services__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  order: 3;
}

.services__control {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid #000000;
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.services__control--next {
  background: #000000;
}

.services__control::before,
.services__control::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
}

.services__control::before {
  width: 24px;
  height: 24px;
  background: currentColor;
  mask: var(--services-arrow) center / contain no-repeat;
  -webkit-mask: var(--services-arrow) center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.services__control::after {
  display: none;
}

.services__control--prev {
  --services-arrow: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12H5M11 6L5 12L11 18' stroke='black' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

.services__control--next {
  --services-arrow: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M13 6L19 12L13 18' stroke='black' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
  color: var(--color-white);
}

.services__control:hover {
  background: var(--color-brand-lime);
  transform: translateY(-2px);
}

.services__control--next:hover {
  color: #000000;
}

.services__control:disabled,
.services__control[aria-disabled="true"],
.video-section__control:disabled,
.video-section__control[aria-disabled="true"] {
  border-color: #c7d0c9;
  color: #7b857d;
  background: #eef2ec;
  cursor: not-allowed;
  opacity: .78;
  pointer-events: none;
  transform: none;
}

.services__control--next:disabled,
.services__control--next[aria-disabled="true"] {
  color: #7b857d;
  background: #eef2ec;
}

.video-section__control:disabled img,
.video-section__control[aria-disabled="true"] img {
  opacity: .45;
  filter: grayscale(1);
}

@media (max-width: 1599px) {
  .services {
    padding-top: 96px;
  }

  .services__title {
    font-size: 58px;
    line-height: 64px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .services__track {
    --services-card-gap: 20px;
    --services-card-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 991px) {
  .services {
    padding: 72px 0;
  }

  .services__inner {
    width: min(100% - 32px, 1861px);
  }

  .services__header {
    gap: 20px;
    margin-bottom: 34px;
  }

  .services__title {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0;
  }

  .services .service-card {
    flex-basis: calc((100% - var(--services-card-gap)) / 2);
    width: calc((100% - var(--services-card-gap)) / 2);
    height: auto;
    aspect-ratio: 448 / 565;
  }

  .services__actions {
    flex-wrap: wrap;
  }

  .services__rule {
    order: 3;
    flex-basis: 100%;
  }
}

@media (max-width: 575px) {
  .services {
    padding: 54px 0;
  }

  .services__inner {
    width: min(100% - 28px, 1861px);
  }

  .services__eyebrow {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .28em;
  }

  .services__title {
    font-size: 32px;
    line-height: 38px;
  }

  .services__track {
    --services-card-gap: 16px;
    --services-card-width: 100%;
  }

  .services .service-card {
    flex-basis: var(--services-card-width);
    width: var(--services-card-width);
    border-radius: 16px;
  }

  .services .service-card::before {
    inset: 7px;
    border-radius: 12px;
  }

  .services .service-card__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
    gap: 16px;
  }

  .services .service-card h3 {
    font-size: 25px;
    line-height: 32px;
  }

  .services .service-card p {
    font-size: 16px;
    line-height: 24px;
  }

  .service-card__button {
    min-width: 140px;
    min-height: 48px;
    padding: 12px 22px;
    font-size: 16px;
  }

  .services__actions {
    gap: 14px;
    margin-top: 32px;
  }

  .services__button {
    width: calc(100% - 132px);
    min-height: 56px;
    padding: 16px 20px;
    font-size: 16px;
  }

  .services__controls {
    gap: 8px;
  }

  .services__control {
    width: 56px;
    height: 56px;
  }
}

/* =========================================================
   Technology
   ========================================================= */
.technology {
  overflow: hidden;
  min-height: 1127px;
  padding: 100px 0;
  background: #f2f2f2;
}

.technology__inner {
  position: relative;
  display: grid;
  width: min(100% - 200px, 1720px);
  min-height: 927px;
  grid-template-columns: 993px 648px;
  grid-template-rows: 251px 591px;
  column-gap: 79px;
  /* row-gap: 85px; */
  margin-inline: auto;
}

.technology__intro {
  display: flex;
  width: 944px;
  flex-direction: column;
  align-items: flex-start;
  /* gap: 20px; */
  gap: 40px;
  grid-column: 1;
  grid-row: 1;
}



.technology__heading {
  display: flex;
  width: 944px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.technology__eyebrow {
  margin: 0;
  color: #5d6866;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.technology__title {
  margin: 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.technology__title span {
  color: var(--color-brand-forest);
}

.technology__summary {
  width: 944px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.technology__media {
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  background: #00190a;
}

.technology__media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.technology__media--main {
  width: 993px;
  height: 591px;
  grid-column: 1;
  grid-row: 2;
}

.technology__media--secondary {
  width: 648px;
  height: 397px;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 114px;
}

.technology__content {
  display: flex;
  width: 648px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  grid-column: 2;
  grid-row: 1;
}

.technology__copy {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.technology__copy p {
  width: 648px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.technology__button {
  display: inline-flex;
  width: 328px;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 24px 32px;
  color: var(--color-white);
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.technology__button:hover {
  background: #004d20;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

@media (max-width: 1599px) {
  .technology {
    min-height: 0;
    padding: 90px 0;
  }

  .technology__inner {
    width: min(100% - 80px, 1420px);
    grid-template-columns: minmax(520px, 1fr) minmax(420px, .65fr);
    grid-template-rows: auto auto;
    column-gap: 52px;
    row-gap: 68px;
  }

  .technology__intro,
  .technology__heading,
  .technology__summary,
  .technology__content,
  .technology__copy p {
    width: 100%;
  }

  .technology__title {
    font-size: 58px;
    line-height: 64px;
  }

  .technology__media--main,
  .technology__media--secondary {
    width: 100%;
    height: auto;
  }

  .technology__media--main {
    aspect-ratio: 993 / 591;
  }

  .technology__media--secondary {
    aspect-ratio: 648 / 397;
    margin-top: 92px;
  }
}

@media (max-width: 1199px) {
  .technology__inner {
    width: min(100% - 56px, 980px);
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .technology__intro,
  .technology__content,
  .technology__media--main,
  .technology__media--secondary {
    grid-column: auto;
    grid-row: auto;
  }

  .technology__media--secondary {
    margin-top: 0;
  }

  .technology__copy {
  gap: 24px;
}
}

@media (max-width: 767px) {
  .technology {
    padding: 64px 0;
  }

  .technology__inner {
    width: min(100% - 32px, 980px);
  }

  .technology__intro {
    gap: 28px;
  }

  .technology__title {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0;
  }

  .technology__copy {
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .technology {
    padding: 54px 0;
  }

  .technology__inner {
    width: min(100% - 28px, 980px);
    gap: 30px;
  }

  .technology__eyebrow {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .28em;
  }

  .technology__title {
    font-size: 32px;
    line-height: 38px;
  }

  .technology__summary,
  .technology__copy p {
    font-size: 16px;
    line-height: 26px;
  }

  .technology__button {
    width: 100%;
    min-height: 56px;
    padding: 16px 22px;
    font-size: 16px;
  }
}

/* =========================================================
   Simulation Videos
   ========================================================= */
.video-section {
  position: relative;
  overflow: hidden;
  height: 800px;
  min-height: 800px;
  color: var(--color-white);
  background: #00190a;
}

.video-section__stage {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0) 57.58%, rgba(0, 0, 0, .8) 100%),
    url("../img/golf-simulation/GOLFZON.webp") center top / 1920px 800px no-repeat,
    #003415;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.video-section__stage::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 57.58%, rgba(0, 0, 0, .8) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.video-section__stage.is-playing::after {
  opacity: 1;
}

.video-section__frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.video-section__frame[data-video-file-inline] {
  object-fit: cover;
}

.video-section__stage.is-playing .video-section__frame {
  opacity: 1;
  pointer-events: none;
}

.video-section.is-video-ready .video-section__stage {
  cursor: pointer;
}

.video-section__content {
  position: absolute;
  top: 104px;
  /* left: max(24px, calc((100vw - 1720px) / 2)); */
  z-index: 2;
  display: flex;
  width: 554px;
  height: 379px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 0;
}

.video-section__title {
  width: 554px;
  margin: 0;
  color: var(--color-white);
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.video-section__title span {
  display: block;
  color: #E3F956;
}

.video-section__content p {
  width: 554px;
  margin: 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.video-section__pill {
  position: absolute;
  top: 189.5px;
  /* right: max(24px, calc((100vw - 1720px) / 2)); */
  right: max(45px, calc((100vw - 1720px) / 2));
  z-index: 3;
  display: inline-flex;
  width: 237px;
  height: 92px;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  padding: 8px 32px 8px 8px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .2);
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(15px);
  transition: background-color .2s ease, transform .2s ease;
}

.video-section__pill:hover {
  background: rgba(255, 255, 255, .36);
  transform: translateY(-2px);
}

.video-section__stage.is-playing+.video-section__pill {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
}

.video-section__pill span {
  display: grid;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand-lime);
}

.video-section__pill img {
  width: 20.41px;
  height: 20.41px;
  object-fit: contain;
}

.video-section__pill b {
  display: block;
  width: 101px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  white-space: nowrap;
}

.video-section__carousel {
  position: absolute;
  right: -75px;
  bottom: 56px;
  z-index: 3;
  display: block;
  width: 732px;
  height: 168px;
}

.video-section__thumbs {
  display: flex;
  width: 732px;
  height: 168px;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.video-section__thumbs::-webkit-scrollbar {
  display: none;
}

.video-section__thumb-page {
  display: contents;
}

.video-section__thumb {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  height: 168px;
  overflow: hidden;
  border: 1px solid var(--color-white);
  border-radius: 15px;
  padding: 0;
  background: #f1f1f1;
  box-shadow: none;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.video-section__thumb.is-active {
  border-width: 3px;
  box-shadow: none;
}

.video-section__thumb:hover {
  transform: translateY(-2px);
}

.video-section__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.video-section__thumb:nth-child(1) img {
  width: 298px;
  height: 167px;
  transform: translate(calc(-50% + 5px), -50%);
}

.video-section__thumb:nth-child(2) img {
  width: 306px;
  height: 172px;
  transform: translate(calc(-50% + 40px), -50%);
}

.video-section__thumb:nth-child(3) img {
  width: 309px;
  height: 174px;
  transform: translate(calc(-50% + .5px), -50%);
}

.video-section__thumb:nth-child(4) img {
  width: 302px;
  height: 170px;
  transform: translate(calc(-50% + 9px), -50%);
}

.video-section__control {
  position: absolute;
  top: 54px;
  z-index: 3;
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  border: 1px solid #000000;
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.video-section__control:hover {
  background: var(--color-brand-lime);
  transform: translateY(-2px);
}

.video-section__control--prev {
  left: -32px;
}

.video-section__control--next {
  right: 16px;
}

.video-section__control img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.video-section__control--next img {
  transform: rotate(180deg);
}

.video-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .75);
}

.video-modal.is-open {
  display: grid;
}

.video-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-brand-forest);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.video-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
  font-size: 28px;
  cursor: pointer;
}

.video-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__title {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  color: var(--color-white);
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
  pointer-events: none;
}

@media (max-width: 1199px) {
  .video-section {
    height: auto;
    min-height: 720px;
  }

  .video-section__stage {
    background-size: cover;
    background-position: center;
  }

  .video-section__content {
    top: 72px;
    left: 40px;
    width: 500px;
    height: auto;
  }

  .video-section__pill {
    top: 72px;
    right: 40px;
  }

  .video-section__carousel {
    right: -120px;
    bottom: 52px;
  }

  .video-section__title,
  .video-section__content p {
    width: 500px;
  }

  .video-section__title {
    font-size: 58px;
    line-height: 64px;
  }

}

@media (max-width: 767px) {
  .video-section {
    min-height: 760px;
  }

  .video-section__stage {
    background-position: 55% center;
  }

  .video-section__content {
    top: 48px;
    left: 24px;
    width: calc(100% - 48px);
    gap: 28px;
  }

  .video-section__title,
  .video-section__content p {
    width: min(100%, 460px);
  }

  .video-section__title {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0;
  }

  .video-section__content p {
    font-size: 16px;
    line-height: 26px;
  }

  .video-section__pill {
    top: 440px;
    right: auto;
    left: 24px;
    width: 190px;
    height: 74px;
    gap: 14px;
    padding: 7px 22px 7px 7px;
    font-size: 16px;
    line-height: 24px;
  }

  .video-section__pill span {
    width: 60px;
    height: 60px;
  }

  .video-section__pill b {
    width: 78px;
    font-size: 16px;
    line-height: 24px;
  }

  .video-section__carousel {
    top: auto;
    right: 16px;
    bottom: 24px;
    left: 16px;
    width: auto;
    height: 124px;
  }

  .video-section__control {
    top: 38px;
    width: 48px;
    height: 48px;
  }

  .video-section__control--prev {
    left: 0;
  }

  .video-section__control--next {
    right: 0;
  }

  .video-section__thumbs {
    width: 100%;
    height: 124px;
    gap: 12px;
    padding: 0 58px;
  }

  .video-section__thumb {
    width: 124px;
    height: 124px;
  }
}

@media (max-width: 575px) {
  .video-section {
    min-height: 720px;
  }

  .video-section__title {
    font-size: 30px;
    line-height: 34px;
  }

  .video-section__content p {
    font-size: 11px;
    line-height: 17px;
  }

  .video-section__pill {
    top: 392px;
    left: 18px;
  }

  .video-section__carousel {
    right: 12px;
    left: 12px;
  }

  .video-section__thumb {
    width: 104px;
    height: 104px;
  }
}

/* =========================================================
   Membership Benefits
   ========================================================= */
.benefits {
  padding: 100px 0 0;
  background: var(--color-white);
}

.benefits__panel {
  /* display: grid;
  width: min(100% - 200px, 1720px);
  min-height: 766px;
  grid-template-columns: 860px 1fr;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 20px;
  background: #f2f2f2; */
  display: flex;
  width: min(100% - 200px, 1720px);
  min-height: 766px;
  /* grid-template-columns: 966px 1fr; */
  margin-inline: auto;
  overflow: hidden;
  border-radius: 20px;
  background: #f2f2f2;
  column-gap: 60px;
}

.benefits__media {
  width: 860px;
  height: 766px;
  margin: 0;
}

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

.benefits__content {
  display: flex;
  width: 678px;
  flex-direction: column;
  align-items: flex-start;
  justify-self: center;
  align-self: center;
  gap: 40px;
  padding: 0;
}

.benefits__title {
  /* width: 610px; */
  margin: 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.benefits__title span {
  display: block;
}

.benefits__title span:last-child {
  color: var(--color-brand-forest);
}

.benefits__copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits__copy p {
  width: 678px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.benefits__button {
  display: inline-flex;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 24px 32px;
  color: var(--color-white);
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.benefits__button:hover {
  background: #004d20;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

@media (max-width: 1599px) {
  .benefits__panel {
    width: min(100% - 80px, 1420px);
    grid-template-columns: minmax(520px, .94fr) minmax(500px, 1fr);
  }

  .benefits__media {
    width: 100%;
    height: auto;
    min-height: 650px;
  }

  .benefits__content {
    width: min(100% - 80px, 620px);
  }

  .benefits__title,
  .benefits__copy p {
    width: 100%;
  }

  .benefits__title {
    font-size: 58px;
    line-height: 64px;
  }
}

@media (max-width: 1199px) {
  .benefits__panel {
    width: min(100% - 56px, 980px);
    grid-template-columns: 1fr;
  }

  .benefits__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 860 / 560;
  }

  .benefits__content {
    width: auto;
    justify-self: stretch;
    padding: 56px;
  }
}

@media (max-width: 767px) {
  .benefits {
    padding-top: 64px;
  }

  .benefits__panel {
    width: min(100% - 32px, 980px);
  }

  .benefits__content {
    gap: 30px;
    padding: 36px 28px 40px;
  }

  .benefits__title {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0;
  }

  .benefits__copy {
    gap: 22px;
  }

  .benefits__copy p {
    font-size: 16px;
    line-height: 26px;
  }

  .benefits__button {
    width: 100%;
    min-height: 56px;
    padding: 16px 22px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .benefits {
    padding-top: 54px;
  }

  .benefits__panel {
    width: min(100% - 28px, 980px);
    border-radius: 16px;
  }

  .benefits__media {
    aspect-ratio: 1 / .82;
  }

  .benefits__content {
    padding: 32px 22px 34px;
  }

  .benefits__title {
    font-size: 32px;
    line-height: 38px;
  }
}

/* =========================================================
   Golf Lessons
   ========================================================= */
.lesson-banner {
  isolation: isolate;
  position: relative;
  display: block;
  overflow: hidden;
  height: 860px;
  min-height: 860px;
  padding: 0;
  border-top: 0;
  color: #000000;
  /* background:
    linear-gradient(180deg, #ffffff -4.94%, rgba(255, 255, 255, .9) 32.72%, rgba(224, 248, 255, .87) 46.07%, rgba(224, 248, 255, 0) 75.8%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 39.68%),
    url("../img/our-lessons/boy-swing-friends-watching.webp") center top / 100% 100% no-repeat,
    #f1f1f1; */
}

.lesson-banner__inner {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100% - 200px, 1720px);
  height: 100%;
  margin-inline: auto;
}

.lesson-banner__heading {
  position: absolute;
  top: 108px;
  left: 0;
  display: flex;
  width: 843px;
  height: 341px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.lesson-banner__eyebrow {
  width: max-content;
  margin: 0 0 30px;
  color: var(--color-brand-forest);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .2em;
  white-space: nowrap;
  text-transform: uppercase;
}

.lesson-banner__title {
  width: 843px;
  margin: 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.lesson-banner__title span {
  color: var(--color-brand-forest);
}

.lesson-banner__title-line {
  color: inherit;
}

.lesson-banner__title-line--accent {
  color: var(--color-brand-forest);
}

@media (min-width: 768px) {
  .lesson-banner__title-line {
    display: block;
  }
}

.lesson-banner__button {
  display: inline-flex;
  width: max-content;
  min-width: 289px;
  height: 63px;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 24px 32px;
  margin-top: 40px;
  color: var(--color-white);
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lesson-banner__button:hover {
  background: #004d20;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.lesson-banner__copy {
  position: absolute;
  top: 108px;
  right: 0;
  display: flex;
  width: 703px;
  height: 230px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 0;
}

.lesson-banner__copy p {
  width: 703px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 1599px) {
  .lesson-banner {
    height: 760px;
    min-height: 760px;
  }

  .lesson-banner__inner {
    width: min(100% - 80px, 1420px);
  }

  .lesson-banner__heading {
    width: 690px;
  }

  .lesson-banner__copy {
    width: 560px;
  }

  .lesson-banner__title,
  .lesson-banner__copy,
  .lesson-banner__copy p {
    width: 100%;
  }

  .lesson-banner__title {
    font-size: 58px;
    line-height: 64px;
  }
}

@media (max-width: 1199px) {
  .lesson-banner__inner {
    width: min(100% - 56px, 980px);
  }

  .lesson-banner__heading,
  .lesson-banner__copy {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .lesson-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 72px;
  }

  .lesson-banner__copy p {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .lesson-banner {
    height: auto;
    min-height: 680px;
    padding-bottom: 80px;
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, .95) 42%, rgba(224, 248, 255, .65) 70%, rgba(224, 248, 255, 0) 100%),
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 39.68%),
      url("../img/our-lessons/boy-swing-friends-watching.webp") center top / cover no-repeat,
      #f1f1f1;
  }

  .lesson-banner__inner {
    width: min(100% - 32px, 980px);
    padding-top: 64px;
  }

  .lesson-banner__title {
    margin-bottom: 28px;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0;
  }

  .lesson-banner__copy p {
    font-size: 16px;
    line-height: 26px;
  }

  .lesson-banner__button {
    width: 100%;
    min-height: 56px;
    padding: 16px 22px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .lesson-banner {
    padding: 54px 0 220px;
  }

  .lesson-banner__eyebrow {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .28em;
  }

  .lesson-banner__title {
    font-size: 32px;
    line-height: 38px;
  }
}

/* =========================================================
   Booth Features
   ========================================================= */
.booths {
  padding: 100px 0 116px;
  background: var(--color-white);
}

.booths__inner {
  width: min(100% - 200px, 1720px);
  margin-inline: auto;
}

.booths__title {
  margin: 0 0 58px;
  color: var(--color-ink);
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -2px;
  text-align: center;
  text-transform: uppercase;
}

.booths__title span {
  color: var(--color-brand-forest);
}

.booths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.booth-card {
  position: relative;
  overflow: hidden;
  height: 623px;
  border-radius: 20px;
  background: #00190a;
}

.booth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .46) 55%, rgba(0, 0, 0, .82) 100%);
}

.booth-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booth-card__content {
  position: absolute;
  right: 40px;
  bottom: 32px;
  left: 40px;
  z-index: 1;
}

.booth-card h3 {
  margin: 0 0 24px;
  color: var(--color-white);
  font-family: "Montserrat", var(--font-sans);
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0;
}

.booth-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booth-card__tags span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .42);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  backdrop-filter: blur(4px);
}

@media (max-width: 1599px) {
  .booths__inner {
    width: min(100% - 80px, 1420px);
  }

  .booths__title {
    font-size: 58px;
    line-height: 64px;
  }

  .booth-card,
  .booth-card img {
    height: 520px;
  }
}

@media (max-width: 1199px) {
  .booths__inner {
    width: min(100% - 56px, 980px);
  }

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

  .booth-card,
  .booth-card img {
    height: 560px;
  }
}

@media (max-width: 767px) {
  .booths {
    padding: 64px 0 76px;
  }

  .booths__inner {
    width: min(100% - 32px, 980px);
  }

  .booths__title {
    margin-bottom: 34px;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0;
  }

  .booth-card,
  .booth-card img {
    height: 460px;
  }

  .booth-card__content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .booth-card h3 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 36px;
  }

  .booth-card__tags span {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 575px) {
  .booths {
    padding: 54px 0 64px;
  }

  .booths__inner {
    width: min(100% - 28px, 980px);
  }

  .booths__title {
    font-size: 32px;
    line-height: 38px;
  }

  .booth-card {
    border-radius: 16px;
  }

  .booth-card,
  .booth-card img {
    height: 430px;
  }

  .booth-card h3 {
    font-size: 26px;
    line-height: 32px;
  }
}

/* =========================================================
   Location
   ========================================================= */
.location {
  padding: 100px 0;
  background: #f1f1f1;
}

.location__panel {
  display: grid;
  width: min(100% - 200px, 1720px);
  min-height: 705px;
  grid-template-columns: minmax(640px, 690px) minmax(600px, 1fr);
  align-items: center;
  gap: 48px;
  margin-inline: auto;
  padding: 24px;
  color: var(--color-white);
  border-radius: 30px;
  background: var(--color-brand-forest);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .22);
}

.location__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 17px;
}

.location__title {
  width: 660px;
  margin: 0 0 20px;
  color: var(--color-white);
  font-family: "Montserrat", var(--font-sans);
  font-size: 45px;
  font-weight: 800;
  line-height: 51px;
  letter-spacing: 0;
  text-transform: none;
}

.location .location__text {
  width: 640px;
  margin: 0 0 34px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.location__details li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  color: var(--color-white);
  font-size: 20px;
  line-height: 30px;
}

.location__details a {
  color: inherit;
}

.location__details b {
  display: inline-block;
  width: 1px;
  height: 24px;
  margin: 0 18px;
  vertical-align: middle;
  background: rgba(255, 255, 255, .42);
}

.location__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand-lime);
}

.location__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.location__subtitle {
  margin: 0 0 22px;
  color: var(--color-white);
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
}

.location__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location__chips li {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 10px 23px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .18);
  font-size: 20px;
  line-height: 26px;
}

.location__map {
  overflow: hidden;
  width: 100%;
  height: 651px;
  margin: 0;
  border-radius: 12px;
  background: var(--color-white);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 1599px) {
  .location__panel {
    width: min(100% - 80px, 1420px);
    grid-template-columns: minmax(520px, 610px) 1fr;
    gap: 40px;
  }

  .location__title,
  .location .location__text {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .location__panel {
    width: min(100% - 56px, 980px);
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px;
  }

  .location__content {
    padding-left: 0;
  }

  .location__map {
    height: auto;
    aspect-ratio: 1030 / 705;
  }
}

@media (max-width: 767px) {
  .location {
    padding: 64px 0;
  }

  .location__panel {
    width: min(100% - 32px, 980px);
    padding: 24px;
    border-radius: 20px;
  }

  .location__title {
    font-size: 34px;
    line-height: 40px;
  }

  .location .location__text,
  .location__details li,
  .location__chips li {
    font-size: 16px;
    line-height: 24px;
  }

  .location__details li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .location__details b {
    height: 18px;
    margin: 0 10px;
  }

  .location__icon {
    width: 48px;
    height: 48px;
  }

  .location__subtitle {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .location {
    padding: 54px 0;
  }

  .location__panel {
    width: min(100% - 28px, 980px);
    padding: 18px;
  }

  .location__title {
    font-size: 30px;
    line-height: 36px;
  }

  .location__chips {
    gap: 8px;
  }

  .location__chips li {
    padding: 8px 16px;
  }
}

/* =========================================================
   FAQ And Contact
   ========================================================= */
.faq-contact {
  padding: 72px 0;
  background: var(--color-white);
}

.faq-contact__header,
.faq-contact__inner,
.contact-panel {
  width: min(100% - 200px, 1720px);
  margin-inline: auto;
}

.faq-contact__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 50px;
}

.faq-contact__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.faq-contact__media {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.faq-contact__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 848 / 669;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.faq-contact__eyebrow,
.contact-panel__eyebrow {
  margin: 0 0 28px;
  color: var(--color-brand-forest);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.faq-contact__title,
.contact-panel__title {
  margin: 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

/* .faq-contact__title {
    max-width: 690px;
} */

.faq-contact__title span {
  color: var(--color-brand-forest);
}

.faq-contact__button {
  display: inline-flex;
  min-width: 166px;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 20px 28px;
  color: var(--color-white);
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.faq-contact__button:hover,
.faq-contact__button:focus-visible {
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}

.faq {
  display: grid;
  gap: 0;
  height: 100%;
  border-radius: 16px;
  padding: 36px 42px;
  background: #f1f1f1;
}

.faq__item {
  position: relative;
  display: grid;
  width: 100%;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  border-radius: 0;
  padding: 24px 56px 24px 0;
  color: #000000;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.faq__item:first-child {
  padding-top: 0;
}

.faq__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq__item::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--color-brand-forest);
  mask: url("../img/faqss/mdi_chevron-down.svg") center / contain no-repeat;
  -webkit-mask: url("../img/faqss/mdi_chevron-down.svg") center / contain no-repeat;
  transform: rotate(180deg);
  transition: transform .2s ease;
}

.faq__item:first-child::after {
  top: 3px;
}

.faq__item[aria-expanded="true"] {
  background: transparent;
  box-shadow: none;
}

.faq__item[aria-expanded="true"]::after {
  transform: rotate(0deg);
}

.faq__item span {
  color: #1e1e1e;
  font-family: "Montserrat", var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

.faq__item[aria-expanded="true"] span {
  color: var(--color-brand-forest);
}

.faq__item small {
  display: none;
  color: var(--color-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.faq__item[aria-expanded="true"] small {
  display: block;
}

.contact-panel {
  display: grid;
  grid-template-columns: 808px 749px;
  align-items: center;
  justify-content: space-between;
  gap: 75px;
  min-height: 712px;
  height: auto;
  margin-top: 100px;
  color: #000000;
  border-radius: 20px;
  padding: 24px 24px 24px 64px;
  background: #f1f1f1;
}

.contact-panel__content {
  width: 808px;
  min-height: 576px;
  height: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.contact-panel__eyebrow {
  color: var(--color-brand-forest);
  margin-bottom: 30px;
}

.contact-panel__title {
  color: #000000;
  width: 808px;
  margin-bottom: 40px;
  font-size: 68px;
  line-height: 74px;
  white-space: nowrap;
}

.contact-panel__title span,
.contact-panel__title em {
  color: var(--color-brand-forest);
  font-style: normal;
}

.contact-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.gravity-contact-form .gform_heading {
  display: none;
}

.gravity-contact-form {
  --gf-color-primary: #003415;
  --gf-ctrl-btn-bg-color-primary: #003415;
  --gf-ctrl-btn-color-primary: #ffffff;
  --gf-ctrl-btn-bg-color-hover-primary: #004d20;
  --gf-ctrl-border-color: rgba(0, 0, 0, .1);
  --gf-ctrl-bg-color: #f7f7f7;
  --gf-ctrl-radius: 8px;
  --gf-ctrl-shadow: none;
  --gf-form-gap-y: 12px;
  width: 808px;
}

.gravity-contact-form .gform_wrapper,
.gravity-contact-form .gform-body,
.gravity-contact-form form,
.gravity-contact-form .gform-theme,
.gravity-contact-form .gform-theme--framework {
  width: 100%;
  margin: 0;
}

.gravity-contact-form fieldset,
.gravity-contact-form .gfield,
.gravity-contact-form .ginput_container {
  margin: 0;
  border: 0;
  padding: 0;
}

.gravity-contact-form .gform_fields,
.gravity-contact-form .gform-theme--framework .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 12px;
}

.gravity-contact-form .gfield:first-child,
.gravity-contact-form .gfield--type-textarea,
.gravity-contact-form .gfield--width-full,
.gravity-contact-form .gform_footer,
.gravity-contact-form .gform_page_footer {
  grid-column: 1 / -1;
}

.gravity-contact-form .gfield:nth-child(2),
.gravity-contact-form .gfield:nth-child(3) {
  grid-column: auto;
}

.gravity-contact-form .gfield_label,
.gravity-contact-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  margin: 0 0 8px;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.gravity-contact-form input[type="text"],
.gravity-contact-form input[type="email"],
.gravity-contact-form input[type="tel"],
.gravity-contact-form input[type="url"],
.gravity-contact-form input[type="number"],
.gravity-contact-form select,
.gravity-contact-form textarea,
.gravity-contact-form .gform-theme--framework input[type="text"],
.gravity-contact-form .gform-theme--framework input[type="email"],
.gravity-contact-form .gform-theme--framework input[type="tel"],
.gravity-contact-form .gform-theme--framework textarea {
  width: 100%;
  min-height: 56px;
  height: 56px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  padding: 12px 21px;
  color: #0c0e12;
  background: #f7f7f7;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  box-shadow: none;
}

.gravity-contact-form textarea,
.gravity-contact-form .gform-theme--framework textarea {
  min-height: 207px;
  height: 207px;
  resize: vertical;
}

.gravity-contact-form input::placeholder,
.gravity-contact-form textarea::placeholder {
  color: #0c0e12;
  opacity: 1;
}

.gravity-contact-form input:focus,
.gravity-contact-form select:focus,
.gravity-contact-form textarea:focus {
  border-color: rgba(0, 52, 21, .45);
  outline: 0;
}

.gravity-contact-form .gform_footer,
.gravity-contact-form .gform_page_footer {
  margin: 40px 0 0;
  padding: 0;
}

.gravity-contact-form .gform_button,
.gravity-contact-form input[type="submit"],
.gravity-contact-form button[type="submit"],
.gravity-contact-form .gform-theme--framework .gform_button,
.gravity-contact-form .gform-theme--framework input[type="submit"],
.contact-panel .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
  display: inline-flex;
  width: 161px;
  min-width: 161px;
  height: 63px;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 32px;
  color: var(--color-white);
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-size: 20px;
  font-weight: 500;
  line-height: 63px;
  text-align: center;
  appearance: none;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gravity-contact-form .gform_button:hover,
.gravity-contact-form input[type="submit"]:hover,
.gravity-contact-form button[type="submit"]:hover,
.contact-panel .gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover {
  background: #004d20;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}

.gravity-contact-form .gform_ajax_spinner,
.gravity-contact-form .gform-loader {
  width: 22px;
  height: 22px;
  margin-left: 14px;
  vertical-align: middle;
}

.gravity-contact-form .gfield_required,
.gravity-contact-form .gform_validation_errors {
  color: var(--color-brand-forest);
}

.gravity-contact-form .gform_validation_errors,
.gravity-contact-form .gform-theme--framework .gform_validation_errors {
  width: 100%;
  margin: 0 0 28px;
  border: 1px solid rgba(211, 47, 47, .25);
  border-radius: 8px;
  padding: 16px 20px;
  color: #d32f2f;
  background: rgba(211, 47, 47, .04);
  box-shadow: none;
  font-size: 16px;
  line-height: 24px;
}

.gravity-contact-form .gform_validation_errors h2,
.gravity-contact-form .gform_validation_errors .gform_submission_error {
  margin: 0;
  color: #d32f2f;
  font-family: "Inter", var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-panel:has(.gform_validation_errors),
.contact-panel:has(.validation_message) {
  align-items: start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.gravity-contact-form .gfield_validation_message,
.gravity-contact-form .validation_message {
  margin: 8px 0 0;
  padding: 0;
  color: #d32f2f;
  background: transparent;
  border: 0;
  font-size: 16px;
  line-height: 24px;
}

.gravity-contact-form .gfield_error input,
.gravity-contact-form .gfield_error textarea,
.gravity-contact-form .gfield_error select {
  border-color: #9b1c1c;
  background: #fff8f8;
}

.gravity-contact-form .gform_confirmation_wrapper,
.gravity-contact-form .gform_confirmation_message {
  margin: 0;
}

.gravity-contact-form .gform_confirmation_message {
  position: relative;
  border: 1px solid rgba(0, 52, 21, .14);
  border-radius: 16px;
  padding: 34px 38px 34px 96px;
  color: #1e1e1e;
  background: #f1f1f1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.gravity-contact-form .gform_confirmation_message::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 34px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-brand-lime);
}

.gravity-contact-form .gform_confirmation_message::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 48px;
  width: 14px;
  height: 9px;
  border-left: 3px solid var(--color-brand-forest);
  border-bottom: 3px solid var(--color-brand-forest);
  transform: rotate(-45deg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 24px;
}

.form-grid label {
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-card input,
.contact-card textarea {
  min-height: 58px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  color: #000000;
  background: #f7f7f7;
}

.contact-card textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-card .btn {
  min-width: 154px;
  color: #000000;
  background: var(--color-brand-lime);
  box-shadow: none;
}

.contact-panel__media {
  overflow: hidden;
  width: 749px;
  height: 664px;
  border-radius: 20px;
}

.contact-panel__media img {
  width: 1020px;
  height: 680px;
  aspect-ratio: 749 / 664;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
  transform: translateX(-20px);
}

/* =========================================================
   App Download
   ========================================================= */
.app-download {
  position: relative;
  overflow: hidden;
  min-height: 454px;
  padding: 38px 0;
  padding-top: 100px;
  color: var(--color-ink);
  background: var(--color-brand-lime);
}

.app-download__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 210px, 1788px);
  min-height: 396px;
  grid-template-columns: minmax(760px, 920px) minmax(720px, 909px);
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-inline: auto;
}

.app-download__content {
  align-self: start;
  max-width: 780px;
  padding-top: 0;
  padding-bottom: 36px;
}

.app-download__eyebrow {
  display: none;
  margin: 0 0 10px;
  color: var(--color-brand-forest);
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.app-download__title {
  max-width: 820px;
  margin: 0 0 13px;
  color: var(--color-ink);
  font-family: "Montserrat", var(--font-sans);
  font-size: 64px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.app-download__title span {
  color: var(--color-brand-forest);
}

.app-download .app-download__copy {
  max-width: 760px;
  margin: 0;
  color: #0C0E12;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.app-download__features {
  margin-top: 28px;
}

.app-download__features h3 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: "Montserrat", var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

.app-download__features ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 14px;
  max-width: 840px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-download__features li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.app-download__feature-icon {
  position: relative;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border: 2.2px solid var(--color-ink);
  border-radius: 50%;
}

.app-download__feature-icon::after {
  content: "";
  position: absolute;
  top: calc(50% + .2px);
  left: calc(50% + .1px);
  width: 10.5px;
  height: 8.5px;
  background: url("../img/icon-tick.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.app-download__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.app-download__stores a {
  display: inline-flex;
  width: 181px;
  height: 55px;
  overflow: hidden;
  border-radius: 7px;
  transition: transform .2s ease, opacity .2s ease;
}

.app-download__stores a:hover {
  opacity: .86;
  transform: translateY(-2px);
}

.app-download__stores img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  box-shadow: none;
  object-fit: contain;
}

.app-download__media {
  justify-self: end;
  align-self: end;
  width: min(100%, 909px);
  margin-top: -28px;
  margin-bottom: -38px;
  transform-origin: right bottom;
}

.app-download__media img {
  width: 100%;
  aspect-ratio: 909 / 638;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

@media (max-width: 991px) {
  .app-download__inner {
    grid-template-columns: 1fr;
  }

  .app-download__media {
    justify-self: start;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 57px 0 0;
  color: var(--color-brand-forest);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .72) 8%, rgba(255, 255, 255, 0) 21%),
    var(--footer-bg-image, url("../img/footer-imgs/harbour-town-hole-17.webp")) center bottom / cover no-repeat;
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 138px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 106px, 1788px);
  grid-template-columns: minmax(300px, 1.08fr) minmax(170px, .62fr) minmax(210px, .72fr) minmax(270px, .78fr) minmax(380px, 1.18fr);
  gap: clamp(28px, 3.35vw, 66px);
  align-items: start;
  margin-inline: auto;
  padding-bottom: 300px;
}

.site-footer__brand {
  max-width: 315px;
}

.site-footer__brand img {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0;
  border-radius: 0;
}

.site-footer__actions {
  display: grid;
  gap: 8px;
  max-width: 292px;
  margin-top: 18px;
}

.site-footer__menu {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu li {
  margin: 0;
}

.site-footer a:not(.btn),
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: #08161f;
  font-size: 19px;
  line-height: 26px;
}

.site-footer a:not(.btn) {
  color: #08161f;
  font-size: 19px;
  line-height: 26px;
  transition: transform .2s ease, opacity .2s ease;
}

.site-footer a:not(.btn):hover,
.site-footer a:not(.btn):focus-visible {
  transform: translateX(4px);
}

.site-footer a.site-footer__logo {
  display: inline-block;
  margin: 0 0 28px;
  transition: opacity .2s ease, transform .2s ease;
}

.site-footer a.site-footer__logo:hover,
.site-footer a.site-footer__logo:focus-visible {
  opacity: .88;
  transform: translateY(-2px);
}

.site-footer__bottom a.site-footer__credit-link {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.site-footer__bottom a.site-footer__credit-link:hover,
.site-footer__bottom a.site-footer__credit-link:focus-visible {
  color: var(--color-brand-forest);
}

.site-footer h3 {
  margin: 0 0 18px;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.site-footer__accordion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: inherit;
  text-align: left;
}

.site-footer .btn {
  width: 100%;
  min-height: 63px;
  margin: 0;
  border-radius: 999px;
  font-size: 18px;
}

.site-footer__contact-item {
  position: relative;
  min-height: 18px;
  padding-left: 40px;
}

.site-footer__contact-item::before {
  position: absolute;
  left: 0;
  width: 24px;
  color: #08161f;
  font-size: 24px;
  line-height: 30px;
}

.site-footer__contact-item--address::before {
  content: "";
  top: 2px;
  width: 18px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='18' height='20' viewBox='0 0 18 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.06943 3.01343C4.55975 1.55292 6.56623 0.739562 8.65286 0.750101C10.7395 0.76064 12.7377 1.59423 14.2131 3.06971C15.6886 4.5452 16.5222 6.54337 16.5328 8.63C16.5433 10.7166 15.7299 12.7231 14.2694 14.2134L10.0834 18.3994C9.70837 18.7744 9.19976 18.985 8.66943 18.985C8.1391 18.985 7.63048 18.7744 7.25543 18.3994L3.06943 14.2134C1.58432 12.7282 0.75 10.7138 0.75 8.61343C0.75 6.51306 1.58432 4.4987 3.06943 3.01343Z' stroke='%230C0E12' stroke-width='1.5' stroke-linejoin='round'/%3E%3Cpath d='M8.67188 11.6133C10.3287 11.6133 11.6719 10.2701 11.6719 8.61328C11.6719 6.95643 10.3287 5.61328 8.67188 5.61328C7.01502 5.61328 5.67188 6.95643 5.67188 8.61328C5.67188 10.2701 7.01502 11.6133 8.67188 11.6133Z' stroke='%230C0E12' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer__contact-item--address::after {
  content: none;
}

.site-footer__contact-item--phone::before {
  content: "";
  top: 2px;
  width: 22px;
  height: 22px;
  background: url("../img/destination/phone.svg") center / contain no-repeat;
}

.site-footer__newsletter {
  min-width: 0;
}

.site-footer__newsletter p {
  max-width: 330px;
  margin-bottom: 24px;
}

.site-footer__signup {
  display: grid;
  gap: 12px;
}

.site-footer__field {
  position: relative;
}

.site-footer__field input {
  width: 100%;
  min-height: 63px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  padding: 13px 48px 13px 25px;
  color: #08161f;
  background: rgba(228, 243, 255, .78);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .75), 0 12px 28px rgba(0, 52, 21, .06);
  font-size: 16px;
  line-height: 22px;
}

.site-footer__field input::placeholder {
  color: rgba(8, 22, 31, .8);
}

.site-footer__field img {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 18px;
  height: 15px;
  border-radius: 0;
  transform: translateY(-50%);
}

.site-footer__submit {
  min-height: 55px;
  border: 0;
  border-radius: 999px;
  color: var(--color-ink);
  background: var(--color-brand-lime);
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.site-footer__submit:hover {
  background: var(--color-brand-lime-soft);
  transform: translateY(-2px);
}

.site-footer__course {
  display: none;
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 60px;
  grid-template-columns: minmax(280px, .7fr) minmax(470px, .9fr) minmax(690px, 1.35fr);
  align-items: center;
  gap: 20px;
  margin-top: 0;
  padding: 13px max(53px, calc((100vw - 1788px) / 2)) 12px;
  color: var(--color-ink);
  background: var(--color-brand-lime);
}

.site-footer__bottom p {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 20px;
}

.site-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.site-footer__payments img {
  max-width: 76px;
  max-height: 20px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.site-footer__legal a {
  position: relative;
  padding: 0 12px;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 20px;
}

.site-footer__legal a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -2px;
  left: 12px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  transform: none;
}

.site-footer__legal a:hover::after,
.site-footer__legal a:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__legal a+a::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: var(--color-ink);
}

@media (max-width: 1199px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .site-footer__payments {
    justify-content: flex-start;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }
}

/* =========================================================
   Responsive Overrides: Header, Banner, Why, Welcome
   Keep future responsive fixes in this block.
   ========================================================= */
@media (max-width: 1599px) and (min-width: 1200px) {
  .site-header {
    top: 42px;
    width: calc(100% - 40px);
  }

  .site-header__bar {
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    gap: 8px;
  }

  .site-header__nav {
    gap: 3px;
  }

  .site-header__nav>a:not(.btn),
  .nav-item>button {
    min-height: 46px;
    padding-inline: 13px;
    font-size: 15px;
    line-height: 24px;
  }

  .icon-link {
    width: 52px;
    min-height: 52px;
  }

  .icon-link svg {
    width: 38px;
    height: 38px;
    stroke-width: 3.4;
  }

  .site-header .btn {
    min-height: 52px;
    padding-inline: 18px;
    font-size: 15px;
    line-height: 24px;
  }

  .site-header__brand,
  .site-header__brand img {
    width: 118px;
    height: 118px;
  }

  .hero {
    height: 820px;
    min-height: 820px;
  }

  .hero__content {
    padding-top: 315px;
  }

  .hero h1 {
    width: min(820px, 100%);
    font-size: 66px;
  }

  .why-teed-up__grid {
    grid-template-columns: minmax(360px, 553px) minmax(430px, 680px) minmax(250px, 370px);
    gap: 34px;
  }

  .why-teed-up__title {
    font-size: 56px;
  }

  .welcome-teed-up__grid {
    grid-template-columns: minmax(360px, 430px) minmax(420px, 520px) minmax(390px, 1fr);
    column-gap: 34px;
  }

  .welcome-teed-up__media {
    width: 100%;
    height: auto;
    aspect-ratio: 574 / 655;
  }
}

@media (max-width: 1199px) {
  .site-header {
    position: fixed;
    top: 14px;
    width: calc(100% - 28px);
  }

  .site-header__bar {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 54px;
    gap: 10px;
    min-height: 76px;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    border-radius: 26px;
    padding: 8px;
  }

  .site-header__brand {
    position: static;
    grid-column: 1;
    grid-row: 1;
    width: 60px;
    height: 60px;
    transform: none;
  }

  .site-header__brand img {
    width: 60px;
    height: 60px;
  }

  .site-header__toggle {
    position: static;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
  }

  .site-header__nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 6px;
  }

  .site-header.is-open .site-header__nav {
    display: flex;
  }

  .site-header__nav--right {
    justify-content: flex-start;
  }

  .nav-item {
    width: 100%;
  }

  .site-header__nav>a:not(.btn),
  .nav-item>button,
  .site-header .btn {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 18px;
    font-size: 17px;
    line-height: 26px;
  }

  .icon-link {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 18px;
    border-radius: var(--radius-pill);
  }

  .icon-link svg {
    width: 34px;
    height: 34px;
    stroke-width: 3.2;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
  }

  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero__slide {
    background-size: cover;
  }

  .hero__content {
    padding-top: 235px;
  }

  .hero h1 {
    width: min(720px, 100%);
    font-size: 54px;
  }

  .why-teed-up__grid {
    grid-template-columns: minmax(280px, .92fr) minmax(360px, 1.08fr);
    gap: 34px;
    padding-top: 66px;
    padding-bottom: 96px;
  }

  .why-teed-up__media--primary {
    width: 100%;
    height: auto;
    aspect-ratio: 553 / 823;
  }

  .why-teed-up__content {
    grid-column: 2;
    grid-row: 1;
    padding-top: 0;
  }

  .why-teed-up__media--secondary {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    width: min(100%, 330px);
    height: auto;
    margin-top: -28px;
    aspect-ratio: 370 / 409;
  }

  .why-teed-up__title {
    font-size: 46px;
  }

  .why-teed-up__features {
    width: 100%;
  }

  .why-teed-up__feature {
    min-height: 62px;
    font-size: 18px;
    line-height: 28px;
  }

  .welcome-teed-up__grid {
    grid-template-columns: minmax(300px, 430px) minmax(360px, 1fr);
    align-items: start;
    gap: 40px;
    min-height: 0;
    padding-top: 88px;
    padding-bottom: 84px;
  }

  .welcome-teed-up__media {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 574 / 655;
  }

  .welcome-teed-up__content {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 900px;
    margin-left: 0;
    padding-top: 0;
  }

  .welcome-teed-up__content p {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .site-header__bar {
    border-radius: 22px;
  }

  .hero {
    min-height: 680px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .36) 52%, rgba(0, 0, 0, .08)),
      linear-gradient(180deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .16) 48%, rgba(0, 0, 0, .1));
  }

  .hero__content {
    padding-top: 200px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero p {
    font-size: 18px;
    line-height: 28px;
  }

  .hero .slider-controls {
    right: 24px;
    bottom: 28px;
  }

  .hero__meter {
    display: none;
  }

  .why-teed-up__grid,
  .welcome-teed-up__grid {
    grid-template-columns: 1fr;
  }

  .why-teed-up__content,
  .why-teed-up__media--secondary,
  .welcome-teed-up__media,
  .welcome-teed-up__content {
    grid-column: auto;
    grid-row: auto;
  }

  .why-teed-up__media--secondary {
    width: min(100%, 370px);
    margin-top: 0;
    justify-self: start;
  }

  .why-teed-up__title {
    font-size: 38px;
  }

  .welcome-teed-up__intro,
  .welcome-teed-up__summary,
  .welcome-teed-up__stats,
  .welcome-teed-up__content,
  .welcome-teed-up__content p {
    width: 100%;
  }

  .welcome-teed-up__intro::before {
    left: 50%;
    top: 190px;
    width: 390px;
    height: 420px;
    transform: translateX(-50%);
  }

  .welcome-teed-up__title {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 640px;
  }

  .hero__content {
    padding-top: 176px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero .button-row {
    gap: 12px;
  }

  .hero .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero .slider-controls button {
    width: 52px;
    height: 52px;
  }

  .why-teed-up__grid {
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .why-teed-up__eyebrow,
  .welcome-teed-up__eyebrow {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .28em;
  }

  .why-teed-up__title {
    font-size: 32px;
  }

  .why-teed-up__feature {
    min-height: 56px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .welcome-teed-up__grid {
    gap: 30px;
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .welcome-teed-up__intro::before {
    top: 205px;
    width: 360px;
    height: 388px;
  }

  .welcome-teed-up__title {
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 40px;
  }

  .welcome-teed-up__summary,
  .welcome-teed-up__content p {
    font-size: 16px;
    line-height: 26px;
  }

  .welcome-teed-up__stats {
    grid-template-columns: minmax(62px, 1fr) 1px minmax(62px, 1fr) 1px minmax(86px, 1fr);
    column-gap: 7px;
    margin-top: 32px;
  }

  .welcome-teed-up__stat--courses,
  .welcome-teed-up__stat--bays,
  .welcome-teed-up__stat--suite {
    width: 100%;
  }

  .welcome-teed-up__stat img {
    width: 34px;
    height: 34px;
  }

  .welcome-teed-up__stat strong {
    font-size: 32px;
    line-height: 30px;
  }

  .welcome-teed-up__stat span {
    font-size: 15px;
    line-height: 20px;
  }

  .welcome-teed-up__actions .btn {
    width: 100%;
    min-height: 56px;
    font-size: 17px;
  }
}


/* =========================================================
   Final Responsive Cascade: 1920, 1600, 1399, 1199,
   1024, 991, 768, 575, 479, 360, 320
   ========================================================= */

/* 1920px: default desktop frame */

@media (max-width: 1600px) {

  .container,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner {
    width: min(100% - 80px, 1420px);
  }

  .services__inner {
    width: min(100% - 40px, 1500px);
  }

  .contact-panel {
    grid-template-columns: minmax(620px, 1fr) minmax(420px, 560px);
    gap: 40px;
    padding-left: 48px;
  }

  .contact-panel__content,
  .contact-panel__title,
  .gravity-contact-form {
    width: 100%;
  }

  .contact-panel__media {
    width: 100%;
    height: 600px;
  }

  .contact-panel__media img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .site-footer h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
  }


}

@media (max-width: 1399px) {

  .hero h1,
  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title {
    font-size: 52px;
    line-height: 58px;
  }

  .services .service-card {
    height: 540px;
  }
}

@media (max-width: 1199px) {

  .container,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner {
    width: min(100% - 56px, 980px);
  }

  .technology__inner,
  .benefits__panel,
  .booths__grid,
  .location__panel,
  .faq-contact__inner,
  .contact-panel,
  .app-download__grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    height: auto;
    min-height: 0;
    padding: 48px;
  }

  .contact-panel__content {
    width: 100%;
    height: auto;
  }

  .contact-panel__title {
    width: 100%;
    white-space: normal;
  }

  .app-download__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-panel__media {
    order: -1;
    width: 100%;
    height: auto;
  }

  .contact-panel__media img {
    width: 100%;
    height: auto;
  }

  .faq-contact__header {
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {

  /* .section,
  .services,
  .technology,
  .booths,
  .location,
  .faq-contact,
  .app-download,
  .site-footer {
    padding-top: 72px;
    padding-bottom: 72px;
  } */

  .hero h1,
  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title {
    font-size: 46px;
    line-height: 52px;
  }

  .lesson-banner {
    height: auto;
    min-height: 0;
    /* padding: 72px 0 360px; */
    padding: 30px 0 360px;
    background-size: cover, cover, cover, auto;
  }

  .lesson-banner__inner {
    display: grid;
    gap: 34px;
    height: auto;
    padding-top: 0;
  }

  .lesson-banner__heading,
  .lesson-banner__copy {
    position: static;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 991px) {
  .hero__content {
    width: min(100% - 48px, 760px);
  }

  .services__rule {
    flex-basis: 100%;
  }

  .gravity-contact-form .gform_fields {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {

  .container,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner {
    width: min(100% - 32px, 980px);
  }

  .hero h1,
  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: 0;
  }

  .benefits__content,
  .contact-panel {
    padding: 36px 28px 40px;
  }

  .faq-contact__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .faq-contact__button {
    min-height: 54px;
    padding: 16px 24px;
    font-size: 16px;
  }

  .faq {
    padding: 28px 24px;
  }

  .faq__item {
    border-radius: 0;
    padding: 22px 44px 22px 0;
  }

  .gravity-contact-form .gform_button,
  .gravity-contact-form input[type="submit"],
  .gravity-contact-form button[type="submit"] {
    width: 100%;
    min-width: 0;
  }

  .gravity-contact-form .gform_confirmation_message {
    padding: 86px 24px 28px;
    font-size: 17px;
    line-height: 28px;
  }

  .gravity-contact-form .gform_confirmation_message::before {
    top: 28px;
    left: 24px;
  }

  .gravity-contact-form .gform_confirmation_message::after {
    top: 40px;
    left: 38px;
  }
}

@media (max-width: 575px) {

  .container,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner {
    width: min(100% - 28px, 980px);
  }

  .hero h1,
  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title {
    font-size: 32px;
    line-height: 38px;
  }

  .contact-panel {
    margin-top: 54px;
    border-radius: 20px;
  }

  .contact-panel__content {
    padding: 0;
  }

  .gravity-contact-form input[type="text"],
  .gravity-contact-form input[type="email"],
  .gravity-contact-form input[type="tel"],
  .gravity-contact-form input[type="url"],
  .gravity-contact-form input[type="number"],
  .gravity-contact-form select,
  .gravity-contact-form textarea {
    font-size: 18px;
    line-height: 28px;
  }

  .site-footer__actions {
    display: grid;
  }

  .site-footer__bottom {
    margin-top: 40px;
  }
}

@media (max-width: 479px) {
  .services .service-card {
    flex-basis: 100%;
    width: 100%;
    height: 460px;
  }

  .lesson-banner {
    padding-bottom: 280px;
  }
}

@media (max-width: 360px) {

  .container,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner {
    width: min(100% - 20px, 980px);
  }

  .hero h1,
  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title {
    font-size: 28px;
    line-height: 34px;
  }
}

@media (max-width: 320px) {

  .hero h1,
  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title,
  .location__title {
    font-size: 26px;
    line-height: 32px;
  }

  .btn,
  .benefits__button,
  .lesson-banner__button,
  .technology__button,
  .services__button {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    font-size: 15px;
    white-space: normal;
  }
}

/* =========================================================
   Download + Footer Responsive Finish
   ========================================================= */
@media (max-width: 1600px) {
  .app-download__inner {
    width: min(100% - 96px, 1420px);
    grid-template-columns: minmax(610px, 760px) minmax(520px, 680px);
    gap: 32px;
  }

  .app-download__media {
    width: min(100%, 680px);
    margin-top: -28px;
    transform: scale(1.12);
  }

  .app-download__title {
    font-size: 58px;
    line-height: 64px;
  }

  .app-download__copy,
  .app-download__features li {
    font-size: 16px;
    line-height: 20px;
  }

  .app-download__features h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .site-footer__grid {
    width: min(100% - 80px, 1420px);
    grid-template-columns: minmax(270px, 1fr) minmax(150px, .58fr) minmax(190px, .7fr) minmax(250px, .78fr) minmax(350px, 1fr);
    gap: 32px;
    padding-bottom: 260px;
  }

  .site-footer__bottom {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (max-width: 1399px) {
  .app-download {
    padding-top: 38px;
  }

  .app-download__inner {
    width: min(100% - 64px, 1180px);
    grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  }

  .app-download__content {
    max-width: 720px;
    padding-bottom: 34px;
  }

  .app-download__title {
    font-size: 52px;
    line-height: 58px;
  }

  .app-download__features ul {
    max-width: 720px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
    padding-bottom: 250px;
  }

  .site-footer__newsletter {
    grid-column: span 2;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer__legal {
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .app-download {
    min-height: 0;
    padding-top: 48px;
  }

  .app-download__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .app-download__content {
    max-width: 820px;
    padding-bottom: 0;
  }

  .app-download__features ul {
    max-width: 780px;
  }

  .app-download__media {
    justify-self: center;
    max-width: 760px;
    margin-top: -10px;
    transform: none;
  }

  .site-footer__grid {
    width: min(100% - 56px, 980px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 220px;
  }

  .site-footer__newsletter {
    grid-column: span 2;
    max-width: 430px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .site-footer__legal {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .app-download {
    padding-top: 52px;
    padding-bottom: 0;
  }

  .site-footer {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .site-footer__grid {
    padding-bottom: 200px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .78) 52%, rgba(255, 255, 255, .5) 100%),
      var(--footer-bg-image, url("../img/footer-imgs/harbour-town-hole-17.webp")) center bottom / cover no-repeat;
  }

  .app-download__title {
    font-size: 42px;
    line-height: 48px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .app-download__features ul {
    flex-direction: column;
    max-width: 100%;
  }

  .app-download__features li {
    font-size: 16px;
    line-height: 22px;
    white-space: normal;
  }

  .app-download__stores {
    gap: 12px;
  }

  .site-footer__grid {
    width: min(100% - 32px, 980px);
    gap: 30px;
    padding-bottom: 60px;
  }

  .site-footer__contact,
  .site-footer__newsletter {
    margin-top: 4px;
  }

  .site-footer__newsletter {
    grid-column: auto;
    min-width: 0;
    max-width: 100%;
  }

  .site-footer__newsletter p {
    width: 100%;
    overflow-wrap: break-word;
  }

  .site-footer__bottom {
    gap: 18px;
    padding: 22px 16px;
  }

  .site-footer__bottom>* {
    min-width: 0;
    /* width: 100%; */
  }

  .site-footer__payments {
    gap: 8px;
  }

  .site-footer__legal a {
    padding: 0 9px;
  }
}

@media (max-width: 575px) {
  .app-download {
    padding-top: 56px;
  }

  .app-download__inner {
    width: min(100% - 28px, 980px);
    gap: 34px;
  }

  .app-download__title {
    font-size: 36px;
    line-height: 42px;
  }

  .app-download__copy {
    font-size: 17px;
    line-height: 27px;
  }

  .app-download__features {
    margin-top: 30px;
  }

  .app-download__features h3 {
    font-size: 24px;
    line-height: 31px;
  }

  .app-download__stores a {
    width: 158px;
    height: 48px;
  }

  .site-footer {
    padding-top: 54px;
    background-position: center bottom;
  }

  .site-footer h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .site-footer a:not(.btn),
  .site-footer p {
    font-size: 18px;
    line-height: 28px;
  }

  .site-footer__newsletter p {
    max-width: 320px;
    font-size: 16px;
    line-height: 24px;
  }

  .site-footer a:not(.btn) {
    font-size: 18px;
    line-height: 25px;
  }

  .site-footer__actions {
    max-width: none;
  }

  .site-footer__grid {
    padding-bottom: 150px;
  }

  .site-footer .btn {
    min-height: 56px;
    font-size: 18px;
  }

  .site-footer__bottom {
    margin-top: 0;
  }

  .site-footer__payments img {
    max-width: 52px;
  }

  .site-footer__legal {
    display: grid;
    justify-items: center;
    row-gap: 6px;
    text-align: center;
  }

  .site-footer__legal a {
    padding: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .site-footer__legal a+a::before {
    display: none;
  }

  .site-footer__bottom p {
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {

  .app-download__inner,
  .site-footer__grid {
    width: min(100% - 20px, 980px);
  }

  .app-download__stores a {
    width: 142px;
    height: 43px;
  }
}

/* =========================================================
   Responsive Alignment Polish
   ========================================================= */
.video-section__carousel {
  right: max(40px, calc((100vw - 1720px) / 2));
}

@media (max-width: 1599px) and (min-width: 1200px) {

  .container,
  .why-teed-up__grid,
  .welcome-teed-up__grid,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner,
  .site-footer__grid {
    width: min(100% - 80px, 1420px);
    margin-inline: auto;
  }

  .why-teed-up__grid {
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(28px, 3vw, 44px);
    padding-top: 78px;
    padding-bottom: 96px;
  }

  .why-teed-up__media--primary {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: auto;
    aspect-ratio: 553 / 823;
  }

  .why-teed-up__content {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .why-teed-up__media--secondary {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    width: min(48%, 330px);
    height: auto;
    margin-top: 24px;
    aspect-ratio: 370 / 409;
  }

  .why-teed-up__title {
    max-width: 760px;
    font-size: clamp(44px, 3.65vw, 56px);
    line-height: 1.08;
  }

  .why-teed-up__features {
    width: min(100%, 760px);
  }

  .why-teed-up__feature {
    min-height: 58px;
    font-size: 17px;
    line-height: 26px;
  }

  .welcome-teed-up__grid {
    grid-template-columns: minmax(300px, .74fr) minmax(360px, .9fr) minmax(360px, 1fr);
    column-gap: clamp(24px, 2.6vw, 36px);
  }

  .welcome-teed-up__intro,
  .welcome-teed-up__summary,
  .welcome-teed-up__stats,
  .welcome-teed-up__media,
  .welcome-teed-up__content,
  .welcome-teed-up__content p {
    width: 100%;
    max-width: 100%;
  }

  .welcome-teed-up__content {
    margin-left: 0;
  }

  .services__slider,
  .services__track {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .technology__inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    grid-template-rows: auto auto;
    column-gap: clamp(34px, 4vw, 56px);
    /* row-gap: clamp(44px, 4.8vw, 68px); */
    row-gap: 0px;
  }

  .technology__intro,
  .technology__heading,
  .technology__summary,
  .technology__content,
  .technology__copy,
  .technology__copy p,
  .technology__media--main,
  .technology__media--secondary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .technology__media--main {
    height: auto;
    aspect-ratio: 993 / 591;
  }

  .technology__media--secondary {
    height: auto;
    margin-top: clamp(64px, 7vw, 94px);
    aspect-ratio: 648 / 397;
  }

  .benefits__panel {
    grid-template-columns: minmax(0, .98fr) minmax(0, 1fr);
  }

  .benefits__media,
  .benefits__content,
  .benefits__copy,
  .benefits__title,
  .benefits__copy p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .benefits__media {
    min-height: 0;
    height: auto;
  }

  .benefits__content {
    justify-self: stretch;
    padding: clamp(48px, 4.6vw, 64px);
  }

  .lesson-banner__inner {
    overflow: hidden;
  }

  .lesson-banner__heading {
    width: min(50%, 690px);
    /* max-width: 690px; */
    max-width: 737px;
  }

  .lesson-banner__copy {
    width: min(43%, 560px);
    max-width: 560px;
  }

  .lesson-banner__title,
  .lesson-banner__copy p {
    width: 100%;
    max-width: 100%;
  }

  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel {
    overflow: hidden;
  }

  .faq-contact__inner,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 44px);
  }

  .faq-contact__media,
  .faq-contact__content,
  .faq,
  .contact-panel__content,
  .contact-panel__media,
  .contact-panel__title {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-panel {
    justify-content: stretch;
    padding-left: clamp(40px, 4vw, 56px);
  }

  .contact-panel__media {
    height: auto;
    aspect-ratio: 749 / 664;
  }

  .contact-panel__media img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .site-footer__grid {
    grid-template-columns: minmax(210px, .95fr) minmax(120px, .52fr) minmax(150px, .62fr) minmax(205px, .78fr) minmax(280px, 1fr);
    gap: 40px;
    padding-bottom: 250px;
  }

  .site-footer__brand {
    max-width: 240px;
  }

  .site-footer h3 {
    margin-bottom: 16px;
    font-size: 19px;
    line-height: 28px;
  }

  .site-footer a:not(.btn),
  .site-footer p {
    font-size: 16px;
    line-height: 22px;
  }

  .site-footer .btn {
    min-height: 46px;
    font-size: 15px;
  }

  .site-footer__newsletter {
    grid-column: auto;
    max-width: none;
  }

  .site-footer__bottom {
    grid-template-columns: minmax(230px, .72fr) minmax(300px, .85fr) minmax(520px, 1.35fr);
    justify-items: stretch;
    gap: 16px;
    padding-right: 40px;
    padding-left: 40px;
    text-align: left;
  }

  .site-footer__bottom p {
    font-size: 14px;
    line-height: 18px;
  }

  .site-footer__legal {
    justify-content: flex-end;
  }

  .site-footer__legal a {
    font-size: 14px;
    line-height: 18px;
  }

  .video-section__carousel {
    right: 40px;
    width: 732px;
    max-width: calc(100vw - 80px);
  }

  .video-section__thumbs {
    width: 100%;
  }
}

@media (max-width: 1919px) and (min-width: 1400px) {

  .welcome-teed-up__grid,
  .technology__inner,
  .benefits__panel,
  .lesson-banner__inner,
  .booths__inner,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner,
  .site-footer__grid {
    width: min(100% - 96px, 1560px);
    margin-inline: auto;
    box-sizing: border-box;
    min-width: 0;
  }

  .why-teed-up__grid {
    width: min(100% - 96px, 1560px);
    grid-template-columns: minmax(340px, .58fr) minmax(680px, 1.12fr) minmax(190px, .32fr);
    gap: clamp(20px, 1.6vw, 32px);
    align-items: start;
    padding-bottom: 96px;
  }

  .why-teed-up__media--primary {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 553 / 823;
  }

  .why-teed-up__content {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    padding-top: clamp(16px, 1.8vw, 31px);
  }

  .why-teed-up__title {
    max-width: 100%;
    font-size: clamp(42px, 2.8vw, 58px);
    line-height: 1.08;
  }

  .why-teed-up__features {
    width: 100%;
    max-width: 100%;
  }

  .why-teed-up__feature {
    min-height: clamp(58px, 3.75vw, 72px);
    font-size: clamp(18px, 1.05vw, 23px);
    line-height: 1.35;
  }

  .why-teed-up__media--secondary {
    display: block;
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    justify-self: stretch;
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 370 / 409;
  }

  .welcome-teed-up__grid {
    grid-template-columns: minmax(290px, .68fr) minmax(430px, .86fr) minmax(390px, 1fr);
    column-gap: 12px;
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .welcome-teed-up__intro,
  .welcome-teed-up__summary,
  .welcome-teed-up__stats,
  .welcome-teed-up__media,
  .welcome-teed-up__content,
  .welcome-teed-up__content p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .welcome-teed-up__intro,
  .welcome-teed-up__content {
    padding-top: 0;
  }

  .welcome-teed-up__title {
    margin-bottom: 28px;
    font-size: clamp(46px, 3vw, 58px);
    line-height: 1.1;
    letter-spacing: 0;
  }

  .welcome-teed-up__summary,
  .welcome-teed-up__content p {
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.55;
  }

  .welcome-teed-up__content p+p {
    margin-top: 22px;
  }

  .welcome-teed-up__stats {
    grid-template-columns: minmax(58px, 1fr) 1px minmax(58px, 1fr) 1px minmax(78px, 1.2fr);
    column-gap: clamp(14px, 1.5vw, 24px);
    margin-top: 34px;
  }

  .welcome-teed-up__stat,
  .welcome-teed-up__stat--courses,
  .welcome-teed-up__stat--bays,
  .welcome-teed-up__stat--suite {
    width: 100%;
  }

  .welcome-teed-up__stat span {
    font-size: 16px;
    line-height: 22px;
    white-space: normal;
  }

  .welcome-teed-up__media {
    height: auto;
    aspect-ratio: 574 / 655;
  }

  .welcome-teed-up__actions {
    margin-top: 32px;
  }

  .welcome-teed-up__actions .btn {
    min-height: 54px;
    padding: 18px 26px;
    font-size: 17px;
  }

  .technology__inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .82fr);
    grid-template-rows: auto auto;
    column-gap: clamp(36px, 3.2vw, 56px);
    /* row-gap: clamp(44px, 4vw, 68px); */
    row-gap: 0px;
  }

  .technology__intro,
  .technology__heading,
  .technology__summary,
  .technology__content,
  .technology__copy,
  .technology__copy p,
  .technology__media--main,
  .technology__media--secondary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .technology__title {
    font-size: clamp(50px, 3.25vw, 62px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .technology__summary,
  .technology__copy p {
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.55;
  }

  .technology__copy {
    gap: 28px;
  }

  .technology__media--main {
    height: auto;
    aspect-ratio: 993 / 591;
  }

  .technology__media--secondary {
    height: auto;
    margin-top: clamp(56px, 5.5vw, 92px);
    aspect-ratio: 648 / 397;
  }

  .technology__button {
    width: auto;
    min-height: 54px;
    padding: 18px 28px;
    font-size: 17px;
    line-height: 24px;
  }

  .benefits__panel {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  }

  .benefits__media,
  .benefits__content,
  .benefits__copy,
  .benefits__title,
  .benefits__copy p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .benefits__media {
    height: auto;
    aspect-ratio: 860 / 766;
  }

  .benefits__content {
    justify-self: stretch;
    align-self: center;
    gap: 28px;
    padding: 0;
    padding-right: 20px;

  }

  .benefits__title {
    font-size: clamp(48px, 3.15vw, 60px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .benefits__copy p {
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.55;
  }

  .benefits__button {
    min-height: 54px;
    padding: 18px 28px;
    font-size: 17px;
    line-height: 24px;
  }

  .lesson-banner {
    height: 780px;
    min-height: 780px;
  }

  .lesson-banner__inner {
    overflow: hidden;
  }

  .lesson-banner__heading {
    top: 86px;
    width: min(80%, 800px);
    height: auto;
  }

  .lesson-banner__copy {
    top: 86px;
    width: min(44%, 620px);
    height: auto;
    align-items: flex-start;
  }

  .lesson-banner__title,
  .lesson-banner__copy,
  .lesson-banner__copy p {
    max-width: 100%;
    min-width: 0;
  }

  .lesson-banner__title {
    width: 100%;
    font-size: clamp(50px, 3.25vw, 62px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .lesson-banner__copy p {
    width: 100%;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.55;
  }

  .lesson-banner__button {
    min-width: 0;
    min-height: 54px;
    height: auto;
    padding: 18px 28px;
    font-size: 17px;
    line-height: 24px;
  }

  .booths {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .booths__title {
    margin-bottom: 44px;
    font-size: clamp(50px, 3.2vw, 62px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .booth-card,
  .booth-card img {
    height: clamp(470px, 31vw, 560px);
  }

  .booth-card h3 {
    font-size: clamp(30px, 2.1vw, 38px);
    line-height: 1.15;
  }

  .booth-card__tags span {
    min-height: 40px;
    padding: 8px 18px;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.35;
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .why-teed-up__grid {
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
  }

  .why-teed-up__media--secondary {
    display: none;
  }

  .why-teed-up__content {
    grid-column: 2;
  }
}

@media (max-width: 1599px) and (min-width: 1400px) {
  .faq-contact__title {
    /* max-width: 680px; */
    font-size: 58px;
    line-height: 64px;
    letter-spacing: 0;
  }

  .contact-panel {
    grid-template-columns: minmax(0, .96fr) minmax(0, .9fr);
    gap: clamp(28px, 2.2vw, 36px);
    align-items: center;
    min-height: 0;
    padding: clamp(40px, 3.6vw, 56px);
  }

  .contact-panel__content,
  .contact-panel__title,
  .gravity-contact-form,
  .contact-panel__media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-panel__title {
    margin-bottom: 34px;
    font-size: clamp(44px, 3vw, 52px);
    line-height: 1.08;
    white-space: normal;
  }

  .contact-panel__media {
    height: auto;
    aspect-ratio: 749 / 664;
  }

  .contact-panel__media img {
    width: 100%;
    height: 100%;
    transform: none;
  }
}

@media (max-width: 1199px) {

  .container,
  .why-teed-up__grid,
  .welcome-teed-up__grid,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner,
  .site-footer__grid {
    width: min(100% - 56px, 980px);
    margin-inline: auto;
  }

  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title {
    font-size: clamp(40px, 4.6vw, 48px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .video-section__carousel {
    right: 28px;
    width: min(732px, calc(100vw - 56px));
  }

  .video-section__thumbs {
    width: 100%;
  }
}

@media (max-width: 767px) {

  .container,
  .why-teed-up__grid,
  .welcome-teed-up__grid,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner,
  .site-footer__grid {
    width: min(100% - 32px, 980px);
    margin-inline: auto;
    box-sizing: border-box;
    min-width: 0;
  }

  .hero h1,
  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title,
  .location__title {
    font-size: clamp(28px, 6.1vw, 38px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .why-teed-up__grid,
  .welcome-teed-up__grid {
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .why-teed-up__media,
  .why-teed-up__media--primary,
  .why-teed-up__media--secondary,
  .why-teed-up__content,
  .why-teed-up__features,
  .welcome-teed-up__intro,
  .welcome-teed-up__summary,
  .welcome-teed-up__stats,
  .welcome-teed-up__media,
  .welcome-teed-up__content,
  .welcome-teed-up__content p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .why-teed-up__media--secondary {
    justify-self: stretch;
  }

  .welcome-teed-up__media {
    justify-self: stretch;
    height: auto;
    aspect-ratio: 574 / 655;
  }

  .welcome-teed-up__title {
    overflow-wrap: anywhere;
  }

  .welcome-teed-up__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
  }

  .welcome-teed-up__divider {
    display: none;
  }

  .welcome-teed-up__stat,
  .welcome-teed-up__stat--courses,
  .welcome-teed-up__stat--bays,
  .welcome-teed-up__stat--suite {
    width: 100%;
  }

  .welcome-teed-up__stat span {
    font-size: 13px;
    line-height: 18px;
    white-space: normal;
  }

  .lesson-banner__button {
    margin-top: 0;
  }
}

@media (max-width: 575px) {

  .container,
  .why-teed-up__grid,
  .welcome-teed-up__grid,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner,
  .site-footer__grid {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    box-sizing: border-box;
    min-width: 0;
  }

  .hero h1,
  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title,
  .location__title {
    font-size: clamp(20px, 5.7vw, 22px);
    line-height: 1.12;
    width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
    overflow-wrap: break-word;
  }

  .hero h1 {
    font-size: clamp(22px, 5.9vw, 24px);
  }

  .hero h1 span,
  .welcome-teed-up__title span,
  .video-section__title span {
    display: block;
  }

  .site-main :where(p, li, h1, h2, h3) {
    min-width: 0;
    /* max-width: calc(100vw - 56px); */
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .site-main :where(section, div, article, figure, header) {
    min-width: 0;
  }

  .hero__content,
  .why-teed-up__content,
  .why-teed-up__features,
  .why-teed-up__media,
  .welcome-teed-up__intro,
  .welcome-teed-up__summary,
  .welcome-teed-up__stats,
  .welcome-teed-up__media,
  .welcome-teed-up__content,
  .welcome-teed-up__content p,
  .why-teed-up__grid,
  .welcome-teed-up__grid,
  .services__inner,
  .services__slider,
  .services__track,
  .services .service-card,
  .technology__inner,
  .technology__heading,
  .technology__copy,
  .technology__visual,
  .technology__aside,
  .technology__aside-image,
  .benefits__panel,
  .lesson-banner__inner,
  .lesson-banner__heading,
  .lesson-banner__copy,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner,
  .site-footer__grid {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero {
    min-height: 590px;
  }

  .hero__content {
    padding-top: 142px;
  }

  .hero .slider-controls {
    right: 14px;
    bottom: 22px;
  }

  .why-teed-up__grid,
  .welcome-teed-up__grid {
    gap: 26px;
  }

  .welcome-teed-up__intro,
  .welcome-teed-up__media,
  .welcome-teed-up__content {
    grid-column: 1;
  }

  .welcome-teed-up__intro {
    order: 1;
  }

  .welcome-teed-up__media {
    order: 2;
  }

  .welcome-teed-up__content {
    order: 3;
  }

  .welcome-teed-up__title span {
    display: block;
  }

  .welcome-teed-up__summary,
  .why-teed-up__feature,
  .services .service-card h3,
  .services .service-card p,
  .welcome-teed-up__content p,
  .technology__summary,
  .technology__copy p,
  .app-download__copy {
    font-size: 12px;
    line-height: 20px;
  }

  .welcome-teed-up__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100vw - 84px);
    max-width: calc(100vw - 84px);
    column-gap: 4px;
  }

  .welcome-teed-up__stat span {
    font-size: 11px;
    line-height: 15px;
  }

  .welcome-teed-up__summary,
  .welcome-teed-up__content p,
  .technology__summary,
  .technology__copy p {
    width: calc(100vw - 84px);
    max-width: calc(100vw - 84px);
    font-size: 12px;
    line-height: 20px;
  }

  .services .service-card__content {
    left: 20px;
    right: 20px;
  }

  .services .service-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .services__title {
    width: calc(100vw - 96px);
    max-width: calc(100vw - 96px);
    margin-inline: auto;
  }

  .services .service-card p {
    width: calc(100vw - 104px);
    max-width: calc(100vw - 104px);
  }

  .video-section__content,
  .video-section__content p {
    width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
  }

  .video-section__content {
    left: 28px;
  }

  .technology__heading,
  .technology__copy,
  .technology__visual,
  .technology__aside,
  .technology__aside-image,
  .benefits__panel,
  .lesson-banner__heading,
  .lesson-banner__copy,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  .why-teed-up__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
  }

  .why-teed-up__media--primary {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 553 / 823;
  }

  .why-teed-up__media--secondary {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: stretch;
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 370 / 409;
  }

  .why-teed-up__content {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    padding-top: 8px;
  }

  .why-teed-up__features {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .why-teed-up__grid {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }

  .why-teed-up__media,
  .why-teed-up__media--primary,
  .why-teed-up__media--secondary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
    aspect-ratio: 1 / 1.18;
  }

  .why-teed-up__content,
  .why-teed-up__features {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 360px) {

  .container,
  .why-teed-up__grid,
  .welcome-teed-up__grid,
  .services__inner,
  .technology__inner,
  .benefits__panel,
  .booths__inner,
  .location__panel,
  .faq-contact__header,
  .faq-contact__inner,
  .contact-panel,
  .app-download__inner,
  .site-footer__grid {
    width: min(100% - 20px, 980px);
  }
}

/* =========================================================
   Global Container Rail
   Shared by all non-fullwidth section inner wrappers.
   ========================================================= */
@media (max-width: 1919px) {
  :root {
    --container: 1560px;
    --gutter: 48px;
    --section-y: 96px;
  }
}

@media (max-width: 1599px) {
  :root {
    --container: 1420px;
    --gutter: 40px;
    --section-y: 88px;
  }
}

@media (max-width: 1199px) {
  :root {
    --container: 980px;
    --gutter: 28px;
    --section-y: 72px;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 16px;
    --section-y: 64px;
  }
}

@media (max-width: 575px) {
  :root {
    --gutter: 14px;
    --section-y: 56px;
  }
}

.site-main .container {
  /* width: min(100% - (var(--gutter) * 2), var(--container)); */
  max-width: var(--container);
  margin-inline: auto;
  box-sizing: border-box;
  min-width: 0;
}

@media (max-width: 575px) {
  .site-main .container {
    width: calc(100vw - (var(--gutter) * 2));
    /* max-width: calc(100vw - (var(--gutter) * 2)); */
  }
}

/* =========================================================
   Below 1700 Responsive Guardrails
   ========================================================= */
@media (max-width: 1699px) {
  .hero h1 {
    font-size: clamp(56px, 4.2vw, 70px);
    line-height: .98;
  }

  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .video-section__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title,
  .location__title {
    font-size: clamp(48px, 3.65vw, 58px);
    line-height: 1.1;
    letter-spacing: 0;
  }

  .services .service-card h3,
  .booth-card h3,
  .app-download__features h3 {
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.15;
    letter-spacing: 0;
  }

  .site-main :where(p, li),
  .why-teed-up__feature,
  .services .service-card p,
  .technology__summary,
  .technology__copy p,
  .video-section__content p,
  .benefits__copy p,
  .lesson-banner__copy p,
  .app-download__copy {
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.55;
  }
}

@media (max-width: 1199px) {
  .site-header__toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--color-brand-forest);
    background: var(--color-brand-lime);
    opacity: 1;
    visibility: visible;
  }

  .site-header::after {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 998;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    content: "";
    color: var(--color-brand-forest);
    background:
      linear-gradient(currentColor, currentColor) center calc(50% - 7px) / 22px 2px no-repeat,
      linear-gradient(currentColor, currentColor) center / 22px 2px no-repeat,
      linear-gradient(currentColor, currentColor) center calc(50% + 7px) / 22px 2px no-repeat,
      var(--color-brand-lime);
    pointer-events: none;
  }

  .site-header.is-open::after {
    content: "\\00d7";
    display: grid;
    place-items: center;
    background: var(--color-brand-lime);
    color: var(--color-brand-forest);
    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
  }

  .site-header__toggle span {
    transition: transform .22s ease, opacity .18s ease;
  }

  .site-header.is-open .site-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.is-open .site-header__toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-forest);
    background: var(--color-brand-lime);
    border-radius: 50%;
    opacity: 1;
    visibility: visible;
  }

  .site-header.is-open .site-header__toggle::before,
  .site-header.is-open .site-header__toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    content: "";
    background: currentColor;
    transform-origin: center;
  }

  .site-header.is-open .site-header__toggle::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-open .site-header__toggle::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-header.is-open .site-header__toggle span {
    opacity: 0;
  }

  .icon-link {
    gap: 12px;
  }

  .icon-link svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    stroke-width: 2.4;
    transform: none;
  }

  .site-header.is-open .icon-link::after {
    content: attr(aria-label);
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.4vw, 54px);
  }

  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .video-section__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title,
  .location__title {
    font-size: clamp(34px, 4.5vw, 44px);
    line-height: 1.12;
  }

  .services .service-card h3,
  .booth-card h3,
  .app-download__features h3,
  .site-footer h3 {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.18;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.05;
  }

  .why-teed-up__title,
  .welcome-teed-up__title,
  .services__title,
  .technology__title,
  .video-section__title,
  .benefits__title,
  .lesson-banner__title,
  .booths__title,
  .faq-contact__title,
  .contact-panel__title,
  .app-download__title,
  .location__title {
    width: auto;
    max-width: calc(100vw - 56px);
    font-size: clamp(24px, 6.9vw, 28px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .services .service-card h3,
  .booth-card h3,
  .app-download__features h3,
  .site-footer h3 {
    font-size: clamp(18px, 5.4vw, 22px);
    line-height: 1.18;
  }

  .site-main :where(p, li),
  .why-teed-up__feature,
  .services .service-card p,
  .technology__summary,
  .technology__copy p,
  .video-section__content p,
  .benefits__copy p,
  .lesson-banner__copy p,
  .app-download__copy {
    font-size: 18px;
        line-height: 28px;
  }

  .site-header__toggle {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .site-header__toggle span {
    width: 21px;
  }

  .site-header.is-open .site-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.is-open .site-header__toggle {
    top: 20px;
    right: 20px;
  }
}

@media (min-width: 768px) and (max-width: 830px) {
  .welcome-teed-up__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    overflow: hidden;
  }

  .welcome-teed-up__intro,
  .welcome-teed-up__summary,
  .welcome-teed-up__stats,
  .welcome-teed-up__media,
  .welcome-teed-up__content,
  .welcome-teed-up__content p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .welcome-teed-up__intro {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0;
  }

  .welcome-teed-up__media {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    height: auto;
    aspect-ratio: 574 / 655;
  }

  .welcome-teed-up__content {
    grid-column: 1;
    grid-row: 3;
    padding-top: 0;
  }

  .welcome-teed-up__title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .welcome-teed-up__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 16px;
  }

  .welcome-teed-up__divider {
    display: none;
  }

  .welcome-teed-up__stat,
  .welcome-teed-up__stat--courses,
  .welcome-teed-up__stat--bays,
  .welcome-teed-up__stat--suite {
    width: 100%;
  }

  .welcome-teed-up__stat span {
    white-space: normal;
  }
}

@media (max-width: 1199px) {
  .site-main .button-row {
    align-items: center;
  }

  .site-main .btn,
  .site-footer .btn,
  .hero .btn,
  .welcome-teed-up__actions .btn,

  .benefits__button,
  .lesson-banner__button,
  .faq-contact__button {
    width: auto;
    max-width: 100%;
    flex: 0 0 auto;
    flex-basis: auto;
    justify-content: center;
    white-space: nowrap;
  }

  .gravity-contact-form .gform_button,
  .gravity-contact-form input[type="submit"],
  .gravity-contact-form button[type="submit"],
  .contact-panel .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
    width: auto;
    min-width: 154px;
    max-width: 100%;
  }
}

@media (max-width: 575px) {

  .site-main .button-row,
  .welcome-teed-up__actions {
    width: 100%;
    max-width: calc(100vw - 28px);
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero .button-row {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    gap: 10px;
  }

  .hero .btn {
    min-height: 52px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 16px;
    line-height: 22px;
  }

  .site-main .btn,
  .site-footer .btn,
  .hero .btn,
  .welcome-teed-up__actions .btn,
  .technology__button,
  .benefits__button,
  .lesson-banner__button,
  .faq-contact__button {
    min-width: 0;
    max-width: calc(100vw - 56px);
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 1699px) {
  .contact-panel {
    overflow: hidden;
    box-sizing: border-box;
    max-width: calc(100vw - (var(--gutter, 40px) * 2));
  }

  .contact-panel>*,
  .contact-panel__content,
  .contact-panel__title,
  .gravity-contact-form,
  .contact-panel__media {
    min-width: 0;
    max-width: 100%;
  }

  .contact-panel__media {
    overflow: hidden;
    width: 100%;
    justify-self: stretch;
    box-sizing: border-box;
  }

  .contact-panel__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .site-header {
    top: 36px;
    width: calc(100% - 32px);
  }

  .site-header__bar {
    min-height: 64px;
    height: 64px;
    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
    gap: 4px;
    padding: 6px;
  }

  .site-header__brand,
  .site-header__brand img {
    width: 86px;
    height: 86px;
  }

  .site-header__nav {
    gap: 2px;
  }

  .site-header__nav>a:not(.btn),
  .nav-item>button {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 12px;
    line-height: 18px;
  }

  .nav-item>button {
    padding-right: 9px;
  }

  .nav-item>button::after {
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-width: 1.5px;
  }

  .icon-link {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .icon-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.3;
    transform: none;
  }

  .site-header .btn {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
    line-height: 18px;
  }

  .welcome-teed-up__grid {
    grid-template-columns: minmax(330px, .88fr) minmax(300px, .78fr) minmax(340px, 1fr);
    column-gap: clamp(20px, 2vw, 28px);
    align-items: center;
  }

  .welcome-teed-up__title {
    font-size: clamp(38px, 3.2vw, 44px);
    line-height: 1.1;
  }

  .welcome-teed-up__summary,
  .welcome-teed-up__content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .welcome-teed-up__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .welcome-teed-up__divider {
    display: none;
  }

  .welcome-teed-up__stat,
  .welcome-teed-up__stat--courses,
  .welcome-teed-up__stat--bays,
  .welcome-teed-up__stat--suite {
    width: 100%;
    min-width: 0;
  }

  .welcome-teed-up__stat img {
    width: 34px;
    height: 34px;
  }

  .welcome-teed-up__stat strong {
    font-size: 32px;
    line-height: 1;
  }

  .welcome-teed-up__stat span {
    font-size: 14px;
    line-height: 18px;
    white-space: normal;
  }

  .welcome-teed-up__media {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 574 / 655;
  }

  .contact-panel {
    grid-template-columns: minmax(0, .96fr) minmax(0, .92fr);
    gap: clamp(24px, 2.6vw, 34px);
    align-items: center;
    padding: clamp(34px, 3.2vw, 44px);
  }

  .contact-panel__title {
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
    font-size: clamp(38px, 3.25vw, 44px);
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: normal;
  }

  .contact-panel__media {
    align-self: center;
    height: auto;
    aspect-ratio: 749 / 664;
  }
}

@media (max-width: 1199px) {
  .contact-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-panel__media {
    height: auto;
    aspect-ratio: 749 / 664;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {

  .site-header,
  .site-header.is-open {
    position: absolute;
    top: 36px;
    left: 50%;
    width: min(calc(100% - 32px), 1288px);
    transform: translateX(-50%);
  }

  .site-header::after,
  .site-header.is-open::after,
  .site-header__toggle {
    display: none;
    content: none;
  }

  .site-header__bar {
    display: grid;
    height: 64px;
    min-height: 64px;
    max-height: none;
    overflow: visible;
    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: var(--radius-pill);
  }

  .site-header__brand {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: auto;
    grid-row: auto;
    order: initial;
    width: 86px;
    height: 86px;
    justify-self: auto;
    transform: translate(-50%, -50%);
  }

  .site-header__brand img {
    width: 86px;
    height: 86px;
  }

  .site-header__nav,
  .site-header.is-open .site-header__nav {
    display: flex;
    flex-direction: row;
    grid-column: 1;
    align-items: center;
    gap: 2px;
    padding-top: 0;
  }

  .site-header__nav--right,
  .site-header.is-open .site-header__nav--right {
    grid-column: 3;
    justify-content: flex-end;
  }

  .nav-item {
    width: auto;
  }

  .site-header__nav>a:not(.btn),
  .nav-item>button,
  .site-header .btn {
    width: auto;
    min-height: 38px;
    justify-content: center;
    padding-inline: 9px;
    font-size: 12px;
    line-height: 18px;
  }

  .nav-item>button {
    padding-right: 9px;
  }

  .icon-link {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .icon-link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    stroke-width: 2.3;
    transform: none;
  }

  .nav-menu {
    position: absolute;
    min-width: 190px;
    margin-top: 0;
  }
}

@media (max-width: 1199px) {

  .site-header,
  .site-header.is-open {
    top: 18px;
    left: 20px;
    width: min(calc(100vw - 40px), 1088px);
    max-width: calc(100vw - 40px);
    transform: none;
  }

  .site-header::after,
  .site-header.is-open::after {
    display: none;
    content: none;
  }

  .site-header__bar {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 58px;
    min-height: 86px;
    height: auto;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    overflow: visible;
    border-radius: 30px;
  }

  .site-header__brand {
    position: static;
    grid-column: 1;
    grid-row: 1;
    order: 0;
    width: 76px;
    height: 76px;
    justify-self: start;
    transform: none;
  }

  .site-header__brand img {
    display: block;
    width: 76px;
    height: 76px;
  }

  .site-header__toggle,
  .site-header.is-open .site-header__toggle {
    position: static;
    z-index: 4;
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    width: 56px;
    height: 56px;
    align-self: center;
    justify-self: end;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    color: var(--color-brand-forest);
    background: var(--color-brand-lime);
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }

  .site-header__toggle::before,
  .site-header__toggle::after,
  .site-header.is-open .site-header__toggle::before,
  .site-header.is-open .site-header__toggle::after {
    content: none;
  }

  .site-header__toggle span,
  .site-header.is-open .site-header__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    flex: 0 0 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    opacity: 1;
    transition: transform .22s ease, opacity .16s ease;
  }

  .site-header.is-open .site-header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header__nav {
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-header__nav:first-of-type {
    padding-top: 10px;
  }
}

@media (max-width: 575px) {

  .site-header,
  .site-header.is-open {
    top: 12px;
    left: 14px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    transform: none;
  }

  .site-header__bar {
    grid-template-columns: 72px minmax(0, 1fr) 50px;
    min-height: 78px;
    padding: 7px 8px;
    border-radius: 24px;
  }

  .site-header__brand,
  .site-header__brand img {
    width: 68px;
    height: 68px;
  }

  .site-header__toggle,
  .site-header.is-open .site-header__toggle {
    position: static;
    top: auto;
    right: auto;
    z-index: 1000;
    transform: none;
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 50px;
    height: 50px;
    gap: 5px;
  }

  .site-header__toggle span,
  .site-header.is-open .site-header__toggle span {
    width: 23px;
  }

  .site-header.is-open .site-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 1699px) {
  .contact-panel {
    width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1788px));
    max-width: calc(100vw - (var(--gutter, 40px) * 2));
    grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
    justify-content: stretch;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
  }

  .contact-panel__content,
  .contact-panel__media,
  .contact-panel__media img {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-panel__media {
    width: 100%;
    justify-self: stretch;
    align-self: center;
    overflow: hidden;
  }


}

@media (max-width: 1199px) {
  .contact-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {

  .site-header,
  .site-header.is-open {
    position: absolute;
    top: 42px;
    left: 50%;
    width: min(calc(100vw - 48px), 1512px);
    transform: translateX(-50%);
  }

  .site-header::after,
  .site-header.is-open::after,
  .site-header__toggle {
    display: none;
    content: none;
  }

  .site-header__bar {
    display: grid;
    height: 72px;
    min-height: 72px;
    max-height: none;
    grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 7px;
    overflow: visible;
  }

  .site-header__brand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 108px;
    height: 108px;
    transform: translate(-50%, -50%);
  }

  .site-header__brand img {
    width: 108px;
    height: 108px;
  }

  .site-header__nav,
  .site-header.is-open .site-header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    min-width: 0;
    padding-top: 0;
  }

  .site-header__nav {
    grid-column: 1;
    justify-content: flex-start;
  }

  .site-header__nav--right {
    grid-column: 3;
    justify-content: flex-end;
  }

  .site-header__nav>a:not(.btn),
  .nav-item>button,
  .site-header .btn {
    width: auto;
    min-height: 46px;
    justify-content: center;
    padding-inline: 12px;
    font-size: 15px;
    line-height: 22px;
    white-space: nowrap;
  }

  .nav-item>button {
    padding-right: 12px;
  }

  .nav-item>button::after {
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-width: 1.8px;
  }

  .icon-link {
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .icon-link svg {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    stroke-width: 2.7;
    transform: none;
  }

  .site-header .btn {
    padding-inline: 17px;
    font-weight: 700;
  }

  .nav-menu {
    position: absolute;
    min-width: 210px;
    margin-top: 0;
  }
}

@media (min-width: 1400px) {
  .video-section__carousel {
    right: clamp(-75px, -4vw, -48px);
    bottom: 56px;
    width: 732px;
    height: 168px;
  }

  .video-section__thumbs {
    width: 732px;
    height: 168px;
    gap: 20px;
  }

  .video-section__thumb {
    width: 168px;
    height: 168px;
  }

  .video-section__control--prev {
    left: -32px;
  }

  .video-section__control--next {
    right: 16px;
  }
}

.hero .slider-controls [data-hero-prev] {
  color: var(--color-brand-forest);
  background: var(--color-white);
}

.hero .slider-controls [data-hero-next] {
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
}

.hero .slider-controls button img {
  filter: none;
  opacity: 1;
}

@media (min-width: 1699px) {
  .contact-panel__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .contact-panel__content,
  .contact-panel__media,
  .contact-panel__media img {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Final UI polish: hero arrows, feature weights, alignment, technology label, video carousel. */
.hero .slider-controls button {
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hero .slider-controls button:hover,
.hero .slider-controls button:focus-visible {
  color: var(--color-brand-forest);
  background: var(--color-brand-lime);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
  transform: translateY(-2px);
}

.hero .slider-controls [data-hero-next]:hover,
.hero .slider-controls [data-hero-next]:focus-visible {
  background: #edff64;
}

.why-teed-up__feature {
  font-weight: 500;
}

.welcome-teed-up__grid {
  align-items: center;
}

.welcome-teed-up__intro,
.welcome-teed-up__media,
.welcome-teed-up__content {
  align-self: center;
}

.welcome-teed-up__media {
  justify-self: center;
}

.technology__eyebrow {
  color: var(--color-brand-forest);
}

.video-section__control:not(:disabled):not([aria-disabled="true"]) {
  border-color: transparent;
  color: #000000;
  background: var(--color-white);
}

.video-section__control:disabled,
.video-section__control[aria-disabled="true"] {
  border-color: transparent;
  color: #000000;
  background: var(--color-white);
  opacity: 1;
  border: 1px solid #000000;
}

.video-section__control:not(:disabled):not([aria-disabled="true"]):hover,
.video-section__control:not(:disabled):not([aria-disabled="true"]):focus-visible {
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.video-section__control img {
  filter: none;
  opacity: 1;
}

.video-section__control:disabled img,
.video-section__control[aria-disabled="true"] img {
  filter: none;
  opacity: 1;
}

.video-section__thumb {
  border-width: 1px;
  box-sizing: border-box;
}

.video-section__thumb.is-active {
  border-width: 3px;
  box-shadow: none;
}

@media (min-width: 1300px) {

  .welcome-teed-up__intro,
  .welcome-teed-up__content {
    display: flex;
    /* height: 655px; */
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    padding-top: 0;
  }

  /* .welcome-teed-up__content {
    margin-left: 35px;
  } */

  .welcome-teed-up__media {
    align-self: center;
  }
}

/* Final contact panel match to Figma. */
@media (min-width: 1367px) {
  .contact-panel {
    width: min(calc(100vw - 200px), 1720px);
    max-width: min(calc(100vw - 200px), 1720px);
    min-height: 0;
    /* grid-template-columns: minmax(0, 1fr) minmax(0, 749px) ; */
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 748px);
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    margin-top: 100px;
    border-radius: 20px;
    padding: 24px;
    overflow: hidden;
    background: #f1f1f1;
  }

  .contact-panel__content {
    display: flex;
    width: 100%;
    min-height: 664px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    border-radius: 14px;
    padding: 28px;
    background: var(--color-white);
  }

  .contact-panel__eyebrow {
    margin-bottom: 22px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: .48em;
  }

  .contact-panel__title {
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
    font-size: clamp(46px, 3.55vw, 68px);
    line-height: 1.09;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .gravity-contact-form,
  .gravity-contact-form .gform_wrapper,
  .gravity-contact-form .gform-body,
  .gravity-contact-form form {
    width: 100%;
    max-width: 100%;
  }

  .contact-panel__media {
    width: 100%;
    max-width: 749px;
    min-height: 664px;
    height: auto;
    align-self: stretch;
    justify-self: end;
    aspect-ratio: auto;
    border-radius: 14px;
  }

  .contact-panel__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 664px;
    object-fit: cover;
    object-position: center;
    transform: none;
  }
}

/* @media (min-width: 1200px) and (max-width: 1920px) {
  .contact-panel {
    width: min(calc(100vw - 80px), 1420px) ;
    max-width: min(calc(100vw - 80px), 1420px) ;
    grid-template-columns: minmax(0, 1fr) minmax(0, .88fr) ;
    gap: 20px ;
  }
} */

@media (min-width: 1200px) and (max-width: 1920px) {

  .contact-panel {
    width: min(calc(100vw - 80px), 1420px);
    max-width: min(calc(100vw - 80px), 1420px);
    grid-template-columns: minmax(0, 1fr) minmax(0, .88fr);
    gap: 20px;
  }


  .contact-panel__content {
    min-height: clamp(500px, 39vw, 600px);
    padding: clamp(22px, 2vw, 28px);
  }

  .contact-panel__title {
    font-size: clamp(38px, 3.25vw, 52px);
    line-height: 1.08;
  }

  .contact-panel__media,
  .contact-panel__media img {
    min-height: clamp(500px, 39vw, 600px);
  }
}

@media (max-width: 1199px) {
  .contact-panel {
    width: min(calc(100% - (var(--gutter, 28px) * 2)), var(--container, 980px));
    max-width: var(--container, 980px);
    margin-right: auto;
    margin-left: auto;
    padding: clamp(14px, 2.8vw, 24px);
    box-sizing: border-box;
  }

  .contact-panel__content {
    border-radius: 14px;
    padding: clamp(22px, 5vw, 32px);
    background: var(--color-white);
  }

  .contact-panel__media,
  .contact-panel__media img {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) and (max-width: 1699px) {
  .contact-panel {
    width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1420px));
    max-width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1420px));
    margin-right: auto;
    margin-left: auto;
  }
}

/* Mobile footer order: menu, payment cards, copyright. */
@media (max-width: 767px) {
  .site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 14px;
    text-align: center;
  }

  .site-footer__legal {
    order: 1;
    display: flex;
    width: 100%;
    justify-content: center;
    row-gap: 4px;
  }

  .site-footer__payments {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .site-footer__bottom p {
    order: 3;
    width: 100%;
    text-align: center;
  }
}

/* Common section container vertical rhythm. */
:root {
  --section-y: 70px;
}

@media (max-width: 1199px) {
  :root {
    --section-y: 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-y: 32px;
  }
}

.site-main>section:not(.hero):not(.product-hero):not(.product-difference):not(.video-section):not(.benefits):not(.location):not(.faq-contact):not(.lesson-banner) {
  padding-top: 0;
  padding-bottom: 0;
}

.site-main>section:not(.hero):not(.product-hero):not(.product-difference):not(.video-section):not(.benefits):not(.location):not(.faq-contact):not(.lesson-banner):not(.app-download)>.container {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.benefits,
.location,
.faq-contact {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

/* Consistent CTA button heights outside the footer. */
:root {
  --cta-button-height: 64px;
}

@media (max-width: 1199px) {
  :root {
    --cta-button-height: 56px;
  }
}

@media (max-width: 767px) {
  :root {
    --cta-button-height: 52px;
  }
}

.site-main :where(.btn, .service-card__button, .services__button, .technology__button, .benefits__button, .lesson-banner__button, .faq-contact__button),
.site-main .gravity-contact-form :where(.gform_button, input[type="submit"], button[type="submit"]),
.site-main .contact-panel .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
  display: inline-flex;
  height: var(--cta-button-height);
  min-height: var(--cta-button-height);
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

/* Final typography locks requested after ACF/responsive pass. */
.site-main :where(.btn, .service-card__button, .services__button, .technology__button, .benefits__button, .lesson-banner__button, .faq-contact__button),
.site-main .gravity-contact-form :where(.gform_button, input[type="submit"], button[type="submit"]),
.site-main .contact-panel .gform_wrapper.gravity-theme .gform_footer input[type="submit"],
.site-header :where(.btn, .nav-item > button) {
  font-weight: 500;
}

.site-main .app-download .app-download__copy,
.site-main .app-download .app-download__copy p {
  color: #0C0E12;
}

/* Final desktop/tablet header guardrails. */
@media (min-width: 1200px) {

  .site-header,
  .site-header.is-open {
    position: absolute;
    top: clamp(36px, 3.125vw, 60px);
    left: 50%;
    width: min(calc(100vw - clamp(32px, 2.92vw, 56px)), 1864px);
    max-width: calc(100vw - clamp(32px, 2.92vw, 56px));
    transform: translateX(-50%);
  }

  .site-header::after,
  .site-header.is-open::after,
  .site-header__toggle {
    display: none;
    content: none;
  }

  .site-header__bar {
    display: grid;
    height: clamp(58px, 4.0625vw, 78px);
    min-height: clamp(58px, 4.0625vw, 78px);
    max-height: none;
    grid-template-columns: minmax(0, 1fr) clamp(92px, 7.4vw, 142px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3px, .625vw, 12px);
    padding: clamp(5px, .416vw, 8px);
    overflow: visible;
    border-radius: var(--radius-pill);
  }

  .site-header__brand {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    grid-column: auto;
    grid-row: auto;
    order: initial;
    width: clamp(92px, 7.4vw, 142px);
    height: clamp(92px, 7.4vw, 142px);
    justify-self: auto;
    transform: translate(-50%, -50%);
  }

  .site-header__brand img {
    width: clamp(92px, 7.4vw, 142px);
    height: clamp(92px, 7.4vw, 142px);
  }

  .site-header__nav,
  .site-header.is-open .site-header__nav {
    display: flex;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    gap: clamp(2px, .22vw, 4px);
    padding-top: 0;
  }

  .site-header__nav {
    grid-column: 1;
    justify-content: flex-start;
  }

  .site-header__nav--right,
  .site-header.is-open .site-header__nav--right {
    grid-column: 3;
    justify-content: flex-end;
  }

  .nav-item {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
  }

  .site-header__nav>a:not(.btn),
  .nav-item>button {
    width: auto;
    min-width: 0;
    min-height: clamp(36px, 2.71vw, 52px);
    justify-content: center;
    padding-inline: clamp(8px, 1.05vw, 20px);
    font-size: clamp(11px, 1.04vw, 20px);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-item>button {
    padding-right: clamp(8px, .95vw, 18px);
  }

  .nav-item>button::after {
    width: clamp(5px, .42vw, 8px);
    height: clamp(5px, .42vw, 8px);
    flex: 0 0 auto;
    margin-left: clamp(5px, .52vw, 10px);
    border-width: clamp(1.4px, .105vw, 2px);
  }

  .icon-link {
    width: clamp(38px, 3.125vw, 60px);
    min-width: clamp(38px, 3.125vw, 60px);
    height: clamp(38px, 3.125vw, 60px);
    min-height: clamp(38px, 3.125vw, 60px);
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .icon-link img {
    width: clamp(18px, 1.35vw, 26px);
    height: clamp(18px, 1.35vw, 26px);
    object-fit: contain;
  }

  .site-header .btn {
    width: auto;
    min-width: 0;
    min-height: clamp(38px, 3.125vw, 60px);
    height: clamp(38px, 3.125vw, 60px);
    justify-content: center;
    padding-inline: clamp(12px, 1.56vw, 30px);
    font-size: clamp(11px, 1.04vw, 20px);
    line-height: 1.1;
    white-space: nowrap;
  }

  .nav-menu {
    position: absolute;
    min-width: clamp(180px, 12vw, 230px);
    margin-top: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .site-header__bar {
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  }

  .site-header__brand,
  .site-header__brand img {
    width: 92px;
    height: 92px;
  }

  .site-header__nav>a:not(.btn),
  .nav-item>button {
    padding-inline: 8px;
    font-size: 11px;
  }

  .site-header .btn {
    padding-inline: 12px;
    font-size: 11px;
  }

  .icon-link {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .icon-link img {
    width: 19px;
    height: 19px;
  }
}

.site-header__nav--right>.icon-link {
  flex-grow: 0;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
}

.site-header__nav--right>.icon-link:hover,
.site-header__nav--right>.icon-link:focus-visible {
  color: var(--color-white);
  background: var(--color-brand-forest);
}

.site-header__nav--right>.icon-link img {
  flex: 0 0 auto;
  filter: none;
}

@media (min-width: 1200px) {
  .site-header__nav--right>.icon-link {
    width: clamp(38px, 3.125vw, 60px);
    min-width: clamp(38px, 3.125vw, 60px);
    max-width: clamp(38px, 3.125vw, 60px);
    height: clamp(38px, 3.125vw, 60px);
    min-height: clamp(38px, 3.125vw, 60px);
    max-height: clamp(38px, 3.125vw, 60px);
    flex-basis: clamp(38px, 3.125vw, 60px);
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .site-header__nav--right>.icon-link {
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    flex-basis: 38px;
  }
}

/* Final contact section proportions below 1920px. */
@media (max-width: 1919px) {
  .faq-contact .contact-panel {
    width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1420px));
    max-width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1420px));
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: 20px;
    align-items: stretch;
    margin-top: 0;
    padding: 14px;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f1f1;
  }

  .faq-contact .contact-panel__content {
    display: flex;
    width: 100%;
    min-height: 0;
    height: auto;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    padding: clamp(28px, 3.4vw, 50px);
    background: var(--color-white);
  }

  .faq-contact .contact-panel__eyebrow {
    margin-bottom: clamp(12px, 1.3vw, 20px);
    color: var(--color-brand-forest);
    font-size: clamp(10px, .72vw, 13px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .48em;
  }

  .faq-contact .contact-panel__title {
    width: 100%;
    max-width: 100%;
    margin-bottom: clamp(18px, 2vw, 30px);
    color: #000000;
    font-size: clamp(34px, 3vw, 56px);
    line-height: 1.08;
    letter-spacing: 0;
    white-space: normal;
  }

  .faq-contact .gravity-contact-form,
  .faq-contact .gravity-contact-form .gform_wrapper,
  .faq-contact .gravity-contact-form .gform-body,
  .faq-contact .gravity-contact-form form {
    width: 100%;
    max-width: 100%;
  }

  .faq-contact .gravity-contact-form .gform_fields,
  .faq-contact .gravity-contact-form .gform-theme--framework .gform_fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 12px;
  }

  .faq-contact .gravity-contact-form .gfield:first-child,
  .faq-contact .gravity-contact-form .gfield--type-textarea,
  .faq-contact .gravity-contact-form .gfield--width-full,
  .faq-contact .gravity-contact-form .gform_footer,
  .faq-contact .gravity-contact-form .gform_page_footer {
    grid-column: 1 / -1;
  }

  .faq-contact .gravity-contact-form input[type="text"],
  .faq-contact .gravity-contact-form input[type="email"],
  .faq-contact .gravity-contact-form input[type="tel"],
  .faq-contact .gravity-contact-form input[type="url"],
  .faq-contact .gravity-contact-form input[type="number"],
  .faq-contact .gravity-contact-form select,
  .faq-contact .gravity-contact-form textarea,
  .faq-contact .gravity-contact-form .gform-theme--framework input[type="text"],
  .faq-contact .gravity-contact-form .gform-theme--framework input[type="email"],
  .faq-contact .gravity-contact-form .gform-theme--framework input[type="tel"],
  .faq-contact .gravity-contact-form .gform-theme--framework textarea {
    min-height: 44px;
    height: 44px;
    border-radius: 6px;
    padding: 9px 16px;
    color: #0c0e12;
    background: #f7f7f7;
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 400;
    line-height: 1.35;
  }

  .faq-contact .gravity-contact-form textarea,
  .faq-contact .gravity-contact-form .gform-theme--framework textarea {
    min-height: clamp(112px, 12.2vw, 190px);
    height: clamp(112px, 12.2vw, 190px);
  }

  .faq-contact .gravity-contact-form .gform_footer,
  .faq-contact .gravity-contact-form .gform_page_footer {
    margin: clamp(20px, 2.2vw, 34px) 0 0;
    padding: 0;
  }

  .faq-contact .gravity-contact-form .gform_button,
  .faq-contact .gravity-contact-form input[type="submit"],
  .faq-contact .gravity-contact-form button[type="submit"],
  .faq-contact .gravity-contact-form .gform-theme--framework .gform_button,
  .faq-contact .gravity-contact-form .gform-theme--framework input[type="submit"],
  .faq-contact .contact-panel .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
    width: 120px;
    min-width: 120px;
    height: 52px;
    min-height: 52px;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 0 24px;
    color: var(--color-white);
    background: var(--color-brand-forest);
    box-shadow: var(--shadow-button);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    appearance: none;
  }

  .faq-contact .contact-panel__media {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    align-self: stretch;
    justify-self: stretch;
    aspect-ratio: auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .faq-contact .contact-panel__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    transform: none;
  }
}

@media (max-width: 1199px) {
  .faq-contact .contact-panel {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 12px;
    padding: 10px;
  }

  .faq-contact .contact-panel__content {
    padding: clamp(24px, 3.6vw, 36px);
  }

  .faq-contact .contact-panel__title {
    font-size: clamp(30px, 4.4vw, 46px);
  }
}

@media (max-width: 767px) {
  .faq-contact .contact-panel {
    grid-template-columns: 1fr;
  }

  .faq-contact .contact-panel__media {
    min-height: 260px;
  }

  .faq-contact .gravity-contact-form .gform_fields,
  .faq-contact .gravity-contact-form .gform-theme--framework .gform_fields {
    grid-template-columns: 1fr;
  }
}

/* Final hamburger menu fixes. */
@media (max-width: 1199px) {

  .site-header,
  .site-header.is-open {
    position: fixed;
    top: 12px;
    left: 14px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    transform: none;
  }

  .site-header__bar {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 52px;
    align-items: center;
    gap: 10px;
    min-height: 78px;
    max-height: calc(100vh - 24px);
    padding: 7px 8px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 24px;
  }

  .site-header__brand,
  .site-header__brand img {
    width: 68px;
    height: 68px;
  }

  .site-header__toggle,
  .site-header.is-open .site-header__toggle {
    position: static;
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    width: 50px;
    height: 50px;
    min-height: 50px;
    align-self: center;
    justify-self: end;
    gap: 5px;
    border-radius: 50%;
  }

  .site-header__nav,
  .site-header__nav--right,
  .site-header.is-open .site-header__nav,
  .site-header.is-open .site-header__nav--right {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 0;
  }

  .site-header.is-open .site-header__nav,
  .site-header.is-open .site-header__nav--right {
    display: flex;
  }

  .site-header.is-open .site-header__nav:first-of-type {
    padding-top: 8px;
  }

  .site-header .nav-item,
  .site-header__nav>a:not(.site-header__brand),
  .site-header .nav-item>button,
  .site-header .btn,
  .site-header__nav--right>.icon-link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    flex-basis: auto;
  }

  .site-header__nav>a:not(.btn):not(.site-header__brand),
  .site-header .nav-item>button,
  .site-header .btn,
  .site-header__nav--right>.icon-link {
    display: inline-flex;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    align-items: center;
    justify-content: flex-start;
    border-radius: var(--radius-pill);
    padding: 0 14px;
    font-size: 13px;
    line-height: 18px;
    white-space: nowrap;
  }

  .site-header__nav--right>.icon-link {
    aspect-ratio: auto;
    gap: 10px;
    overflow: visible;
    color: var(--color-white);
    background: rgba(255, 255, 255, .08);
  }

  .site-header__nav--right>.icon-link img {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
  }

  .site-header.is-open .site-header__nav--right>.icon-link::after {
    content: attr(aria-label);
    display: inline-block;
    min-width: 0;
    color: currentColor;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  .site-header__nav--right>.icon-link:hover,
  .site-header__nav--right>.icon-link:focus-visible {
    background: var(--color-brand-forest);
  }

  .site-header .nav-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    border-radius: 12px;
  }

  .site-header .nav-menu a {
    padding: 9px 12px;
    font-size: 13px;
    line-height: 18px;
  }
}

/* Services action row alignment. */
@media (min-width: 768px) {
  .services__actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .services__button {
    width: auto;
    min-width: 229px;
    flex: 0 0 auto;
  }

  .services__rule {
    display: block;
    flex: 1 1 auto;
    min-width: 60px;
  }

  .services__controls {
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .services__actions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }

  .services__button {
    width: auto;
    min-width: 0;
    max-width: calc(100vw - 48px);
    flex: 0 0 auto;
  }

  .services__rule {
    display: none;
  }

  .services__controls {
    display: flex;
    width: auto;
    justify-content: center;
    margin-left: 0;
  }
}

/* Desktop contact form hard lock: match Figma from 1200px through 1919px. */
@media (min-width: 1200px) and (max-width: 1919px) {
  .faq-contact #contact.contact-panel {
    display: grid;
    width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1560px));
    max-width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1560px));
    min-height: 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    gap: clamp(16px, 1.25vw, 24px);
    align-items: stretch;
    margin: 0 auto;
    padding: clamp(14px, 1.15vw, 22px);
    border-radius: 18px;
    overflow: hidden;
    background: #f1f1f1;
  }

  .faq-contact #contact .contact-panel__content {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: clamp(430px, 30vw, 560px);
    height: auto;
    flex-direction: column;
    justify-content: center;
    border-radius: 14px;
    padding: clamp(30px, 3.35vw, 58px);
    background: var(--color-white);
  }

  .faq-contact #contact .contact-panel__eyebrow {
    margin: 0 0 clamp(14px, 1.1vw, 22px);
    color: var(--color-brand-forest);
    font-size: clamp(10px, .72vw, 13px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .48em;
    text-transform: uppercase;
  }

  .faq-contact #contact .contact-panel__title {
    width: 100%;
    max-width: 100%;
    margin: 0 0 clamp(20px, 1.75vw, 32px);
    color: #000000;
    font-size: clamp(36px, 3.05vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    white-space: normal;
  }

  .faq-contact #contact .contact-panel__title span,
  .faq-contact #contact .contact-panel__title em {
    color: var(--color-brand-forest);
    font-style: normal;
  }

  .faq-contact #contact .gravity-contact-form,
  .faq-contact #contact .gravity-contact-form .gform_wrapper,
  .faq-contact #contact .gravity-contact-form .gform-body,
  .faq-contact #contact .gravity-contact-form form,
  .faq-contact #contact .gravity-contact-form .gform-theme,
  .faq-contact #contact .gravity-contact-form .gform-theme--framework {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .faq-contact #contact .gravity-contact-form .gform_fields,
  .faq-contact #contact .gravity-contact-form .gform-theme--framework .gform_fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .faq-contact #contact .gravity-contact-form .gfield,
  .faq-contact #contact .gravity-contact-form .ginput_container {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
  }

  .faq-contact #contact #field_1_1,
  .faq-contact #contact #field_1_5 {
    grid-column: 1 / -1;
  }

  .faq-contact #contact #field_1_3 {
    grid-column: 1;
  }

  .faq-contact #contact #field_1_4 {
    grid-column: 2;
  }

  .faq-contact #contact .gravity-contact-form input[type="text"],
  .faq-contact #contact .gravity-contact-form input[type="email"],
  .faq-contact #contact .gravity-contact-form input[type="tel"],
  .faq-contact #contact .gravity-contact-form input[type="url"],
  .faq-contact #contact .gravity-contact-form input[type="number"],
  .faq-contact #contact .gravity-contact-form select,
  .faq-contact #contact .gravity-contact-form textarea,
  .faq-contact #contact .gravity-contact-form .gform-theme--framework input[type="text"],
  .faq-contact #contact .gravity-contact-form .gform-theme--framework input[type="email"],
  .faq-contact #contact .gravity-contact-form .gform-theme--framework input[type="tel"],
  .faq-contact #contact .gravity-contact-form .gform-theme--framework textarea {
    display: block;
    width: 100%;
    min-height: clamp(40px, 2.9vw, 50px);
    height: clamp(40px, 2.9vw, 50px);
    margin: 0;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 7px;
    padding: 9px 16px;
    color: #0c0e12;
    background: #f7f7f7;
    box-shadow: none;
    font-family: var(--font-sans);
    font-size: clamp(14px, .95vw, 18px);
    font-weight: 400;
    line-height: 1.35;
  }

  .faq-contact #contact .gravity-contact-form textarea,
  .faq-contact #contact .gravity-contact-form .gform-theme--framework textarea {
    min-height: clamp(130px, 10.8vw, 190px);
    height: clamp(130px, 10.8vw, 190px);
    resize: vertical;
  }

  .faq-contact #contact .gravity-contact-form input::placeholder,
  .faq-contact #contact .gravity-contact-form textarea::placeholder {
    color: #0c0e12;
    opacity: 1;
  }

  .faq-contact #contact .gravity-contact-form .gform_footer,
  .faq-contact #contact .gravity-contact-form .gform_page_footer {
    display: flex;
    justify-content: flex-start;
    margin: clamp(20px, 2vw, 34px) 0 0;
    padding: 0;
  }

  .faq-contact #contact #gform_submit_button_1,
  .faq-contact #contact .gravity-contact-form .gform_button,
  .faq-contact #contact .gravity-contact-form input[type="submit"],
  .faq-contact #contact .gravity-contact-form button[type="submit"],
  .faq-contact #contact .gravity-contact-form .gform-theme--framework .gform_button,
  .faq-contact #contact .gravity-contact-form .gform-theme--framework input[type="submit"] {
    display: inline-flex;
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 52px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 0 24px;
    color: var(--color-white);
    background: var(--color-brand-forest);
    box-shadow: var(--shadow-button);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    appearance: none;
    cursor: pointer;
  }

  .faq-contact #contact #gform_submit_button_1:hover,
  .faq-contact #contact #gform_submit_button_1:focus-visible {
    background: #004d20;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
  }

  .faq-contact #contact .contact-panel__media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: clamp(430px, 30vw, 560px);
    height: auto;
    align-self: stretch;
    border-radius: 14px;
    overflow: hidden;
  }

  .faq-contact #contact .contact-panel__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: clamp(430px, 30vw, 560px);
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    transform: none;
  }
}

/* Canonical Get In Touch design across all viewport widths. */
.site-main .faq-contact #contact.contact-panel {
  display: grid;
  width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1720px));
  max-width: min(calc(100vw - (var(--gutter, 40px) * 2)), var(--container, 1720px));
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin: clamp(40px, 5vw, 100px) auto 0;
  padding: 12px;
  border-radius: 18px;
  overflow: hidden;
  color: #000000;
  background: #f1f1f1;
  box-sizing: border-box;
}

.site-main .faq-contact #contact .contact-panel__content {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: auto;
  flex-direction: column;
  justify-content: center;
  border-radius: 14px;
  padding: clamp(24px, 4.5vw, 58px);
  background: var(--color-white);
  box-sizing: border-box;
}

.site-main .faq-contact #contact .contact-panel__eyebrow {
  margin: 0 0 clamp(12px, 1.1vw, 20px);
  color: var(--color-brand-forest);
  font-size: clamp(10px, .72vw, 13px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .48em;
  text-transform: uppercase;
}

.site-main .faq-contact #contact .contact-panel__title {
  width: 100%;
  max-width: 100%;
  margin: 0 0 clamp(18px, 1.8vw, 32px);
  color: #000000;
  font-size: clamp(32px, 3.1vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: normal;
}

.site-main .faq-contact #contact .contact-panel__title span,
.site-main .faq-contact #contact .contact-panel__title em {
  color: var(--color-brand-forest);
  font-style: normal;
}

.site-main .faq-contact #contact .gravity-contact-form,
.site-main .faq-contact #contact .gravity-contact-form .gform_wrapper,
.site-main .faq-contact #contact .gravity-contact-form .gform-body,
.site-main .faq-contact #contact .gravity-contact-form form,
.site-main .faq-contact #contact .gravity-contact-form .gform-theme,
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.site-main .faq-contact #contact .gravity-contact-form .gform_heading,
.site-main .faq-contact #contact .gravity-contact-form .gfield_label {
  display: none;
}

.site-main .faq-contact #contact .gravity-contact-form .gform_fields,
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework .gform_fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.site-main .faq-contact #contact .gravity-contact-form .gfield,
.site-main .faq-contact #contact .gravity-contact-form .ginput_container {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.site-main .faq-contact #contact #field_1_1,
.site-main .faq-contact #contact #field_1_3,
.site-main .faq-contact #contact #field_1_4,
.site-main .faq-contact #contact #field_1_5 {
  grid-column: 1 / -1;
}

.site-main .faq-contact #contact .gravity-contact-form input[type="text"],
.site-main .faq-contact #contact .gravity-contact-form input[type="email"],
.site-main .faq-contact #contact .gravity-contact-form input[type="tel"],
.site-main .faq-contact #contact .gravity-contact-form input[type="url"],
.site-main .faq-contact #contact .gravity-contact-form input[type="number"],
.site-main .faq-contact #contact .gravity-contact-form select,
.site-main .faq-contact #contact .gravity-contact-form textarea,
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework input[type="text"],
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework input[type="email"],
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework input[type="tel"],
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework textarea {
  display: block;
  width: 100%;
  min-height: clamp(40px, 2.65vw, 50px);
  height: clamp(40px, 2.65vw, 50px);
  margin: 0;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 7px;
  padding: 9px 16px;
  color: #0c0e12;
  background: #f7f7f7;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: clamp(13px, .95vw, 18px);
  font-weight: 400;
  line-height: 1.35;
}

.site-main .faq-contact #contact .gravity-contact-form textarea,
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework textarea {
  min-height: clamp(124px, 10.25vw, 190px);
  height: clamp(124px, 10.25vw, 190px);
  resize: vertical;
}

.site-main .faq-contact #contact .gravity-contact-form input::placeholder,
.site-main .faq-contact #contact .gravity-contact-form textarea::placeholder {
  color: #0c0e12;
  opacity: 1;
}

.site-main .faq-contact #contact .gravity-contact-form .gform_footer,
.site-main .faq-contact #contact .gravity-contact-form .gform_page_footer {
  display: flex;
  justify-content: flex-start;
  margin: clamp(20px, 2vw, 34px) 0 0;
  padding: 0;
}

.site-main .faq-contact #contact #gform_submit_button_1,
.site-main .faq-contact #contact .gravity-contact-form .gform_button,
.site-main .faq-contact #contact .gravity-contact-form input[type="submit"],
.site-main .faq-contact #contact .gravity-contact-form button[type="submit"],
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework .gform_button,
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework input[type="submit"] {
  display: inline-flex;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  height: 52px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 24px;
  color: var(--color-white);
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  appearance: none;
  cursor: pointer;
}

.site-main .faq-contact #contact #gform_submit_button_1:hover,
.site-main .faq-contact #contact #gform_submit_button_1:focus-visible {
  background: #004d20;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}

.site-main .faq-contact #contact .contact-panel__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 260px;
  height: auto;
  align-self: stretch;
  border-radius: 14px;
  overflow: hidden;
  box-sizing: border-box;
}

.site-main .faq-contact #contact .contact-panel__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
}

@media (min-width: 768px) {

  .site-main .faq-contact #contact .gravity-contact-form .gform_fields,
  .site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework .gform_fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .site-main .faq-contact #contact #field_1_1,
  .site-main .faq-contact #contact #field_1_5 {
    grid-column: 1 / -1;
  }

  .site-main .faq-contact #contact #field_1_3 {
    grid-column: 1;
  }

  .site-main .faq-contact #contact #field_1_4 {
    grid-column: 2;
  }
}

@media (min-width: 992px) {
  .site-main .faq-contact #contact.contact-panel {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    gap: clamp(14px, 1.25vw, 24px);
    padding: clamp(12px, 1.15vw, 22px);
  }

  .site-main .faq-contact #contact .contact-panel__content,
  .site-main .faq-contact #contact .contact-panel__media,
  .site-main .faq-contact #contact .contact-panel__media img {
    min-height: clamp(390px, 28vw, 560px);
  }
}

@media (min-width: 1200px) {
  .site-main .faq-contact #contact.contact-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  }
}

/* Final contact section lock: keep the Figma card proportions consistent. */
.site-main .faq-contact #contact.contact-panel {
  --contact-pad: clamp(10px, 1.25vw, 24px);
  --contact-radius: 18px;
  --contact-inner-radius: 14px;
  display: grid;
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  max-width: 1720px;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--contact-pad);
  align-items: stretch;
  margin: var(--section-y) auto 0;
  padding: var(--contact-pad);
  border-radius: var(--contact-radius);
  overflow: hidden;
  background: #f1f1f1;
}

.site-main .faq-contact #contact .contact-panel__content {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--contact-inner-radius);
  padding: clamp(24px, 3.1vw, 58px);
  background: #ffffff;
  box-sizing: border-box;
  container-type: inline-size;
}

.site-main .faq-contact #contact .contact-panel__eyebrow {
  margin: 0 0 clamp(10px, 1.15vw, 28px);
  color: var(--color-brand-forest);
  font-size: clamp(9px, .72vw, 16px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .48em;
}

.site-main .faq-contact #contact .contact-panel__title {
  width: 100%;
  max-width: 100%;
  margin: 0 0 clamp(16px, 1.9vw, 40px);
  color: #000000;
  font-size: clamp(24px, 6.15cqw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-main .faq-contact #contact .contact-panel__title span,
.site-main .faq-contact #contact .contact-panel__title em {
  color: var(--color-brand-forest);
}

.site-main .faq-contact #contact .gravity-contact-form,
.site-main .faq-contact #contact .contact-card.gravity-contact-form,
.site-main .faq-contact #contact #gform_wrapper_1,
.site-main .faq-contact #contact #gform_1,
.site-main .faq-contact #contact #gform_fields_1 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
}

.site-main .faq-contact #contact #gform_fields_1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(8px, .65vw, 12px);
}

.site-main .faq-contact #contact #field_1_1,
.site-main .faq-contact #contact #field_1_3,
.site-main .faq-contact #contact #field_1_4,
.site-main .faq-contact #contact #field_1_5 {
  min-width: 0;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
}

.site-main .faq-contact #contact #field_1_6 {
  display: none;
}

.site-main .faq-contact #contact #gform_1 input:not([type="submit"]),
.site-main .faq-contact #contact #gform_1 textarea,
.site-main .faq-contact #contact #gform_1 select {
  width: 100%;
  max-width: 100%;
  min-height: clamp(40px, 2.65vw, 56px);
  height: clamp(40px, 2.65vw, 56px);
  margin: 0;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 7px;
  padding: 9px clamp(12px, 1.05vw, 21px);
  color: #0c0e12;
  background: #f7f7f7;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: clamp(12px, .95vw, 20px);
  font-weight: 400;
  line-height: 1.35;
}

.site-main .faq-contact #contact #gform_1 textarea {
  min-height: clamp(110px, 9.7vw, 207px);
  height: clamp(110px, 9.7vw, 207px);
  resize: vertical;
}

.site-main .faq-contact #contact #gform_1 input::placeholder,
.site-main .faq-contact #contact #gform_1 textarea::placeholder {
  color: #0c0e12;
  opacity: 1;
}

.site-main .faq-contact #contact #gform_1 .gform_footer,
.site-main .faq-contact #contact #gform_1 .gform_page_footer {
  display: flex;
  justify-content: flex-start;
  margin: clamp(16px, 2vw, 40px) 0 0;
  padding: 0;
}

html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button {
  display: inline-flex;
  width: clamp(92px, 8.4vw, 161px);
  min-width: clamp(92px, 8.4vw, 161px);
  max-width: clamp(92px, 8.4vw, 161px);
  height: clamp(42px, 3.3vw, 63px);
  min-height: clamp(42px, 3.3vw, 63px);
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 clamp(18px, 1.65vw, 32px);
  color: #ffffff;
  background: var(--color-brand-forest);
  background-color: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button:hover,
html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button:focus-visible {
  color: #ffffff;
  background: #004d20;
  background-color: #004d20;
  transform: translateY(-2px);
}

/* ACF WYSIWYG wrapper corrections: preserve the original section typography. */
.site-main .technology__eyebrow {
  color: var(--color-brand-forest);
}

.site-main .technology__summary,
.site-main .technology__summary p {
  margin: 0;
  color: #000000;
}

.site-main .location .location__text,
.site-main .location .location__text p {
  color: var(--color-white);
}

.site-main .location .location__text {
  margin: 0 0 34px;
}

.site-main .location .location__text p {
  margin: 0;
}

/* Keep dynamic service-card text in the original card content flow. */
.site-main .services .service-card .service-card__text {
  position: static;
  z-index: auto;
  inset: auto;
  width: 100%;
}

.site-main .services .service-card .service-card__text p {
  width: 100%;
  margin: 0;
  color: var(--color-white);
}

/* Services is intentionally a full-width Figma band, separate from the shared page rail. */
.site-main .services {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: 0;
}

.site-main .services .services__inner {
  width: min(calc(100vw - 58px), 1861px);
  max-width: 1861px;
  margin-inline: auto;
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .site-main .services .services__track {
    --services-card-width: calc((100% - (var(--services-card-gap) * 2)) / 3);
  }
}

@media (min-width: 1366px) {

  .site-header,
  .site-header.is-open {
    top: 28px;
  }
}

@media (max-width: 991px) {
  .site-main .services .services__inner {
    width: min(calc(100vw - 32px), 1861px);
  }
}

@media (max-width: 575px) {
  .site-main .services .services__inner {
    width: min(calc(100vw - 28px), 1861px);
  }
}

.site-main .faq-contact #contact .contact-panel__media {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: clamp(240px, 42vw, 480px);
  border-radius: var(--contact-inner-radius);
  overflow: hidden;
}

.site-main .faq-contact #contact .contact-panel__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: clamp(240px, 42vw, 480px);
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .site-main .faq-contact #contact #gform_fields_1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(10px, .85vw, 16px);
    row-gap: clamp(8px, .65vw, 12px);
  }

  .site-main .faq-contact #contact #field_1_3 {
    grid-column: 1;
  }

  .site-main .faq-contact #contact #field_1_4 {
    grid-column: 2;
  }
}

@media (min-width: 992px) {
  .site-main .faq-contact #contact.contact-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  }

  .site-main .faq-contact #contact .contact-panel__content,
  .site-main .faq-contact #contact .contact-panel__media,
  .site-main .faq-contact #contact .contact-panel__media img {
    min-height: clamp(390px, 31vw, 664px);
  }
}

@media (min-width: 1200px) and (max-width: 1699px) {
  .site-main .faq-contact #contact.contact-panel {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 46%);
  }

  .site-main .faq-contact #contact .contact-panel__content {
    padding: clamp(32px, 2.55vw, 44px);
  }

  .site-main .faq-contact #contact .contact-panel__title {
    font-size: clamp(26px, 5.5cqw, 52px);
  }
}

@media (min-width: 1700px) {
  .site-main .faq-contact #contact.contact-panel {
    grid-template-columns: minmax(0, 1fr) minmax(640px, 749px);
  }
}

@media (max-width: 767px) {
  .site-main .faq-contact #contact.contact-panel {
    width: min(calc(100% - 32px), var(--container));
    margin-top: 40px;
  }

  .site-main .faq-contact #contact .contact-panel__content {
    padding: 24px 20px;
  }

  .site-main .faq-contact #contact .contact-panel__title {
    font-size: clamp(22px, 6.1cqw, 36px);
  }

  html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    height: 46px;
    min-height: 46px;
    font-size: 13px;
  }
}

/* Final app download artwork lock: match the Figma crop and remove excess lime space. */
.site-main .app-download {
  overflow: hidden;
  padding-top: var(--section-y);
  padding-bottom: 0;
}

.site-main .app-download__inner {
  width: min(calc(100% - (var(--gutter) * 2)), 1720px);
  min-height: 0;
  align-items: end;
}

.site-main .app-download__content {
  align-self: center;
  padding-top: 0;
  padding-bottom: clamp(34px, 3.2vw, 64px);
}

.site-main .app-download__media {
  display: flex;
  width: min(100%, 820px);
  max-width: 100%;
  align-self: end;
  justify-self: end;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: clamp(14px, 2.1vw, 40px);
  margin-bottom: -3px;
  overflow: visible;
  transform: none;
}

.site-main .app-download__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 909 / 638;
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
  box-shadow: none;
  transform: translateY(3px);
}

@media (min-width: 1400px) {
  .site-main .app-download__inner {
    grid-template-columns: minmax(0, 820px) minmax(620px, 820px);
    gap: clamp(40px, 4vw, 80px);
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .site-main .app-download__inner {
    grid-template-columns: minmax(0, 700px) minmax(460px, 1fr);
    gap: 32px;
  }

  .site-main .app-download__media {
    width: min(100%, 610px);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .site-main .app-download__inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 48%);
    gap: 28px;
  }

  .site-main .app-download__media {
    width: min(100%, 540px);
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .site-main .app-download__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-main .app-download__content {
    align-self: auto;
    padding-bottom: 0;
  }

  .site-main .app-download__media {
    width: min(100%, 680px);
    justify-self: center;
    justify-content: center;
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .site-main .app-download__media {
    width: calc(100% + 28px);
    max-width: none;
    margin-right: -14px;
    margin-left: -14px;
  }
}

/* Final button typography override: button labels should render medium, not bold. */
html body :where(.btn,
  .service-card__button,
  .services__button,
  .technology__button,
  .benefits__button,
  .lesson-banner__button,
  .faq-contact__button,
  .gform_button,
  input[type="submit"],
  button[type="submit"]) {
  font-weight: 500 !important;
}

/* @media (max-width: 1799px) {
  .site-main .app-download {
    padding-top: 100px !important;
  }

  
} */

@media (max-width: 1866px) {
  .site-main .app-download {
    padding-top: 72px !important;
  }
}

@media (max-width: 767px) {
  .site-main .app-download {
    padding-top: 40px !important;
  }
}

/* Technology section alignment lock. */
.site-main .technology__eyebrow {
  color: var(--color-brand-forest);
}

@media (min-width: 1200px) {
  .site-main .technology__inner {
    display: grid;
    /* grid-template-columns: minmax(0, 1.48fr) minmax(0, 1fr); */
    /* column-gap: clamp(56px, 4.15vw, 80px); */
    align-items: start;
  }

  .site-main .technology__column {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-main .technology__column--primary {
    gap: clamp(36px, 2.75vw, 48px);
  }

  .site-main .technology__column--secondary {
    gap: clamp(34px, 2.6vw, 46px);
  }

  .site-main .technology__intro {
    width: 100%;
    gap: clamp(24px, 1.65vw, 32px);
  }

  .site-main .technology__heading {
    width: 100%;
    gap: clamp(16px, 1.15vw, 22px);
  }

  .site-main .technology__title {
    width: 100%;
    max-width: 100%;
  }

  .site-main .technology__summary,
  .site-main .technology__summary p {
    width: 100%;
    max-width: 100%;
  }

  .site-main .technology__content {
    width: 100%;
    gap: clamp(28px, 2vw, 38px);
  }

  .site-main .technology__copy {
    width: 100%;
    gap: clamp(24px, 1.9vw, 34px);
  }

  .site-main .technology__copy p {
    width: 100%;
    max-width: 100%;
    color: #0c0e12;
  }

  .site-main .technology__media--main {
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 993 / 591;
  }

  .site-main .technology__media--secondary {
    width: 100%;
    height: auto;
    align-self: start;
    margin-top: 0;
    aspect-ratio: 648 / 397;
  }
}

@media (min-width: 1700px) {
  .site-main .technology__inner {
    /* grid-template-columns: 993px 648px; */
    column-gap: 79px;
  }

  .site-main .technology__title {
    font-size: 68px;
    line-height: 74px;
    letter-spacing: -2px;
  }

  .site-main .technology__summary,
  .site-main .technology__summary p,
  .site-main .technology__copy p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .site-main .technology__inner {
    /* grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr); */
    column-gap: 44px;
  }

  .site-main .technology__content {
    gap: 26px;
  }

  .site-main .technology__copy {
    gap: 22px;
  }

  .site-main .technology__summary,
  .site-main .technology__summary p,
  .site-main .technology__copy p {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 1199px) {
  .site-main .technology__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-main .technology__column {
    display: contents;
  }

  .site-main .technology__intro,
  .site-main .technology__content,
  .site-main .technology__media--main,
  .site-main .technology__media--secondary {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  /* .site-main .technology__summary,
  .site-main .technology__summary p {
    color: #5d6866;
  } */
}

/* Dark green CTA hover: flip to lime, matching the Figma button state. */
html body .site-main :where(.btn--dark,
  .services__button,
  .technology__button,
  .benefits__button,
  .lesson-banner__button,
  .faq-contact__button,
  .gform_button,
  input[type="submit"],
  button[type="submit"]):hover,
html body .site-main :where(.btn--dark,
  .services__button,
  .technology__button,
  .benefits__button,
  .lesson-banner__button,
  .faq-contact__button,
  .gform_button,
  input[type="submit"],
  button[type="submit"]):focus-visible,
html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button:hover,
html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button:focus-visible {
  color: var(--color-brand-forest) !important;
  background: var(--color-brand-lime) !important;
  background-color: var(--color-brand-lime) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
}

/* Simulation video arrows stay present at the edges, and hide only when there is no overflow. */
.site-main .video-section__control:disabled,
.site-main .video-section__control[aria-disabled="true"],
.site-main .video-section__control.is-disabled {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  cursor: default;
  transform: none;
}

.site-main .video-section__control:not(:disabled):not([aria-disabled="true"]):not(.is-disabled) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
}

.site-main .video-section__control.is-unavailable {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 992px) {
  .site-main .video-section__carousel {
    right: 0;
    width: 648px;
    max-width: calc(100vw - 40px);
  }

  .site-main .video-section__thumbs {
    width: 648px;
    max-width: 100%;
  }
}


/* Zero spacing utilities. */
.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.px-0 {
  padding-right: 0;
  padding-left: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

/* Download app section: final Figma-aligned lock. */
.site-main .app-download {
  min-height: 0;
  padding: clamp(56px, 4.9vw, 92px) 0 0 !important;
  color: #020705;
  background: var(--color-brand-lime);
}

.site-main .app-download__inner {
  display: grid;
  width: min(calc(100% - (var(--gutter) * 2)), 1720px);
  min-height: 0;
  grid-template-columns: minmax(0, 790px) minmax(540px, 820px);
  align-items: end;
  gap: clamp(34px, 4.2vw, 80px);
  margin-inline: auto;
  padding-bottom: 0 !important;
}

.site-main .app-download__content {
  align-self: start;
  max-width: 790px;
  padding: 0 0 clamp(46px, 4.1vw, 78px);
}

.site-main .app-download__title {
  max-width: none;
  margin: 0 0 8px;
  color: #020705;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(42px, 3.35vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-main .app-download__title span {
  color: var(--color-brand-forest);
}

.site-main .app-download .app-download__copy,
.site-main .app-download .app-download__copy p {
  max-width: 770px;
  margin: 0;
  color: #020705;
  font-size: clamp(14px, .94vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.site-main .app-download__features {
  margin-top: clamp(20px, 1.8vw, 30px);
}

.site-main .app-download__features h3 {
  margin: 0 0 16px;
  color: #020705;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.site-main .app-download__features ul {
  display: grid;
  max-width: 790px;
  grid-template-columns: repeat(3, max-content);
  column-gap: clamp(24px, 2.35vw, 44px);
  row-gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-main .app-download__features li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #020705;
  font-size: clamp(13px, .84vw, 16px);
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.site-main .app-download__feature-icon {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border-color: #020705;
}

.site-main .app-download__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(26px, 1.9vw, 36px);
}

.site-main .app-download__stores a {
  width: 181px;
  height: 55px;
  border-radius: 7px;
}

.site-main .app-download__stores img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-main .app-download__media {
  display: flex;
  width: min(100%, 820px);
  align-self: end;
  justify-self: end;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0 0 -3px;
  overflow: visible;
}

.site-main .app-download__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 909 / 638;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(3px);
}

@media (min-width: 1400px) {
  .site-main .app-download__features li:nth-child(4) {
    grid-column: 1;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .site-main .app-download__inner {
    grid-template-columns: minmax(0, 575px) minmax(0, 540px);
    gap: 28px;
  }

  .site-main .app-download__features ul {
    grid-template-columns: repeat(2, max-content);
  }

  .site-main .app-download__media {
    width: min(100%, 540px);
  }
}

@media (max-width: 1199px) {
  .site-main .app-download__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-main .app-download__content {
    max-width: 790px;
    padding-bottom: 0;
  }

  .site-main .app-download__features ul {
    grid-template-columns: repeat(2, max-content);
  }

  .site-main .app-download__media {
    width: min(100%, 680px);
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .site-main .app-download {
    padding-top: 40px !important;
  }

  .site-main .app-download__features ul {
    grid-template-columns: 1fr;
  }

  .site-main .app-download__features li {
    white-space: normal;
  }

  .site-main .app-download__stores a {
    width: 151px;
    height: 46px;
  }
}

@media (min-width: 1400px) {
  .site-main .app-download {
    min-height: 688px;
    margin-top: 0;
    padding: 0 !important;
  }

  .site-main .app-download__inner {
    position: relative;
    display: block;
    width: min(calc(100vw - 200px), 1720px);
    min-height: 688px;
    margin-inline: auto;
    padding: 0 !important;
  }

  .site-main .app-download__content {
    position: relative;
    z-index: 2;
    width: 910px;
    max-width: 910px;
    padding: 86px 0 0;
  }

  .site-main .app-download__title {
    margin: 0 0 10px;
    font-size: 72px;
    line-height: 78px;
  }

  .site-main .app-download .app-download__copy,
  .site-main .app-download .app-download__copy p {
    width: 900px;
    max-width: 900px;
    font-size: 21px;
    line-height: 31px;
  }

  .site-main .app-download__features {
    margin-top: 32px;
  }

  .site-main .app-download__features h3 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 34px;
  }

  .site-main .app-download__features ul {
    position: relative;
    display: block;
    width: 920px;
    max-width: 920px;
    height: 126px;
  }

  .site-main .app-download__features li {
    position: absolute;
    min-height: 20px;
    font-size: 22px;
    line-height: 24px;
  }

  .site-main .app-download__features li:nth-child(1) {
    top: 0;
    left: 0;
  }

  .site-main .app-download__features li:nth-child(2) {
    top: 0;
    left: 355px;
  }

  .site-main .app-download__features li:nth-child(3) {
    top: 48px;
    left: 0;
  }

  .site-main .app-download__features li:nth-child(4) {
    top: 48px;
    left: 280px;
  }

  .site-main .app-download__features li:nth-child(5) {
    top: 48px;
    left: 582px;
  }

  .site-main .app-download__features li:nth-child(6) {
    top: 96px;
    left: 0;
  }

  .site-main .app-download__features li:nth-child(7) {
    top: 96px;
    left: 347px;
  }

  .site-main .app-download__feature-icon {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .site-main .app-download__stores {
    gap: 12px;
    margin-top: 51px;
  }

  .site-main .app-download__stores a {
    width: 181px;
    height: 55px;
  }

  .site-main .app-download__media {
    position: absolute;
    z-index: 1;
    right: -100px;
    bottom: 0;
    width: 909px;
    height: 638px;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-main .app-download__media img {
    width: 909px;
    max-width: none;
    height: 638px;
    transform: none;
  }
}

@media (min-width: 1399px) and (max-width: 1919px) {
  .site-main .app-download {
    min-height: 35.833333vw;
    margin-top: 0;
    padding: 0 !important;
    overflow: hidden;
  }

  .site-main .app-download__inner {
    position: relative;
    display: block;
    width: 89.583333vw;
    max-width: 89.583333vw;
    min-height: 35.833333vw;
    margin-inline: auto;
    padding: 0 !important;
  }

  .site-main .app-download__content {
    position: relative;
    z-index: 2;
    width: 47.395833vw;
    max-width: 47.395833vw;
    padding: 4.479167vw 0 0;
  }

  .site-main .app-download__title {
    margin: 0 0 .520833vw;
    font-size: 3.75vw;
    line-height: 4.0625vw;
  }

  .site-main .app-download .app-download__copy,
  .site-main .app-download .app-download__copy p {
    width: 46.875vw;
    max-width: 46.875vw;
    font-size: 1.09375vw;
    line-height: 1.614583vw;
  }

  .site-main .app-download__features {
    margin-top: 1.666667vw;
  }

  .site-main .app-download__features h3 {
    margin-bottom: 1.25vw;
    font-size: 1.458333vw;
    line-height: 1.770833vw;
  }

  .site-main .app-download__features ul {
    position: relative;
    display: block;
    width: 47.916667vw;
    max-width: 47.916667vw;
    height: 6.5625vw;
  }

  .site-main .app-download__features li {
    position: absolute;
    min-height: 1.041667vw;
    gap: .416667vw;
    font-size: 1.145833vw;
    line-height: 1.25vw;
    white-space: nowrap;
  }

  .site-main .app-download__features li:nth-child(1) {
    top: 0;
    left: 0;
  }

  .site-main .app-download__features li:nth-child(2) {
    top: 0;
    left: 18.489583vw;
  }

  .site-main .app-download__features li:nth-child(3) {
    top: 2.5vw;
    left: 0;
  }

  .site-main .app-download__features li:nth-child(4) {
    top: 2.5vw;
    left: 14.583333vw;
  }

  .site-main .app-download__features li:nth-child(5) {
    top: 2.5vw;
    left: 30.3125vw;
  }

  .site-main .app-download__features li:nth-child(6) {
    top: 5vw;
    left: 0;
  }

  .site-main .app-download__features li:nth-child(7) {
    top: 5vw;
    left: 18.072917vw;
  }

  .site-main .app-download__feature-icon {
    flex: 0 0 1.145833vw;
    width: 1.145833vw;
    height: 1.145833vw;
  }

  .site-main .app-download__stores {
    gap: .625vw;
    margin-top: 2.65625vw;
  }

  .site-main .app-download__stores a {
    width: 9.427083vw;
    height: 2.864583vw;
  }

  .site-main .app-download__media {
    position: absolute;
    z-index: 1;
    right: -6.25vw;
    bottom: 0;
    width: 47.34375vw;
    height: 33.229167vw;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-main .app-download__media img {
    width: 47.34375vw;
    max-width: none;
    height: 33.229167vw;
    transform: none;
  }
}

/* Final fixed header positioning. */
@media (min-width: 1200px) {

  .site-header,
  .site-header.is-open {
    position: fixed;
    /* top: clamp(20px, 1.5vw, 28px); */
    /* top: clamp(25px, 1.5vw, 28px); */
    top: 26px;
    z-index: 1000;
  }
}

@media (max-width: 1199px) {

  .site-header,
  .site-header.is-open {
    position: fixed;
    top: 8px;
    z-index: 1000;
  }
}

/* Why Teed Up: carry the approved large-screen alignment down through tablet. */
@media (min-width: 768px) and (max-width: 1919px) {
  .site-main .why-teed-up {
    overflow: hidden;
  }

  .site-main .why-teed-up__grid {
    --why-gap: clamp(20px, 2.708333vw, 52px);
    position: relative;
    z-index: 1;
    display: grid;
    /* width: min(calc(100vw - clamp(56px, 10.416667vw, 200px)), 1720px); */
    /* max-width: min(calc(100vw - clamp(56px, 10.416667vw, 200px)), 1720px); */
    grid-template-columns: minmax(0, 553fr) minmax(0, 680fr) minmax(0, 370fr);
    align-items: stretch;
    gap: var(--why-gap);
    margin-inline: auto;
    padding-top: clamp(58px, 5.052083vw, 97px);
    padding-bottom: clamp(82px, 7.96875vw, 153px);
    overflow: visible;
  }

  .site-main .why-teed-up__media {
    margin: 0;
    border-radius: clamp(10px, .833333vw, 16px);
    overflow: hidden;
  }

  .site-main .why-teed-up__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .site-main .why-teed-up__media--primary {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 553 / 804;
  }

  .site-main .why-teed-up__content {
    grid-column: 2 / 4;
    grid-row: 1;
    width: 100%;
    max-width: none;
    padding-top: clamp(0px, 1.615vw, 0px);
  }

  .site-main .why-teed-up__eyebrow {
    margin: 0 0 clamp(12px, 1.09375vw, 21px);
    font-size: clamp(11px, .833333vw, 16px);
    line-height: 1.5;
    letter-spacing: .48em;
  }

  .site-main .why-teed-up__title {
    width: 100%;
    max-width: 100%;
    margin: 0 0 clamp(24px, 2.03125vw, 39px);
    font-size: clamp(28px, 3.4375vw, 66px);
    line-height: 1.1;
    letter-spacing: 0;
  }

  .site-main .why-teed-up__features {
    display: grid;
    width: 61.705989%;
    max-width: 680px;
    margin: 0;
    padding: 0;
  }

  .site-main .why-teed-up__feature {
    min-height: clamp(44px, 3.75vw, 72px);
    grid-template-columns: clamp(22px, 1.666667vw, 32px) minmax(0, 1fr);
    gap: clamp(10px, .833333vw, 16px);
    font-size: clamp(13px, 1.197917vw, 23px);
    line-height: 1.35;
  }

  .site-main .why-teed-up__feature img {
    width: clamp(22px, 1.666667vw, 32px);
    height: clamp(22px, 1.666667vw, 32px);
  }

  .site-main .why-teed-up__media--secondary {
    display: block;
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 0;
    aspect-ratio: 370 / 409;
  }

  .site-main .why-teed-up__decor--top {
    top: clamp(-512px, -26.666667vw, -205px);
    right: clamp(-390px, -1.666667vw, -32px);
    width: clamp(280px, 36.458333vw, 700px);
    height: clamp(390px, 50.833333vw, 976px);
  }

  .site-main .why-teed-up__decor--bottom {
    display: block;
    right: clamp(-54px, -2.8125vw, -22px);
    bottom: clamp(24px, 2.083333vw, 40px);
    width: clamp(180px, 21.197917vw, 407px);
    height: clamp(300px, 35.572917vw, 683px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-main .why-teed-up__grid {
    display: grid;
    width: min(calc(100vw - 56px), 980px);
    max-width: min(calc(100vw - 56px), 980px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(22px, 3.2vw, 34px);
    margin-inline: auto;
    padding-top: clamp(56px, 7vw, 76px);
    padding-bottom: clamp(72px, 8vw, 96px);
    overflow: visible;
  }

  .site-main .why-teed-up__media,
  .site-main .why-teed-up__media--primary {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.18;
  }

  .site-main .why-teed-up__content {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .site-main .why-teed-up__eyebrow {
    margin-bottom: clamp(9px, 1.25vw, 14px);
    font-size: clamp(10px, 1.16vw, 13px);
    line-height: 1.35;
    letter-spacing: .45em;
  }

  .site-main .why-teed-up__title {
    width: 100%;
    max-width: 100%;
    margin-bottom: clamp(18px, 2.45vw, 28px);
    font-size: clamp(34px, 4.35vw, 48px);
    line-height: 1.08;
  }

  .site-main .why-teed-up__features {
    width: 100%;
    max-width: 100%;
  }

  .site-main .why-teed-up__feature {
    min-height: clamp(38px, 4.35vw, 50px);
    grid-template-columns: clamp(20px, 2.25vw, 26px) minmax(0, 1fr);
    gap: clamp(9px, 1.25vw, 14px);
    font-size: clamp(13px, 1.55vw, 18px);
    line-height: 1.25;
  }

  .site-main .why-teed-up__feature img {
    width: clamp(20px, 2.25vw, 26px);
    height: clamp(20px, 2.25vw, 26px);
  }

  .site-main .why-teed-up__media--secondary {
    position: static;
    display: block;
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 1 / 1.18;
  }
}



/* Welcome section: tablet/intermediate layout from the client reference. */
@media (min-width: 768px) and (max-width: 1299px) {
  .site-main .welcome-teed-up__grid {
    display: grid;
    width: min(calc(100vw - clamp(48px, 8vw, 96px)), 980px);
    max-width: min(calc(100vw - clamp(48px, 8vw, 96px)), 980px);
    grid-template-columns: minmax(0, .92fr) minmax(300px, 1fr);
    column-gap: clamp(22px, 3.2vw, 36px);
    row-gap: clamp(24px, 3.2vw, 34px);
    align-items: center;
    margin-inline: auto;
    padding-top: clamp(50px, 6.4vw, 72px);
    padding-bottom: clamp(60px, 7vw, 82px);
    overflow: hidden;
  }

  .site-main .welcome-teed-up__intro,
  .site-main .welcome-teed-up__media,
  .site-main .welcome-teed-up__content {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    margin-left: 0;
    padding-top: 0;
  }

  .site-main .welcome-teed-up__intro {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .site-main .welcome-teed-up__media {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: stretch;
    aspect-ratio: 574 / 655;
    border-radius: clamp(12px, 1.6vw, 20px);
  }

  .site-main .welcome-teed-up__content {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
  }

  .site-main .welcome-teed-up__eyebrow {
    margin-bottom: clamp(18px, 2.6vw, 30px);
    font-size: clamp(12px, 1.28vw, 16px);
    line-height: 1.5;
  }

  .site-main .welcome-teed-up__title {
    width: 100%;
    max-width: 100%;
    margin-bottom: clamp(22px, 3vw, 34px);
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .site-main .welcome-teed-up__summary,
  .site-main .welcome-teed-up__content p {
    width: 100%;
    max-width: 100%;
    font-size: clamp(13px, 1.35vw, 16px);
    line-height: 1.55;
  }

  .site-main .welcome-teed-up__stats {
    width: 100%;
    max-width: 380px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(10px, 1.8vw, 18px);
    margin-top: clamp(28px, 3.6vw, 40px);
    min-height: 0;
  }

  .site-main .welcome-teed-up__divider {
    display: none;
  }

  .site-main .welcome-teed-up__stat,
  .site-main .welcome-teed-up__stat--courses,
  .site-main .welcome-teed-up__stat--bays,
  .site-main .welcome-teed-up__stat--suite {
    width: 100%;
    min-width: 0;
    min-height: 0;
    gap: 10px;
  }

  .site-main .welcome-teed-up__stat img {
    width: clamp(28px, 3.2vw, 38px);
    height: clamp(28px, 3.2vw, 38px);
  }

  .site-main .welcome-teed-up__stat strong {
    font-size: clamp(30px, 3.4vw, 38px);
    line-height: 1;
  }

  .site-main .welcome-teed-up__stat span {
    font-size: clamp(12px, 1.25vw, 15px);
    line-height: 1.25;
    white-space: normal;
  }

  .site-main .welcome-teed-up__content p+p {
    margin-top: clamp(18px, 2.2vw, 26px);
  }

  .site-main .welcome-teed-up__actions {
    gap: 12px;
    margin-top: clamp(28px, 3.5vw, 42px);
  }

  .site-main .welcome-teed-up__actions .btn {
    min-height: clamp(50px, 5vw, 58px);
    padding: 16px 26px;
    font-size: clamp(15px, 1.4vw, 18px);
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .site-main .welcome-teed-up__grid {
    grid-template-columns: minmax(0, .9fr) minmax(260px, 1fr);
  }

  .site-main .welcome-teed-up__title {
    font-size: clamp(30px, 4.4vw, 36px);
  }

  .site-main .welcome-teed-up__stats {
    max-width: 340px;
    column-gap: 8px;
  }
}

/* Services action row: keep the main button centered at every width. */
.site-main .services__actions {
  justify-content: center;
}

.site-main .services__button {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .site-main .services__actions {
    position: relative;
    min-height: 60px;
  }

  .site-main .services__rule {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .site-main .services__controls {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    margin-left: 0;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 767px) {
  .site-main .services__button {
    width: auto;
    max-width: calc(100vw - 48px);
  }
}

/* Technology section: reduce bottom whitespace without changing image alignment. */
.site-main .technology {
  min-height: 0;
  padding-bottom: 0;
}

.site-main .technology__inner {
  min-height: 0;
  grid-template-rows: auto auto;
  padding-bottom: 0;
}

@media (max-width: 1599px) {
  .site-main .technology {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .site-main .technology__inner {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .site-main .technology {
    padding-bottom: 0;
  }
}

/* Technology section: make both images share one responsive image row. */
@media (min-width: 1200px) {
  .site-main .technology__inner {
    --technology-image-height: clamp(420px, 30.8vw, 591px);
    grid-template-columns: minmax(0, 1.68fr) minmax(0, 1fr);
    grid-template-rows: auto var(--technology-image-height);
    row-gap: 30px;
  }

  .site-main .technology__column {
    display: contents;
  }

  .site-main .technology__intro {
    grid-column: 1;
    grid-row: 1;
  }

  .site-main .technology__content {
    grid-column: 2;
    grid-row: 1;
    gap: clamp(14px, 1vw, 20px);
  }

  .site-main .technology__copy {
    gap: clamp(14px, 1vw, 0px);
  }

  .site-main .technology__media--main {
    grid-column: 1;
    grid-row: 2;
  }

  .site-main .technology__media--secondary {
    grid-column: 2;
    grid-row: 2;
  }

  .site-main .technology__media--main,
  .site-main .technology__media--secondary {
    width: 100%;
    height: var(--technology-image-height);
    min-height: 0;
    align-self: start;
    justify-self: stretch;
    margin-top: 0;
    aspect-ratio: auto;
  }
}

/* Booth features: keep each tag on its own line. */
.site-main .booth-card__tags {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.site-main .booth-card__tags span {
  width: max-content;
  max-width: 100%;
}

/* Download app features: consistent 3/2-column alignment. */
.site-main .app-download__features ul {
  display: grid;
  width: 100%;
  max-width: 1040px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
  column-gap: clamp(18px, 1.65vw, 32px);
  row-gap: clamp(12px, 1.2vw, 24px);
  height: auto;
}

.site-main .app-download__features li,
.site-main .app-download__features li:nth-child(n) {
  position: static;
  grid-column: auto;
  grid-row: auto;
  top: auto;
  left: auto;
  min-width: 0;
  align-items: flex-start;
  white-space: normal;
}

@media (max-width: 1919px) {
  .site-main .app-download__features ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 850px;
  }
}

@media (max-width: 767px) {
  .site-main .app-download__features ul {
    grid-template-columns: 1fr;
  }

  .site-main .app-download__features li,
  .site-main .app-download__features li:nth-child(n) {
    white-space: normal;
  }
}

/* Footer brand column: align logo/content/buttons to the Figma left rail. */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
  text-align: left;
}

.site-footer a.site-footer__logo {
  margin-top: 0;
  margin-inline: 0;
}

.site-footer__copy,
.site-footer__copy p {
  text-align: left;
}

.site-footer__actions {
  width: min(100%, 292px);
  margin-inline: 0;
}

.site-footer__contact-item a:not(.btn),
.site-footer__address-link {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.site-footer__address-line {
  display: block;
}

.site-footer__contact-item a:not(.btn):hover,
.site-footer__contact-item a:not(.btn):focus-visible,
.site-footer__address-link:hover,
.site-footer__address-link:focus-visible {
  color: var(--color-brand-forest);
  text-decoration: underline;
  transform: none;
}

.site-footer__contact-item:has(a:hover)::before,
.site-footer__contact-item:has(a:focus-visible)::before,
.site-footer__contact-item:has(a:hover)::after,
.site-footer__contact-item:has(a:focus-visible)::after {
  color: var(--color-brand-forest);
}

/* Footer bottom: payments, legal links, then copyright on separate rows. */
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.site-footer__bottom p {
  order: 3;
  flex: 1 1 100%;
}

.site-footer__payments {
  order: 1;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 100%;
}

.site-footer__legal {
  order: 2;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.site-footer__legal a {
  flex: 0 0 auto;
  padding-inline: clamp(5px, .65vw, 12px);
  font-size: clamp(10px, .78vw, 15px);
  white-space: nowrap;
}

@media (min-width: 1501px) {
  .site-footer__bottom {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
  }

  .site-footer__bottom p {
    order: 1;
    flex: 0 1 auto;
    text-align: left;
  }

  .site-footer__payments {
    order: 2;
    flex: 0 0 auto;
  }

  .site-footer__legal {
    order: 3;
    flex: 0 1 auto;
    justify-content: flex-end;
  }
}

@media (min-width: 1199px) and (max-width: 1500px) {
  .site-footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px clamp(14px, 2vw, 28px);
    text-align: center;
  }

  .site-footer__bottom p {
    order: 3;
    flex: 1 1 100%;
    text-align: center;
  }

  .site-footer__payments {
    order: 1;
    flex: 0 0 auto;
  }

  .site-footer__legal {
    order: 2;
    flex: 0 1 auto;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .site-footer__legal {
    width: 100%;
    overflow: visible;
  }

  .site-footer__legal a {
    padding-inline: 4px;
    font-size: clamp(8px, 2.35vw, 10px);
  }

  .site-footer__payments {
    gap: 6px;
  }

  .site-footer__payments img {
    max-width: clamp(38px, 12vw, 52px);
  }
}

/* Contact panel: keep "Get In Touch With Us" on one line everywhere. */
.site-main .faq-contact #contact .contact-panel__title {
  max-width: 100%;
  overflow: visible;
  /* font-size: clamp(22px, 4.85cqw, 68px); */
  font-size: clamp(23px, 5.85cqw, 68px);
  line-height: 1.08;
  white-space: nowrap;
}

.site-main .faq-contact #contact .contact-panel__content {
  container-type: inline-size;
}

@supports not (font-size: 1cqw) {
  .site-main .faq-contact #contact .contact-panel__title {
    font-size: clamp(22px, 2.75vw, 52px);
  }
}

@media (min-width: 992px) {
  .site-main .faq-contact #contact .contact-panel__title {
    font-size: clamp(24px, 6.15cqw, 68px);
  }
}

/* Short ACF headings should not split just because a highlighted span exists. */
.site-main .is-short-heading {
  max-width: 100%;
  font-size: clamp(32px, 3vw, 56px);
  line-height: 1.1;
  white-space: normal;
}

.site-main .is-short-heading span,
.site-main .is-short-heading em,
.site-main .benefits__title.is-short-heading span,
.site-main .video-section__title.is-short-heading span,
.site-main .welcome-teed-up__title.is-short-heading span,
.site-main .app-download__title.is-short-heading span {
  display: inline;
}

@media (max-width: 1199px) {
  .site-main .is-short-heading {
    font-size: clamp(30px, 5vw, 44px);
  }
}

@media (max-width: 767px) {
  .site-main .is-short-heading {
    font-size: clamp(24px, 6.5vw, 34px);
  }
}

@media (max-width: 479px) {
  .site-main .is-short-heading {
    font-size: clamp(21px, 6vw, 28px);
  }
}

/* Contact form stays aligned to the left content card and never crosses under the image. */
.site-main .faq-contact #contact .contact-panel__content {
  align-items: stretch;
}

.site-main .faq-contact #contact .contact-card.gravity-contact-form,
.site-main .faq-contact #contact .gravity-contact-form,
.site-main .faq-contact #contact .gravity-contact-form .gform_wrapper,
.site-main .faq-contact #contact .gravity-contact-form .gform-body,
.site-main .faq-contact #contact .gravity-contact-form form,
.site-main .faq-contact #contact .gravity-contact-form .gform-theme,
.site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 767px) {

  .site-main .faq-contact #contact .contact-card.gravity-contact-form,
  .site-main .faq-contact #contact .gravity-contact-form,
  .site-main .faq-contact #contact .gravity-contact-form .gform_wrapper,
  .site-main .faq-contact #contact .gravity-contact-form .gform-body,
  .site-main .faq-contact #contact .gravity-contact-form form,
  .site-main .faq-contact #contact .gravity-contact-form .gform-theme,
  .site-main .faq-contact #contact .gravity-contact-form .gform-theme--framework {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) and (max-width: 1699px) {
  .site-main .faq-contact #contact .contact-panel__title {
    font-size: clamp(32px, 3vw, 56px);
  }
}

@media (max-width: 767px) {
  .site-main .faq-contact #contact .contact-panel__title {
    font-size: clamp(22px, 5.85cqw, 34px);
  }
}

/* Keep footer legal links visible on mobile and tablet widths. */
@media (max-width: 1500px) {
  .site-footer__bottom {
    overflow: visible;
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .site-footer__legal {
    width: 100%;
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 0;
    min-width: 0;
    max-width: min(100%, 720px);
    white-space: normal;
  }

  .site-footer__legal a {
    flex: 0 1 auto;
    max-width: 100%;
    padding-inline: 10px;
    font-size: clamp(12px, 1.45vw, 15px);
    line-height: 20px;
    white-space: nowrap;
  }
}

@media (max-width: 575px) {
  .site-footer__legal {
    max-width: 360px;
  }

  .site-footer__legal a {
    padding-inline: 8px;
    font-size: 14px;
    line-height: 20px;
  }
}

/* Figma desktop membership comparison update. */
.site-main .benefits--plans {
  padding: 96px 0 0;
  background: #ffffff;
}

.site-main .benefits--plans .benefits__panel {
  display: flex;
  width: min(100% - 200px, 1721px);
  min-height: 870px;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.site-main .benefits--plans .benefits__intro {
  display: flex;
  max-width: 980px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.site-main .benefits--plans .benefits__eyebrow {
  margin: 0;
  color: var(--color-brand-forest);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-main .benefits--plans .benefits__title {
  width: auto;
  margin: 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 68px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.site-main .benefits--plans .benefits__title span {
  display: inline;
  color: var(--color-brand-forest);
}

.site-main .benefits--plans .benefits__copy {
  display: block;
  max-width: 818px;
}

.site-main .benefits--plans .benefits__copy p {
  width: auto;
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.membership-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(116px, 1fr));
  align-items: center;
  gap: 4px;
  min-height: 54px;
  padding: 6px;
  border: 1px solid rgba(1, 96, 40, .18);
  border-radius: var(--radius-pill);
  background: #f5f7f3;
}

.membership-toggle span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: capitalize;
}

.membership-toggle .is-active {
  color: #ffffff;
  background: var(--color-brand-forest);
}

.membership-plans {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.membership-card {
  display: flex;
  min-height: 503px;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 30px 30px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 20px;
  color: #000000;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .08);
}

.membership-card.is-selected {
  background: var(--color-brand-lime, #e3f956);
}

.membership-card h3 {
  margin: 0 0 24px;
  color: var(--color-brand-forest);
  font-family: "Montserrat", var(--font-sans);
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.membership-card__price {
  margin: 0 0 10px;
  color: var(--color-brand-forest);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.membership-card__price span {
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  line-height: 54px;
}

.membership-card__subtitle {
  min-height: 30px;
  margin: 0 0 28px;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.membership-card__features {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.membership-card__features li {
  position: relative;
  padding-left: 30px;
  color: #171717;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.membership-card__features li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--color-brand-forest);
  content: "\2713";
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.membership-card__actions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

.membership-card__button,
.site-main .benefits--plans .benefits__button {
  display: inline-flex;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 18px 32px;
  color: #ffffff;
  background: var(--color-brand-forest);
  box-shadow: var(--shadow-button);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.membership-card__button:hover,
.site-main .benefits--plans .benefits__button:hover {
  color: #ffffff;
  background: #004d20;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.membership-card__button {
  width: 100%;
}

.membership-card__learn-more {
  display: inline-flex;
  width: 100%;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-brand-forest);
  border-radius: var(--radius-pill);
  padding: 18px 32px;
  color: var(--color-brand-forest);
  background: transparent;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.membership-card__learn-more:hover,
.membership-card__learn-more:focus-visible {
  color: #000000;
  background: var(--color-brand-lime);
  transform: translateY(-2px);
}

.site-main .benefits--plans .benefits__button {
  margin-top: -6px;
}

.lesson-banner__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.lesson-banner__actions .lesson-banner__button {
  margin-top: 0;
}

.lesson-banner__button--secondary {
  color: var(--color-brand-forest);
  background: #ffffff;
}

.lesson-banner__button--secondary:hover {
  color: #ffffff;
}

@media (max-width: 1599px) {
  .site-main .benefits--plans .benefits__panel {
    width: min(100% - 80px, 1420px);
  }

  .site-main .benefits--plans .benefits__title {
    font-size: 58px;
    line-height: 64px;
  }

  .membership-card {
    padding: 30px 24px 26px;
  }

  .membership-card h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .membership-card__price span {
    font-size: 42px;
    line-height: 48px;
  }
}

@media (max-width: 1199px) {
  .site-main .benefits--plans .benefits__panel {
    width: min(100% - 56px, 980px);
  }

  .membership-plans {
    grid-template-columns: 1fr;
    /* max-width: 680px; */
  }

  .membership-card {
    min-height: 0;
  }

  .lesson-banner__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .site-main .benefits--plans {
    padding-top: 64px;
    padding-bottom: 44px;
  }

  .site-main .benefits--plans .benefits__panel {
    width: min(100% - 32px, 980px);
    gap: 34px;
  }

  .site-main .benefits--plans .benefits__title {
    font-size: 42px;
    line-height: 48px;
  }

  .site-main .benefits--plans .benefits__copy p,
  .membership-card__features li {
    font-size: 16px;
    line-height: 26px;
  }

  .membership-toggle {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-card {
    padding: 28px 22px 24px;
  }

  .membership-card h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .membership-card__price span {
    font-size: 38px;
    line-height: 44px;
  }

  .membership-card__button,
  .membership-card__learn-more,
  .site-main .benefits--plans .benefits__button,
  .lesson-banner__actions .lesson-banner__button {
    width: 100%;
    min-height: 56px;
    padding: 16px 22px;
    font-size: 16px;
  }

  .membership-card__actions {
    gap: 10px;
  }

  .lesson-banner__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }
}

/* Mobile footer: match the approved Figma footer composition. */
@media (max-width: 767px) {
  .site-footer {
    overflow: hidden;
    padding-top: 36px;
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, .96) 14%, rgba(224, 248, 255, .9) 66%, rgba(224, 248, 255, .72) 100%);
  }

  .site-footer::before {
    display: none;
  }

  .site-footer__grid {
    display: grid;
    width: min(100% - 48px, 354px);
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
    padding-bottom: 0;
  }

  .site-footer__brand {
    order: 1;
    grid-column: 1 / -1;
    display: flex;
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 42px;
    text-align: left;
  }

  .site-footer a.site-footer__logo {
    margin-bottom: 0;
    margin-inline: 0;
  }

  .site-footer__brand img {
    width: 121px;
    height: 135px;
    object-fit: contain;
  }

  .site-footer__copy,
  .site-footer__copy p {
    max-width: 320px;
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
  }

  .site-footer__actions {
    display: flex;
    width: 100%;
    /* max-width: 354px; */
    flex-direction: row;
    gap: 10px;
    margin-inline: 0;
    margin-top: 0;
  }

  .site-footer .site-footer__actions .btn {
    width: auto;
    min-width: 0;
    min-height: 50px;
    flex: 1 1 0;
    padding: 13px 16px;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
  }

  .site-footer .site-footer__actions .btn:first-child {
    flex: 0 0 137px;
  }

  .site-footer .site-footer__actions .btn:nth-child(2) {
    flex: 1 1 auto;
    padding-inline: 14px;
  }

  .site-footer__newsletter {
    order: 2;
    grid-column: 1 / -1;
    display: block;
    max-width: none;
    margin-top: 0;
    padding: 54px 0 48px;
    border-top: 1px solid rgba(8, 22, 31, .06);
  }

  .site-footer__newsletter h3 {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
  }

  .site-footer__newsletter>p {
    display: none;
  }

  .site-footer__signup {
    gap: 12px;
  }

  .site-footer__field input {
    min-height: 64px;
    padding-right: 54px;
    padding-left: 28px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
  }

  .site-footer__submit {
    min-height: 50px;
    font-size: 16px;
    font-weight: 500;
  }

  .site-footer__nav {
    order: 3;
    grid-column: 1 / -1;
    min-width: 0;
    border-bottom: 1px solid rgba(8, 22, 31, .18);
  }

  .site-footer__nav:nth-of-type(1) {
    grid-column: 1 / -1;
  }

  .site-footer__nav:nth-of-type(2) {
    grid-column: 1 / -1;
  }

  .site-footer h3 {
    margin: 0;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
  }

  .site-footer__menu {
    gap: 13px;
    padding-bottom: 12px;
  }

  .site-footer__accordion-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 57px;
    text-transform: uppercase;
  }

  .site-footer__accordion-toggle::after {
    content: "+";
    color: #000000;
    font-family: var(--font-sans);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
  }

  .site-footer__accordion-toggle[aria-expanded="true"]::after {
    content: "-";
    transform: translateY(-2px);
  }

  .site-footer__accordion-panel[aria-hidden="true"] {
    display: none;
  }

  .site-footer a:not(.btn),
  .site-footer p {
    color: #0c0e12;
    font-size: 16px;
    line-height: 24px;
  }

  .site-footer__contact {
    order: 4;
    grid-column: 1 / -1;
    position: relative;
    z-index: 3;
    margin-top: 0;
    margin-bottom: -1px;
    border-bottom: 1px solid rgba(8, 22, 31, .18);
  }

  .site-footer__contact h3 {
    margin-bottom: 0;
  }

  .site-footer__contact-title {
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    text-transform: none;
  }

  .site-footer__contact-item {
    padding-left: 32px;
    margin-bottom: 13px;
  }

  .site-footer__contact-panel {
    padding-bottom: 12px;
  }

  .site-footer__address-line+.site-footer__address-line {
    white-space: nowrap;
  }

  .site-footer__contact-item::before {
    width: 20px;
    font-size: 20px;
  }

  .site-footer__contact-item--address::before {
    width: 18px;
    height: 20px;
  }

  .site-footer__contact-item--phone::before {
    width: 20px;
    height: 20px;
  }

  .site-footer__course {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 270px;
    margin-top: -22px;
    background: var(--footer-bg-image, url("../img/footer-imgs/harbour-town-hole-17.webp")) center bottom / cover no-repeat;
  }

  .site-footer__course::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(180deg, #e0f8ff 0%, rgba(224, 248, 255, .96) 16%, rgba(224, 248, 255, .7) 34%, rgba(224, 248, 255, .22) 58%, rgba(224, 248, 255, 0) 78%),
      linear-gradient(0deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .1));
    pointer-events: none;
  }

  .site-footer__bottom {
    gap: 20px;
    min-height: 206px;
    padding: 22px 23px 22px;
    background: var(--color-brand-lime);
  }

  .site-footer__payments {
    width: 100%;
    /* max-width: 310px; */
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px 20px;
  }

  .site-footer__payments img {
    max-width: 69px;
    max-height: 16px;
  }

  .site-footer__payments img:first-child {
    max-width: 40px;
  }

  .site-footer__legal {
    display: flex;
    width: 100%;
    max-width: 355px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 16px;
    text-align: center;
  }

  .site-footer__legal a {
    padding-inline: 0;
    color: #0c0e12;
    font-size: 16px;
    line-height: 38px;
    white-space: nowrap;
  }

  .site-footer__legal a+a::before {
    display: none;
  }

  .site-footer__bottom p {
    color: #0c0e12;
    font-size: 16px;
    line-height: 24px;
    overflow-wrap: normal;
  }
}

@media (max-width: 359px) {
  .site-footer__grid {
    width: min(100% - 28px, 354px);
    column-gap: 14px;
  }

  .site-footer__actions {
    gap: 8px;
  }

  .site-footer .site-footer__actions .btn {
    font-size: 13px;
    line-height: 20px;
  }

  .site-footer .site-footer__actions .btn:first-child {
    flex-basis: 122px;
  }

  .site-footer .site-footer__actions .btn:nth-child(2) {
    padding-inline: 10px;
  }

  .site-footer__bottom {
    padding-inline: 14px;
  }

  .site-footer__payments {
    gap: 10px;
  }

  .site-footer__payments img {
    max-width: 54px;
  }

  .site-footer__payments img:first-child {
    max-width: 35px;
  }
}

/* Mobile header: visible call/location controls from the approved Figma nav. */
@media (max-width: 767px) {

  .site-header,
  .site-header.is-open {
    top: 21px;
    left: 23px;
    width: calc(100vw - 45px);
    /* max-width: 357px; */
  }

  .site-header__bar {
    min-height: 54px;
    height: 54px;
    grid-template-columns: 96px minmax(0, 1fr) 38px;
    gap: 0;
    margin-top: 6px;
    padding: 8px 22px 8px 8px;
    overflow: visible;
    border-color: rgba(255, 255, 255, .24);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06)),
      rgba(70, 36, 40, .34);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 18px 42px rgba(0, 0, 0, .2);
  }

  .site-header .site-header__brand {
    position: absolute;
    top: -15px;
    left: -9px;
    z-index: 3;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    transform: none;
  }

  .site-header .site-header__brand img {
    width: 66px;
    height: 66px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header:not(.is-open) .site-header__nav--right {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    transform: translateX(4px);
  }

  .site-header:not(.is-open) .site-header__nav--right>a:not(.icon-link),
  .site-header:not(.is-open) .site-header__nav--right>.nav-item,
  .site-header:not(.is-open) .site-header__nav--right>.btn {
    display: none;
  }

  .site-header:not(.is-open) .site-header__nav--right>a.icon-link {
    display: inline-flex;
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 10px 24px rgba(0, 0, 0, .14);
  }

  .site-header:not(.is-open) .site-header__nav--right>a.icon-link img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    filter: brightness(0) invert(1);
  }

  .site-header.is-open .site-header__nav--right>a.icon-link::after {
    content: attr(aria-label);
    display: inline-block;
    min-width: 0;
    color: currentColor;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  .site-header__toggle,
  .site-header.is-open .site-header__toggle {
    grid-column: 3;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    align-items: flex-end;
    gap: 3px;
    margin-right: -3px;
    padding: 0;
    color: #ffffff;
    background: transparent;
    justify-self: end;
  }

  .site-header__toggle span,
  .site-header.is-open .site-header__toggle span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
  }

  .site-header.is-open .site-header__bar {
    height: auto;
    max-height: calc(100vh - 42px);
    border-radius: 24px;
    /* background:
      linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05)),
      rgba(45, 22, 24, .54); */
      background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05)), rgb(35 33 34);
      
  }

  .site-header.is-open .site-header__nav:first-of-type {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 16px;
  }

  .site-header.is-open .site-header__nav--right {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 6px;
    transform: none;
  }

  .site-header.is-open .site-header__nav--right>a:not(.icon-link),
  .site-header.is-open .site-header__nav--right>.nav-item,
  .site-header.is-open .site-header__nav--right>.btn {
    display: inline-flex;
  }

  .site-header.is-open .site-header__nav .nav-item,
  .site-header.is-open .site-header__nav--right>.nav-item {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-header.is-open .site-header__nav .nav-item>button,
  .site-header.is-open .site-header__nav--right .nav-item>button {
    width: 100%;
  }

  .site-header.is-open .site-header__nav .nav-menu,
  .site-header.is-open .site-header__nav--right .nav-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 6px;
    border-radius: 18px;
    background: rgba(15, 9, 10, .36);
    box-shadow: none;
  }

  .site-header.is-open .site-header__nav .nav-menu.is-open,
  .site-header.is-open .site-header__nav--right .nav-menu.is-open {
    display: grid;
    gap: 6px;
  }

  .site-header.is-open .site-header__nav .nav-menu a,
  .site-header.is-open .site-header__nav--right .nav-menu a {
    width: 100%;
    min-height: 38px;
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  .site-header.is-open .site-header__nav--right>a.icon-link {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    border-radius: var(--radius-pill);
    padding-inline: 14px;
  }
}

/* Mobile typography: align homepage headings and font families to the Figma mobile frame. */
@media (max-width: 767px) {
  .site-main .hero__content {
    width: min(calc(100% - 20px), 383px);
    max-width: 383px;
  }

  .site-main .hero h1 {
    /* /* width: 100%;
    max-width: none; */
    font-family: "Montserrat", var(--font-sans);
    /* font-size: 38px;
    font-weight: 700;
    line-height: 47px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;  */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 47px;
    /* or 124% */
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .site-main .hero h1 span {
    display: block;
  }

  .site-main .hero p {
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  .site-main .why-teed-up__eyebrow,
  .site-main .services__eyebrow,
  .site-main .technology__eyebrow,
  .site-main .lesson-banner__eyebrow,
  .site-main .contact-panel__eyebrow,
  .site-main .faq-contact #contact .contact-panel__eyebrow {
    font-family: "Inter", var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
  }

  .site-main .why-teed-up__title,
  .site-main .welcome-teed-up__title,
  .site-main .services__title,
  .site-main .technology__title,
  .site-main .video-section__title,
  .site-main .benefits--plans .benefits__title,
  .site-main .lesson-banner__title,
  .site-main .location__title,
  .site-main .contact-panel__title,
  .site-main .faq-contact #contact .contact-panel__title {
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .site-main .app-download__title {
    font-family: "Montserrat", var(--font-sans);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0;
  }

  .site-main .membership-card h3 {
    font-family: "Montserrat", var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .site-footer__newsletter h3 {
    font-family: "Montserrat", var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .site-footer__accordion-toggle {
    font-family: "Montserrat", var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: none;
  }
}

/* Mobile hero: match approved Figma composition for title, CTAs, and arrows. */
@media (max-width: 767px) {
  .site-main .hero {
    min-height: 590px;
  }

  .site-main .hero__content {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .site-main .hero h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .site-main .hero p {
    width: 100%;
    margin-bottom: 34px;
    padding-inline: 10px;
    text-align: center;
  }

  .site-main .hero .button-row {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 13px;
    padding-inline: 20px;
  }

  .site-main .hero .btn {
    width: auto;
    min-height: 43px;
    height: 43px;
    padding-top: 0;
    padding-bottom: 0;
    padding-inline: 19px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
  }

  .site-main .hero .slider-controls {
    right: auto;
    bottom: 22px;
    left: 50%;
    gap: 10px;
    transform: translateX(-50%);
  }

  .site-main .hero .slider-controls button {
    width: 46px;
    height: 46px;
  }

  .site-main .hero .slider-controls button img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 575px) {
  .site-main .hero {
    min-height: 512px;
  }

  .site-main .hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .site-main .hero .slider-controls {
    bottom: 14px;
  }
}

/* Mobile Why Teed Up: stack the approved Figma section composition. */
@media (max-width: 767px) {
  .site-main .why-teed-up {
    overflow: hidden;
  }

  .site-main .why-teed-up__grid {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: auto;
    padding: 23px 16px 0;
    overflow: visible;
  }

  .site-main .why-teed-up__media,
  .site-main .why-teed-up__media--primary {
    display: block;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 320 / 334;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .site-main .why-teed-up__media--primary img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .site-main .why-teed-up__media--secondary {
    display: none;
  }

  .site-main .why-teed-up__content {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    padding-top: 30px;
  }

  .site-main .why-teed-up__eyebrow {
    width: 100%;
    max-width: 100%;
    margin: 0 0 11px;
    color: var(--color-brand-forest);
    font-family: "Inter", var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 6px;
  }

  .site-main .why-teed-up__title {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
    font-family: "Montserrat", var(--font-sans);
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
  }

  .site-main .why-teed-up__title span {
    display: block;
    margin-top: 8px;
    color: #000000;
    font-family: "Inter", var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-transform: none;
  }

  .site-main .why-teed-up__features {
    display: grid;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .site-main .why-teed-up__feature {
    min-height: 66px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
  }

  .site-main .why-teed-up__feature img {
    width: 28px;
    height: 28px;
  }

  .site-main .why-teed-up__decor--top {
    top: 315px;
    right: -170px;
    width: 335px;
    height: 465px;
    opacity: .42;
  }

  .site-main .why-teed-up__decor--bottom {
    display: none;
  }
}

/* Mobile Welcome: align to the approved Figma frame. */
@media (max-width: 767px) {
  .site-main .welcome-teed-up {
    overflow: hidden;
    color: var(--color-white);
    background: #00190a;
  }

  .site-main .welcome-teed-up__grid {
    display: grid;
    width: 100%;
    /* max-width: 402px; */
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: auto;
    padding: 50px 25px 50px;
    overflow: visible;
  }

  .site-main .welcome-teed-up__intro,
  .site-main .welcome-teed-up__summary,
  .site-main .welcome-teed-up__stats,
  .site-main .welcome-teed-up__media,
  .site-main .welcome-teed-up__content,
  .site-main .welcome-teed-up__content p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .site-main .welcome-teed-up__intro {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0;
  }

  .site-main .welcome-teed-up__intro::before {
    left: 50%;
    top: 15px;
    width: 367px;
    height: 395px;
    transform: translateX(-50%);
    opacity: 1;
  }

  .site-main .welcome-teed-up__eyebrow {
    display: none;
  }

  .site-main .welcome-teed-up__title {
    width: 100%;
    max-width: 100%;
    margin: 0 0 17px;
    color: var(--color-white);
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .site-main .welcome-teed-up__title span {
    display: inline;
    color: var(--color-brand-lime);
  }

  .site-main .welcome-teed-up__summary {
    margin: 0 auto;
    color: var(--color-white);
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
  }

  .site-main .welcome-teed-up__summary p {
    margin: 0;
  }

  .site-main .welcome-teed-up__stats {
    display: grid;
    width: 100%;
    grid-template-columns: 80px 58px 120px;
    justify-content: space-between;
    align-items: start;
    min-height: 110px;
    margin: 36px 0 0;
    column-gap: 0;
  }

  .site-main .welcome-teed-up__divider {
    display: none;
  }

  .site-main .welcome-teed-up__stat,
  .site-main .welcome-teed-up__stat--courses,
  .site-main .welcome-teed-up__stat--bays,
  .site-main .welcome-teed-up__stat--suite {
    width: 100%;
    min-height: 110px;
    gap: 0;
  }

  .site-main .welcome-teed-up__stat img {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .site-main .welcome-teed-up__stat strong {
    color: var(--color-brand-lime);
    font-family: "Montserrat", var(--font-sans);
    font-size: 40px;
    font-weight: 700;
    line-height: 36px;
  }

  .site-main .welcome-teed-up__stat span {
    margin-top: 15px;
    color: var(--color-white);
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
  }

  .site-main .welcome-teed-up__media {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 353 / 399;
    margin-top: 36px;
    border-radius: 16px;
  }

  .site-main .welcome-teed-up__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .site-main .welcome-teed-up__content {
    grid-column: 1;
    grid-row: 3;
    padding-top: 28px;
  }

  .site-main .welcome-teed-up__content p {
    color: var(--color-white);
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
  }

  .site-main .welcome-teed-up__content p+p {
    margin-top: 28px;
  }

  .site-main .welcome-teed-up__actions {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
  }

  .site-main .welcome-teed-up__actions .btn {
    width: auto;
    min-width: 0;
    min-height: 50px;
    height: 50px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .site-main>section.welcome-teed-up>.welcome-teed-up__grid {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Mobile Services: match Figma stacked cards and centered controls. */
@media (max-width: 767px) {
  .site-main .services {
    padding: 50px 0 58px;
    background: var(--color-white);
  }

  .site-main .services .services__inner {
    /* width: 354px; */
    max-width: calc(100vw - 48px);
    margin-inline: auto;
  }

  .site-main .services__header {
    width: 100%;
    max-width: 100%;
    gap: 24px;
    margin: 0 auto 32px;
    text-align: center;
  }

  .site-main .services__eyebrow {
    font-family: "Inter", var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.8px;
  }

  .site-main .services__title {
    width: 100%;
    max-width: 100%;
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
  }

  .site-main .services__slider {
    width: 100%;
    overflow: visible;
  }

  .site-main .services__track {
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    transition: height .2s ease;
  }

  .site-main .services__page {
    display: grid;
    flex: 0 0 100%;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    scroll-snap-align: start;
  }

  .site-main .services .service-card {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 354 / 393;
    flex: none;
    border-radius: 16px;
    scroll-snap-align: none;
  }

  .site-main .services .service-card::before {
    inset: 6px;
    border-radius: 12px;
    opacity: 1;
  }

  .site-main .services .service-card::after {
    background: linear-gradient(180deg, rgba(0, 34, 14, 0) 5.05%, rgba(0, 34, 14, .4) 35.48%, rgba(0, 34, 14, .8) 85.42%);
  }

  .site-main .services .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .site-main .services .service-card__content {
    left: 24px;
    right: 24px;
    bottom: 27px;
    gap: 16px;
    padding-bottom: 0;
  }

  .site-main .services .service-card h3 {
    width: 100%;
    font-family: "Montserrat", var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0;
  }

  .site-main .services .service-card p {
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  .site-main .services .service-card .service-card__button {
    position: static;
    min-width: 160px;
    min-height: 50px;
    height: 50px;
    padding: 0 24px;
    font-size: 16px;
    line-height: 20px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-main .services__actions {
    width: 100%;
    height: 50px;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
  }

  .site-main .services__button,
  .site-main .services__rule {
    display: none;
  }

  .site-main .services__controls {
    display: flex;
    gap: 8px;
  }

  .site-main .services__control {
    width: 50px;
    height: 50px;
  }
}

/* Mobile Technology: match Figma single-column layout. */
@media (max-width: 767px) {
  .site-main .technology {
    min-height: 0;
    padding: 50px 0 !important;
    background: #f2f2f2;
  }

  .site-main .technology__inner {
    display: grid;
    /* width: 353px; */
    max-width: calc(100vw - 49px);
    grid-template-columns: 1fr;
    gap: 0;
    margin-inline: auto;
    padding: 0 !important;
  }

  .site-main .technology__column {
    display: contents;
  }

  .site-main .technology__intro {
    display: grid;
    width: 100%;
    gap: 28px;
  }

  .site-main .technology__heading {
    display: grid;
    width: 100%;
    gap: 30px;
    text-align: center;
  }

  .site-main .technology__eyebrow {
    width: 100%;
    margin: 0;
    color: var(--color-brand-forest);
    font-family: "Inter", var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.8px;
    text-align: center;
  }

  .site-main .technology__title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
  }

  .site-main .technology__summary,
  .site-main .technology__summary p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: #000000;
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
  }

  .site-main .technology__media--main {
    width: 100%;
    height: auto;
    aspect-ratio: 353 / 229;
    margin-top: 32px;
    border-radius: 16px;
  }

  .site-main .technology__media--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .site-main .technology__column--secondary {
    display: contents;
  }

  .site-main .technology__content {
    display: grid;
    width: 100%;
    gap: 32px;
    margin-top: 32px;
  }

  .site-main .technology__copy {
    display: grid;
    width: 100%;
    gap: 50px;
  }

  .site-main .technology__copy p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: #000000;
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
  }

  .site-main .technology__button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 50px;
    height: 50px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 auto;
  }

  .site-main .technology__media--secondary {
    display: none;
  }
}

/* Mobile golf simulation videos: match Figma frame layout. */
@media (max-width: 767px) {
  .site-main .video-section {
    height: 971px;
    min-height: 971px;
    padding: 0;
    overflow: hidden;
    background: #00190a;
  }

  .site-main .video-section>.container {
    position: relative;
    width: 100%;
    /* max-width: 402px; */
    height: 100%;
    margin-inline: auto;
    padding: 0;
  }

  .site-main .video-section__stage {
    position: absolute;
    inset: 0;
    width: 100%;
    /* height: 980px; */
    background-position: center center, center center;
    background-size: cover, cover;
  }

  .site-main .video-section__stage::after {
    opacity: 0;
  }

  .site-main .video-section__content {
    top: 50px;
    left: 24px;
    width: 354px !important;
    max-width: calc(100vw - 48px);
    height: auto;
    gap: 32px;
    align-items: flex-start;
    text-align: left;
  }

  .site-main .video-section__title {
    width: 243px;
    max-width: 243px;
    color: var(--color-white);
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
  }

  .site-main .video-section__title span {
    display: inline;
    color: var(--color-brand-lime);
  }

  .site-main .video-section__content p {
    /* width: 353px !important;
    max-width: calc(100vw - 49px); */
    color: var(--color-white);
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
  }

  .site-main .video-section__pill {
    top: 372px;
    left: 19px;
    right: auto;
    width: 173px;
    height: 62px;
    gap: 12px;
    padding: 5px 20px 5px 4px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    line-height: 20px;
  }

  .site-main .video-section__pill span {
    width: 52px;
    height: 52px;
  }

  .site-main .video-section__pill img {
    width: 14px;
    height: 14px;
  }

  .site-main .video-section__pill b {
    width: auto;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }

  .site-main .video-section__carousel {
    display: grid;
    top: 514px;
    right: auto;
    bottom: auto;
    left: 24px;
    width: calc(100% - 48px);
    height: auto;
    grid-template-columns: repeat(2, 50px);
    grid-template-areas:
      "thumbs thumbs"
      "prev next";
    justify-content: center;
    gap: 28px 8px;
    overflow: visible;
  }

  .site-main .video-section__thumbs {
    grid-area: thumbs;
    display: flex;
    width: 100%;
    height: auto;
    gap: 20px;
    padding: 0;
    overflow: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .site-main .video-section__thumb-page {
    display: grid;
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
    scroll-snap-align: start;
  }

  .site-main .video-section__thumb {
    width: 100%;
    height: 100%;
    min-height: 0;
    /* border: 0; */
    /* border-radius: 8px; */
    scroll-snap-align: none;
  }

  .site-main .video-section__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

  /* .site-main .video-section__thumb.is-active {
    border-width: 0;
  } */

  .site-main .video-section__control {
    position: static;
    width: 50px;
    height: 50px;
    border-color: transparent;
    background: var(--color-white);
  }

  .site-main .video-section__control--prev {
    grid-area: prev;
  }

  .site-main .video-section__control--next {
    grid-area: next;
    background: var(--color-white);
  }

  .site-main .video-section__control--next:not(:disabled):not([aria-disabled="true"]):not(.is-disabled) {
    background: var(--color-brand-lime);
  }

  .site-main .video-section__control img {
    width: 24px;
    height: 24px;
  }

  .site-main .video-section__control:disabled,
  .site-main .video-section__control[aria-disabled="true"],
  .site-main .video-section__control.is-disabled,
  .site-main .video-section__control.is-unavailable {
    opacity: .55;
    visibility: visible;
    pointer-events: none;
  }

  .site-main .video-section__control:disabled img,
  .site-main .video-section__control[aria-disabled="true"] img,
  .site-main .video-section__control.is-disabled img,
  .site-main .video-section__control.is-unavailable img {
    opacity: .55;
    filter: grayscale(1);
  }
}

/* Mobile membership benefits: match Figma plan comparison cards. */
@media (max-width: 767px) {
  .site-main .benefits--plans {
    padding: 50px 0 60px;
    padding-bottom: 0;
    background: #ffffff;
  }

  .site-main .benefits--plans .benefits__panel {
    /* width: 356px; */
    max-width: calc(100vw - 46px);
    gap: 34px;
    margin-inline: auto;
    padding: 0;
  }

  .site-main .benefits--plans .benefits__intro {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
  }

  .site-main .benefits--plans .benefits__eyebrow {
    color: var(--color-brand-forest);
    font-family: "Inter", var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.8px;
    text-align: left;
  }

  .site-main .benefits--plans .benefits__title {
    width: 100%;
    max-width: 100%;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
  }

  .site-main .benefits--plans .benefits__copy,
  .site-main .benefits--plans .benefits__copy p {
    width: 100%;
    max-width: 100%;
  }

  .site-main .benefits--plans .benefits__copy p {
    color: #000000;
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
  }

  .site-main .benefits--plans .membership-toggle {
    display: flex;
    width: 220px;
    min-height: 27px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    align-self: flex-start;
  }

  .site-main .benefits--plans .membership-toggle span {
    min-height: 0;
    padding: 0;
    color: #000000;
    background: transparent;
    font-family: "Montserrat", var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
  }

  .site-main .benefits--plans .membership-toggle::before {
    order: 2;
    width: 49px;
    height: 27px;
    border-radius: 999px;
    background: var(--color-brand-forest);
    content: "";
  }

  .site-main .benefits--plans .membership-toggle::after {
    position: absolute;
    top: 4px;
    left: 84px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #ffffff;
    content: "";
    transition: transform .2s ease;
  }

  .site-main .benefits--plans .membership-toggle.is-annual::after {
    transform: translateX(22px);
  }

  .site-main .benefits--plans .membership-toggle .is-active {
    order: 1;
    color: #000000;
    background: transparent;
  }

  .site-main .benefits--plans .membership-toggle span:not(.is-active) {
    order: 3;
  }

  .site-main .benefits--plans .membership-plans {
    width: 100%;
    max-width: 100%;
    gap: 25px;
  }

  .site-main .benefits--plans .membership-card {
    width: 100%;
    min-height: 491px;
    padding: 32px 24px;
    border: 0;
    border-radius: 16px;
    background: #f2f2f2;
    box-shadow: none;
  }

  .site-main .benefits--plans .membership-card:nth-child(2),
  .site-main .benefits--plans .membership-card.is-selected {
    background: var(--color-brand-lime, #e3f956);
  }

  .site-main .benefits--plans .membership-card:not(.is-selected),
  .site-main .benefits--plans .membership-card:nth-child(2):not(.is-selected) {
    background: #f2f2f2;
  }

  .site-main .benefits--plans .membership-card h3 {
    margin: 0 0 16px;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .site-main .benefits--plans .membership-card__price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin: 0 0 28px;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
  }

  .site-main .benefits--plans .membership-card__price span {
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
  }

  .site-main .benefits--plans .membership-card__subtitle {
    min-height: 0;
    margin: 0 0 24px;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
  }

  .site-main .benefits--plans .membership-card__features {
    gap: 24px;
    margin: 0 0 40px;
  }

  .site-main .benefits--plans .membership-card__features li {
    min-height: 20px;
    padding-left: 28px;
    color: #0c0e12;
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }

  .site-main .benefits--plans .membership-card__features li::before {
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 0;
    background: transparent url("../svg/membership-check.svg") center / 20px 20px no-repeat;
    color: transparent;
    content: "";
  }

  .site-main .benefits--plans .membership-card__actions {
    gap: 10px;
  }

  .site-main .benefits--plans .membership-card__button,
  .site-main .benefits--plans .membership-card__learn-more {
    min-height: 50px;
    height: 50px;
    margin-top: 0;
    padding: 9px 14px;
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }

  .site-main .benefits--plans .membership-card__learn-more {
    box-shadow: none;
  }

  .site-main .benefits--plans .benefits__button {
    width: 314px;
    max-width: calc(100vw - 88px);
    min-height: 50px;
    height: 50px;
    margin-top: 0;
    padding: 9px 32px;
    color: #000000;
    background: var(--color-brand-lime, #e3f956);
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 32px;
  }
}

/* Mobile Golf Lessons: match Figma frame layout. */
@media (max-width: 767px) {
  .site-main .lesson-banner {
    height: auto;
    min-height: 0;
    padding: 45px 0 198px;
    overflow: hidden;
    background-color: #f1f1f1;
    background-position: top center, top center, bottom center;
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%, 100% 198px;
  }

  .site-main .lesson-banner__inner {
    position: relative;
    display: flex;
    /* width: 402px; */
    /* width: calc(100% - 28px); */
    width: calc(100% - 3em);

    /* max-width: 260px; */
    /* left: 8px; */
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-inline: auto;
    padding: 0;
    overflow: visible;
  }

  .site-main .lesson-banner__heading {
    position: static;
    display: flex;
    /* width: 352px; */
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-main .lesson-banner__eyebrow {
    margin: 0 0 12px;
    color: var(--color-brand-forest);
    font-family: "Inter", var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
  }

  .site-main .lesson-banner__title {
    /* width: 352px; */
    max-width: 100%;
    margin: 0;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .site-main .lesson-banner__title span {
    color: var(--color-brand-forest);
  }

  .site-main .lesson-banner__actions {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 50px;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
  }

  .site-main .lesson-banner__actions .lesson-banner__button {
    /* width: 112px; */
    width: 139px;
    min-width: 0;
    max-width: none;
    height: 50px;
    min-height: 50px;
    margin: 0;
    padding: 9px 18px;
    color: #000000;
    background: var(--color-brand-lime, #e3f956);
    font-family: "Inter", var(--font-sans);
    font-size: 12px;
    font-weight: 500 !important;
    line-height: 18px;
  }

  .site-main .lesson-banner__actions .lesson-banner__button--secondary {
    /* width: 136px; */
    width: 160px;
    color: #ffffff;
    background: var(--color-brand-forest);
    font-weight: 500 !important;
  }

  .site-main .lesson-banner__copy {
    position: static;
    right: auto;
    display: flex;
    /* width: 347px; */
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 28px;
    margin-bottom: 20px;
    padding: 0;
  }

  .site-main .lesson-banner__copy p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: #000000;
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }
}

/* Mobile Booth Features: match Figma stacked image-card frame. */
@media (max-width: 767px) {
  .site-main .booths {
    padding: 36px 0 60px !important;
    background: #ffffff;
  }

  .site-main .booths__inner {
    /* width: 355px; */
    max-width: calc(100vw - 47px);
    margin-inline: auto;
    padding: 0 !important;
  }

  .site-main .booths__title {
    width: 100%;
    margin: 0 0 21px;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
  }

  .site-main .booths__title span {
    color: var(--color-brand-forest);
  }

  .site-main .booths__grid {
    display: grid;
    /* width: 354px; */
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-main .booth-card {
    /* width: 354px; */
    max-width: 100%;
    height: 478px;
    border-radius: 20px;
    background: #00190a;
  }

  .site-main .booth-card:nth-child(2) {
    height: 476px;
  }

  .site-main .booth-card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.7%, rgba(0, 0, 0, .64) 65.64%, rgba(0, 0, 0, .8) 100%);
  }

  .site-main .booth-card img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
  }

  .site-main .booth-card:nth-child(2) img {
    object-position: 55% 50%;
  }

  .site-main .booth-card__content {
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    width: 314px;
    max-width: calc(100% - 40px);
    flex-direction: column;
    gap: 24px;
  }

  .site-main .booth-card h3 {
    width: 100%;
    margin: 0;
    color: #ffffff;
    font-family: "Montserrat", var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
  }

  .site-main .booth-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .site-main .booth-card__tags span {
    min-height: 45px;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: rgba(255, 255, 255, .31);
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .lesson-banner__inner {
    gap: 10px;
  }
}

/* Mobile location: match Figma indoor golf destination panel. */
@media (max-width: 767px) {
  .site-main .location {
    /* height: 1274px;
    min-height: 1274px; */
    padding: 50px 0 !important;
    overflow: hidden;
    background: #f1f1f1;
  }

  .site-main .location__panel {
    display: block;
    /* width: 354px; */
    max-width: calc(100vw - 48px);
    /* height: 1174px; */
    /* min-height: 1174px; */
    margin-inline: auto;
    padding: 48px 19px 12px;
    border-radius: 20px;
    color: #ffffff;
    background: var(--color-brand-forest);
    box-shadow: 0 20px 58px rgba(0, 0, 0, .22);
  }

  .site-main .location__content {
    display: block;
    /* width: 314px; */
    max-width: 100%;
    padding: 0;
  }

  .site-main .location__title {
    /* width: 314px; */
    max-width: 100%;
    margin: 0 0 12px;
    color: #ffffff;
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .site-main .location .location__text {
    /* width: 314px; */
    max-width: 100%;
    margin: 0 0 14px;
    color: #ffffff;
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  .site-main .location .location__text p {
    margin: 0;
  }

  .site-main .location__details {
    display: flex;
    /* width: 272px; */
    max-width: 100%;
    flex-direction: column;
    gap: 24px;
    margin: 0 0 28px;
    padding: 0;
  }

  .site-main .location__details li {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
  }

  .site-main .location__details li:nth-child(2) {
    align-items: flex-start;
  }

  .site-main .location__details li:nth-child(2)>span:last-child {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 0;
    line-height: 16px;
  }

  .site-main .location__details li:nth-child(1)>a,
  .site-main .location__details li:nth-child(3)>span:last-child {
    white-space: nowrap;
  }

  .site-main .location__details a {
    color: #ffffff;
  }

  .site-main .location__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 100px;
    background: var(--color-brand-lime);
  }

  .site-main .location__icon img {
    width: 18px;
    height: 18px;
  }

  .site-main .location__subtitle {
    width: 314px;
    max-width: 100%;
    margin: 0 0 14px;
    color: #ffffff;
    font-family: "Montserrat", var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
  }

  .site-main .location__chips {
    display: flex;
    /* width: 314px; */
    max-width: 100%;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 31px;
    padding: 0;
  }

  .site-main .location__chips li {
    min-height: 36px;
    padding: 2px 17px;
    color: #ffffff;
    background: rgba(255, 255, 255, .1);
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
  }

  .site-main .location__map {
    /* width: 333px; */
    max-width: calc(100% + 18px);
    height: 468px;
    /* margin-left: -10px; */
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 20px;
    background: #d9d9d9;
  }

  .site-main .location__map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}

/* Mobile FAQ: match the Figma accordion stack. */
@media (max-width: 767px) {
  .site-main .faq-contact {
    display: flex;
    flex-direction: column;
    padding: 50px 0 60px !important;
    background: #ffffff;
  }

  .site-main .faq-contact__header {
    display: contents;
  }

  .site-main .faq-contact__title {
    order: 1;
    /* width: 354px; */
    max-width: calc(100vw - 48px);
    margin: 0 auto 30px;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
  }

  .site-main .faq-contact__title span {
    color: var(--color-brand-forest);
  }

  .site-main .faq-contact__inner {
    order: 2;
    display: flex;
    /* width: 354px; */
    max-width: calc(100vw - 48px);
    flex-direction: column;
    gap: 20px;
    margin-inline: auto;
  }

  .site-main .faq-contact__media {
    /* width: 354px; */
    max-width: 100%;
    height: 277px;
    border-radius: 20px;
    background: #00190a;
  }

  .site-main .faq-contact__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
  }

  .site-main .faq-contact__content {
    /* width: 354px; */
    max-width: 100%;
  }

  .site-main .faq {
    display: block;
    /* width: 354px; */
    max-width: 100%;
    min-height: 0;
    padding: 30px 18px 30px 19px;
    border-radius: 16px;
    background: #f1f1f1;
  }

  .site-main .faq__item {
    display: grid;
    width: 100%;
    min-height: 80px;
    align-content: start;
    align-items: start;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    padding: 14px 20px 14px 0;
  }

  .site-main .faq__item:first-child {
    padding-top: 0;
  }

  /* .site-main .faq__item:first-child[aria-expanded="true"] {
    min-height: 235px;
    padding-bottom: 0;
  } */

  .site-main .faq__item:last-child {
    min-height: 60px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-main .faq__item::after {
    top: 22px;
    right: 0;
    width: 20px;
    height: 20px;
    background: #0c0e12;
  }

  .site-main .faq__item:first-child::after {
    top: 0;
  }

  .site-main .faq__item span {
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
  }

  .site-main .faq__item[aria-expanded="true"] span {
    color: var(--color-brand-forest);
  }

  .site-main .faq__item small {
    color: #0c0e12;
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  .site-main .faq-contact__button {
    order: 3;
    width: 169px;
    height: 50px;
    min-width: 169px;
    min-height: 50px;
    /* margin: 20px auto 0 calc((100% - min(354px, calc(100vw - 48px))) / 2); */
    margin-top: 30px;
    margin-left: 22px;
    border: 0;
    padding: 9px 32px;
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: var(--color-brand-forest);
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    box-shadow: 0 15px 36px rgba(0, 0, 0, .25);
  }

  .site-main .faq-contact #contact {
    order: 4;
  }
}

.contact-panel__mobile-heading {
  display: none;
}

/* Mobile Get In Touch: match the Figma heading, image, and form card. */
@media (max-width: 767px) {
  .site-main .faq-contact .contact-panel__mobile-heading {
    order: 4;
    display: flex;
    /* width: 354px; */
    max-width: calc(100vw - 48px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 45px auto 36px;
    padding: 0;
    text-align: center;
  }

  .site-main .faq-contact .contact-panel__mobile-heading .contact-panel__eyebrow {
    width: 100%;
    margin: 0;
    color: var(--color-brand-forest);
    font-family: "Inter", var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
  }

  .site-main .faq-contact .contact-panel__mobile-heading .contact-panel__title {
    width: 100%;
    margin: 0;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
  }

  .site-main .faq-contact .contact-panel__mobile-heading .contact-panel__title span {
    color: var(--color-brand-forest);
  }

  .site-main .faq-contact #contact.contact-panel {
    order: 5;
    display: flex;
    /* width: 354px; */
    max-width: calc(100vw - 48px);
    /* min-height: 685px; */
    flex-direction: column;
    gap: 14px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 16px;
    background: #f1f1f1;
  }

  .site-main .faq-contact #contact .contact-panel__eyebrow,
  .site-main .faq-contact #contact .contact-panel__title {
    display: none;
  }

  .site-main .faq-contact #contact .contact-panel__media {
    order: 1;
    /* width: 326px; */
    max-width: 100%;
    /* min-height: 255px;
    height: 255px; */
    border-radius: 20px;
    background: #00190a;
  }

  .site-main .faq-contact #contact .contact-panel__media img {
    width: 100%;
    height: 100%;
    min-height: 255px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
  }

  .site-main .faq-contact #contact .contact-panel__content {
    order: 2;
    display: block;
    /* width: 326px; */
    max-width: 100%;
    /* min-height: 380px; */
    padding: 20px 16px 16px;
    border-radius: 20px;
    background: #ffffff;
  }

  .site-main .faq-contact #contact .gravity-contact-form,
  .site-main .faq-contact #contact .contact-card.gravity-contact-form,
  .site-main .faq-contact #contact #gform_wrapper_1,
  .site-main .faq-contact #contact #gform_1,
  .site-main .faq-contact #contact #gform_fields_1 {
    /* width: 293px; */
    max-width: 100%;
  }

  .site-main .faq-contact #contact #gform_fields_1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-main .faq-contact #contact #gform_1 input:not([type="submit"]),
  .site-main .faq-contact #contact #gform_1 textarea,
  .site-main .faq-contact #contact #gform_1 select {
    /* width: 293px; */
    max-width: 100%;
    min-height: 45px;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    padding: 9px 16px;
    color: #0c0e12;
    background: #f7f7f7;
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  .site-main .faq-contact #contact #gform_1 textarea {
    min-height: 115px;
    height: 115px;
    resize: none;
  }

  .site-main .faq-contact #contact #gform_1 .gform_footer,
  .site-main .faq-contact #contact #gform_1 .gform_page_footer {
    display: flex;
    justify-content: center;
    /* width: 293px; */
    max-width: 100%;
    margin: 20px 0 0;
    padding: 0;
  }

  html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button {
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    height: 50px;
    min-height: 50px;
    padding: 0 32px;
    border-radius: var(--radius-pill);
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
  }
}

/* Mobile app download: match Manage Teed Up From Your Phone Figma section. */
@media (max-width: 767px) {
  .site-main .app-download {
    position: relative;
    height: 851px;
    /* min-height: 907px; */
    min-height: 851px;
    padding: 53px 0 0 !important;
    overflow: hidden;
    background: var(--color-brand-lime);
  }

  .site-main .app-download__inner {
    position: static;
    display: block;
    width: 402px;
    max-width: 100%;
    min-height: 907px;
    margin: 0 auto;
    padding: 0 !important;
  }

  .site-main .app-download__content {
    position: relative;
    z-index: 2;
    /* width: 354px; */
    max-width: calc(100vw - 48px);
    margin: 0 auto;
    padding: 0;
  }

  .site-main .app-download__eyebrow,
  .site-main .app-download__title {
    display: none;
  }

  .site-main .app-download__features {
    margin: 0;
  }

  .site-main .app-download__features h3 {
    /* width: 354px; */
    max-width: 100%;
    margin: 0 0 19px;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0;
  }

  .site-main .app-download__features h3 span {
    color: var(--color-brand-forest);
  }

  .site-main .app-download__features ul {
    display: flex;
    /* width: 354px; */
    max-width: 100%;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding: 0;
  }

  .site-main .app-download__features li,
  .site-main .app-download__features li:nth-child(n) {
    position: static;
    display: flex;
    width: max-content;
    min-height: 24px;
    height: 24px;
    align-items: center;
    gap: 8px;
    color: #0c0e12;
    font-family: "Inter", var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
  }

  .site-main .app-download__feature-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 2px solid #0c0e12;
  }

  .site-main .app-download__feature-icon::after {
    width: 13px;
    height: 10px;
  }

  .site-main .app-download__stores {
    display: flex;
    /* width: 354px; */
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    margin: 34px 0 0;
  }

  .site-main .app-download__stores a {
    width: min(169.75px, calc((100vw - 58px) / 2));
    height: auto;
    aspect-ratio: 181 / 55;
    border-radius: 7px;
  }

  .site-main .app-download__media {
    position: absolute;
    z-index: 1;
    left: 50%;
    right: auto;
    bottom: -2px;
    width: min(430px, calc(100vw - 24px));
    max-width: none;
    height: auto;
    margin: 0;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    transform: translateX(-50%);
  }

  .site-main .app-download__media::before {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    bottom: -840px;
    width: 909px;
    height: 909px;
    border-radius: 50%;
    background: rgba(0, 52, 21, .18);
    transform: translateX(-50%);
  }

  .site-main .app-download__media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 909 / 638;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
  }
}

@media (max-width: 767px) {
  .site-footer .site-footer__contact-title {
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #000000;
    font-family: "Montserrat", var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    text-transform: none;
  }

  .site-footer .site-footer__contact {
    border-bottom: 0;
    padding-bottom: 24px;
  }
}

/* Mobile simulation videos: stable 2x2 thumbnail grid with controls below. */
@media (max-width: 767px) {
  .site-main .video-section {
    height: auto;
    min-height: 0;
    padding: 50px 0 36px;
    overflow: hidden;
    background: transparent;
  }

  .site-main .video-section>.container {
    position: static;
    z-index: 1;
    display: flex;
    /* width: min(calc(100% - 40px), 354px); */
    width: min(calc(100% - 40px), 100vw);
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    margin-inline: auto;
    padding: 0;
  }

  .site-main .video-section__stage {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-position: center center, center center;
    background-size: cover, cover;
  }

  .site-main .video-section__stage::after {
    opacity: 0;
  }

  .site-main .video-section__content {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    width: 100% !important;
    max-width: 100%;
    height: auto;
    gap: 32px;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .site-main .video-section__title {
    width: 100%;
    max-width: 243px;
    color: var(--color-white);
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
  }

  .site-main .video-section__title span {
    display: inline;
    color: var(--color-brand-lime);
  }

  .site-main .video-section__content p {
    width: 100%;
    max-width: 100%;
    color: var(--color-white);
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
  }

  .site-main .video-section__pill {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 3;
    width: 173px;
    height: 62px;
    gap: 12px;
    margin-top: 26px;
    padding: 5px 20px 5px 4px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    line-height: 20px;
  }

  .site-main .video-section__pill span {
    width: 52px;
    height: 52px;
  }

  .site-main .video-section__pill img {
    width: 14px;
    height: 14px;
  }

  .site-main .video-section__pill b {
    width: auto;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }

  .site-main .video-section__carousel {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 3;
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: minmax(0, 1fr) 50px 50px minmax(0, 1fr);
    grid-template-areas:
      "thumbs thumbs thumbs thumbs"
      ". prev next .";
    gap: 28px 8px;
    margin-top: 76px;
    overflow: visible;
  }

  .site-main .video-section__thumbs {
    grid-area: thumbs;
    display: flex;
    width: 100%;
    height: auto;
    gap: 0;
    padding: 0;
    overflow: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .site-main .video-section__thumbs::-webkit-scrollbar {
    display: none;
  }

  .site-main .video-section__thumb-page {
    display: grid;
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
    scroll-snap-align: start;
  }

  .site-main .video-section__thumb {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 11px;
    background: rgba(255, 255, 255, .14);
    scroll-snap-align: none;
  }

  .site-main .video-section__thumb.is-active {
    border-color: var(--color-white);
    box-shadow: inset 0 0 0 1px var(--color-white);
  }

  .site-main .video-section__thumb img,
  .site-main .video-section__thumb:nth-child(n) img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

  .site-main .video-section__control {
    position: static;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, .9);
    border-radius: 50%;
    background: var(--color-white);
  }

  .site-main .video-section__control--prev {
    grid-area: prev;
  }

  .site-main .video-section__control--next {
    grid-area: next;
    background: var(--color-white);
  }

  .site-main .video-section__control--next:not(:disabled):not([aria-disabled="true"]):not(.is-disabled) {
    background: var(--color-brand-lime);
  }

  .site-main .video-section__control img {
    width: 24px;
    height: 24px;
  }

  .site-main .video-section__control:disabled,
  .site-main .video-section__control[aria-disabled="true"],
  .site-main .video-section__control.is-disabled,
  .site-main .video-section__control.is-unavailable {
    opacity: .55;
    visibility: visible;
    pointer-events: none;
  }

  .site-main .video-section__control:disabled img,
  .site-main .video-section__control[aria-disabled="true"] img,
  .site-main .video-section__control.is-disabled img,
  .site-main .video-section__control.is-unavailable img {
    opacity: .55;
    filter: grayscale(1);
  }

}

@media (max-width: 359px) {
  .site-main .video-section>.container {
    width: min(calc(100% - 32px), 354px);
  }

  .site-main .video-section__thumb-page {
    gap: 14px;
  }
}

/* Mobile footer final composition. */
@media (max-width: 767px) {
  .site-footer {
    min-height: 0;
    padding: 22px 0 0;
    color: #0c0e12;
    background:
      linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #e3f6ff 74%, rgba(227, 246, 255, .86) 100%);
  }

  .site-footer.site-footer--has-mobile-bg {
    background-color: #ffffff;
    background-image: var(--footer-mobile-bg-image);
    background-repeat: no-repeat;
    background-position: center bottom 190px;
    background-size: 100% auto;
  }

  .site-footer__grid {
    display: grid;
    width: min(calc(100% - 32px), 430px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 22px;
    row-gap: 0;
    margin-inline: auto;
    padding-bottom: 0;
  }

  .site-footer__brand {
    order: 1;
    display: grid;
    max-width: none;
    grid-column: 1 / -1;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    column-gap: 17px;
    row-gap: 18px;
    padding: 0 0 23px;
    border-bottom: 1px solid rgba(8, 22, 31, .09);
  }

  .site-footer a.site-footer__logo {
    display: block;
    grid-column: 1;
    margin: 0;
  }

  .site-footer__brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
  }

  .site-footer__copy {
    grid-column: 2;
    max-width: none;
  }

  .site-footer__copy,
  .site-footer__copy p {
    margin: 0;
    color: #0c0e12;
    font-family: "Inter", var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
  }

  .site-footer__actions {
    display: grid;
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.34fr);
    gap: 10px;
    margin: 0;
  }

  .site-footer .site-footer__actions .btn,
  .site-footer .site-footer__actions .btn:first-child,
  .site-footer .site-footer__actions .btn:nth-child(2) {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    flex: none;
    padding: 11px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
  }

  .site-footer .site-footer__actions .btn:nth-child(2) {
    color: #ffffff;
    background: var(--color-brand-forest);
  }

  .site-footer__newsletter {
    order: 2;
    display: block;
    grid-column: 1 / -1;
    max-width: none;
    padding: 24px 0 29px;
    border-top: 0;
  }

  .site-footer__newsletter h3,
  .site-footer h3.site-footer__accordion-heading {
    margin: 0 0 17px;
    color: #0c0e12;
    font-family: "Montserrat", var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
  }

  .site-footer__newsletter>p {
    display: none;
  }

  .site-footer__signup {
    display: grid;
    gap: 11px;
  }

  .site-footer__field input {
    min-height: 54px;
    border: 0;
    padding: 13px 52px 13px 28px;
    color: #0c0e12;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 9px 23px rgba(8, 22, 31, .1);
    font-size: 13px;
    line-height: 20px;
  }

  .site-footer__field img {
    right: 25px;
    width: 16px;
    height: 14px;
  }

  .site-footer__submit {
    min-height: 48px;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
  }

  .site-footer__nav {
    order: 3;
    min-width: 0;
    grid-column: auto;
    border-bottom: 0;
  }

  .site-footer__nav:nth-of-type(1),
  .site-footer__nav:nth-of-type(2) {
    grid-column: auto;
  }

  .site-footer__accordion-toggle {
    display: block;
    width: auto;
    min-height: 0;
    color: inherit;
    text-transform: none;
    pointer-events: none;
  }

  .site-footer__accordion-toggle::after {
    display: none;
  }

  .site-footer__accordion-panel,
  .site-footer__accordion-panel[aria-hidden="true"] {
    display: grid;
  }

  .site-footer__menu {
    gap: 8px;
    padding: 0;
  }

  .site-footer a:not(.btn),
  .site-footer p {
    margin: 0;
    color: #0c0e12;
    font-family: "Inter", var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }

  .site-footer a:not(.btn):hover,
  .site-footer a:not(.btn):focus-visible {
    transform: none;
  }

  .site-footer__contact {
    order: 4;
    position: relative;
    z-index: 3;
    grid-column: 1 / -1;
    margin: 26px 0 -2px;
    padding: 0;
    border-bottom: 0;
  }

  .site-footer .site-footer__contact-title {
    display: block;
    min-height: 0;
    margin: 0 0 10px;
    color: #0c0e12;
    font-family: "Montserrat", var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    text-transform: none;
  }

  .site-footer__contact-panel {
    display: grid;
    gap: 9px;
    padding-bottom: 0;
  }

  .site-footer__contact-item {
    min-height: 22px;
    margin: 0;
    padding-left: 30px;
  }

  .site-footer__contact-item::before {
    top: 1px;
    width: 18px;
    height: 18px;
  }

  .site-footer__contact-item--address::before {
    width: 16px;
    height: 18px;
  }

  .site-footer__contact-item--phone::before {
    width: 18px;
    height: 18px;
  }

  .site-footer__address-line {
    display: block;
  }

  .site-footer__address-line+.site-footer__address-line {
    margin-top: 4px;
    white-space: normal;
  }

  .site-footer__course {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 166px;
    margin-top: -8px;
    background: var(--footer-bg-image, url("../img/footer-imgs/harbour-town-hole-17.webp")) center bottom / cover no-repeat;
  }

  .site-footer__course::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #e3f6ff 0%, rgba(227, 246, 255, .72) 18%, rgba(227, 246, 255, .08) 56%, rgba(227, 246, 255, 0) 100%);
    pointer-events: none;
  }

  .site-footer.site-footer--has-mobile-bg .site-footer__course {
    background: transparent;
  }

  .site-footer.site-footer--has-mobile-bg .site-footer__course::before {
    display: none;
  }

  .site-footer__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 0;
    padding: 24px 16px 26px;
    color: #0c0e12;
    background: var(--color-brand-lime);
    text-align: center;
  }

  .site-footer__payments {
    order: 1;
    display: flex;
    width: min(100%, 385px);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 3.1vw, 16px);
    margin: 0;
    overflow: hidden;
  }

  .site-footer__payments img,
  .site-footer__payments img:first-child {
    width: auto;
    max-width: clamp(31px, 12.2vw, 54px);
    max-height: 18px;
    flex: 0 1 auto;
    border-radius: 0;
    object-fit: contain;
  }

  .site-footer__legal {
    order: 2;
    display: flex;
    width: min(100%, 340px);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px 0;
    margin: 0;
    text-align: center;
  }

  .site-footer__legal a {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0 11px;
    color: #0c0e12;
    font-family: "Inter", var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
  }

  .site-footer__legal a::after {
    display: none;
  }

  .site-footer__legal a+a::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    display: block;
    width: 1px;
    background: currentColor;
  }

  .site-footer__bottom p {
    order: 3;
    margin: 0;
    color: #0c0e12;
    font-family: "Inter", var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
  }

  .site-footer__bottom a.site-footer__credit-link {
    display: inline;
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    font-weight: 400;
    line-height: inherit;
  }
}

@media (max-width: 359px) {
  .site-footer__grid {
    width: min(calc(100% - 24px), 430px);
    column-gap: 14px;
  }

  .site-footer__brand {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 12px;
  }

  .site-footer__brand img {
    width: 56px;
    height: 56px;
  }

  .site-footer .site-footer__actions .btn,
  .site-footer .site-footer__actions .btn:first-child,
  .site-footer .site-footer__actions .btn:nth-child(2) {
    padding-inline: 8px;
    font-size: 12px;
  }

  .site-footer__bottom {
    padding-inline: 10px;
  }

  .site-footer__payments {
    gap: 7px;
  }

  .site-footer__payments img,
  .site-footer__payments img:first-child {
    max-width: 36px;
    max-height: 15px;
  }

  .site-footer__legal a {
    padding-inline: 8px;
    font-size: 12px;
  }
}

@media (min-width: 1200px) {

  .site-header,
  .site-header.is-open {
    top: 26px;
  }
}

/* Why Teed Up final desktop/tablet alignment. */
@media (min-width: 768px) {
  .site-main .why-teed-up {
    padding: 0;
  }

  .site-main .why-teed-up__grid {
    display: grid;
    width: min(calc(100% - clamp(56px, 10.4vw, 112px)), 1720px);
    max-width: 1720px;
    min-height: 0;
    grid-template-columns: minmax(250px, 553fr) minmax(330px, 680fr) minmax(190px, 370fr);
    align-items: start;
    column-gap: clamp(28px, 2.7vw, 52px);
    margin-inline: auto;
    padding-top: clamp(56px, 5.2vw, 77px);
    padding-bottom: clamp(58px, 6vw, 100px);
  }

  .site-main .why-teed-up__media--primary {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 553 / 804;
  }

  .site-main .why-teed-up__content {
    grid-column: 2 / 4;
    grid-row: 1;
    width: 100%;
    padding-top: clamp(14px, 1.55vw, 30px);
  }

  .site-main .why-teed-up__eyebrow {
    margin-bottom: clamp(12px, 1.1vw, 21px);
  }

  .site-main .why-teed-up__title {
    max-width: 100%;
    margin-bottom: clamp(22px, 2vw, 39px);
  }

  .site-main .why-teed-up__features {
    width: 61.705989%;
    max-width: 680px;
  }

  .site-main .why-teed-up__media--secondary {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    width: 100%;
    height: auto;
    margin-top: clamp(270px, 21.55vw, 414px);
    aspect-ratio: 370 / 409;
  }
}

/* Desktop homepage: align the 1920px layout to the supplied Figma frame. */
@media (min-width: 1600px) {

  .site-header,
  .site-header.is-open {
    position: absolute;
    top: 35px;
    z-index: 30;
  }

  .site-main .why-teed-up__grid {
    min-height: 1023px;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
  }

  .site-main .why-teed-up__eyebrow,
  .site-main .technology__eyebrow {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 3.2px;
  }

  .site-main .why-teed-up__media--primary {
    height: 823px;
  }

  .site-main .welcome-teed-up__grid {
    min-height: 855px;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
  }

  .site-main .services {
    min-height: 1117px;
    padding-bottom: 142px;
  }

  .site-main .technology {
    min-height: 1060px;
  }

  .site-main .technology__heading,
  .site-main .technology__title {
    width: 843px;
    max-width: 843px;
  }

  .site-main .benefits--plans {
    padding-top: 100px;
    /* padding-bottom: 64px; */
  }

  .site-main .benefits--plans .benefits__panel {
    min-height: 820px;
    gap: 50px;
    align-items: stretch;
  }

  .site-main .benefits--plans .benefits__intro {
    display: grid;
    width: 100%;
    max-width: none;
    height: 200px;
    grid-template-columns: minmax(0, 843px) minmax(240px, 1fr);
    /* grid-template-rows: 24px 56px 47px; */
    align-items: start;
    gap: 18px 40px;
    text-align: left;
  }

  .site-main .benefits--plans .benefits__eyebrow {
    grid-column: 1;
    grid-row: 1;
    line-height: 24px;
  }

  .site-main .benefits--plans .benefits__title {
    grid-column: 1;
    grid-row: 2;
    width: 843px;
    font-size: 68px;
    line-height: 74px;
    letter-spacing: -2px;
    text-align: left;
  }

  .site-main .benefits--plans .benefits__copy {
    grid-column: 1;
    grid-row: 3;
    max-width: 843px;
  }

  .site-main .benefits--plans .benefits__copy p {
    font-size: 20px;
    /* line-height: 24px; */
  }

  .site-main .benefits--plans .membership-toggle {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    position: relative;
    display: flex;
    width: auto;
    min-height: 27px;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    margin-bottom: -1px;
  }

  .site-main .benefits--plans .membership-toggle span {
    min-height: 0;
    padding: 0;
    color: #000000;
    background: transparent;
    font-family: "Montserrat", var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
  }

  .site-main .benefits--plans .membership-toggle span:first-child {
    order: 1;
    width: 84px;
  }

  .site-main .benefits--plans .membership-toggle span:nth-child(2) {
    order: 3;
    width: 92px;
  }

  .site-main .benefits--plans .membership-toggle::before {
    order: 2;
    width: 49px;
    height: 27px;
    border-radius: 999px;
    background: var(--color-brand-forest);
    content: "";
  }

  .site-main .benefits--plans .membership-toggle::after {
    position: absolute;
    top: 4px;
    left: 96px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #ffffff;
    content: "";
    transition: transform .2s ease;
  }

  .site-main .benefits--plans .membership-toggle.is-annual::after {
    transform: translateX(22px);
  }

  .site-main .benefits--plans .membership-toggle .is-active {
    color: #000000;
    background: transparent;
  }

  .site-main .benefits--plans .membership-plans {
    gap: 25px;
  }

  .site-main .benefits--plans .membership-card {
    min-height: 550px;
    padding: 32px;
  }

  .site-main .benefits--plans .membership-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }

  .site-main .benefits--plans .membership-card__price {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .site-main .benefits--plans .membership-card__price span {
    font-size: 36px;
    line-height: 42px;
  }

  .site-main .benefits--plans .membership-card__subtitle {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 24px;
  }

  .site-main .benefits--plans .membership-card__features {
    gap: 18px;
    margin-bottom: 32px;
  }

  .site-main .benefits--plans .membership-card__features li {
    padding-left: 28px;
    font-size: 16px;
    line-height: 24px;
  }

  .site-main .benefits--plans .membership-card__features li::before {
    top: 3px;
    width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 16px;
  }

  .site-main .benefits--plans .benefits__button {
    align-self: flex-start;
    margin-top: -10px;
  }

  .site-main .booths__title {
    font-size: 68px;
    line-height: 74px;
  }

  .site-main .location {
    min-height: 900px;
    padding: 100px 0;
  }

  .site-main .location__panel {
    min-height: 700px;
  }

  .site-main .faq-contact {
    padding: 100px 0;
  }

  .site-main .faq-contact__header {
    /* min-height: 122px; */
    align-items: flex-start;
  }

  .site-main .faq-contact__title {
    /* width: 699px; */
    font-size: 68px;
    line-height: 74px;
    letter-spacing: -2px;
  }

  /* .site-main .faq-contact__button {
    margin-top: 59px;
  } */

  .site-main .faq-contact__inner {
    margin-top: 78px;
  }

  .site-main .faq-contact #contact.contact-panel {
    margin-top: 100px;
    /* grid-template-columns: minmax(885px, 1fr) minmax(500px, 570px); */
    grid-template-columns: minmax(885px, 1fr) minmax(500px, 724px);
  }

  .site-main .faq-contact #contact .contact-panel__eyebrow {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 3.2px;
  }

  .site-main .faq-contact #contact .contact-panel__title {
    font-size: 68px;
    font-weight: 700;
    line-height: 74px;
    letter-spacing: -2px;
  }

  .site-main .app-download__title {
    font-size: 68px;
    line-height: 74px;
    letter-spacing: -2px;
  }

  .site-main .app-download__features h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }

  .site-main .app-download {
    min-height: 688px;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .site-footer {
    min-height: 917px;
    padding-top: 107px;
  }

  .site-footer__grid {
    width: min(100% - 200px, 1720px);
    padding-bottom: 354px;
  }
}

.location__chip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: inherit;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}

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

.nearby-cities-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nearby-cities-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
}

.nearby-cities-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 354px);
  border-radius: 20px;
  padding: 28px 24px 24px;
  color: #0c0e12;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.nearby-cities-modal__panel h3 {
  margin: 0 36px 18px 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.nearby-cities-modal__panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nearby-cities-modal__panel li {
  min-height: 36px;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  color: #0c0e12;
  background: #f1f1f1;
  font-family: "Inter", var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.nearby-cities-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: var(--color-brand-lime);
  cursor: pointer;
}

.nearby-cities-modal__close::before,
.nearby-cities-modal__close::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #0c0e12;
}

.nearby-cities-modal__close::before {
  transform: rotate(45deg);
}

.nearby-cities-modal__close::after {
  transform: rotate(-45deg);
}

.has-modal-open {
  overflow: hidden;
}

.site-main .benefits--plans .benefits__button,
.site-main .benefits--plans .benefits__button:hover,
.site-main .benefits--plans .benefits__button:focus-visible {
  box-shadow: none;
}

/* Membership CTA colors: match the final Figma card states. */
.site-main .benefits--plans .membership-card__button {
  border: 1px solid transparent;
  color: #0c0e12;
  background: var(--color-brand-lime, #e3f956);
  box-shadow: 0 13px 24px rgba(0, 52, 21, .16);
}

.site-main .benefits--plans .membership-card__learn-more {
  border: 1px solid var(--color-brand-forest);
  color: #ffffff;
  background: var(--color-brand-forest);
  box-shadow: 0 13px 24px rgba(0, 52, 21, .16);
}

.site-main .benefits--plans .membership-card.is-selected .membership-card__button {
  border-color: rgba(12, 14, 18, .6);
  color: #0c0e12;
  background: #ffffff;
}

.site-main .benefits--plans .membership-card__button:hover,
.site-main .benefits--plans .membership-card__button:focus-visible,
.site-main .benefits--plans .membership-card.is-selected .membership-card__button:hover,
.site-main .benefits--plans .membership-card.is-selected .membership-card__button:focus-visible {
  border-color: var(--color-brand-forest);
  color: #ffffff;
  background: var(--color-brand-forest);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 52, 21, .24);
}

.site-main .benefits--plans .membership-card__learn-more:hover,
.site-main .benefits--plans .membership-card__learn-more:focus-visible {
  border-color: var(--color-brand-lime, #e3f956);
  color: #0c0e12;
  background: var(--color-brand-lime, #e3f956);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 52, 21, .22);
}

.site-main .benefits--plans .membership-card.is-selected .membership-card__learn-more:hover,
.site-main .benefits--plans .membership-card.is-selected .membership-card__learn-more:focus-visible {
  border-color: #ffffff;
  color: var(--color-brand-forest);
  background: #ffffff;
}

/* Instructors section. */
.site-main .instructors {
  overflow: hidden;
  padding: clamp(72px, 5.2vw, 100px) 0 clamp(82px, 6.45vw, 124px);
  background: #f2f2f2;
}

.site-main .instructors__inner {
  /* width: min(calc(100% - 200px), 1720px); */
  max-width: 1720px;
  margin-inline: auto;
}

.site-main .instructors__header {
  max-width: 1180px;
  margin: 0 auto 54px;
  text-align: center;
}

.site-main .instructors__eyebrow {
  margin: 0 0 18px;
  color: var(--color-brand-forest);
  font-family: "Inter", var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 6.4px;
  text-transform: uppercase;
}

.site-main .instructors__title {
  margin: 0;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(44px, 3.55vw, 68px);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-main .instructors__title span {
  color: var(--color-brand-forest);
}

.site-main .instructors__copy {
  display: none;
}

.site-main .instructors__carousel {
  position: relative;
}

.site-main .instructors__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.site-main .instructors__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: #000000;
}

.site-main .instructors__media {
  position: relative;
  width: 100%;
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 557 / 443;
  background: #d9d9d9;
}

.site-main .instructors__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-main .instructors__badge {
  position: absolute;
  top: 21px;
  right: 21px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 5px 12px;
  color: #595959;
  background: #ffffff;
  font-family: "Inter", var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.site-main .instructors__badge::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: url("../svg/pga-certified-badge.svg") center / contain no-repeat;
}

.site-main .instructors__body {
  flex: 1;
  margin-bottom: 26px;
}

.site-main .instructors__body h3 {
  margin: 0 0 8px;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.site-main .instructors__role {
  margin: 0 0 12px;
  color: #000000;
  font-family: "Montserrat", var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.site-main .instructors__specialties {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 24px;
  color: #575757;
  font-family: "Inter", var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.site-main .instructors__button {
  display: inline-flex;
  width: 100%;
  min-height: 63px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  color: #ffffff;
  background: var(--color-brand-forest);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
  font-family: "Inter", var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-main .instructors__button:hover,
.site-main .instructors__button:focus-visible {
  color: #0c0e12;
  background: var(--color-brand-lime);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 52, 21, .2);
}

.site-main .instructors__controls {
  display: none;
}

.site-main .instructors__control {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #000000;
  border-radius: 50%;
  padding: 0;
  background: #ffffff;
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease, transform .2s ease;
}

.site-main .instructors__control--next {
  color: #ffffff;
  background: #000000;
}

.site-main .instructors__control--next img {
  filter: invert(1);
  transform: rotate(180deg);
}

.site-main .instructors__control:hover,
.site-main .instructors__control:focus-visible {
  background: var(--color-brand-lime);
  transform: translateY(-2px);
}

.site-main .instructors__control--next:hover,
.site-main .instructors__control--next:focus-visible {
  background: var(--color-brand-forest);
}

.site-main .instructors__control:disabled,
.site-main .instructors__control[aria-disabled="true"],
.site-main .instructors__control.is-disabled,
.site-main .instructors__control.is-unavailable {
  opacity: .45;
  cursor: default;
  pointer-events: none;
  transform: none;
}

@media (max-width: 1199px) {
  .site-main .instructors {
    padding: 72px 0 78px;
  }

  /* .site-main .instructors__inner {
    width: min(calc(100% - 64px), 860px);
  } */

  .site-main .instructors__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .site-main .instructors__track::-webkit-scrollbar {
    display: none;
  }

  .site-main .instructors__card {
    flex: 0 0 calc((100% - 24px) / 2);
    scroll-snap-align: start;
  }

  .site-main .instructors__controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 42px;
  }
}

@media (max-width: 767px) {
  .site-main .instructors {
    padding: 56px 0 62px;
  }

  /* .site-main .instructors__inner {
    width: min(calc(100% - 52px), 352px);
  } */

  .site-main .instructors__header {
    margin-bottom: 34px;
  }

  .site-main .instructors__eyebrow {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 3.2px;
  }

  .site-main .instructors__title {
    font-size: 22px;
    line-height: 30px;
  }

  .site-main .instructors__copy {
    display: block;
    max-width: 320px;
    margin: 16px auto 0;
    color: #0c0e12;
    font-family: "Inter", var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }

  .site-main .instructors__track {
    gap: 20px;
  }

  .site-main .instructors__card {
    flex-basis: 100%;
  }

  .site-main .instructors__media {
    margin-bottom: 26px;
    border-radius: 16px;
    aspect-ratio: 352 / 289;
  }

  .site-main .instructors__badge {
    top: 21px;
    right: 16px;
    min-height: 34px;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 24px;
  }

  .site-main .instructors__body {
    margin-bottom: 27px;
  }

  .site-main .instructors__body h3 {
    margin-bottom: 9px;
    font-size: 24px;
    line-height: 30px;
  }

  .site-main .instructors__role {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 22px;
  }

  .site-main .instructors__specialties {
    gap: 0;
    padding-left: 25px;
    font-size: 18px;
    line-height: 28px;
  }

  .site-main .instructors__button {
    min-height: 49px;
    padding: 11px 18px;
    font-size: 16px;
    line-height: 22px;
  }

  .site-main .instructors__controls {
    gap: 12px;
    margin-top: 44px;
  }
}

@media (max-width: 359px) {
  .site-main .instructors__inner {
    width: min(calc(100% - 32px), 352px);
  }

  .site-main .instructors__badge {
    right: 12px;
    font-size: 14px;
  }
}

/* Keep the main navigation pinned while scrolling. */
.site-header,
.site-header.is-open {
  position: fixed;
  z-index: 1000;
}

@media (min-width: 1200px) {

  .site-header,
  .site-header.is-open {
    top: 26px;
  }
}

/* Use the Figma hamburger artwork for the closed mobile menu state. */
@media (max-width: 1199px) {
  .site-header__bar {
    grid-template-columns: 96px minmax(0, 1fr) 38px;
  }

  .site-header:not(.is-open) .site-header__nav--right {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    transform: translateX(4px);
  }

  .site-header:not(.is-open) .site-header__nav--right>a:not(.icon-link),
  .site-header:not(.is-open) .site-header__nav--right>.nav-item,
  .site-header:not(.is-open) .site-header__nav--right>.btn {
    display: none;
  }

  .site-header:not(.is-open) .site-header__nav--right>a.icon-link {
    display: inline-flex;
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 10px 24px rgba(0, 0, 0, .14);
  }

  .site-header:not(.is-open) .site-header__nav--right>a.icon-link img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    filter: brightness(0) invert(1);
  }

  .site-header.is-open .site-header__nav--right {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-top: 6px;
    transform: none;
  }

  .site-header.is-open .site-header__nav--right>a.icon-link {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius-pill);
    padding-inline: 14px;
  }

  .site-header.is-open .site-header__nav--right>a.icon-link::after {
    content: attr(aria-label);
    display: inline-block;
    min-width: 0;
    color: currentColor;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
  }

  .site-header__toggle,
  .site-header.is-open .site-header__toggle {
    position: relative;
    display: inline-grid;
    grid-column: 3;
    grid-row: 1;
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    align-self: center;
    justify-self: end;
    place-items: center;
    flex: 0 0 38px;
    gap: 0;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    color: #ffffff;
    background-color: transparent;
    background-image: url("../svg/hamburger.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px 15px;
    top: -1px;
    left: 0em;
  }

  .site-header__toggle span {
    opacity: 0;
  }

  .site-header__toggle::before,
  .site-header__toggle::after {
    content: none;
  }

  .site-header.is-open .site-header__toggle {
    background-image: none;
  }

  .site-header.is-open .site-header__toggle span {
    opacity: 0;
    transform: none;
  }

  .site-header.is-open .site-header__toggle::before,
  .site-header.is-open .site-header__toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 2px;
    border-radius: 999px;
    content: "";
    background: #ffffff;
    transform-origin: center;
  }

  .site-header.is-open .site-header__toggle::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-open .site-header__toggle::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* Keep the responsive hero tall enough for its text, CTAs, and controls. */
@media (max-width: 991px) {
  .site-main .hero {
    min-height: 820px;
  }

  .site-main .hero__content {
    position: absolute;
    bottom: 134px;
    left: 50%;
    width: min(calc(100% - 48px), 680px);
    padding-top: 0;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .site-header.is-open {
    z-index: 10000;
  }

  .site-header.is-open .site-header__bar {
    /* min-height: min(690px, calc(100vh - 42px)); */
    align-content: start;
    overflow-y: auto;
    /* padding-bottom: clamp(94px, 18vh, 150px); */
            padding-bottom: 1.2em;
  }

  .site-header.is-open .site-header__brand {
    top: 0;
    left: 0;
  }

  .site-header.is-open .site-header__nav:first-of-type {
    margin-top: 36px;
  }

  .site-main .hero {
    min-height: 740px;
  }

  .site-main .hero__slide[style] {
    background-image: var(--hero-mobile-image, var(--hero-desktop-image));
  }

  .site-main .hero__content {
    bottom: 112px;
    width: 100%;
    max-width: 100%;
  }

  .site-main .hero .slider-controls {
    bottom: 28px;
  }

  .site-header__toggle,
  .site-header.is-open .site-header__toggle {
    left: 9px;
  }
}

@media (max-width: 575px) {
  .site-main .hero {
    min-height: 720px;
  }

  .site-main .hero__content {
    bottom: 108px;
  }
}

/* Final Why Teed Up alignment after all Figma viewport overrides. */
@media (min-width: 768px) {
  .site-main .why-teed-up__grid {
    width: min(calc(100% - clamp(56px, 10.4vw, 112px)), 1720px);
    max-width: 1720px;
    min-height: 0;
    grid-template-columns: minmax(250px, 553fr) minmax(330px, 680fr) minmax(190px, 370fr);
    column-gap: clamp(28px, 2.7vw, 52px);
    align-items: stretch;
    padding-top: clamp(56px, 5.2vw, 77px);
    padding-bottom: clamp(58px, 6vw, 100px);
  }

  .site-main .why-teed-up__media--primary {
    align-self: stretch;
    width: 100%;
    height: 100%;
    aspect-ratio: 553 / 804;
  }

  .site-main .why-teed-up__content {
    align-self: stretch;
    display: flex;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    padding-top: 0;
  }

  .site-main .why-teed-up__features {
    margin-top: auto;
  }

  .site-main .why-teed-up__media--secondary {
    align-self: end;
    width: 100%;
    height: auto;
    margin-top: 0;
    aspect-ratio: 370 / 409;
  }
}

/* Why Teed Up tablet/mobile stack. */
@media (max-width: 991px) {
  .site-main .why-teed-up {
    padding: 0;
    overflow: hidden;
  }

  .site-main .why-teed-up__grid {
    display: grid;
    /* width: min(calc(100% - 32px), 420px); */
    /* max-width: 420px; */
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    margin-inline: auto;
    /* padding: 50px 0 52px; */
    padding: 20px;
  }

  .site-main .why-teed-up__media,
  .site-main .why-teed-up__media--primary {
    display: block;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 334;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .site-main .why-teed-up__media--primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center top; */
  }

  .site-main .why-teed-up__media--secondary {
    display: none;
  }

  .site-main .why-teed-up__content {
    display: block;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding-top: 24px;
  }

  .site-main .why-teed-up__eyebrow {
    margin: 0 0 10px;
    font-family: "Inter", var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 3.2px;
  }

  .site-main .why-teed-up__title {
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px;
    font-family: "Montserrat", var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
  }

  .site-main .why-teed-up__title span {
    display: block;
    margin-top: 4px;
    color: #000000;
    font-family: "Inter", var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-transform: none;
  }

  .site-main .why-teed-up__features {
    display: grid;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .site-main .why-teed-up__feature {
    min-height: 56px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    line-height: 22px;
  }

  .site-main .why-teed-up__feature img {
    width: 26px;
    height: 26px;
  }

  .site-main .why-teed-up__decor--top {
    top: 360px;
    right: -180px;
    width: 335px;
    height: 465px;
    opacity: .42;
  }

  .site-main .why-teed-up__decor--bottom {
    display: none;
  }
}


@media (max-width: 767px) {
  .site-main .lesson-banner {
    min-height: 0;
    padding-bottom: 44px;
    background: #ffffff !important;
    background-image: none !important;
  }

  .site-main .lesson-banner__copy {
    margin-bottom: 0;
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  .site-header .btn,
  .site-header button,
  .site-main .btn,
  .site-main button,
  .site-main a[class*="__button"],
  .site-main .benefits--plans .membership-card__button,
  .site-main .benefits--plans .membership-card__learn-more,
  .site-main .benefits--plans .benefits__button,
  .site-main .lesson-banner__actions .lesson-banner__button,
  .site-main .faq-contact__button,
  .site-main .instructors__button,
  html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button,
  .site-main input[type="button"],
  .site-main input[type="submit"],
  .site-main input[type="reset"],
  .site-footer .btn,
  .site-footer button,
  .site-footer a[class*="__button"],
  .site-footer .site-footer__submit,
  .site-footer input[type="button"],
  .site-footer input[type="submit"],
  .site-footer input[type="reset"] {
    font-size: 15px;
  }
}

@media (max-width: 359px) {
  .site-header .btn,
  .site-header button,
  .site-main .btn,
  .site-main button,
  .site-main a[class*="__button"],
  .site-main .benefits--plans .membership-card__button,
  .site-main .benefits--plans .membership-card__learn-more,
  .site-main .benefits--plans .benefits__button,
  .site-main .lesson-banner__actions .lesson-banner__button,
  .site-main .faq-contact__button,
  .site-main .instructors__button,
  html body .site-main .faq-contact #contact.contact-panel #gform_wrapper_1 #gform_submit_button_1.gform_button.button,
  .site-main input[type="button"],
  .site-main input[type="submit"],
  .site-main input[type="reset"],
  .site-footer .btn,
  .site-footer button,
  .site-footer a[class*="__button"],
  .site-footer .site-footer__submit,
  .site-footer input[type="button"],
  .site-footer input[type="submit"],
  .site-footer input[type="reset"] {
    font-size: 13px;
  }
}

@media (min-width: 1600px) {

  .site-header,
  .site-header.is-open {
    /* top: clamp(20px, 1.5vw, 28px); */
    top: clamp(35px, 1.5vw, 28px);
  }

  .site-header,
  .site-header.is-open {
    top: 34px;
  }
}
