/* =============================================
   BEVEL BAR — GLOBAL STYLESHEET v2
   Clinical Luxury Theme
   ============================================= */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --cream:        #F7F4EE;
  --cream-light:  #FDFBF8;
  --white:        #FFFFFF;
  --dark:         #101010;
  --charcoal:     #1E1E1E;
  --text:         #2A2A2A;
  --text-muted:   #6A6A6A;
  --text-light:   #9A9A9A;
  --gold:         #B8965A;
  --gold-light:   #D4AF70;
  --gold-pale:    #F0E8D6;
  --border:       #E4DDD2;
  --border-dark:  #C8BFB0;

  --font-serif:   'Cormorant Garant', 'Playfair Display', Georgia, serif;
  --font-sans:    'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;

  --container:    1240px;
  --container-sm: 860px;
  --gap:          32px;
  --section:      100px;
  --section-sm:   64px;
  --radius:       4px;
  --radius-lg:    12px;
  --shadow:       0 2px 24px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 48px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 80px rgba(0,0,0,0.14);
  --trans:        0.25s ease;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--text); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; }

.section { padding: var(--section) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark  { background: var(--dark); color: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }

.sec-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.sec-hd p { color: var(--text-muted); margin-top: 14px; font-size: 1.05rem; }

.g-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.g-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.g-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border: 1.5px solid var(--dark);
  animation: bookRipple 2.4s ease-out infinite;
}
.btn--dark:hover { background: var(--charcoal); border-color: var(--charcoal); box-shadow: 0 4px 14px rgba(0,0,0,0.20); animation: none; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn--outline:hover { background: var(--dark); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

.btn--lg { padding: 16px 38px; font-size: 0.9rem; }

/* ---------- PROMO BAR ---------- */
.promo-bar {
  background: var(--gold-pale);
  color: var(--dark);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 200;
  border-bottom: 1px solid var(--border);
}
.promo-bar a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.promo-bar__code {
  font-weight: 700;
  background: rgba(184,150,90,0.18);
  border: 1px solid rgba(184,150,90,0.35);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  color: var(--dark);
}
.promo-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  opacity: 0.75;
  font-size: 1rem;
  line-height: 1;
  padding: 10px 14px;
  transition: opacity var(--trans);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
  pointer-events: auto;
}
.promo-bar__close:hover { opacity: 1; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,238,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  color: var(--dark);
  text-transform: uppercase;
  text-decoration: none;
}
.nav__logo span { color: var(--gold); }
.nav__logo em {
  display: block;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links li a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--trans);
  text-decoration: none;
}
.nav__links li a:hover { color: var(--gold); }
.nav__links li a.active { color: var(--dark); font-weight: 600; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__call {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color var(--trans);
}
.nav__call svg { flex-shrink: 0; color: var(--text-light); }
.nav__call:hover { color: var(--dark); }
.nav__call:hover svg { color: var(--dark); }

.nav__book {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  position: relative;
  overflow: hidden;
  animation: bookRipple 2.4s ease-out infinite;
  transition: box-shadow 0.2s ease, background var(--trans);
}
.nav__book:hover {
  background: var(--charcoal) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22) !important;
  animation: none;
}

/* Mobile nav call link */
.nav__mobile-call {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  border-bottom: 1px solid var(--border);
  padding: 12px 0 !important;
  letter-spacing: 0.02em;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--trans);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream-light);
  z-index: 150;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color var(--trans);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .nav__book {
  background: var(--dark) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 14px 24px !important;
  margin-top: 20px;
  border-radius: var(--radius) !important;
  text-align: center;
  font-size: 0.9rem !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
}
.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ---------- HERO SECTION ---------- */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero__image-wrap {
  width: 100%;
  position: relative;
  line-height: 0;
  /* Cap width on ultrawide monitors — image stays centered on cream background */
  max-width: 1920px;
  margin: 0 auto;
}

.hero__image {
  width: 100%;
  height: auto;
  /* Prevents distortion on ultrawide — image never stretches beyond its natural aspect ratio */
  max-height: 90vh;
  object-fit: contain;
  object-position: center top;
  display: block;
  /* High-quality rendering for the 2x upscaled image */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}

/* Hero image on mobile — zoom to center on IV bag */
@media (max-width: 640px) {
  .hero__image-wrap { overflow: hidden; max-height: 62vw; }
  .hero__image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 20%;
  }
}

.hero__cta-bar {
  background: var(--cream-light);
  border-top: 1px solid var(--border);
  padding: 36px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.hero__headline {
  max-width: 340px;
  flex-shrink: 0;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Animated "Mobile" word in hero eyebrow */
.hero__mobile-word {
  color: var(--dark);
  font-style: italic;
  letter-spacing: 0.08em;
  position: relative;
  animation: mobilePulse 4s ease-in-out infinite;
}
@keyframes mobilePulse {
  0%, 100% { opacity: 1; color: var(--dark); }
  50%       { opacity: 0.65; color: var(--gold); }
}
.hero__title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin: 0 0 14px;
}
.hero__sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 300px;
}
@media (max-width: 768px) {
  .hero__cta-bar { flex-direction: column; gap: 24px; padding: 28px 16px; }
  .hero__headline { max-width: 100%; text-align: center; }
  .hero__title { font-size: 1.9rem; }
  .hero__sub { max-width: 100%; }
}

/* ---- HERO BOOKING WIDGET ---- */
.hero__book-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow);
}
.hbw__label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hbw__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.hbw__tab {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  border-radius: 8px;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* Oregon tab — blue-green gradient fill when active, teal outline when inactive */
.hbw__tabs .hbw__tab:first-child.active {
  background: linear-gradient(120deg, #0e7490 0%, #0ea472 100%);
  border-color: transparent;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(14,116,144,0.30);
}
.hbw__tabs .hbw__tab:first-child:not(.active) {
  background: transparent;
  border-color: #0e7490;
  color: #0e7490;
}
.hbw__tabs .hbw__tab:first-child:not(.active):hover {
  background: linear-gradient(120deg, #0e7490 0%, #0ea472 100%);
  border-color: transparent;
  color: var(--white);
}

/* Texas tab — gradient border outline when inactive, filled when active */
.hbw__tabs .hbw__tab:last-child:not(.active) {
  background:
    linear-gradient(var(--cream-light), var(--cream-light)) padding-box,
    linear-gradient(120deg, #1d4ed8 0%, #dc2626 100%) border-box;
  border: 2px solid transparent;
  color: var(--dark);
  font-weight: 700;
}
.hbw__tabs .hbw__tab:last-child.active {
  background: linear-gradient(120deg, #1d4ed8 0%, #dc2626 100%);
  border-color: transparent;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(29,78,216,0.30);
}
.hbw__tabs .hbw__tab:last-child:not(.active):hover {
  background:
    linear-gradient(120deg, rgba(29,78,216,0.08) 0%, rgba(220,38,38,0.08) 100%) padding-box,
    linear-gradient(120deg, #1d4ed8 0%, #dc2626 100%) border-box;
  border: 2px solid transparent;
  color: var(--dark);
}

.hbw__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hbw__cities--hidden { display: none; }
.hbw__city {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hbw__city:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--dark);
}
.hbw__city--more {
  color: var(--text-light);
  font-size: 0.75rem;
  font-style: italic;
}

/* Live / available city */
.hbw__city--live {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
}
.hbw__city--live:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Availability notice */
.hbw__available {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 2px 0 14px;
  line-height: 1.4;
  padding: 7px 10px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.hbw__available strong { color: var(--dark); }
.hbw__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  flex-wrap: wrap;
}
.hbw__trust {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.hbw__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hbw__book {
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  /* shimmer applied via .btn--gradient */
}
.hbw__call {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--trans);
}
.hbw__call:hover { color: var(--dark); }

@media (max-width: 480px) {
  .hero__book-widget { padding: 16px; }
  .hbw__footer { flex-direction: column; align-items: flex-start; }
  .hbw__actions { width: 100%; flex-direction: column; }
  .hbw__book { width: 100%; text-align: center; }
  .hbw__call { font-size: 0.75rem; }
}

/* ---------- CREDENTIAL BAR ---------- */
.credential-bar {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.credential-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.credential-item svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.9;
}
.credential-bar__sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .credential-bar__inner { gap: 0; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 8px; }
  .credential-bar__inner::-webkit-scrollbar { display: none; }
  .credential-bar__sep { display: none; }
  .credential-item { padding: 6px 18px; border-right: 1px solid var(--border); }
  .credential-item:last-child { border-right: none; }
}

/* ---------- STATS ROW ---------- */
.stats-row {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { font-size: 1.6rem; color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- EXPERIENCE / SPLIT SECTION ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
  align-items: stretch;
}
.split--reverse .split__img { order: 2; }
.split--reverse .split__content { order: 1; }

.split__img {
  position: relative;
  overflow: hidden;
}
.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  transition: transform 0.6s ease;
}
.split:hover .split__img img { transform: scale(1.03); }
.split__img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
}
.split__img-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}
.split__img-badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.split__content {
  background: var(--white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.split__content h2 { margin-bottom: 4px; }
.split__content p { color: var(--text-muted); }

.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-item__icon {
  width: 22px;
  height: 22px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-item p { font-size: 0.9rem; margin: 0; }
.check-item strong { color: var(--dark); }

.split__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- WHY BEVEL BAR CARDS ---------- */
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feat-card__icon {
  display: block;
  margin-bottom: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.feat-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.feat-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- CLINICAL SVG ICONS (inline use) ---------- */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; }

/* ---------- IV TREATMENT CARDS ---------- */
.g-iv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .g-iv { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .g-iv { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 400px) {
  .g-iv { grid-template-columns: 1fr; }
}

.iv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
  position: relative;
  display: flex;
  flex-direction: column;
}
.iv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.iv-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.iv-badge--pop { background: linear-gradient(120deg, #0e7490 0%, #0ea472 100%); color: var(--white); }
.iv-badge--trend { background: var(--gold); color: var(--white); }
.iv-badge--new { background: var(--charcoal); color: var(--white); }
.iv-badge--fav { background: #7C3F1E; color: var(--white); }
.iv-badge--staff { background: #2D4A35; color: var(--white); }

.iv-card__img {
  position: relative;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 360px;
}
.iv-card__bag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* ── Cream label — sits on the grey square of each IV bag ── */
.iv-card__bag-label {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  padding: 4px 7px 5px;
  text-align: center;
  pointer-events: none;
  width: 30%;
  min-height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.iv-card__bag-label-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.iv-card__bag-label-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.36rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ── Label adjustments on smaller cards ── */
@media (max-width: 680px) {
  .iv-card__bag-label {
    width: 32%;
    padding: 5px 8px 6px;
    min-height: 36px;
  }
  .iv-card__bag-label-name { font-size: 0.62rem; }
  .iv-card__bag-label-tag  { font-size: 0.40rem; }
  .iv-card__img { height: 280px; }
}

/* ── Cover the baked-in text at the bottom of the bag images ── */
.iv-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: var(--cream-light);
  z-index: 1;
}

/* ── Expand accordion panels below image ── */
.iv-card__body {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.iv-card__expand {
  border-bottom: 1px solid var(--border);
}

.iv-card__expand-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  transition: background 0.2s ease;
}
.iv-card__expand-btn:hover {
  background: var(--cream-light);
}
.iv-card__expand-btn .expand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.25s ease;
}
.iv-card__expand-btn:hover .expand-icon {
  background: var(--gold);
}

/* Content shown on hover over the button */
.iv-card__expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding: 0 14px;
  background: var(--cream-light);
}
.iv-card__expand:hover .iv-card__expand-content {
  max-height: 200px;
  padding: 10px 14px 12px;
}
.iv-card__expand-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.iv-card__expand-content li {
  font-size: 0.8rem;
  color: var(--dark);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.45;
}
.iv-card__expand-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0ea472;
  font-size: 0.7rem;
  top: 4px;
}
.iv-card__expand-content p {
  font-size: 0.8rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

/* CTA button */
.iv-card__cta {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--trans), box-shadow 0.2s ease;
}
.iv-card__cta:hover {
  background: var(--charcoal);
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
}

/* ---------- IV CARD INFO PILLS — vertical accordion ---------- */
.iv-card__pills {
  background: var(--cream-light);
  border-top: 1px solid var(--border);
}

.iv-card__pill {
  border-bottom: 1px solid var(--border);
}
.iv-card__pill:last-child {
  border-bottom: none;
}

/* Row: black circle + + label text */
.iv-card__pill-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dark);
  transition: background 0.18s ease;
}
.iv-card__pill-btn:hover {
  background: rgba(0,0,0,0.04);
}

/* Black + circle */
.iv-card__pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}

/* Rotate + to × when open */
.iv-card__pill.open .iv-card__pill-icon,
.iv-card__pill:hover .iv-card__pill-icon {
  transform: rotate(45deg);
}

/* Dropdown body — expands downward */
.iv-card__pill-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.iv-card__pill:hover .iv-card__pill-body,
.iv-card__pill.open .iv-card__pill-body {
  max-height: 120px;
}

.iv-card__pill-body-inner {
  padding: 2px 14px 11px 44px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- ATHLETE SPLIT ---------- */
.athlete-split {
  border-top: 1px solid var(--border);
}
.athlete-split .split__img img {
  object-position: center top; /* keep face in frame */
  min-height: 520px;
}

/* ---------- GROUP EVENTS ---------- */
.group-events {
  background: var(--cream);
  color: var(--dark);
  padding: var(--section) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.group-events__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.group-events__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.group-events__photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.group-events .eyebrow { color: var(--gold); }
.group-events h2 { color: var(--dark); }
.group-events p { color: var(--text-muted); }

.group-perks { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.group-perk { display: flex; align-items: flex-start; gap: 16px; }
.group-perk__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.group-perk__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}
.group-perk__text strong { display: block; color: var(--dark); margin-bottom: 4px; font-size: 0.95rem; }
.group-perk__text { font-size: 0.88rem; color: var(--text-muted); }

.group-events__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--white);
  transition: background var(--trans);
}
.step:last-child { border-right: none; }
.step:hover { background: var(--cream); }
.step__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
}
.step__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.step__desc { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- LOCATIONS ---------- */
/* ── Where We Serve — new aerial city-button layout ── */
.serve-section { background: var(--dark); }
.sec-hd--light .eyebrow { color: var(--gold-light); }
.sec-hd--light h2,
.sec-hd--light p { color: var(--white); }
.sec-hd--light p { color: rgba(255,255,255,0.65); }

.serve-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.serve-state {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  background: #0d0c0b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.serve-state__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.serve-state__content {
  position: relative;
  z-index: 1;
  padding: 36px;
}
.serve-state__header { margin-bottom: 22px; }
.serve-state__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 6px;
}
.serve-state__name {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1;
}
.serve-state__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-btn {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 30px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.city-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.city-btn--more {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
  font-weight: 600;
}
.city-btn--more:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── Oregon city buttons — solid blue-green gradient (matches Book Now) ── */
.serve-state--oregon .city-btn {
  background: linear-gradient(120deg, #0e7490 0%, #0ea472 100%);
  border-color: transparent;
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(14,116,144,0.30);
}
.serve-state--oregon .city-btn:hover {
  background: linear-gradient(120deg, #0b6278 0%, #0a8a60 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(14,116,144,0.42);
}
.serve-state--oregon .city-btn--more {
  background: transparent;
  border: 1.5px solid #0ea472;
  color: #4ade80;
  box-shadow: none;
}
.serve-state--oregon .city-btn--more:hover {
  background: #0ea472;
  color: var(--white);
}

/* ── Texas city buttons — blue-red gradient OUTLINE only ── */
.serve-state--texas .city-btn {
  background-image:
    linear-gradient(rgba(255,255,255,0.06), rgba(255,255,255,0.06)),
    linear-gradient(120deg, #1d4ed8 0%, #dc2626 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  color: var(--white);
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: none;
}
.serve-state--texas .city-btn:hover {
  background-image:
    linear-gradient(rgba(255,255,255,0.16), rgba(255,255,255,0.16)),
    linear-gradient(120deg, #1d4ed8 0%, #dc2626 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(29,78,216,0.28);
}
.serve-state--texas .city-btn--more {
  background-image:
    linear-gradient(rgba(255,255,255,0.03), rgba(255,255,255,0.03)),
    linear-gradient(120deg, #1d4ed8 0%, #dc2626 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: rgba(255,255,255,0.80);
}

/* Legacy loc-card (used on location sub-pages) */
.loc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.loc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform var(--trans), box-shadow var(--trans);
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.loc-card--oregon { background: linear-gradient(150deg, #3D5C47 0%, #4E7560 45%, #5A8A6E 100%); }
.loc-card--texas  { background: linear-gradient(150deg, #2A4A68 0%, #37617F 45%, #3E7294 100%); }
.loc-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 65%);
}
.loc-card__body {
  position: relative;
  z-index: 1;
  padding: 36px;
  color: var(--white);
}
.loc-card__state {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}
.loc-card__name {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.loc-card__cities {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.loc-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- LOCATION GRID ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.location-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
}
.location-item h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: var(--dark);
}
.location-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
/* Active / primary location */
.location-item--active {
  border: 2px solid var(--gold);
  background: var(--gold-pale);
}
.location-item--active h3 {
  color: var(--dark);
}
.location-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.location-badge--active {
  background: var(--gold);
  color: var(--white);
}
.location-badge--soon {
  background: #e8e8e8;
  color: #666;
}
/* Muted coming-soon cards */
.location-item--soon {
  opacity: 0.7;
}

/* ---------- TESTIMONIALS ---------- */
.testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow var(--trans);
}
.testi:hover { box-shadow: var(--shadow-md); }
.testi__mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  display: block;
  margin-bottom: -16px;
}
.testi__stars { color: var(--gold); font-size: 0.9rem; display: block; margin-bottom: 14px; }
.testi__text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  border: 1px solid var(--border-dark);
  letter-spacing: 0;
}
.testi__name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testi__loc  { font-size: 0.78rem; color: var(--text-light); }

/* ---------- BOOK STRIP ---------- */
.book-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.book-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.book-strip__text { font-size: 1.05rem; color: var(--text); }
.book-strip__text strong { color: var(--dark); }

/* ---------- EMAIL CAPTURE ---------- */
.email-section {
  background: var(--white);
  padding: var(--section) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.email-section .eyebrow { color: var(--gold); }
.email-section h2 { color: var(--dark); margin-bottom: 14px; }
.email-section p { color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }
.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow);
}
.email-form input {
  flex: 1;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  color: var(--dark);
  font-size: 0.9rem;
  outline: none;
}
.email-form input::placeholder { color: var(--text-light); }
.email-form button {
  padding: 16px 28px;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: background var(--trans);
}
.email-form button:hover { background: var(--charcoal); }
.email-disclaimer { font-size: 0.75rem; color: var(--text-light); margin-top: 14px; }

/* ---------- BLOG CARDS ---------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card__img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.blog-card__body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin: 0;
}
.blog-card__excerpt { font-size: 0.87rem; color: var(--text-muted); flex: 1; }
.blog-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-top: 8px;
}
/* Coming Soon cards */
.blog-card--coming-soon {
  opacity: 0.8;
  cursor: default;
}
.blog-card--coming-soon:hover { transform: none; box-shadow: none; }
.blog-card__soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(184,150,90,0.5);
  backdrop-filter: blur(4px);
}
.blog-card__link--muted {
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--cream-light);
  border-top: 1px solid var(--border);
  padding: var(--section) 0;
  text-align: center;
}
.cta-band__rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); max-width: 520px; margin: 0 auto 36px; }
.cta-band__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.footer__logo span { color: var(--gold); }
.footer__tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); max-width: 280px; line-height: 1.65; }
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--trans);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--trans);
}
.footer__col ul li a:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color var(--trans); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ---------- FLOATING CALL + BOOK GROUP ---------- */
.float-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Call button */
.float-btn--call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  padding: 11px 20px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1.5px solid var(--border);
}
.float-btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.float-btn--call svg {
  flex-shrink: 0;
}

/* Book button — blue-green gradient sweep */
.float-btn--book {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, #0e7490 0%, #0ea472 50%, #0e7490 100%);
  background-size: 200% 100%;
  color: var(--white);
  padding: 14px 26px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  animation: gradientSweep 3.5s ease infinite, tealRipple 2.4s ease-out infinite;
  box-shadow: 0 8px 28px rgba(14,116,144,0.40), 0 2px 8px rgba(0,0,0,0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn--book:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(14,116,144,0.55), 0 4px 12px rgba(0,0,0,0.18);
  animation: gradientSweep 3.5s ease infinite;
}
.float-btn--book::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}
.float-btn--book:active::after {
  animation: rippleOut 0.55s ease-out forwards;
}
.float-btn__dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

/* ---------- BOOKING CTA BUTTON ---------- */
.btn--gradient {
  background: var(--dark);
  color: var(--white) !important;
  border: none !important;
  animation: bookRipple 2.4s ease-out infinite;
  box-shadow: 0 2px 10px rgba(0,0,0,0.16);
  transition: background var(--trans), box-shadow 0.2s ease;
}
.btn--gradient:hover {
  background: var(--charcoal);
  box-shadow: 0 4px 18px rgba(0,0,0,0.26);
  animation: none;
}

/* ---------- SHARED BOOKING BUTTON ANIMATIONS ---------- */

/* Ripple pseudo-element for all booking buttons */
.btn--dark::after,
.btn--gradient::after,
.nav__book::after,
.iv-card__cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}
.btn--dark:active::after,
.btn--gradient:active::after,
.nav__book:active::after,
.iv-card__cta:active::after {
  animation: rippleOut 0.55s ease-out forwards;
}

@keyframes bookRipple {
  0%   { box-shadow: 0 0 0 0 rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12); }
  60%  { box-shadow: 0 0 0 10px rgba(0,0,0,0), 0 2px 8px rgba(0,0,0,0.12); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0), 0 2px 8px rgba(0,0,0,0.12); }
}
@keyframes tealRipple {
  0%   { box-shadow: 0 0 0 0 rgba(14,116,144,0.45), 0 8px 28px rgba(14,116,144,0.40); }
  60%  { box-shadow: 0 0 0 12px rgba(14,116,144,0), 0 8px 28px rgba(14,116,144,0.40); }
  100% { box-shadow: 0 0 0 0 rgba(14,116,144,0), 0 8px 28px rgba(14,116,144,0.40); }
}
@keyframes rippleOut {
  to { transform: translate(-50%, -50%) scale(60); opacity: 0; }
}
@keyframes gradientSweep {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatNudge {
  0%   { transform: translateY(0); }
  4%   { transform: translateY(-6px); }
  8%   { transform: translateY(0); }
  12%  { transform: translateY(-3px); }
  16%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

/* ---------- DISCOUNT POPUP ---------- */
/* ---------- DISCOUNT POPUP ---------- */
.discount-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.discount-overlay.active { opacity: 1; pointer-events: all; }

.discount-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
  padding: 40px 32px 28px;
}

.discount-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
  border: none;
  transition: background var(--trans);
}
.discount-popup__close:hover { background: rgba(0,0,0,0.15); }

.discount-popup__eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.discount-popup__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 10px;
}

.discount-popup__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.discount-popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.discount-popup__form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--cream-light);
  transition: border-color 0.2s;
}
.discount-popup__form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}
.discount-popup__form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: linear-gradient(120deg, #0e7490 0%, #0ea472 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.discount-popup__form button[type="submit"]:hover { opacity: 0.88; }

.discount-popup__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.discount-popup__code strong {
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--dark);
}

.discount-popup__copy {
  padding: 6px 14px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--trans);
}
.discount-popup__copy:hover { background: var(--gold); }

.discount-popup__dismiss {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-size: 0.78rem;
  color: var(--text-light);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 0;
  margin-top: 2px;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(184,150,90,0.1) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin: 0 auto 20px; max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.page-hero__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- SERVICES GRID ---------- */
.services-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/* ---------- LOCATIONS PAGE ---------- */
.loc-hero {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.loc-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--trans), transform var(--trans);
}
.city-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.city-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.city-card p { font-size: 0.85rem; color: var(--text-muted); }
.city-card__dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  margin: 0 auto 14px;
}

/* ---------- CAREERS PAGE ---------- */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.job-card__info {}
.job-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.job-card__meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.job-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--cream);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.job-card__tag--open { background: rgba(76,175,80,0.1); color: #2E7D32; border-color: rgba(76,175,80,0.3); }
.job-card__loc { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- BOOKING PAGE ---------- */
.booking-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.booking-wrap h2 { text-align: center; margin-bottom: 8px; }
.booking-wrap > p { text-align: center; color: var(--text-muted); margin-bottom: 40px; }

/* ---------- FAQ ACCORDION ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q__icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  transition: all var(--trans);
}
.faq-item.open .faq-q__icon { transform: rotate(45deg); border-color: var(--gold); background: var(--gold); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .g-iv { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section: 72px; }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__img { order: 0; }
  .split--reverse .split__content { order: 0; }
  .split__content { padding: 48px 32px; }
  .split__img img { min-height: 320px; }

  .group-events__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(3) { border-right: 1px solid var(--border); }
  .step { border-bottom: 1px solid var(--border); }
  .step:last-child { border-right: none; border-bottom: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .loc-cards { grid-template-columns: 1fr; }
  .serve-states { grid-template-columns: 1fr; }
  .serve-state { min-h