/* ============================================================
   CANADIAN IMMIGRATION CONCIERGE — STYLES
   ============================================================ */

/* VARIABLES */
:root {
  --red:        #C41230;
  --red-dark:   #8B1A11;
  --red-light:  #fceae9;
  --navy:       #1C3557;
  --navy-light: rgba(255,255,255,0.10);
  --charcoal:   #1a1a1a;
  --mid:        #444444;
  --light:      #9A928A;
  --cream:      #FAF7F2;
  --cream-dark: #F0EBE1;
  --bg:         #ffffff;
  --white:      #FFFFFF;
  --border:     #dde4ef;

  --bar-h:    38px;
  --nav-h:    80px;
  --radius:   10px;
  --radius-sm: 6px;
  --shadow:   0 4px 24px rgba(28,28,28,0.08);
  --shadow-lg: 0 8px 48px rgba(28,28,28,0.14);
  --transition: .4s cubic-bezier(.65,0,.35,1);
  --max-w:    1200px;
  --pad:      clamp(1.5rem, 4vw, 3rem);
  --section-pad: 5rem;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #a88862 #e6e6e6;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: .4s cubic-bezier(.65,0,.35,1);
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.12;
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 700; }
em { font-style: italic; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.85rem;
}

/* LAYOUT */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: var(--section-pad) 0; background: #ffffff; }
.section.alt-bg { background: #1C3557; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header .intro,
.intro {
  color: #444444;
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 0.75rem;
}

/* PRICE */
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.price small {
  font-size: 0.42em;
  font-weight: 400;
  color: var(--light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary, .btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover, .btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-white:hover { border-color: var(--white); }
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: #1C3557;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 10px var(--pad);
  height: var(--bar-h);
  line-height: 1.3;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: var(--bar-h); left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(28,28,28,0.1); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 54px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-link {
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mid);
  border-radius: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--charcoal); }
.nav-link.active { font-weight: 700; }
.nav-menu .btn { margin-left: 0.75rem; padding: 0.55rem 1.2rem; font-size: 0.82rem; }

/* ── Dropdown nav ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer;
  font-family: inherit; display: flex; align-items: center; gap: 4px;
}
.nav-chevron { font-size: 10px; display: inline-block; transition: transform 0.2s; line-height: 1; }
.nav-dropdown-menu {
  /* use visibility+opacity so we can apply a close delay */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease, visibility 0s linear 0.18s;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-top: 3px solid #C41230;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 24px rgba(28,53,87,0.18);
  min-width: 240px;
  z-index: 300;
  padding: 0.35rem 0;
}
/* invisible hover bridge — fills the gap between trigger and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.12s ease, visibility 0s linear 0s;
}
.nav-dropdown.open .nav-chevron,
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  font-size: 14px;
  color: #1C3557;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-item:hover { background: #f0f4fa; color: #C41230; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — full-width photo with dark overlay
   ============================================================ */
.hero, .page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: calc(var(--nav-h) + var(--bar-h) + 5rem) var(--pad) 5rem;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
}
.hero { min-height: 520px; }
.page-hero { min-height: 520px; background-position: center 35%; }
.page-hero-bright::before { background: rgba(28,53,87,0.40) !important; }

/* COLLAGE HERO */
.collage-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.collage-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.collage-grid div {
  background-size: cover;
}
.collage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.collage-hero .page-hero-inner {
  color: #fff;
}
.collage-hero .page-hero-inner h1 { color: #fff; }
.collage-hero .page-hero-inner p { color: rgba(255,255,255,0.85); }

.hero::before, .page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,53,87,0.40);
  z-index: 1;
}
.hero > *, .page-hero > * { position: relative; z-index: 2; }

.hero-inner, .page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}
.hero h1, .page-hero h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 1rem;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero-sub, .page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.hero .btn-group, .page-hero .btn-group { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.trust-bar span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: #1C3557;
  padding: 3rem var(--pad);
}
.stats-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
}
.stat { text-align: center; }
.stat .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat .lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
}

/* ============================================================
   FEATURED CARD (Home page)
   ============================================================ */
.featured-card-wrap {
  background: #1C3557;
  padding: var(--section-pad) var(--pad);
}
.featured-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 4px solid var(--red);
}
.card-label {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: var(--red-light);
  color: var(--red);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.featured-card h3 { margin-bottom: 0.75rem; }
.featured-card .price { margin-bottom: 1.75rem; }
.featured-card ul { text-align: left; margin-bottom: 1.5rem; }
.featured-card ul li {
  padding: 0.55rem 0 0.55rem 1.75rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--mid);
  font-size: 0.94rem;
}
.featured-card ul li:last-child { border-bottom: none; }
.featured-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--red);
  font-weight: 700;
}
.card-footer {
  font-size: 0.72rem;
  color: var(--light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1.25rem;
}

/* ============================================================
   SERVICE GRID (Home — What We Cover)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0.85rem;
  margin-top: 2.5rem;
}
.tile {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: var(--transition);
}
.tile:hover {
  background: var(--red-light);
  border-color: var(--red);
  color: var(--red-dark);
  transform: translateY(-2px);
}
.tile-icon { font-size: 1.2rem; flex-shrink: 0; }

/* PHOTO GRID */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 320px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
}
.photo-card:last-child {
  grid-column: 2;
}
.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%);
  transition: var(--transition);
}
.photo-card:hover .photo-card-overlay {
  background: linear-gradient(to top, rgba(192,57,43,0.82) 0%, rgba(0,0,0,0.2) 60%);
}
.photo-card-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 1rem 1rem 1.1rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.photo-card:hover .photo-card-title { color: #fff; }
@media (max-width: 768px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } .photo-card:last-child { grid-column: auto; } }
@media (max-width: 480px) { .photo-card { height: 200px; } }

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
/* Homepage package teaser cards */
.pkg-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) { .pkg-teaser-grid { grid-template-columns: 1fr; } }
.pkg-teaser-card {
  background: #ffffff;
  border: 1.5px solid #dde4ef;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pkg-teaser-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-teaser-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}
.pkg-teaser-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pkg-teaser-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.pkg-teaser-price { font-size: 1.6rem; font-weight: 800; color: var(--charcoal); margin-bottom: 0.5rem; }
.pkg-teaser-price small { font-size: 0.9rem; font-weight: 500; color: var(--light); }
.pkg-teaser-card p { font-size: 0.9rem; color: var(--mid); margin: 0; }

.package-card {
  background: #ffffff;
  border: 1.5px solid #dde4ef;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.package-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.package-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.package-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.package-card h3 { margin-bottom: 0.4rem; font-weight: 700; color: #1C3557; }
.package-card .price { margin-bottom: 0.4rem; }
.package-card .tagline { color: var(--light); font-size: 0.86rem; margin-bottom: 1.5rem; }
.package-card ul { flex: 1; margin-bottom: 2rem; }
.package-card ul li {
  padding: 0.42rem 0 0.42rem 1.5rem;
  border-bottom: 1px solid #dde4ef;
  font-size: 15px;
  color: #666666;
  position: relative;
}
.package-card ul li:last-child { border-bottom: none; }
.package-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--red);
  font-weight: 700;
}
.package-card .btn, .package-card .btn-primary, .package-card .btn-outline {
  width: 100%;
  margin-top: auto;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.step { text-align: center; }
.step-num {
  width: 58px; height: 58px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.step h4 { margin-bottom: 0.65rem; }
.step p { color: var(--mid); font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial {
  background: #ffffff;
  border: 1.5px solid #dde4ef;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.5rem;
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stars { color: #e8a020; font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.12em; }
.testimonial p {
  color: #666666;
  font-size: 15px;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.author { display: flex; align-items: center; gap: 0.85rem; }
.flag { font-size: 1.5rem; }
.author strong { display: block; font-size: 0.88rem; }
.author span { font-size: 0.78rem; color: var(--light); }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  padding: var(--section-pad) var(--pad);
  text-align: center;
}
.cta-section.dark {
  background: #1C3557;
  color: var(--white);
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}
.cta-section .btn-group { justify-content: center; }
.cta-section .footnote {
  margin-top: 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ABOUT DARK (Home "Why Us") */
.about-dark {
  background: #1C3557;
  color: var(--white);
  padding: var(--section-pad) var(--pad);
}
.about-dark .container { max-width: 840px; }
.about-dark .eyebrow { color: rgba(255,255,255,0.4); }
.about-dark h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-dark p { color: rgba(255,255,255,0.68); margin-bottom: 1rem; line-height: 1.8; font-size: 0.95rem; }
.about-dark .footnote {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 1.75rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}
.stats-grid .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stats-grid .lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.35rem;
}

/* CTA BOX */
.cta-box {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.cta-box h3 { margin-bottom: 0.65rem; }
.cta-box p { color: var(--mid); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ============================================================
   SERVICE CATEGORIES PAGE
   ============================================================ */
.service-category { padding: clamp(3rem, 6vw, 5rem) 0; background: #ffffff; }
.service-category.alt { background: #1C3557; }
.service-category .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.category-header .icon { font-size: 2.75rem; margin-bottom: 1.1rem; }
.category-header h3 { margin-bottom: 0.75rem; }
.category-header p { color: var(--mid); line-height: 1.75; font-size: 0.93rem; }
.category-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.6rem;
}
.category-item {
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.5;
}
.service-category.alt .category-item { background: var(--white); }

/* ============================================================
   RCIC CARDS
   ============================================================ */
.rcic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.rcic-card {
  background: #ffffff;
  border: 1.5px solid #dde4ef;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.5rem;
  transition: var(--transition);
}
.rcic-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.rcic-card .icon { font-size: 2.2rem; margin-bottom: 1rem; }
.rcic-card h4 { margin-bottom: 0.65rem; font-size: clamp(1.05rem, 1.7vw, 1.25rem); font-weight: 700; color: #1C3557; }
.rcic-card p { font-size: 15px; color: #666666; margin-bottom: 1.25rem; line-height: 1.75; }
.referral-tag {
  display: inline-block;
  padding: 0.28rem 0.85rem;
  background: var(--red-light);
  color: var(--red);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* LEGAL NOTE BOX */
.legal-note {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--cream);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.75rem;
  margin-top: 2rem;
}
.legal-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.legal-note strong { display: block; margin-bottom: 0.75rem; font-size: 0.95rem; }
.legal-note p { font-size: 0.86rem; color: var(--mid); line-height: 1.75; margin-bottom: 0.5rem; }
.legal-note p:last-child { margin-bottom: 0; }

/* ============================================================
   À LA CARTE GRID
   ============================================================ */
.alacarte-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
.alacarte-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  transition: background .18s;
}
.alacarte-item:last-child { border-bottom: none; }
.alacarte-item:nth-child(even) { background: var(--cream); }
.alacarte-item:hover { background: var(--red-light); }
.alacarte-item .name { font-size: 0.9rem; color: var(--mid); }
.alacarte-item .alacarte-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
}

/* ============================================================
   CONSULTATION CARDS
   ============================================================ */
.consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.consult-card {
  background: #ffffff;
  border: 1.5px solid #dde4ef;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.consult-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.consult-card h3 { margin-bottom: 0.5rem; font-weight: 700; color: #1C3557; }
.consult-card .price { margin-bottom: 1rem; }
.consult-card p { font-size: 15px; color: #666666; margin-bottom: 1.5rem; flex: 1; line-height: 1.7; }
.consult-card .btn { justify-content: center; }

.notice-box {
  background: var(--red-light);
  border: 1px solid rgba(192,57,43,0.18);
  border-radius: var(--radius-sm);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  text-align: center;
}
.notice-box strong { display: block; margin-bottom: 0.5rem; color: var(--red-dark); font-size: 0.95rem; }
.notice-box p { font-size: 0.88rem; color: var(--mid); }

/* ============================================================
   GUIDE CARDS
   ============================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.guide-card {
  background: #ffffff;
  border: 1.5px solid #dde4ef;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.guide-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.guide-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.65rem; line-height: 1.3; color: #1C3557; }
.guide-card p { font-size: 15px; color: #666666; line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.guide-card .category {
  display: inline-block;
  padding: 0.24rem 0.8rem;
  background: var(--cream-dark);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1rem;
}
.read-more {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap .2s;
}
.read-more:hover { gap: 0.6rem; }

/* ============================================================
   ABOUT — Two-col, Team, Values
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.col-left p { color: var(--mid); margin-bottom: 1rem; line-height: 1.8; font-size: 0.95rem; }
.col-left h2 { margin-bottom: 1.25rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.team-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
}
.avatar { font-size: 2.5rem; margin-bottom: 0.75rem; }
.team-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem; line-height: 1.3; }
.role { font-size: 0.78rem; color: var(--mid); margin-bottom: 0.2rem; display: block; }
.langs { font-size: 0.72rem; color: var(--light); display: block; }
.team-footnote { font-size: 0.84rem; color: var(--light); line-height: 1.65; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  background: #ffffff;
  border: 1.5px solid #dde4ef;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.5rem;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); }
.value-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.5rem; font-size: clamp(1.05rem, 1.7vw, 1.25rem); font-weight: 700; color: #1C3557; }
.value-card p { font-size: 15px; color: #666666; line-height: 1.7; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 2rem auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  background: var(--white);
  transition: background .2s;
}
.faq-question:hover, .faq-question.open { background: var(--cream); }

.faq-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transition: transform .3s ease;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.65,0,.35,1);
}
.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--mid); margin-bottom: 1.25rem; font-size: 0.93rem; line-height: 1.75; }
.contact-info a { color: var(--red); font-weight: 600; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--mid);
}
.contact-detail strong { color: var(--charcoal); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.calendly-placeholder {
  background: var(--cream);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--light);
  font-size: 0.88rem;
  margin-top: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1C3557;
  color: rgba(255,255,255,0.65);
  padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-logo-wrap {
  display: inline-block;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 1rem;
}
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
}
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-content: flex-start;
}
.footer-nav a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom p { font-size: 0.8rem; margin-bottom: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-social { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.70); transition: color 0.2s; }
.footer-social-link:hover { color: #ffffff; }
.footer-social-link svg { width: 20px; height: 20px; fill: currentColor; }
.footer-legal {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.65,0,.35,1), transform .65s cubic-bezier(.65,0,.35,1);
}
.fade-in.visible { opacity: 1; transform: none; }

/* Stagger children */
.fade-in-group > *:nth-child(1) { transition-delay: 0s; }
.fade-in-group > *:nth-child(2) { transition-delay: .08s; }
.fade-in-group > *:nth-child(3) { transition-delay: .16s; }
.fade-in-group > *:nth-child(4) { transition-delay: .24s; }
.fade-in-group > *:nth-child(5) { transition-delay: .32s; }
.fade-in-group > *:nth-child(6) { transition-delay: .40s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.footnote { font-size: 0.8rem; color: var(--light); margin-top: 1rem; line-height: 1.6; }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .service-category .container { grid-template-columns: 1fr; gap: 2rem; }
  .two-col { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--pad);
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-top: 1px solid var(--border);
    z-index: 999;
    margin-left: 0;
  }
  .nav-menu.open { transform: none; }
  .nav-link {
    padding: 0.9rem 0.5rem;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: var(--charcoal);
  }
  .nav-menu .btn {
    margin-left: 0;
    margin-top: 1.25rem;
    width: 100%;
  }
  .nav-toggle { display: flex; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%; justify-content: space-between;
    padding: 0.9rem 0.5rem; font-size: 1rem;
    border-bottom: 1px solid var(--border); border-radius: 0;
    color: var(--charcoal);
  }
  .nav-dropdown-menu {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: static; box-shadow: none; border-radius: 0;
    border-top: none; margin-top: 0;
    background: #f7f9fc; padding: 0; min-width: unset;
    transition: none !important;
    max-height: 0; overflow: hidden;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.open .nav-dropdown-menu {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    max-height: 500px;
  }
  .nav-dropdown-item {
    padding: 0.75rem 1.5rem; font-size: 0.95rem; min-height: 44px;
    color: var(--charcoal); border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
  }
  .nav-dropdown-item:hover { background: #f0f4fa; color: #C41230; }
  .nav-dropdown:hover .nav-dropdown-menu {
    visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; max-height: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    visibility: visible !important; opacity: 1 !important; pointer-events: auto !important; max-height: 500px;
  }

  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .hero .btn-group, .page-hero .btn-group { align-items: center; }
  .hero, .page-hero { min-height: 380px; }
  .hero h1, .page-hero h1 { font-size: 32px; }
}

@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
  .alacarte-item { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .stats-strip .container { gap: 1.5rem 2rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
}

/* ============================================================
   WHITE SECTION — heading + text colours
   ============================================================ */
.section h2 { color: #1C3557; }
.section h3 { color: #1C3557; }
.section .eyebrow { color: #C41230; }
.section p, .section .intro { color: #444444; }

/* ============================================================
   NAVY SECTION — all contextual overrides
   ============================================================ */
.section.alt-bg { color: rgba(255,255,255,0.75); }

.section.alt-bg h2,
.section.alt-bg h3,
.section.alt-bg h4,
.section.alt-bg h5,
.section.alt-bg strong { color: #ffffff; }

.section.alt-bg p { color: rgba(255,255,255,0.75); }

.section.alt-bg .eyebrow { color: rgba(255,255,255,0.65); }
.section.alt-bg .intro { color: rgba(255,255,255,0.75); }
.section.alt-bg .section-header h2 { color: #ffffff; }

/* Navy cards */
.section.alt-bg .value-card,
.section.alt-bg .rcic-card,
.section.alt-bg .consult-card,
.section.alt-bg .guide-card,
.section.alt-bg .package-card,
.section.alt-bg .testimonial,
.section.alt-bg .team-card {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-left: 4px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
}

/* Step cards always use white background with dark text */
.section.alt-bg .step,
.section.alt-bg .steps-list .step {
  background: #ffffff;
  border: 1.5px solid #dde4ef;
  border-left: 4px solid #C41230;
  border-radius: 10px;
  padding: 1.5rem;
  color: #444444;
}
.section.alt-bg .step .step-num,
.section.alt-bg .steps-list .step-num {
  background: #C41230;
  color: #ffffff;
  font-weight: 800;
}
.section.alt-bg .step h3,
.section.alt-bg .step h4,
.section.alt-bg .step-body h3,
.section.alt-bg .steps-list .step h3,
.section.alt-bg .steps-list .step h4 { color: #1C3557 !important; }
.section.alt-bg .step p,
.section.alt-bg .step-body p,
.section.alt-bg .steps-list .step p { color: #444444 !important; }
.section.alt-bg .step-tag {
  background: #EBF0F7;
  border-color: #dde4ef;
  color: #1C3557;
}
.section.alt-bg .value-card h4,
.section.alt-bg .rcic-card h4,
.section.alt-bg .consult-card h3,
.section.alt-bg .guide-card h3,
.section.alt-bg .package-card h3,
.section.alt-bg .team-card h4 { color: #ffffff; }

.section.alt-bg .value-card p,
.section.alt-bg .rcic-card p,
.section.alt-bg .consult-card p,
.section.alt-bg .guide-card p,
.section.alt-bg .package-card ul li,
.section.alt-bg .testimonial p { color: rgba(255,255,255,0.65); }

.section.alt-bg .value-card:hover,
.section.alt-bg .rcic-card:hover,
.section.alt-bg .consult-card:hover,
.section.alt-bg .guide-card:hover,
.section.alt-bg .package-card:hover { background: rgba(255,255,255,0.15); box-shadow: none; }

/* Navy icons stay visible */
.section.alt-bg .value-card .icon,
.section.alt-bg .rcic-card .icon { color: #ffffff; }

/* Navy referral tag */
.section.alt-bg .referral-tag {
  background: rgba(196,18,48,0.25);
  color: rgba(255,255,255,0.85);
}

/* Navy eyebrow override for cards */
.section.alt-bg .eyebrow { color: rgba(255,255,255,0.55); }

/* Navy package card borders */
.section.alt-bg .package-card ul li { border-bottom-color: rgba(255,255,255,0.12); }

/* Featured package card in navy */
.section.alt-bg .package-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

/* Navy btn-outline */
.section.alt-bg .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}
.section.alt-bg .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #ffffff; }

/* Price display in navy */
.section.alt-bg .price { color: #ffffff; }
.section.alt-bg .price small { color: rgba(255,255,255,0.55); }

/* FAQ in navy */
.section.alt-bg .faq-list {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.section.alt-bg .faq-item { border-bottom-color: rgba(255,255,255,0.12); }
.section.alt-bg .faq-question { background: transparent; color: rgba(255,255,255,0.9); }
.section.alt-bg .faq-question:hover,
.section.alt-bg .faq-question.open { background: rgba(255,255,255,0.06); }
.section.alt-bg .faq-answer-inner { color: rgba(255,255,255,0.7); }
.section.alt-bg .faq-icon { background: rgba(255,255,255,0.15); color: #ffffff; }

/* Notice/alert boxes in navy */
.section.alt-bg .notice-box,
.section.alt-bg .cta-box,
.section.alt-bg .legal-note {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.section.alt-bg .cta-box h3,
.section.alt-bg .legal-note strong { color: #ffffff; }
.section.alt-bg .cta-box p,
.section.alt-bg .legal-note p { color: rgba(255,255,255,0.7); }

/* Category items in navy */
.section.alt-bg .category-item {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
}

/* Contact form in navy */
.section.alt-bg .contact-info h2 { color: #ffffff; }
.section.alt-bg .contact-info p { color: rgba(255,255,255,0.75); }
.section.alt-bg .contact-detail strong { color: #ffffff; }
.section.alt-bg .contact-detail a { color: rgba(255,255,255,0.85); }

/* Alt service category (navy) */
.service-category.alt .category-header h3 { color: #ffffff; }
.service-category.alt .category-header p { color: rgba(255,255,255,0.75); }
.service-category.alt .category-header .eyebrow { color: rgba(255,255,255,0.55); }
.service-category.alt .category-item {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
}

/* Featured card wrap (navy) */
.featured-card-wrap .featured-card { border-top-color: var(--red); }
.featured-card-wrap .card-label { background: rgba(255,255,255,0.15); color: #ffffff; }

/* Read more link */
.section.alt-bg .read-more { color: rgba(255,255,255,0.8); }

/* Alacarte in navy */
.section.alt-bg .alacarte-grid { border-color: rgba(255,255,255,0.18); }
.section.alt-bg .alacarte-item { border-bottom-color: rgba(255,255,255,0.12); }
.section.alt-bg .alacarte-item:nth-child(even) { background: rgba(255,255,255,0.05); }
.section.alt-bg .alacarte-item:hover { background: rgba(255,255,255,0.1); }
.section.alt-bg .alacarte-item .name { color: rgba(255,255,255,0.75); }
.section.alt-bg .alacarte-item .alacarte-price { color: #ffffff; }

/* Two-col in navy */
.section.alt-bg .col-left h2 { color: #ffffff; }
.section.alt-bg .col-left p { color: rgba(255,255,255,0.75); }
.section.alt-bg .team-footnote { color: rgba(255,255,255,0.55); }

/* ── Page header eyebrow badge (all pages) ── */
.page-hero .eyebrow,
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,18,48,0.15);
  border: 1.5px solid #C41230;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
