:root {
  --champ-red: #e1212d;
  --champ-blue: #1848aa;
  --vt-green: #1f5d3a;
  --vt-green-2: #2c7a4b;
  --bg: #f7f9fc;
  --muted: #5f6b80;
  --red: var(--champ-red);
  --blue: var(--champ-blue);
  --blue-dark: #0f2f74;
  --white: #ffffff;
  --ink: #111827;
  --radius: 18px;
  --shadow: 0 12px 24px rgba(24, 72, 170, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 40%, #ffffff 100%);
}

.container {
  width: min(1160px, calc(100vw - 40px));
  margin-inline: auto;
}

.announcement-bar {
  background: linear-gradient(90deg, var(--red), #ef4a55, var(--blue));
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
}

.announcement-bar p {
  margin: 0;
  padding: 0.62rem 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #dce6ff;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(18, 32, 59, 0.08);
}

.header-inner {
  width: 100%;
  padding: 12px 24px;
  box-sizing: border-box;
}

.nav-wrap {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  gap: 0;
  align-items: center;
  color: inherit;
  text-decoration: none;
  justify-self: start;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #70db66 0%, #2ea83e 70%);
  border: 3px solid var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}

.brand-name,
.brand-sub {
  margin: 0;
  line-height: 1;
  font-family: "Poppins", system-ui, sans-serif;
}

.brand-name {
  color: var(--red);
  font-size: 1.4rem;
}


.brand-sub {
  color: var(--blue);
  font-size: 1.35rem;
}

.brand-text {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--blue-dark);
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
  justify-self: center;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.92rem;
  padding: 0.1rem 0.05rem;
}

.menu-toggle {
  display: none;
}

.header-inner.nav-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  min-height: 0;
  gap: 1rem;
}

.header-brand {
  flex: 0 0 auto;
  justify-self: auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  height: 81px;
  width: auto;
  display: block;
}

.header-nav-wrapper {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.header-nav-wrapper .site-nav {
  justify-content: center;
}

.header-cta {
  flex: 0 0 auto;
  margin-left: auto;
  justify-self: auto;
}


.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  margin-top: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid #d6e4ff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.45rem;
  display: none;
  z-index: 50;
}

.dropdown-menu a {
  display: block;
  padding: 0.48rem 0.6rem;
  border-radius: 8px;
  color: var(--ink) !important;
}

.dropdown-menu a:hover {
  background: #eef4ff;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}


.hero {
  background: linear-gradient(180deg, #cfe3d6 0%, #eef5f1 35%, #ffffff 100%);
  min-height: calc(100vh - 88px);
  padding: 90px 20px 70px;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  margin: 0 0 16px;
  color: var(--vt-green);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 14px;
  color: var(--red);
}

.hero-subtitle {
  margin: 0 0 28px;
  color: var(--blue-dark);
}

.hero-cta {
  margin-top: 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.7rem;
  align-items: stretch;
}

.kicker {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Poppins", system-ui, sans-serif;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--blue);
}

h2 {
  font-size: clamp(28px, 3.6vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--red);
}

h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.25;
  font-weight: 600;
}

p {
  margin-top: 0;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.3rem 0;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--red);
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(225, 33, 45, 0.25);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: #eef9f2;
  border-color: var(--vt-green);
  color: var(--vt-green);
  box-shadow: 0 8px 18px rgba(24, 72, 170, 0.18);
}

.btn-sm {
  padding: 0.44rem 0.72rem;
  font-size: 0.83rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-card {
  background: var(--white);
  border: 2px solid #d4e2ff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.membership-spotlight {
  background: linear-gradient(160deg, #ffffff 0%, #eef4ff 100%);
  border-color: #bcd2ff;
}

.pill {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-grid {
  display: grid;
  gap: 0.85rem;
}

.mini-grid div {
  background: var(--white);
  border: 1px solid #d2e2ff;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section-copy {
  max-width: 62ch;
}


.content-stack {
  display: grid;
  gap: 1rem;
}

.about-cta-row {
  margin-top: 1.2rem;
}

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

.amenity-feature h3 {
  color: var(--blue-dark);
}

.amenity-feature p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .amenity-feature-grid {
    grid-template-columns: 1fr;
  }
}

.section-accent {
  background: linear-gradient(120deg, #1848aa 0%, #0e357f 100%);
  color: var(--white);
}

.section-accent h2,
.section-accent p {
  color: var(--white);
}


.shop-hero {
  padding: 3.5rem 0 2.8rem;
}

.shop-hero h1 {
  color: var(--white);
  margin: 0;
}

.shop-hero-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-muted {
  background: #f3f7f4;
}

.shop-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0;
}

.shop-subnav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
}

.shop-subnav .manage-plan-link {
  background: #ffd400;
  color: #0f2f74;
  border-color: #ffd400;
}

.cards {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.3rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid #dce8ff;
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 6px 14px rgba(24, 72, 170, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(24, 72, 170, 0.14);
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.card-featured {
  border-color: var(--red);
}

.tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.3rem;
  font-size: 0.84rem;
}

.compare-title-row {
  position: relative;
  min-height: 1.7rem;
  margin-bottom: 0.8rem;
}

.compare-title-row h3 {
  margin: 0;
}

.compare-title-row .tag {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.price {
  color: var(--blue);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.compare-card h3,
.plan-card h3,
.location-card h3 {
  color: var(--blue-dark);
}

.dual-price {
  margin: 0 0 0.45rem;
  font-weight: 700;
  font-size: 1.08rem;
}

.dual-price span {
  color: #4b5c80;
  font-weight: 600;
  margin-right: 0.35rem;
}

.vip-wrap {
  background: linear-gradient(120deg, #fce8ea 0%, #edf3ff 100%);
  border: 2px solid #d6e4ff;
  border-top: 8px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.vip-btn {
  white-space: nowrap;
  font-size: 1.05rem;
  padding-inline: 1.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.section-about {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.about-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.6rem;
  align-items: start;
}

.about-kicker {
  margin: 0 0 0.45rem;
  color: var(--blue-dark);
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.about-point {
  background: var(--white);
  border: 2px solid #dce8ff;
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.about-point h3 {
  color: var(--blue-dark);
  margin-bottom: 0.35rem;
}

.location-card p {
  margin-bottom: 0.8rem;
}

.location-card a {
  color: var(--blue-dark);
  font-weight: 700;
}

.site-footer {
  background: #081835;
  color: #dbe5ff;
  padding: 1.5rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: #ffffff;
}

.footer-address {
  margin: 0.35rem 0 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .four-up,
  .three-up,
  .split,
  .about-shell,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .vip-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    margin-top: 0;
    background: transparent;
    border-bottom: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 0.5rem;
    column-gap: 0.65rem;
    justify-self: stretch;
  }

  .header-inner.nav-wrap {
    flex-wrap: wrap;
    padding: 0 14px;
    gap: 0.6rem;
  }

  .header-brand {
    order: 1;
  }


  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .header-nav-wrapper {
    order: 3;
    flex: 1 0 100%;
    justify-content: flex-start;
  }

  .site-nav {
    justify-self: auto;
  }

  .nav-dropdown::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 1px dashed #cfdfff;
    margin-top: 0.4rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 64px;
  }

  .header-logo {
    height: 53px;
  }
}

.checkout-cta-wrap {
  margin-top: 1.2rem;
}

.checkout-shell {
  max-width: 820px;
}

.checkout-form {
  background: var(--white);
  border: 2px solid #dce8ff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.checkout-form label {
  font-weight: 600;
  color: var(--blue-dark);
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  border: 1px solid #b9caef;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

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

@media (max-width: 700px) {
  .form-grid.two-col {
    grid-template-columns: 1fr;
  }
}

.notice-box {
  background: #eef5ff;
  border: 1px solid #c7d9ff;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--blue-dark);
  font-weight: 600;
}

.total-box {
  background: #f8fbff;
  border: 2px dashed #bfd3ff;
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
}

.total-box p {
  margin: 0.2rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
}

.contact-panel h1 {
  margin-bottom: 0.6rem;
}

.contact-intro {
  color: #d98400;
  max-width: 48ch;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
}

.contact-meta a {
  color: var(--blue-dark);
  text-decoration: none;
}

.contact-form textarea {
  width: 100%;
  border: 1px solid #b9caef;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  border-radius: 8px;
}

.locations-panel {
  display: grid;
  gap: 1rem;
}

.location-item {
  background: #f7faff;
  border: 2px solid #dce8ff;
  border-radius: 12px;
  padding: 1rem;
}

.location-item h3 {
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}

.location-item p {
  margin: 0.25rem 0;
}

.location-item a {
  color: #d98400;
  font-weight: 700;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.vip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.vip-signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

.vip-benefits-card {
  background: linear-gradient(180deg, #eef4ff 0%, #dce8ff 100%);
  border: 3px solid #d7212d;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.vip-logo-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.vip-logo-text {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 1.2rem;
}

.vip-benefits-card h1 {
  margin-bottom: 0.6rem;
}

.vip-benefits-card ul {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  gap: 0.45rem;
}

.vip-join-banner {
  margin-top: 0.95rem;
  margin-bottom: 0;
  background: linear-gradient(90deg, #d8202f, #ef303f);
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 1.25rem;
}

.birthday-note {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.birthday-note span {
  color: #d57d00;
  font-weight: 700;
}

@media (max-width: 980px) {
  .vip-signup-grid {
    grid-template-columns: 1fr;
  }
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-logo-main {
  width: clamp(150px, 18vw, 240px);
  height: auto;
}

.hero-logo-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hero-main-logo {
  width: min(460px, 92%);
  height: auto;
}

.btn-gold {
  background: #ffd400;
  border-color: #ffd400;
  color: #0f2f74;
}

.shop-hero-copy {
  margin: 0.8rem 0 1rem;
  color: #cde0ff;
}

.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.shop-tab {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  padding: 0.58rem 1rem;
  cursor: pointer;
  text-decoration: none;
}

.shop-tab.is-active {
  background: #ffd400;
  color: #0f2f74;
  border-color: #ffd400;
}

.manage-plan-btn {
  background: rgba(255, 255, 255, 0.12);
}

.shop-panel {
  display: none;
}

.shop-panel.is-active {
  display: block;
}

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

.multi-vehicle h2 {
  color: #fff;
}

.multi-cards .option-card {
  border: 2px solid #ffd400;
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
}

.option-card h3,
.option-card a {
  color: #fff;
}

.option-card ul {
  margin-bottom: 0.8rem;
}

.promo-cards {
  margin-top: 0;
}

.promo-card {
  border: 2px solid #d5dbe6;
  box-shadow: none;
}

.promo-eyebrow {
  color: #0e5cb0;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.vip-landing {
  background: #f1f1f1;
}

.vip-landing-shell {
  max-width: 720px;
  text-align: center;
}

.vip-main-logo {
  width: min(370px, 90%);
  height: auto;
  margin-bottom: 1rem;
}

.vip-landing h1 {
  color: var(--blue-dark);
}

.vip-landing-copy {
  max-width: 48ch;
  margin: 0 auto 1.3rem;
  font-size: 1.15rem;
}

.vip-form {
  margin: 0 auto;
  max-width: 700px;
  background: #fff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 1.2rem;
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.vip-form input,
.vip-form select {
  width: 100%;
  border: 1px solid #d4d4d4;
  padding: 0.75rem 0.8rem;
  border-radius: 5px;
  font: inherit;
}

.vip-submit {
  width: 100%;
  border-radius: 4px;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.vip-disclaimer {
  margin: 1rem auto 0;
  max-width: 70ch;
  font-size: 0.95rem;
  color: #445;
}

.site-footer {
  background: linear-gradient(135deg, #0f5ea8 0%, #0c4e8f 100%);
  color: #fff;
  margin-top: 0;
  padding-top: 2.3rem;
}

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

.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.footer-main h3 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.footer-follow {
  font-weight: 800;
  margin: 0.7rem 0 0.3rem;
}

.footer-social,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-list a,
.footer-social a {
  color: #fff;
  text-decoration: none;
}

.two-col-links {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  column-gap: 1.2rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding: 1rem 0 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
}

@media (max-width: 980px) {
  .hero-grid,
  .four-up,
  .three-up,
  .two-up,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .shop-tabs {
    gap: 0.5rem;
  }

  .shop-tab {
    width: 100%;
    text-align: center;
  }

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

.shop-panel-stack {
  min-height: 740px;
}

.shop-panel {
  min-height: 620px;
}

.about-page h1 {
  color: var(--red);
  margin-bottom: 1rem;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.about-photo-card {
  border: 1px solid #cfd8ea;
  background: #fff;
  padding: 0.5rem;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
}

.about-locations-table {
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .shop-panel-stack,
  .shop-panel {
    min-height: 0;
  }

  .about-page-grid {
    grid-template-columns: 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.manage-page {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 40%, #ffffff 100%);
}

.manage-shell {
  text-align: center;
}

.manage-shell .manage-logo-link,
.manage-shell .manage-card {
  width: min(1160px, calc(100vw - 40px));
  margin-inline: auto;
}

.manage-logo-link {
  display: block;
  text-decoration: none;
  text-align: left;
  margin-bottom: 1rem;
}

.manage-logo-link .brand-text {
  display: inline-block;
}

.manage-logo {
  width: min(290px, 70vw);
  height: auto;
  display: block;
}

.manage-card {
  margin: 0 auto;
  width: min(560px, 100%);
  background: #fff;
  border: 2px solid #dce8ff;
  border-radius: var(--radius);
  padding: 1.35rem;
  text-align: left;
  box-shadow: var(--shadow);
}

.manage-card h1 {
  color: #111;
  font-size: 2rem;
  margin-bottom: 0.9rem;
}

.manage-sub {
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.manage-form input {
  width: 100%;
  border: 1px solid #d2d8e4;
  border-radius: 10px;
  padding: 0.8rem;
  font: inherit;
  margin-bottom: 0.95rem;
}

.manage-btn {
  width: 100%;
  border-radius: 999px;
}

.manage-help {
  text-align: center;
  margin: 1.2rem 0 0;
}

.manage-help a {
  color: #0f1c38;
}

.hero-simple {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-simple-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.2rem;
  align-items: start;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 58ch;
}

.hero-note {
  font-weight: 700;
  color: var(--blue-dark);
}

.hero-quick-card {
  background: #fff;
  border: 1px solid #d5e4ff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.hero-quick-card h2 {
  margin-bottom: 0.5rem;
}

.hero-quick-card ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.simple-cta-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.card-featured h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

  .hero-simple-grid {
    grid-template-columns: 1fr;
  }
}


.compare-card ul {
  padding-left: 1.1rem;
  margin-bottom: 1rem;
  display: grid;
  gap: 0.35rem;
}

.compare-card {
  display: flex;
  flex-direction: column;
}

.compare-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.site-footer.simple-footer {
  background: #ededf0;
  border-top: 1px solid #d9dce5;
  padding: 2.25rem 0 2.5rem;
  text-align: center;
}

.simple-footer-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.simple-footer-copy {
  margin: 0;
  color: #7b8092;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.simple-footer-copy a {
  color: #2f6fcd;
  text-decoration: none;
  font-weight: 600;
}

.simple-footer-social {
  margin: 0;
  color: #2f6fcd;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.simple-footer-social a {
  color: #d31133;
  text-decoration: none;
  font-weight: 800;
}

.simple-footer-logo {
  width: min(380px, 80vw);
  height: auto;
}

.simple-footer-brand {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--blue-dark);
}

.about-photo-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #eef4ff, #dce8ff);
  color: var(--blue-dark);
  border: 1px dashed #9cb4e8;
  border-radius: 12px;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.7rem;
  text-align: center;
  white-space: pre-line;
  padding: 1rem;
}

.simple-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social-icon {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.offer-hero {
  min-height: calc(100vh - 76px);
  background:
    radial-gradient(circle at 80% 20%, rgba(31, 93, 58, 0.2), transparent 48%),
    radial-gradient(circle at 12% 75%, rgba(44, 122, 75, 0.14), transparent 45%),
    linear-gradient(120deg, #e6eefc 0%, #f7fbf9 45%, #e5f2ea 100%);
  display: grid;
  align-items: center;
}

.offer-hero-overlay {
  padding: 3.5rem 0;
}

.offer-hero-inner {
  text-align: center;
}

.offer-kicker {
  margin: 0 0 1rem;
  color: var(--vt-green);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.offer-hero h1 {
  color: var(--red);
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 6vw, 4.2rem);
}

.offer-hero h2 {
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  margin-bottom: 1.1rem;
}

.offer-hero h2 span {
  font-style: italic;
  text-decoration: underline;
}

.offer-actions {
  justify-content: center;
}

.offer-note {
  font-weight: 700;
  color: var(--blue-dark);
}

.badge-vt {
  display: inline-block;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(31, 93, 58, 0.12);
  color: var(--vt-green);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
}

.perk-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.55rem;
  background: rgba(24, 72, 170, 0.1);
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 700;
}

.perk-tile-local {
  border-color: rgba(31, 93, 58, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f3faf6 100%);
}

.perk-tile-local .perk-icon {
  background: rgba(31, 93, 58, 0.14);
  color: var(--vt-green);
}

.plan-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem;
  display: grid;
  gap: 0.35rem;
}

.plan-list li,
.check-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.plan-list li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vt-green);
  font-weight: 700;
}

.check-list.emoji-only-list li {
  padding-left: 0;
}

.check-list.emoji-only-list li::before {
  content: none;
}


.plan-notes {
  margin-top: 0.15rem;
  gap: 0.2rem;
}

.plan-notes li {
  color: #6f768a;
  font-size: 0.9rem;
}

.plan-notes li::before {
  content: "-";
  color: #8a90a3;
  font-weight: 600;
}

.best-value {
  display: inline-block;
  margin-bottom: 0.6rem;
  background: rgba(225, 33, 45, 0.1);
  color: var(--champ-red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
}

.vt-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.vt-proud-card {
  background: linear-gradient(140deg, #eff7f1, #f8fcf9);
  border: 1px solid rgba(31, 93, 58, 0.35);
  border-radius: 14px;
  padding: 1.1rem;
}

.vt-proud-card h3 {
  color: var(--vt-green);
}

.amenity-icon {
  color: var(--vt-green);
  font-weight: 700;
  margin-right: 0.4rem;
}

.location-subline {
  color: var(--muted);
}

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

.nav-wrap-simple {
  min-height: 84px;
}

.manage-link {
  font-size: 0.82rem;
  color: var(--blue) !important;
  letter-spacing: 0.01em;
}

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

.perk-tile {
  background: #fff;
  border: 2px solid #dce8ff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

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

.final-cta-band {
  background: linear-gradient(120deg, #1848aa 0%, #123787 72%);
  border-top: 4px solid rgba(31, 93, 58, 0.5);
}

.final-cta-inner {
  text-align: center;
}

.final-cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.champ-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1rem;
}

.champ-footer .footer-links a {
  color: #2f6fcd;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 980px) {
  .perk-tiles,
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .perk-tiles,
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}


.nav-wrap-simple .btn.btn-sm {
  border-radius: 12px;
  padding: 0.48rem 0.75rem;
  min-width: 0;
  font-size: 0.82rem;
}

@media (min-width: 981px) {
  .nav-wrap-simple {
    gap: 0.35rem;
  }

  .nav-wrap-simple .brand-logo-main {
    width: clamp(138px, 14vw, 180px);
  }

  .nav-wrap-simple .site-nav {
    margin-left: 0;
    column-gap: 0.45rem;
  }
}


.hero-subcopy {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--blue-dark);
  margin: 0.25rem 0 1.1rem;
  font-weight: 700;
}

.footer-local {
  margin: 0;
  color: #5c6277;
  font-weight: 600;
}

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

@media (max-width: 800px) {
  .cards.two-up {
    grid-template-columns: 1fr;
  }
}


/* Targeted conversion/page upgrades */
.brand-text {
  white-space: nowrap;
}

.monthly-hero-compact {
  padding-bottom: 2.25rem;
}

.monthly-pricing-first {
  padding-top: 2.75rem;
}

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

.location-detail-card a {
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 600;
}

.location-detail-card ul {
  margin-top: 0.6rem;
}

/* wash package tier accent colors */
:root {
  --tier-orange: #E58A00;
  --tier-blue: #1E4FA3;
  --tier-red: #B11217;
  --tier-green: #1F7A3D;
}

.wash-upsell-box {
  border: 1px solid #d5e4ff;
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  margin-bottom: 1.2rem;
}

.tier-grid {
  align-items: stretch;
}

.tier-card {
  position: relative;
  border-top-width: 4px;
}

.tier-basic {
  border-top-color: var(--tier-orange);
  background: linear-gradient(180deg, rgba(229, 138, 0, 0.05), #fff 38%);
}

.tier-standard {
  border-top-color: var(--tier-blue);
  background: linear-gradient(180deg, rgba(30, 79, 163, 0.05), #fff 38%);
}

.tier-super {
  border-top-color: var(--tier-red);
  background: linear-gradient(180deg, rgba(177, 18, 23, 0.05), #fff 38%);
}

.tier-deluxe {
  border-top-color: var(--tier-green);
  background: linear-gradient(180deg, rgba(31, 122, 61, 0.06), #fff 38%);
}

@media (max-width: 1080px) {
  .location-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand-text {
    font-size: 1rem;
  }

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

  .monthly-hero-compact,
  .monthly-pricing-first {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}


.plan-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 0.35rem;
  column-gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.plan-title-row h3 {
  margin: 0;
  white-space: nowrap;
}

.plan-title-row .best-value {
  margin-bottom: 0;
  flex-shrink: 0;
}

.monthly-tier-grid .plan-title-row h3 {
  white-space: normal;
}

@media (min-width: 1081px) {
  .tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .tier-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


.header-cta {
  justify-self: end;
}


.final-cta-band .badge-vt {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(44, 122, 75, 0.6);
}


.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-title {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(18px, 1.5vw, 22px);
}

.badge-best {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(31, 122, 61, 0.1);
  color: var(--tier-green);
  border: 1px solid rgba(31, 122, 61, 0.35);
}

@media (max-width: 520px) {
  .card-title {
    white-space: normal;
  }
}


.hero-premium-line {
  margin: 0.25rem 0 0.35rem;
  font-weight: 600;
  color: var(--vt-green);
}

.hero-detail {
  max-width: 66ch;
  margin: 0.1rem auto 1rem;
  color: var(--muted);
}

.hero-tagline {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: var(--blue-dark);
  opacity: 0.9;
}

.split-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}


.wash-packages-main {
  padding-top: 1.5rem;
}


.vip-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.vip-title-row h1 {
  margin: 0;
}

.vip-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--vt-green);
  border: 1px solid rgba(31, 93, 58, 0.35);
  background: rgba(31, 93, 58, 0.08);
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.1;
}


@media (max-width: 1100px) {
  .site-header {
    height: 72px;
  }

  .header-inner.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0 14px;
  }

  .header-brand {
    flex: 0 0 auto;
    min-width: 0;
    flex-shrink: 0;
  }

  .header-logo {
    height: 54px;
    width: auto;
  }

  .header-nav-wrapper {
    order: 3;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
  }

  .menu-toggle,
  .mobile-menu-toggle,
  .menu-toggle.mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #12203b;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
  }

  .site-nav,
  .header-nav-wrapper .site-nav {
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(92vw, 320px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
  }

  .site-nav.open,
  .site-nav.menu-open {
    display: block !important;
    pointer-events: auto;
  }

  .site-nav.open a,
  .site-nav.menu-open a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .header-cta {
    margin-left: auto;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
}


@media (max-width: 768px) {
  .site-header {
    height: 64px;
  }

  .header-logo {
    height: 53px;
  }
}
