:root {
  --navy: #0f2340;
  --navy-light: #17335c;
  --blue: #1d5fd6;
  --blue-light: #eaf1fd;
  --orange: #ff8c2b;
  --orange-dark: #e8721a;
  --ink: #1c2331;
  --gray: #5b6472;
  --gray-light: #8a93a3;
  --bg-soft: #f6f8fb;
  --border: #e4e9f1;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 35, 64, 0.08);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255, 140, 43, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.logo-text span { color: var(--orange); }
.logo-text.light { color: var(--white); }
.logo-text.light span { color: var(--orange); }

.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-light);
  position: relative;
}
.nav a:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3f75 100%);
  color: var(--white);
  padding: 72px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-sub {
  color: #cfd9ec;
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-actions .btn-outline:hover { background: var(--white); color: var(--navy); }

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-card-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card-row strong { color: var(--navy); font-size: 0.98rem; }
.hero-card-row p { color: var(--gray); font-size: 0.9rem; }

/* Trust strip */
.trust-strip { background: var(--blue-light); padding: 26px 0; }
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { color: var(--navy); font-size: 1.3rem; font-family: var(--font-head); }
.trust-item span { color: var(--gray); font-size: 0.85rem; }

/* Section generic */
section { padding: 84px 0; }
.section-eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-eyebrow.center { text-align: center; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
h2.center { text-align: center; }
.section-sub { color: var(--gray); margin-bottom: 46px; }
.section-sub.center { text-align: center; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-media-block {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--blue-light), #dbe7fb);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  padding: 24px;
}
.about-media-logo {
  max-width: 88%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 12px 28px rgba(15, 35, 64, 0.18));
}
.about-media-block.photo {
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-media-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-content p { color: var(--gray); margin-bottom: 16px; }
.about-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Instructor */
.instructor { background: var(--bg-soft); }
.instructor-inner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 56px;
    align-items: center;
}
.instructor-media-block {
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 320px;
    margin: 0 auto;
}
.instructor-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.instructor-content p { color: var(--gray); margin-bottom: 16px; }

/* Services */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 14px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: 0.92rem; }

.service-card { cursor: pointer; }
.service-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 12px;
}
.service-chevron { display: inline-block; transition: transform 0.2s ease; }
.service-card.open .service-chevron { transform: rotate(180deg); }
.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
  margin-top: 0;
}
.service-card.open .service-detail {
  max-height: 420px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.service-detail p { font-size: 0.88rem; color: var(--gray); margin-bottom: 8px; }
.service-detail p:last-child { margin-bottom: 0; }
.service-detail strong { color: var(--ink); }

/* Testimonials */
.testimonials { background: var(--white); }
.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
}
.testimonial-track::-webkit-scrollbar { height: 6px; }
.testimonial-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.testimonial-card {
  scroll-snap-align: start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card .stars { color: #ffb020; font-size: 0.9rem; }
.testimonial-card p { color: var(--ink); font-size: 0.95rem; flex: 1; }
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-light); }

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.testimonial-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
  transition: background 0.15s ease;
}
.testimonial-controls button:hover { background: var(--blue-light); }

.testimonials-cta { text-align: center; margin-top: 28px; }
.testimonials-cta a { color: var(--blue); font-weight: 600; font-size: 0.95rem; }
.testimonials-cta a:hover { text-decoration: underline; }

/* Booking */
.booking { background: var(--navy); color: var(--white); }
.booking .section-eyebrow { color: var(--orange); }
.booking h2 { color: var(--white); }
.booking-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.booking-intro p { color: #cfd9ec; margin-bottom: 22px; }
.booking-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.booking-points li {
  color: #e3e9f5;
  font-size: 0.95rem;
  padding-left: 26px;
  position: relative;
}
.booking-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.booking-contact-alt { padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.15); }
.booking-contact-alt p { margin-bottom: 12px; color: #cfd9ec; }
.booking-contact-alt .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.booking-contact-alt .btn-outline:hover { background: var(--white); color: var(--navy); }

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-split > div { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  background: var(--white);
}

.form-row select:disabled {
  color: var(--gray-light);
  cursor: not-allowed;
}

.form-row-checkbox { flex-direction: row; align-items: center; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
}
.repeat-hint { font-size: 0.8rem; color: var(--gray-light); margin-top: 2px; }

.form-fineprint { font-size: 0.78rem; color: var(--gray-light); text-align: center; }
.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-status.success { display: block; background: #e6f7ee; color: #157347; }
.form-status.error { display: block; background: #fdecec; color: #b3261e; }
.form-status.loading { display: block; background: var(--blue-light); color: var(--navy); }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: stretch;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-detail span { font-size: 1.1rem; }
.contact-icon { display: inline-flex; color: var(--blue); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail p { color: var(--gray); }
.contact-detail a { color: var(--blue); font-weight: 600; }
.contact-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer { background: var(--navy); color: #cfd9ec; padding: 46px 0 26px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 26px;
  margin-bottom: 20px;
}
.footer-inner p { color: #97a5c2; font-size: 0.88rem; margin-top: 8px; max-width: 280px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: #cfd9ec; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--orange); }
.footer-copy { text-align: center; font-size: 0.8rem; color: #7d8cad; }

/* Responsive */
@media (max-width: 960px) {
      .hero-inner, .about-inner, .instructor-inner, .booking-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-media { order: 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 10px 16px; font-size: 0.85rem; }
  .header-inner { gap: 10px; padding: 12px 16px; }
  .logo-text { font-size: 0.92rem; }
  .logo-icon { height: 42px; width: 42px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .trust-strip-inner { justify-content: space-between; }
  .hero { padding: 48px 0 64px; }
  section { padding: 56px 0; }

  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
}



/* PASS GALLERY */
.pass-gallery {
  margin-top: 56px;
  text-align: center;
}
.pass-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 480px;
  margin: 20px auto 0;
}
.pass-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  margin: 0;
}
.pass-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LIVE REVIEWS WIDGET */
.live-reviews {
  margin-top: 56px;
  text-align: center;
}
.live-reviews > div[class*="elfsight-app-"] {
  max-width: 900px;
  margin: 20px auto 0;
}

/* STICKY MOBILE CTA BAR */
.sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -4px 16px rgba(15,35,64,0.15);
  }
  .sticky-cta-btn {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
  }
  .sticky-cta-call {
    background: var(--navy);
    color: #fff;
  }
  .sticky-cta-book {
    background: var(--orange);
    color: #fff;
  }
  body {
    padding-bottom: 56px;
  }
}


/* ============ DESIGN POLISH PASS ============ */
:root {
  --shadow-sm: 0 4px 14px rgba(15,35,64,0.08);
  --shadow-md: 0 12px 32px rgba(15,35,64,0.12);
  --shadow-lg: 0 24px 60px rgba(15,35,64,0.18);
  --shadow-card-hover: 0 16px 40px rgba(15,35,64,0.14);
}
.hero h1 { font-size: 3rem; letter-spacing: -0.02em; line-height: 1.08; }
h2 { letter-spacing: -0.01em; }
.eyebrow, .section-eyebrow { letter-spacing: 0.08em; }
.section-sub { font-size: 1.02rem; line-height: 1.65; }
.hero {
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06) 0, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255,140,43,0.10) 0, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3f75 100%);
}
.hero-inner > * { animation: rv2FadeUp 0.7s ease both; }
.hero-inner > *:nth-child(2) { animation-delay: 0.08s; }
@keyframes rv2FadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-card { box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.6); }
.trust-strip { background: transparent; padding: 0; margin-top: -34px; position: relative; z-index: 5; }
.trust-strip-inner { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 28px 36px; margin: 0 auto; max-width: 1112px; }
.instructor { padding-top: 118px; }
.btn-primary { box-shadow: 0 10px 24px rgba(255,140,43,0.30); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(255,140,43,0.4); transform: translateY(-2px); }
.btn-outline:hover { box-shadow: var(--shadow-sm); }
.service-card { box-shadow: var(--shadow-sm); }
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-6px); }
.pass-photo { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.pass-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.hero-card-icon, .service-icon { background: linear-gradient(150deg, var(--blue-light), #dbe7fb); }
.booking-form, .hero-card { box-shadow: var(--shadow-lg); }
.about-media-block.photo, .instructor-media-block { box-shadow: var(--shadow-md); }
section { padding: 96px 0; }
.booking, .services { padding: 100px 0; }
@media (max-width: 720px) {
  .trust-strip { margin-top: -20px; }
  .trust-strip-inner { padding: 20px; margin: 0 16px; }
  .instructor { padding-top: 76px; }
  .hero h1 { font-size: 2.1rem; }
}

/* CURATOR.IO RECENT PASSES FEED */
#curator-feed-rv2 {
  max-width: 900px;
  margin: 20px auto 0;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm, 0 4px 14px rgba(15,35,64,0.08));
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover, 0 16px 40px rgba(15,35,64,0.14));
}
.pricing-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.pricing-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
}
.pricing-amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
}
.pricing-desc { color: var(--gray); font-size: 0.88rem; }

.pricing-featured {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg, 0 24px 60px rgba(15,35,64,0.18));
}
.pricing-featured-text h3 { color: var(--white); margin-bottom: 8px; }
.pricing-featured-text p { color: #cfd9ec; max-width: 480px; font-size: 0.95rem; }
.pricing-featured-price { text-align: center; flex-shrink: 0; }
.pricing-featured-price .pricing-amount { color: var(--white); margin-bottom: 14px; }
.pricing-featured-price .pricing-amount span { color: #cfd9ec; }

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { flex-direction: column; text-align: center; padding: 28px 24px; }
  .pricing-featured-text p { max-width: none; }
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--gray);
  font-size: 0.92rem;
  padding-bottom: 18px;
  margin: 0;
}


/* BLOG */
.blog-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 64px 0 48px;
}
.blog-hero .section-eyebrow { color: var(--orange); }
.blog-hero h1 { color: var(--white); margin: 8px 0 12px; }
.blog-hero p { color: rgba(255,255,255,0.82); max-width: 640px; margin: 0; }

.blog-listing { padding: 56px 0 80px; background: var(--bg-soft); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.blog-card-meta { font-size: 13px; color: var(--gray-light); margin: 0 0 8px; }
.blog-card h2 { margin: 0 0 10px; font-family: var(--font-head); font-size: 20px; }
.blog-card p { color: var(--gray); flex-grow: 1; margin: 0 0 16px; }
.blog-card a.blog-read-more { color: var(--blue); font-weight: 600; text-decoration: none; }
.blog-card a.blog-read-more:hover { text-decoration: underline; }

.blog-article-wrap { padding: 56px 0 80px; }
.blog-breadcrumb { font-size: 13px; color: var(--gray-light); margin: 0 0 16px; }
.blog-breadcrumb a { color: var(--gray-light); text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-article { max-width: 720px; margin: 0 auto; }
.blog-article-meta { font-size: 14px; color: var(--gray-light); margin: 0 0 8px; }
.blog-article h1 { font-size: 36px; margin: 0 0 20px; }
.blog-article h2 { font-size: 24px; margin: 40px 0 14px; color: var(--navy); }
.blog-article p { color: var(--ink); line-height: 1.7; margin: 0 0 18px; }
.blog-article ul { margin: 0 0 18px; padding-left: 22px; color: var(--ink); line-height: 1.7; }
.blog-article li { margin-bottom: 8px; }
.blog-article a { color: var(--blue); }
.blog-cta {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 36px 0;
}
.blog-cta p { margin: 0 0 14px; color: var(--navy); font-weight: 500; }
.blog-source-note {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 16px;
  font-size: 13px;
  color: var(--gray-light);
  font-style: italic;
}
.blog-quick-answers { margin: 40px 0 0; }
.blog-quick-answers h2 { margin-bottom: 16px; }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 48px 0 36px; }
  .blog-article h1 { font-size: 28px; }
  .blog-article-wrap { padding: 40px 0 56px; }
}
