/* ==========================================================================
   Colombia Care — Stem Cells Colombia
   Brand Stylesheet v3.0 — aligned with index.html
   Strict adherence to brand-guidelines.html §01–05
   Font: Inter (300/400/500/600/700/800)
   Primary: Green #008c3b · Background: Navy gradient · Accent: Gold #c9a84c
   ========================================================================== */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
  --green: #008c3b;
  --green-light: #00b34d;
  --green-dark: #006b2d;
  --navy: #1f3b76;
  --navy-dark: #15294f;
  --navy-black: #0d1a30;
  --base: #0a0a0a;
  --cta-bg: #1a1a2e;
  --gold: #c9a84c;
  --gold-soft: #c8a96e;
  --white: #ffffff;
  --white-95: rgba(255, 255, 255, 0.95);
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-06: rgba(255, 255, 255, 0.06);
  --card: #111a2a;
  --card-hover: #15223a;
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(0, 140, 59, 0.35);

  --max: 1200px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   2. Reset + base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(170deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-black) 100%);
  color: var(--white-90);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-light); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green); }
ul { margin: 0; padding: 0; }
button { font-family: inherit; }

/* ==========================================================================
   3. Typography — per brand-guidelines §01
   Headlines: Inter 800, tracking -0.015em, one keyword in green
   Body: Inter 400, line-height 1.55, dim white
   Labels: Inter 600, UPPERCASE, tracking 0.3em, green
   ========================================================================== */
h1, h2, h3, h4, h5 {
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 .5em;
}
h1, .display { font-size: clamp(42px, 5.5vw, 68px); letter-spacing: -0.025em; line-height: 1.02; font-weight: 700; }
.h-xl  { font-size: clamp(30px, 3.8vw, 46px); }
.h-xxl { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p  { color: var(--white-70); font-size: 16px; line-height: 1.7; margin: 0 0 1em; }
.h-light { color: var(--white); }
.lede {
  font-size: 19px;
  color: var(--white-90);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Brand rule: accent = one keyword per headline in green */
.accent      { color: var(--green); }
.gold-accent { color: var(--gold); }

/* Kicker / label — brand §01 "0X — TITLE" pattern */
.kicker {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.kicker-light { color: var(--white-70); }
.kicker-gold  { color: var(--gold); }

/* Arrow link */
.link-arrow {
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color .2s ease;
  white-space: nowrap;
}
.link-arrow:hover { color: var(--green-light); }

/* ==========================================================================
   4. Layout primitives
   ========================================================================== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section   { padding: 90px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .kicker { margin-bottom: 16px; }
.section-sub { color: var(--white-70); font-size: 17px; max-width: 640px; margin: 8px auto 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.center-cta { margin-top: 50px; text-align: center; }

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}
.btn-lg { padding: 18px 34px; font-size: 14px; min-height: 48px; }
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 140, 59, 0.4);
}
.btn-outline {
  background: transparent;
  border-color: var(--white-40);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--white-20);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--cta-bg);
  font-weight: 800;
}
.btn-gold:hover {
  background: #d9b964;
  color: var(--cta-bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.4);
}
.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--cta-bg);
}

/* ==========================================================================
   6. Top utility bar
   ========================================================================== */
.topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid var(--white-06);
  font-size: 12px;
  color: var(--white-70);
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-signal strong { color: var(--gold); }
.topbar-contact { display: flex; gap: 18px; }
.topbar-contact a {
  color: var(--white-90);
  font-weight: 500;
}
.topbar-contact a:hover { color: var(--gold); }

/* ==========================================================================
   7. Header + Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 16, 32, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--white-06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  max-width: var(--max);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo:hover { color: var(--white); }
.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 140, 59, 0.25));
}
.logo-full-img {
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.logo-title em { font-style: normal; color: var(--green); font-weight: 800; }
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-55);
  margin-top: 2px;
}

/* Nav list */
.nav-list {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: inline-block;
  padding: 10px 2px;
  color: var(--white-90);
  font-size: 14px;
  font-weight: 500;
}
.nav-list > li > a:hover,
.nav-list > li:hover > a,
.nav-list > li > a.active { color: var(--green); }
.caret { font-size: 10px; opacity: 0.7; margin-left: 2px; }

/* Dropdown */
.has-dropdown > .dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: -12px;
  min-width: 260px;
  background: #0d1628;
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  box-shadow: var(--shadow);
  z-index: 110;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  color: var(--white-90);
  font-size: 14px;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.dropdown li a:hover {
  background: rgba(0, 140, 59, 0.12);
  color: var(--green);
}

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 12px 20px; font-size: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .2s ease;
}

/* ==========================================================================
   8. Hero — brand §03
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 15, 25, 0.3) 0%,
    rgba(13, 26, 48, 0.5) 45%,
    rgba(13, 26, 48, 0.85) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 820px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  margin-bottom: 40px;
}
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding-top: 24px;
  border-top: 1px solid var(--white-10);
}
.hero-badges li {
  color: var(--white-70);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-badges strong {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  margin-right: 6px;
}

/* ==========================================================================
   9. Trust bar
   ========================================================================== */
.trust-bar {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  padding: 34px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.trust-item strong {
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.trust-item span {
  color: var(--white-70);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   10. Intro / about teaser
   ========================================================================== */
.intro .intro-copy p { max-width: 560px; }
.intro-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.intro-media img { width: 100%; height: 520px; object-fit: cover; }
.intro-media figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 32, 0.95) 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   10b. Stem Cells Explainer
   ========================================================================== */
.stem-explainer { background: rgba(0, 0, 0, 0.1); }
.stem-copy p { max-width: 580px; }
.stem-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.stem-quality-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.stem-quality-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}
.stem-quality-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--white);
}
.stem-quality-item p {
  font-size: 13px;
  color: var(--white-70);
  margin: 0;
  line-height: 1.6;
}
.stem-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stem-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* ==========================================================================
   10c. Offices & Facilities — bento grid
   ========================================================================== */
/* ==========================================================================
   10a. Partner / accreditation logo strip
   ========================================================================== */
.partners-strip {
  padding: 46px 0;
  border-top: 1px solid var(--white-06);
  border-bottom: 1px solid var(--white-06);
  background: rgba(0, 0, 0, 0.2);
}
.partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-40);
  margin: 0 0 28px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.partners-row img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity .3s ease;
}
.partners-row img:hover {
  opacity: 1;
}

.facilities { background: rgba(0, 0, 0, 0.15); }

/* 2×2 equal grid — all four cards same size */
.facility-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.facility-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  transition: transform .3s ease, border-color .3s ease;
  aspect-ratio: 4 / 3;           /* tall enough to actually see the room */
}
.facility-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
}
.facility-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .8s ease;
}
.facility-card:hover img { transform: scale(1.04); }
.facility-card figcaption {
  position: absolute;
  inset: 0;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 16, 32, 0.75) 100%);
  color: var(--white);
}
.facility-card figcaption h3 {
  font-size: 20px;
  margin: 0 0 4px;
  color: var(--white);
}
.facility-card figcaption p {
  font-size: 14px;
  color: var(--white-90);
  margin: 0;
  line-height: 1.55;
}
.facility-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.22);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}

/* No special sizing for the first card — all 4 cards are equal */
.facility-lg {
  grid-column: auto;
}

/* ==========================================================================
   11. Services grid
   ========================================================================== */
.services { background: rgba(0, 0, 0, 0.15); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  background: var(--card-hover);
  color: inherit;
}
.service-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,25,0) 55%, rgba(10,15,25,0.7) 100%);
}
.service-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.service-body h3 { margin: 0 0 4px; font-size: 20px; }
.service-body p { font-size: 14px; line-height: 1.6; color: var(--white-70); margin: 0; flex-grow: 1; }
.service-body .link-arrow { margin-top: 12px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ==========================================================================
   12. Medical tourism / US patients
   ========================================================================== */
.tourism { background: rgba(0, 0, 0, 0.25); }
.tourism-card {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.tourism-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 48, 0.35) 0%, rgba(13, 26, 48, 0.82) 100%);
}
.tourism-card-inner {
  position: relative;
  padding: 36px 36px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
}
.tourism-card-inner .kicker-light { color: var(--gold); }
.tourism-card-inner h2 { color: var(--white); margin-bottom: 0; }

.tourism-body .lede { margin-bottom: 24px; }
.tourism-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
}
.tourism-list li {
  padding-left: 32px;
  position: relative;
  color: var(--white-90);
  font-size: 15px;
  line-height: 1.6;
}
.tourism-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.18);
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
}
.tourism-list strong { color: var(--white); font-weight: 700; }
.tourism-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   13. Testimonials
   ========================================================================== */
.testimonials .section-head { margin-bottom: 48px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.4);
}
.testi-card blockquote {
  margin: 0;
  color: var(--white-90);
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--green);
}
.testi-card figcaption {
  color: var(--white-55);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

/* Reviews placeholder (Elfsight / Google) */
.reviews-widget {
  margin-top: 30px;
  border: 2px dashed rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 30px 40px;
  text-align: center;
}
.reviews-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-70);
}
.reviews-stars { color: var(--gold); font-size: 22px; letter-spacing: 4px; }
.reviews-placeholder strong { color: var(--white); font-size: 28px; font-weight: 800; }

/* ==========================================================================
   14. Science / research
   ========================================================================== */
.science-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.science-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   14b. Blog carousel
   ========================================================================== */
.blog-carousel-section { background: rgba(0, 0, 0, 0.18); }
.section-head-left { text-align: left; margin-left: 0; margin-right: auto; max-width: 720px; }
.section-sub-left { margin-left: 0; }

.carousel {
  position: relative;
  margin-top: 40px;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.carousel-track::-webkit-scrollbar { display: none; }

.blog-card {
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
}
.blog-card-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card-link:hover { color: inherit; }

.blog-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,25,0) 50%, rgba(10,15,25,0.55) 100%);
}
.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(0, 140, 59, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.blog-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.blog-meta {
  font-size: 11px;
  color: var(--white-55);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-body h3 {
  font-size: 19px;
  margin: 2px 0 4px;
  line-height: 1.25;
}
.blog-body p {
  font-size: 14px;
  color: var(--white-70);
  margin: 0;
  flex-grow: 1;
}
.blog-body .link-arrow {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  background: rgba(10, 16, 32, 0.88);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 4;
  transition: all .2s ease;
  backdrop-filter: blur(8px);
}
.carousel-btn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.05);
}
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--white-20);
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
}
.carousel-dots button.active {
  background: var(--green);
  width: 24px;
  border-radius: 999px;
}

/* ==========================================================================
   15. FAQ
   ========================================================================== */
.faq { background: rgba(0, 0, 0, 0.15); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-list details[open] { border-color: rgba(0, 140, 59, 0.4); }
.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 24px 22px;
  color: var(--white-70);
  font-size: 15px;
  margin: 0;
}
.faq-list details a { color: var(--green); }

/* ==========================================================================
   16. Pre-footer CTA strip — per menu-structure doc
   Dark #1A1A2E + gold #C8A96E
   ========================================================================== */
.prefooter-cta {
  background: var(--cta-bg);
  border-top: 3px solid var(--gold);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prefooter-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.prefooter-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}
.prefooter-cta .kicker-gold { color: var(--gold); margin-bottom: 16px; }
.prefooter-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  color: var(--white-70);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust-signals {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 14px 30px;
  flex-wrap: wrap;
}
.trust-signals li {
  color: var(--white-55);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================================================
   17. Footer — 4 columns per menu-structure doc
   ========================================================================== */
.site-footer {
  background: #08111f;
  padding: 70px 0 0;
  border-top: 1px solid var(--white-06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col .footer-h4-spacing { margin-top: 26px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { color: var(--white-70); }
.footer-col a:hover { color: var(--green); }
.footer-brand .logo-footer { margin-bottom: 16px; }
.footer-about {
  font-size: 14px;
  color: var(--white-55);
  line-height: 1.6;
  margin: 14px 0 20px;
  max-width: 320px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-10);
  display: grid;
  place-items: center;
  color: var(--white-70);
  font-size: 13px;
  font-weight: 600;
  transition: all .2s ease;
}
.social-row a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.footer-bar {
  border-top: 1px solid var(--white-06);
  padding: 20px 0;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--white-40);
  font-size: 12px;
}
.footer-bar-inner p { color: var(--white-40); margin: 0; }
.footer-meta {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-meta a { color: var(--white-40); font-size: 12px; }
.footer-meta a:hover { color: var(--green); }

/* ==========================================================================
   18. Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    border-bottom: 1px solid var(--white-06);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.open {
    max-height: 90vh;
    overflow-y: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 6px;
  }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { display: block; padding: 10px 0; }
  .has-dropdown > .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 4px 0 12px 14px;
    background: transparent;
    border: none;
    min-width: 0;
    box-shadow: none;
  }
  .dropdown li a { padding: 8px 10px; font-size: 13px; }
  .nav-cta { width: 100%; margin-top: 10px; }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 70vh; padding: 80px 0 60px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-media img { height: 420px; }

  /* Facility grid stays 2-col on tablet */

  /* Carousel shows 2 at a time */
  .carousel-track { grid-auto-columns: calc((100% - 24px) / 2); }
  .carousel-prev { left: -8px; }
  .carousel-next { right: -8px; }
}

@media (max-width: 600px) {
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .topbar-signal { font-size: 11px; }
  .hero { padding: 60px 0 50px; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { gap: 12px 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tourism-card-inner { padding: 28px 24px; }
  .cta-actions .btn { width: 100%; }
  .logo-sub { display: none; }
  .logo-img { width: 44px; height: 44px; }

  /* Facility grid stacks to 1 col on mobile */
  .facility-grid-4 { grid-template-columns: 1fr; }

  /* Carousel shows 1 at a time */
  .carousel-track { grid-auto-columns: 85%; gap: 14px; }
  .carousel-prev, .carousel-next { display: none; }

  /* Section heads become left-aligned */
  .section-head { text-align: left; }
  .section-sub { margin-left: 0; }

  /* Stem quality grid stacks */
  .stem-quality-grid { grid-template-columns: 1fr; }
  .stem-media img { aspect-ratio: 16 / 10; }
}
