/* ============================================================
   BLU INDIGO — OFFERS & EVENTS
   Standalone premium landing-page theme (namespaced "oe-")
   Built on top of the shared brand tokens in style.css
   ============================================================ */

.oe-page {
  --oe-navy: #0a1730;
  --oe-navy-soft: #142a54;
  --oe-navy-card: #16305e;
  --oe-hairline: rgba(201, 168, 76, 0.28);
  --oe-cream: #faf6ef;
}

.oe-main { background: var(--oe-cream); overflow: hidden; }

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

/* ── shared type helpers ── */
.oe-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: 0.9rem;
}
.oe-eyebrow.light { color: var(--gold-light); }

.oe-section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}
.oe-section-title em { font-style: italic; color: var(--gold-hover); }
.oe-section-title.light { color: var(--white); }
.oe-section-title.light em { color: var(--gold-light); }

.oe-section-intro {
  max-width: 640px;
  color: var(--text-mid);
  font-size: 1.08rem;
  line-height: 1.8;
}
.oe-section-intro.light { color: rgba(255, 255, 255, 0.8); }

.oe-section-head { text-align: center; margin: 0 auto 3.5rem; max-width: 720px; }
.oe-section-head .oe-section-intro { margin: 0 auto; }

/* ── scroll reveal ── */
.oe-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.oe-reveal.oe-visible { opacity: 1; transform: translateY(0); }

/* ── full-bleed helper ── */
.oe-bleed { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

/* ============================================================
   HERO
   ============================================================ */
.oe-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.oe-hero-bg { position: absolute; inset: 0; }
.oe-hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(1.05); }
.oe-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 48, 0.35) 0%, rgba(10, 23, 48, 0.55) 55%, var(--oe-navy) 100%),
    linear-gradient(90deg, rgba(10, 23, 48, 0.75) 0%, rgba(10, 23, 48, 0.15) 65%);
}
.oe-hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 2rem 5rem;
  max-width: 780px;
}
.oe-breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}
.oe-breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.oe-breadcrumb a:hover { color: var(--gold-light); }
.oe-breadcrumb span { margin: 0 0.4rem; }

.oe-hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 1.6rem;
}
.oe-hero-accent { font-style: italic; color: var(--gold-light); }

.oe-campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(232, 201, 106, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
}
.oe-campaign-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(232, 201, 106, 0.2);
}
.oe-campaign-month { color: rgba(255, 255, 255, 0.85); }
.oe-campaign-sep { color: rgba(232, 201, 106, 0.5); }

.oe-hero-lead {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 2.4rem;
}
.oe-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.oe-trustbar { background: var(--oe-navy); padding: 1.8rem 0; }
.oe-trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.oe-trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.oe-trust-item svg { color: var(--gold-light); flex-shrink: 0; }

/* ============================================================
   FEATURED MONTHLY OFFER
   ============================================================ */
.oe-offer { padding: 6.5rem 0; background: var(--oe-cream); }
.oe-offer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.oe-offer-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/5; }
.oe-offer-media img { width: 100%; height: 100%; object-fit: cover; }
.oe-offer-media-tag {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  background: var(--navy-deep);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(232, 201, 106, 0.4);
}
.oe-offer-title { font-family: var(--font-serif); font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--navy-deep); line-height: 1.15; margin-bottom: 0.4rem; }
.oe-offer-sub { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--gold-hover); margin-bottom: 1.3rem; }
.oe-offer-desc { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.8rem; max-width: 560px; }
.oe-offer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.5rem; margin-bottom: 1.8rem; }
.oe-offer-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
}
.oe-offer-list svg { color: var(--gold-hover); flex-shrink: 0; }
.oe-offer-bonus {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--cream-warm);
  border: 1px solid var(--oe-hairline);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  margin-bottom: 1.8rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.oe-offer-bonus svg { color: var(--gold-hover); flex-shrink: 0; margin-top: 0.15rem; }
.oe-offer-bonus strong { color: var(--navy-deep); }

.oe-offer-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.9rem;
}

.oe-word-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.5rem 1.1rem 0.55rem;
  border: 1px solid var(--oe-hairline);
  border-radius: 50px;
  margin-bottom: 1.6rem;
}
.oe-word-chip span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.oe-word-chip em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-hover);
}

/* ── month at a glance ── */
.oe-glance {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(13, 27, 62, 0.09);
}
.oe-glance-head { text-align: center; max-width: 620px; margin: 0 auto 2.6rem; }
.oe-glance-head h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--navy-deep);
  margin-bottom: 0.7rem;
}
.oe-glance-head h3 span { font-style: italic; color: var(--gold-hover); }
.oe-glance-head p { color: var(--text-mid); line-height: 1.7; }

.oe-glance-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}
.oe-glance-card {
  flex: 1 1 230px;
  max-width: 300px;
  background: var(--white);
  border: 1px solid rgba(13, 27, 62, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: var(--transition);
}
.oe-glance-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.oe-glance-card .oe-icon-circle { margin-bottom: 1rem; }
.oe-glance-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.oe-glance-value {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--navy-deep);
}

/* ============================================================
   ANNUAL WELLNESS JOURNEY
   ============================================================ */
.oe-annual {
  background: radial-gradient(120% 130% at 50% 0%, var(--navy-mid) 0%, var(--oe-navy) 62%);
  padding: 6.5rem 0;
}

.oe-includes {
  max-width: 920px;
  margin: 0 auto 3.5rem;
  padding: 2.2rem 2.4rem;
  border: 1px solid rgba(232, 201, 106, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}
.oe-includes-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1.5rem;
}
.oe-includes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem 1.6rem;
}
.oe-includes-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
}
.oe-includes-list svg { color: var(--gold-light); flex-shrink: 0; }

.oe-year-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.oe-year-card {
  position: relative;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}
.oe-year-card:hover {
  border-color: rgba(232, 201, 106, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.oe-year-card.is-current {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(232, 201, 106, 0.14), rgba(255, 255, 255, 0.03));
}
.oe-year-flag {
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  padding: 0.24rem 0.7rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
}
.oe-year-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  padding-bottom: 0.8rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.oe-year-month {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.oe-year-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
}
.oe-year-card h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.oe-year-card p {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}
.oe-year-note {
  text-align: center;
  max-width: 640px;
  margin: 2.8rem auto 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   WELLNESS JOURNEY / MEMBERSHIPS
   ============================================================ */
.oe-journey { padding: 6.5rem 0 2rem; background: var(--white); }

.oe-tier-band { padding: 3.5rem 0; border-top: 1px solid rgba(13, 27, 62, 0.08); }
.oe-tier-band-alt { background: var(--oe-cream); }

.oe-tier-head { display: flex; gap: 1.6rem; align-items: flex-start; max-width: 900px; margin: 0 auto 2.6rem; }
.oe-tier-num {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--gold);
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oe-tier-head h3 { font-family: var(--font-serif); font-size: 1.7rem; color: var(--navy-deep); margin-bottom: 0.4rem; }
.oe-tier-head p { color: var(--text-mid); line-height: 1.7; max-width: 560px; }
.oe-tier-head-light h3 { color: var(--white); }
.oe-tier-head-light p { color: rgba(255, 255, 255, 0.72); }

/* Wellness membership card */
.oe-wellness-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.oe-wellness-info { padding: 3rem; }
.oe-wellness-info h4 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy-deep); margin-bottom: 0.6rem; }
.oe-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-hover); margin-bottom: 1.2rem; }
.oe-price span { font-size: 2.4rem; font-weight: 600; }
.oe-price-sm span { font-size: 1.9rem; }
.oe-price small { font-size: 0.85rem; color: var(--text-mid); font-family: var(--font-sans); }
.oe-wellness-tag { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.9rem; }
.oe-check-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.oe-check-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.98rem; color: var(--text-dark); }
.oe-check-list svg { color: var(--gold-hover); flex-shrink: 0; }
.oe-wellness-visual { position: relative; min-height: 260px; }
.oe-wellness-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Maintenance grid */
.oe-maint-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; max-width: 900px; margin: 0 auto; }
.oe-maint-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--indigo);
  transition: var(--transition);
}
.oe-maint-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.oe-maint-card h4 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy-deep); margin-bottom: 0.6rem; min-height: 3.2rem; }
.oe-maint-card p { color: var(--text-mid); margin-bottom: 1.6rem; }

/* Signature collection */
.oe-signature { background: var(--oe-navy); padding: 4rem 0 5rem; margin-top: 1rem; }
.oe-sig-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.oe-sig-card {
  background: var(--oe-navy-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232, 201, 106, 0.18);
}
.oe-sig-media { aspect-ratio: 16/10; }
.oe-sig-media img { width: 100%; height: 100%; object-fit: cover; }
.oe-sig-body { padding: 2rem; }
.oe-sig-body h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 0.6rem; }
.oe-sig-body > p { color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 1.5rem; }

.oe-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(232, 201, 106, 0.5);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.oe-learn-more:hover { background: rgba(232, 201, 106, 0.1); }
.oe-learn-more svg { transition: transform 0.3s ease; }
.oe-learn-more.is-open svg { transform: rotate(180deg); }

.oe-tier-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.oe-tier-panel.open { max-height: 900px; }
.oe-tier-row {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.oe-tier-panel .oe-tier-row:first-child { margin-top: 1.6rem; }
.oe-tier-name { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--gold-light); margin-bottom: 0.35rem; }
.oe-tier-row p { color: rgba(255, 255, 255, 0.68); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0.5rem; }
.oe-tier-price { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); }
.oe-tier-link {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(232, 201, 106, 0.4);
  padding-bottom: 2px;
}
.oe-tier-link:hover { border-color: var(--gold-light); }

/* ============================================================
   WHY BECOME A MEMBER
   ============================================================ */
.oe-why { padding: 6.5rem 0; background: var(--oe-cream); }
.oe-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; max-width: 980px; margin: 0 auto; }
.oe-why-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.oe-why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.oe-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--gold-hover);
  border: 1px solid var(--oe-hairline);
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.oe-why-item h4 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy-deep); font-weight: 500; }

/* ============================================================
   JOIN OUR COMMUNITY
   ============================================================ */
.oe-community { position: relative; padding: 6.5rem 0; overflow: hidden; }
.oe-community-bg { position: absolute; inset: 0; }
.oe-community-bg img { width: 100%; height: 100%; object-fit: cover; }
.oe-community-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10, 23, 48, 0.94), rgba(10, 23, 48, 0.82)); }
.oe-community .section-container { position: relative; z-index: 2; }

.oe-community-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-bottom: 3rem; }
.oe-community-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: var(--transition);
}
.oe-community-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.oe-community-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.oe-community-card h4 { font-family: var(--font-serif); color: var(--white); font-size: 1.15rem; margin-bottom: 0.5rem; }
.oe-community-time { font-family: var(--font-sans); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.7rem; }
.oe-community-card p { color: rgba(255, 255, 255, 0.68); font-size: 0.9rem; line-height: 1.65; }
.oe-community-cta { text-align: center; }

/* ============================================================
   LEARN & THRIVE + GIFT CARDS
   ============================================================ */
.oe-split { padding: 6.5rem 0; background: var(--white); }
.oe-split-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start; }

.oe-learn-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }
.oe-learn-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--oe-cream);
  border: 1px solid rgba(13, 27, 62, 0.06);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  transition: var(--transition-fast);
}
.oe-learn-item:hover { border-color: var(--oe-hairline); transform: translateX(4px); }
.oe-learn-item svg:first-child { color: var(--gold-hover); flex-shrink: 0; }
.oe-learn-item h4 { font-family: var(--font-serif); font-size: 1.08rem; color: var(--navy-deep); margin-bottom: 0.2rem; }
.oe-learn-item p { color: var(--text-mid); font-size: 0.86rem; line-height: 1.5; }
.oe-learn-item > div { flex: 1; }
.oe-learn-arrow { color: var(--gold-hover); flex-shrink: 0; }
.oe-soon {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: rgba(13, 27, 62, 0.06);
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
}

.oe-giftcards {
  background: var(--oe-navy);
  border-radius: var(--radius-xl);
  padding: 2.6rem;
  color: var(--white);
}
.oe-giftcards p { color: rgba(255, 255, 255, 0.72); margin-bottom: 1.6rem; }
.oe-giftcards .oe-section-title { color: var(--white); font-size: 2rem; }
.oe-giftcards .oe-section-title em { color: var(--gold-light); }

.oe-gift-visual { margin-bottom: 1.8rem; }
.oe-gift-card-mock {
  aspect-ratio: 1.6/1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--indigo) 55%, var(--navy-deep) 100%);
  border: 1px solid rgba(232, 201, 106, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.6rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.oe-gift-card-mock::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232, 201, 106, 0.18) 50%, transparent 70%);
}
.oe-gift-logo { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--gold-light); }
.oe-gift-sub { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-top: 0.3rem; }

.oe-gift-tiers { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.oe-gift-tiers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.oe-gift-tiers strong { color: var(--gold-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.oe-testimonials { padding: 6.5rem 0; background: var(--cream-warm); }
.oe-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.oe-test-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.oe-test-featured { background: var(--navy-deep); transform: translateY(-10px); }
.oe-quote-icon { color: var(--oe-hairline); margin-bottom: 0.8rem; }
.oe-test-featured .oe-quote-icon { color: rgba(232, 201, 106, 0.4); }
.oe-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.oe-test-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
}
.oe-test-featured blockquote { color: rgba(255, 255, 255, 0.92); }
.oe-test-author { display: flex; align-items: center; gap: 0.8rem; }
.oe-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-family: var(--font-serif);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oe-test-author strong { display: block; font-family: var(--font-sans); font-size: 0.92rem; color: var(--navy-deep); }
.oe-test-featured .oe-test-author strong { color: var(--white); }
.oe-test-author small { color: var(--text-mid); font-size: 0.78rem; }
.oe-test-featured .oe-test-author small { color: rgba(255, 255, 255, 0.55); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.oe-final-cta {
  background: radial-gradient(120% 140% at 50% 0%, var(--navy-mid) 0%, var(--oe-navy) 60%);
  padding: 6rem 0;
}
.oe-final-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.oe-final-inner h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.oe-final-inner h2 em { font-style: italic; color: var(--gold-light); }
.oe-final-inner > p { color: rgba(255, 255, 255, 0.72); margin-bottom: 2.6rem; font-size: 1.05rem; }

.oe-final-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.oe-final-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.6rem 1rem;
  border: 1px solid rgba(232, 201, 106, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.oe-final-action svg { color: var(--gold-light); }
.oe-final-action:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-3px);
}
.oe-final-action:hover svg { color: var(--navy-deep); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .oe-offer-grid { grid-template-columns: 1fr; }
  .oe-offer-media { max-width: 420px; margin: 0 auto; }
  .oe-wellness-card { grid-template-columns: 1fr; }
  .oe-wellness-visual { min-height: 220px; }
  .oe-community-grid { grid-template-columns: repeat(2, 1fr); }
  .oe-split-grid { grid-template-columns: 1fr; }
  .oe-test-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .oe-test-featured { transform: none; }
  .oe-trustbar-grid { grid-template-columns: repeat(2, 1fr); }
  .oe-year-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .oe-hero-content { padding: 8rem 1.5rem 3.5rem; }
  .oe-hero-ctas { flex-direction: column; align-items: stretch; }
  .oe-hero-ctas .btn { justify-content: center; }
  .oe-offer, .oe-journey, .oe-annual, .oe-why, .oe-community, .oe-split, .oe-testimonials, .oe-final-cta { padding: 4rem 0; }
  .oe-year-grid { grid-template-columns: repeat(2, 1fr); }
  .oe-includes { padding: 1.8rem 1.5rem; }
  .oe-glance { margin-top: 3rem; padding-top: 2.5rem; }
  .oe-offer-list { grid-template-columns: 1fr; }
  .oe-why-grid { grid-template-columns: 1fr 1fr; }
  .oe-maint-grid { grid-template-columns: 1fr; }
  .oe-sig-grid { grid-template-columns: 1fr; }
  .oe-community-grid { grid-template-columns: 1fr; }
  .oe-final-actions { grid-template-columns: 1fr 1fr; }
  .oe-tier-head { flex-direction: column; }
  .oe-signature { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .oe-why-grid { grid-template-columns: 1fr; }
  .oe-year-grid { grid-template-columns: 1fr; }
  .oe-glance-card { max-width: none; }
  .oe-final-actions { grid-template-columns: 1fr; }
  .oe-wellness-info { padding: 2rem; }
  .oe-sig-body { padding: 1.6rem; }
}
