
/* ===== Variables ===== */
:root {
  --green-dark: #1a4d1a;
  --green-darker: #083119;
  --green-heading: #385C3A;
  --gold: #B79C4F;
  --gold-mid: #c4a95a;
  --gold-light: #f0e6c8;
  --gold-dark: #a68e46;
  --gold-darker: #9a7b2d;
  --gold-hover-light: #e8dbb8;
  --text-dark: #1a1a1a;
  --text-body: #4A4A4A;
  --marble-bg: #f8f6f3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Open Sans', system-ui, sans-serif;
  /* Gold CTA button – exact Home Page gold */
  --cta-gold-dark: #a68e46;
  --cta-gold-light: #c4a95a;
  --cta-hover-dark: #967826;
  --cta-hover-light: #b8a05a;
  --cta-gradient: #B79C4F;
  --cta-gradient-hover: #a68e46;
  --cta-text: #1a1a1a;
  --cta-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
  --cta-shadow-hover: 0 4px 12px rgba(201, 162, 39, 0.4);
  --cta-radius: 8px;
  --cta-font-size: 0.875rem;
  --cta-font-weight: 700;
  --cta-reflection: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 70%, transparent 100%);
}

/* Gold CTA – same look as "BOOK MY FREE CONSULTATION" */
.btn-gold-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  min-height: 44px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Montserrat', sans-serif;
  font-size: var(--cta-font-size);
  font-weight: var(--cta-font-weight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cta-text);
  background: var(--cta-gradient);
  border: none;
  border-radius: var(--cta-radius);
  box-shadow: var(--cta-shadow);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.btn-gold-cta:hover {
  background: var(--cta-gradient-hover);
  transform: translateY(-1px);
  box-shadow: var(--cta-shadow-hover);
}
.btn-gold-cta.full-width { width: 100%; }
.btn-gold-cta.hero-size { width: 300px; height: 56px; padding: 0 24px; }

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text-body);
  background: var(--marble-bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== Marble background (sections) ===== */
.section {
  background: var(--marble-bg);
  background-image: url('../images/white-marble-bg.jpeg');
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
  border-top: 4px solid var(--gold);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  background: url('../images/white-stone.png') center / cover no-repeat;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow-x: hidden;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 96px;
  width: auto;
}
.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  flex-shrink: 0;
  min-width: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a.active {
  border-bottom-color: var(--text-dark);
  color: var(--text-dark);
}

/* Language toggle (English | Spanish) */
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: var(--sans);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-lang-option {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: #888;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-lang-option:hover {
  color: var(--text-body);
}
.nav-lang-option.active {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nav-lang-sep {
  color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Shared base for nav CTA buttons */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Green (phone) CTA */
.nav-cta-btn.nav-cta-phone {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}
.nav-cta-btn.nav-cta-phone:hover {
  background: var(--green-darker);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

/* Gold + white reflection (consultation) CTA */
.nav-cta-btn:not(.nav-cta-phone) {
  background: var(--cta-gradient);
  color: var(--cta-text);
  box-shadow: var(--cta-shadow);
}
.nav-cta-btn:not(.nav-cta-phone):hover {
  background: var(--cta-gradient-hover);
  color: var(--cta-text);
  transform: translateY(-1px);
  box-shadow: var(--cta-shadow-hover);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Mobile: emphasize image; headline moves to hero-sub */
.hero-headline-mobile {
  display: none;
}
/* Mobile headline block (in hero-sub) hidden on desktop */
.hero-sub .hero-headline {
  display: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(100%, 55vw);
  margin: 0;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 4rem) 3rem clamp(1.5rem, 6vw, 4rem);
  text-align: left;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(5.5rem, 14vw, 12rem);
  font-weight: 700;
  line-height: 1.03;
  color: #c2a75c;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  max-width: 100%;
  overflow-wrap: break-word;
}
.hero-headline-brand {
  font-size: 1.35em;
  display: inline-block;
}
.hero-headline-accent {
  color: #c2a75c;
  display: block;
  margin-top: 0.25rem;
}
.hero-headline .hero-headline-support,
.hero-headline .hero-headline-location,
.hero-headline-mobile .hero-headline-support,
.hero-headline-mobile .hero-headline-location {
  font-size: 0.45em;
  opacity: 0.9;
  font-weight: 500;
}

/* Hero: Semaglutide-style layout (eyebrow + title lines) */
.hero-content .hero-headline {
  display: block;
  margin: 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-text {
  font-family: var(--sans);
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.hero-eyebrow-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.75vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-title-line {
  display: block;
  color: var(--gold);
}
.hero-title .hero-headline-support,
.hero-title .hero-headline-location {
  font-size: 0.45em;
  opacity: 0.9;
  font-weight: 500;
}

/* Hero: headline only */
.hero-content-only .hero-headline { margin-bottom: 0; }

/* ===== Hero sub (white marble section below hero) ===== */
.hero-sub {
  padding: 4rem 1.5rem;
}
.hero-sub-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-sub-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
}
.hero-sub-headline .text-green { color: var(--green-heading); }
.hero-sub-headline .text-gold { color: var(--gold); }
.hero-sub-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 2rem;
}
.hero-sub-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.hero-sub-card {
  background: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  min-width: 140px;
}
.hero-sub-card-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.hero-sub-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
}
.hero-sub-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.hero-sub-link {
  color: var(--green-heading);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.hero-sub-link:hover { text-decoration: underline; }
.hero-sub-note {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0 0 1.5rem;
  opacity: 0.9;
}
.hero-sub-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
  max-width: 560px;
  margin: 0 auto 1.25rem;
}
.hero-sub-benefits {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  color: var(--text-body);
  font-size: 0.9rem;
}
.hero-sub-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.stars { color: #c9a84c; }
.icon-capsule, .icon-check, .icon-box, .icon-house {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a8d5a2'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.icon-capsule {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e57373' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3Cpath fill='%23ffd54f' d='M12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z'/%3E%3C/svg%3E");
}
.icon-box {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238d6e63'%3E%3Cpath d='M20 8H4V6h16v2zm-2 6H6v-2h12v2zm4-8H2v16h20V6z'/%3E%3C/svg%3E");
}
.icon-house {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238d6e63'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}

/* ===== Gold CTA button (used site-wide) – gold + white reflection ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-height: 44px;
  font-family: var(--sans);
  font-size: var(--cta-font-size);
  font-weight: var(--cta-font-weight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cta-text);
  text-decoration: none;
  border: none;
  border-radius: var(--cta-radius);
  cursor: pointer;
  background: var(--cta-gradient);
  box-shadow: var(--cta-shadow);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--cta-gradient-hover);
  transform: translateY(-1px);
  box-shadow: var(--cta-shadow-hover);
}
.btn-gold.btn-link { background: transparent; box-shadow: none; color: var(--gold); text-transform: none; }
.btn-gold.btn-link:hover { color: var(--gold-darker); text-decoration: underline; transform: none; }
.btn-submit { width: 100%; margin-top: 0.5rem; }

/* ===== Section typography ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body);
  margin: 0 0 0.5rem;
  text-align: center;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.25;
}
.text-gold { color: var(--gold); }
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-body);
  font-size: 1rem;
}

/* ===== Journey / Timeline ===== */
.section-journey .section-inner { max-width: 720px; }
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  margin-left: -4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #fff;
}
.timeline-content { margin-left: 0; }
.timeline-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.25rem;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
}
.timeline-body {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}

/* ===== Four Reasons ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 1rem;
}
.reason-block {
  position: relative;
}
.reason-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1rem;
  max-width: 80%;
}
.reason-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.reason-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.reason-body {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reasons-grid { grid-template-columns: 1fr; }
}

/* ===== The Science (two columns) ===== */
.section-headline.science-headline { text-align: left; }
.science-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.science-col p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}
.science-col p:last-child { margin-bottom: 0; }

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

/* ===== Real Stories ===== */
.section-stories-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

/* Shine effect frame for REAL STORIES (user-supplied code) */
.testimonials-headline-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px 16px;
  background: transparent;
  border: 10px solid #c9a84c;
  border-radius: 0;
  width: max-content;
  max-width: 100%;
  margin-left: 0;
  margin-right: auto;
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, 0.45),
    inset 0 -2px 6px rgba(0, 0, 0, 0.1),
    0 0 28px rgba(201, 168, 76, 0.45),
    0 6px 24px rgba(143, 111, 34, 0.28);
}
.testimonials-headline-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  padding: 10px;
  background: linear-gradient(165deg, #e8d5a3 0%, #d4af37 20%, #f5e6b8 50%, #c9a84c 80%, #9a7b2d 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
.testimonials-headline-frame::after {
  content: '';
  position: absolute;
  inset: -10px;
  padding: 10px;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 248, 220, 1) 50%,
    rgba(255, 255, 255, 0.8) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  animation: frameShimmer 2.5s linear infinite;
}
@keyframes frameShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.testimonials-headline {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-heading);
  letter-spacing: 0.02em;
}

.stories-left {
  text-align: left;
}
.stories-desc {
  margin: 1.25rem 0;
  color: var(--text-body);
  font-size: 0.95rem;
}
.stories-left .btn-gold { margin-top: 0.5rem; }

.stories-right { display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.testimonial-text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}
.testimonial-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-body);
  opacity: 0.9;
}

@media (max-width: 800px) {
  .section-stories-inner { grid-template-columns: 1fr; }
  .stories-left { margin-bottom: 0.5rem; text-align: center; }
  .testimonials-headline-frame { margin-left: auto; }
}

/* ===== FAQ ===== */
.section-faq .section-inner { max-width: 680px; }
.faq-list { margin-top: 1.5rem; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-left: 4px solid var(--gold);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(201, 168, 76, 0.08); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.25rem 1rem;
}
.faq-answer p {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== Consultation ===== */
.consultation-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.consultation-headline {
  margin: 0 0 0.5rem;
  text-align: left;
}
.consultation-sub {
  font-size: 1.1rem;
  color: var(--green-heading);
  font-weight: 600;
  text-align: left;
  margin: 0 0 0.75rem;
}
.consultation-desc {
  text-align: left;
  margin: 0 0 1.5rem;
  color: var(--text-body);
  font-size: 0.95rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-body);
  margin-bottom: 0.25rem;
}
.contact-phone {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.contact-phone:hover { color: var(--green-darker); }
.contact-item span { color: var(--green-heading); font-size: 0.95rem; }
.contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.contact-icon-phone { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 013.07-8.67A2 2 0 0119.4 2h3a2 2 0 012 2.18 19.79 19.79 0 01-3.07 8.67'/%3E%3C/svg%3E") center/14px no-repeat; }
.contact-icon-pin { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/14px no-repeat; }
.contact-icon-clock { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center/14px no-repeat; }

.consultation-benefits {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.consultation-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.consultation-how-fast {
  background: rgba(255,255,255,0.7);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
}
.consultation-how-fast h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-dark);
}
.consultation-how-fast p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}
.consultation-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-body);
  text-align: center;
}

.consultation-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.25rem;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 1.25rem;
}
.consultation-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-heading);
  margin-bottom: 0.35rem;
}
.consultation-form input {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: #fafafa;
}
.consultation-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

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

/* ===== Footer ===== */
.site-footer {
  background: var(--marble-bg);
  background-image: url('../images/white-marble-bg.jpeg');
  background-size: cover;
  padding: 2rem 1.5rem 1.5rem;
  border-top: 4px solid var(--gold);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-copy {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 0.5rem;
}
.footer-phone {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}
.footer-phone:hover { color: var(--green-darker); }
.footer-seo {
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.85;
  margin: 0 0 1rem;
}
.footer-legal {
  font-size: 0.8rem;
}
.footer-legal a {
  color: var(--text-body);
  text-decoration: none;
}
.footer-legal a:hover { text-decoration: underline; }

/* ===== Popup consultation form ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.popup-overlay[hidden] {
  display: none !important;
}
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.popup-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow: visible;
}
.popup-form-wrap {
  margin: 0;
  overflow-y: auto;
  max-height: 90vh;
  padding-top: 3rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-body);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: color 0.2s, background 0.2s;
}
.popup-close:hover {
  color: var(--text-dark);
  background: #f5f5f5;
}

/* ===== Mobile: prevent overflow ===== */
@media (max-width: 768px) {
  main {
    overflow-x: hidden;
  }
  .section-inner,
  .hero-sub-inner {
    max-width: 100%;
  }
}

/* ===== Mobile & responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-lang-toggle { padding: 5px 10px; font-size: 0.8rem; }
  .nav-ctas { gap: 8px; }
  .nav-cta-btn { min-width: 0; padding: 8px 12px; font-size: 0.8rem; }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .nav-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }
  .nav-logo {
    flex: 0 0 auto;
  }
  .nav-lang-toggle {
    margin-left: auto;
  }
  .nav-ctas {
    flex: 1 1 100%;
    order: 3;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
  }
  .nav-cta-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  .section {
    padding: 2.5rem 1rem;
  }
  .section-inner {
    padding: 0;
  }
  /* Hero: show full before/after image, centered */
  .hero {
    min-height: 42vh;
    max-height: 320px;
    align-items: stretch;
    justify-content: center;
  }
  .hero-bg img {
    object-fit: contain;
    object-position: center center;
  }
  .hero-headline-desktop {
    display: none;
  }
  .hero-sub .hero-headline {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }
  .hero-sub .hero-eyebrow {
    justify-content: center;
  }
  .hero-sub .hero-title,
  .hero-title-mobile {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
  }
  .hero-sub {
    padding: 1.75rem 1rem 2rem;
  }
  .hero-sub-inner {
    padding: 0 0.25rem;
  }
  .hero-sub-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .hero-sub-desc {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }
  .hero-sub-cards {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .hero-sub-card {
    min-width: 100%;
    padding: 0.875rem 1rem;
  }
  .hero-sub-card-value {
    font-size: 1.35rem;
  }
  .hero-sub-card-label {
    font-size: 0.65rem;
  }
  .hero-sub-cta-row {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0.5rem;
  }
  .hero-sub-cta-row .btn-gold {
    width: 100%;
    justify-content: center;
  }
  .hero-sub-note {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .hero-sub-benefits {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  .hero-sub-benefits li {
    white-space: normal;
  }
  .section-headline {
    font-size: clamp(1.45rem, 4.5vw, 1.9rem);
    margin-bottom: 0.6rem;
  }
  .section-intro {
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
    font-size: 0.95rem;
  }
  .timeline {
    padding-left: 1.5rem;
  }
  .timeline-marker {
    width: 11px;
    height: 11px;
    left: -1.5rem;
    margin-left: -3px;
  }
  .timeline-label {
    font-size: 0.65rem;
  }
  .timeline-title {
    font-size: 1.15rem;
  }
  .timeline-body {
    font-size: 0.875rem;
    line-height: 1.55;
  }
  .timeline-item {
    padding-bottom: 1.75rem;
  }
  .reasons-grid {
    gap: 1.25rem 0.75rem;
    margin-top: 0.5rem;
  }
  .reason-num {
    font-size: 1.85rem;
  }
  .reason-title {
    font-size: 0.7rem;
    line-height: 1.25;
  }
  .reason-body {
    font-size: 0.825rem;
    line-height: 1.55;
  }
  .science-two-col {
    gap: 1.25rem;
    margin-top: 0.75rem;
  }
  .science-col p {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
  }
  .section-stories-inner {
    gap: 1.5rem;
  }
  .testimonials-headline-frame {
    padding: 10px 16px 12px;
    border-width: 8px;
  }
  .testimonials-headline {
    font-size: 1.35rem;
  }
  .stories-desc {
    font-size: 0.9rem;
    margin: 1rem 0;
  }
  .testimonial-card {
    padding: 1rem 1.1rem;
  }
  .testimonial-text {
    font-size: 0.875rem;
  }
  .testimonial-meta {
    font-size: 0.8rem;
  }
  .consultation-two-col {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .consultation-info {
    order: 0;
  }
  .consultation-form-wrap {
    order: 1;
    padding: 1.25rem 1rem;
  }
  .faq-question {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    min-height: 48px;
    align-items: center;
  }
  .faq-answer {
    padding: 0 1rem 0.875rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
  }
  .form-title {
    font-size: 1.25rem;
  }
  .form-subtitle {
    font-size: 0.85rem;
  }
  .consultation-headline {
    font-size: 1.4rem;
  }
  .consultation-desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  .consultation-how-fast {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
  }
  .consultation-how-fast h3 {
    font-size: 0.95rem;
  }
  .consultation-how-fast p {
    font-size: 0.85rem;
  }
  .consultation-disclaimer {
    font-size: 0.8rem;
    margin-top: 0.75rem;
  }
  .site-footer {
    padding: 1.25rem 1rem 1rem;
  }
  .footer-bottom {
    padding: 0 0.25rem;
  }
  .footer-copy {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .footer-seo {
    font-size: 0.7rem;
  }
  .footer-legal {
    font-size: 0.7rem;
  }
  .popup-overlay {
    padding: 1rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
  .popup-box {
    max-width: 100%;
  }
  .popup-close {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 10px 12px;
    gap: 8px;
  }
  .nav-lang-toggle { padding: 4px 8px; font-size: 0.75rem; }
  .nav-logo img {
    height: 64px;
  }
  .nav-cta-btn {
    min-width: 0;
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 10px 14px;
  }
  .section {
    padding: 2rem 0.875rem;
  }
  .hero {
    min-height: 38vh;
    max-height: 280px;
  }
  .hero-bg img {
    object-fit: contain;
    object-position: center center;
  }
  .hero-sub .hero-title,
  .hero-title-mobile {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: 0.35rem;
  }
  .hero-sub {
    padding: 1.5rem 0.875rem 1.75rem;
  }
  .hero-sub-headline {
    font-size: 1.35rem;
  }
  .hero-sub-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .hero-sub-cards {
    margin-bottom: 1rem;
  }
  .hero-sub-card {
    padding: 0.75rem 0.875rem;
  }
  .hero-sub-card-value {
    font-size: 1.2rem;
  }
  .hero-sub-note {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .hero-sub-benefits {
    font-size: 0.75rem;
    gap: 0.5rem 0.75rem;
  }
  .btn-gold {
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }
  .section-label {
    font-size: 0.65rem;
  }
  .section-headline {
    font-size: 1.35rem;
  }
  .section-intro {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .timeline-label {
    font-size: 0.6rem;
  }
  .timeline-title {
    font-size: 1.05rem;
  }
  .timeline-body {
    font-size: 0.825rem;
  }
  .timeline-item {
    padding-bottom: 1.5rem;
  }
  .reason-num {
    font-size: 1.6rem;
  }
  .reason-title {
    font-size: 0.65rem;
  }
  .reason-body {
    font-size: 0.8rem;
  }
  .science-col p {
    font-size: 0.825rem;
  }
  .testimonials-headline {
    font-size: 1.2rem;
  }
  .testimonial-card {
    padding: 0.875rem 1rem;
  }
  .testimonial-text {
    font-size: 0.825rem;
  }
  .consultation-headline {
    font-size: 1.25rem;
  }
  .consultation-sub {
    font-size: 0.95rem;
  }
  .consultation-desc {
    font-size: 0.875rem;
  }
  .contact-item {
    margin-bottom: 0.875rem;
  }
  .form-title {
    font-size: 1.15rem;
  }
  .consultation-form-wrap {
    padding: 1rem 0.875rem;
  }
  .footer-copy {
    font-size: 0.75rem;
  }
  .footer-seo {
    font-size: 0.65rem;
  }
}

/* ================================================
   NEW SECTIONS — Trust Bar, Dual-Action, Value
   Framework, Stats, Science Cards, Comparison,
   Program, Why BP Royal, Our Commitment
   ================================================ */

/* ── Shared Helpers ── */
.section-dark-green {
  background: var(--green-dark);
  background-image: none;
  padding: 4rem 1.5rem;
}
.section-label-gold { color: var(--gold) !important; }
.section-headline-white { color: #fff !important; }
.section-intro-light {
  color: var(--text-body);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* ── Trust Bar ── */
.trust-bar-strip {
  background: var(--marble-bg);
  background-image: url('../images/white-marble-bg.jpeg');
  background-size: cover;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 0.9rem 1.5rem;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.trust-bar-divider {
  width: 1px;
  height: 18px;
  background: rgba(183, 156, 79, 0.4);
  flex-shrink: 0;
}
.trust-bar-icon { color: var(--gold); font-size: 0.85rem; }
.trust-bar-item .stars { font-size: 0.85rem; }

/* ── Dual-Action Difference ── */
.section-dual-action .section-label { color: var(--gold-dark); }
.section-dual-action .section-headline { color: var(--green-heading); }
.section-dual-action .section-headline em { color: var(--gold-dark); font-style: normal; }
.section-dual-action .section-intro { color: var(--text-body); }
.dual-action-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.dual-action-card {
  background: #fff;
  border: 1px solid rgba(183, 156, 79, 0.3);
  border-radius: 14px;
  padding: 1.75rem;
  color: var(--text-body);
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}
.dual-action-card-highlight {
  background: #fff;
  border-color: var(--gold);
  border-width: 2px;
}
.dual-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
  background: rgba(183,156,79,0.18);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
}
.dual-card-tag-gold { color: var(--gold); }
.dual-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.dual-card-body {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 1rem;
}
.dual-card-result {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin: 0;
  border-top: 1px solid rgba(183,156,79,0.3);
  padding-top: 0.75rem;
}
.dual-action-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
}
.connector-icon {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}
.connector-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-body);
  opacity: 0.6;
}

/* ── How Tirzepatide Actually Works (3 cards) ── */
.how-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.how-works-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}
.how-works-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(183,156,79,0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.how-works-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.how-works-body {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

/* ── Stats Bar ── */
.section-stats-bar {
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  padding: 2.5rem 1.5rem;
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.stat-bar-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat-bar-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-bar-label {
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}
.stat-bar-source {
  font-size: 0.6rem;
  color: rgba(74,74,74,0.5);
  margin-top: 0.1rem;
}
.stat-bar-divider {
  width: 1px;
  height: 60px;
  background: rgba(183,156,79,0.35);
  flex-shrink: 0;
}

/* ── Value Framework ── */
.value-framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.value-fw-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  position: relative;
}
.value-fw-num {
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(183,156,79,0.18);
  line-height: 1;
}
.value-fw-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.6rem;
  padding-left: 2.5rem;
}
.value-fw-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.value-fw-body {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

/* ── Comparison Table ── */
.comparison-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.comparison-table thead tr {
  background: var(--green-dark);
  color: #fff;
}
.comparison-table thead th {
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-table .col-highlight {
  background: rgba(183,156,79,0.08);
  border-left: 2px solid var(--gold);
}
.comparison-table thead .col-highlight {
  background: rgba(183,156,79,0.25);
  color: var(--gold-light);
}
.comparison-table .col-brand {
  font-size: 0.65rem;
  opacity: 0.7;
  display: block;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td {
  padding: 0.9rem 1.25rem;
  color: var(--text-body);
  vertical-align: top;
}
.comparison-table tbody td.col-highlight {
  color: var(--green-heading);
  font-weight: 600;
}
.comparison-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
}
.comparison-source {
  font-size: 0.7rem;
  color: var(--text-body);
  opacity: 0.65;
  margin-top: 0.75rem;
  text-align: center;
}

/* ── Your Program Timeline ── */
.program-timeline {
  margin-top: 2.5rem;
  position: relative;
  padding-left: 2.5rem;
}
.program-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(183,156,79,0.2) 100%);
}
.program-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
  position: relative;
}
.program-marker {
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 24px;
  display: flex;
  justify-content: center;
}
.program-marker-circle {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--marble-bg);
  flex-shrink: 0;
}
.program-marker-gold {
  background: var(--gold);
}
.program-step-content { padding-left: 0; }
.program-step-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 0.4rem;
}
.program-step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}
.program-step-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
  max-width: 640px;
}
.program-step-final .program-step-title { color: var(--gold-dark); }

/* ── Why BP Royal ── */
.why-bp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.why-bp-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 1.75rem 1.25rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  text-align: center;
}
.why-bp-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.why-bp-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.6rem;
}
.why-bp-body {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ── Our Commitment ── */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.commitment-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 1.75rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}
.commitment-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.commitment-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.6rem;
}
.commitment-body {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

/* ================================================
   Responsive: new sections at ≤768px
   ================================================ */
@media (max-width: 768px) {
  .trust-bar-inner { gap: 0.4rem 0.9rem; }
  .trust-bar-item { white-space: normal; font-size: 0.72rem; }
  .trust-bar-divider { display: none; }

  .dual-action-grid {
    grid-template-columns: 1fr;
  }
  .dual-action-connector {
    flex-direction: row;
    justify-content: center;
    padding: 0.25rem 0;
  }

  .how-works-grid { grid-template-columns: 1fr; }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat-bar-divider { display: none; }

  .value-framework-grid { grid-template-columns: 1fr; }
  .value-fw-num { font-size: 1.6rem; }
  .value-fw-tag { padding-left: 2rem; }

  .comparison-table-wrap { overflow-x: visible; }
  .comparison-table { font-size: 0.78rem; }

  .program-timeline { padding-left: 1.75rem; }
  .program-timeline::before { left: 6px; }
  .program-marker { left: -1.75rem; }

  .why-bp-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-grid { grid-template-columns: 1fr; }

  .section-dark-green { padding: 3rem 1rem; }
  .section-stats-bar { padding: 2rem 1rem; }
}

@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .why-bp-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: center; text-align: center; }
  /* ── Comparison table: stacked card layout on small screens ── */
  .comparison-table-wrap { overflow-x: visible; }
  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td { display: block; width: 100%; box-sizing: border-box; }
  .comparison-table thead { display: none; }
  .comparison-table { min-width: 0; box-shadow: none; border-radius: 0; background: transparent; }

  .comparison-table tbody tr {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 0.85rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid rgba(183,156,79,0.2);
  }
  .comparison-table tbody tr:last-child { border-bottom: 1px solid rgba(183,156,79,0.2); }

  /* Metric = dark green card header */
  .comparison-table tbody td:first-child {
    background: var(--green-dark);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    padding: 0.7rem 1rem;
    border-bottom: none;
  }

  /* Semaglutide value row */
  .comparison-table tbody td:nth-child(2) {
    padding: 0.6rem 1rem 0.6rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: #fafafa;
    border-left: none !important;
    color: var(--text-body);
    font-weight: 400;
  }
  .comparison-table tbody td:nth-child(2)::before {
    content: "SEMAGLUTIDE";
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-body);
    opacity: 0.45;
    margin-bottom: 0.25rem;
  }

  /* Tirzepatide value row */
  .comparison-table tbody td:nth-child(3),
  .comparison-table tbody td.col-highlight {
    padding: 0.6rem 1rem;
    background: rgba(183,156,79,0.07) !important;
    border-left: none !important;
    border-bottom: none;
    color: var(--green-heading);
    font-weight: 600;
  }
  .comparison-table tbody td:nth-child(3)::before {
    content: "TIRZEPATIDE";
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
  }
}

/* ===== Hero eyebrow (Medical Weight Loss — Henderson) ===== */
.tirz-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.tirz-eyebrow-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
}
.tirz-eyebrow-text {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ===== Hero headline – reduced size (avoids overlay on hero image in Safari) ===== */
.hero-headline {
  font-size: 2.65rem !important;
  line-height: 1.1 !important;
}
@media (min-width: 480px) {
  .hero-headline { font-size: 3.2rem !important; }
}
@media (min-width: 769px) {
  .hero-headline { font-size: clamp(2.4rem, 5vw, 3.9rem) !important; }
}

/* ===== Related Services (marble layout) ===== */
.related-services-section {
  background: #f8f6f3;
  background-image: url('../images/white-stone.png');
  background-size: cover;
  background-position: center;
  padding: 70px 40px;
}
.related-services-section .related-services-subtitle {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #4a4a4a;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 10px;
}
.related-services-section .related-services-headline {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a4d1a;
  text-align: center;
  margin: 0 0 36px;
  border: none;
  background: none;
}
.related-services-section .related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.related-services-section .related-services-card {
  text-decoration: none;
  display: block;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-top: 2px solid #B79C4F;
  padding: 28px 24px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.related-services-section .related-services-card:hover {
  border-color: #a68e46;
  transform: translateY(-3px);
}
.related-services-section .related-services-card h3 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  color: #1a4d1a;
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.related-services-section .related-services-card p {
  color: #4a4a4a;
  font-size: 0.85rem;
  margin: 0 0 14px;
  line-height: 1.6;
}
.related-services-section .related-services-card .related-services-cta {
  color: #a68e46;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.related-services-section .related-services-card:hover .related-services-cta {
  color: #9a7b2d;
}
@media (max-width: 600px) {
  .related-services-section { padding: 50px 20px; }
}

