/* ============================================================
   ELDERBRIDGE CARE HOME: REDESIGNED STYLESHEET
   Typography: Cormorant Garant + DM Sans
   Palette: White-forward, gold accents, charcoal text
   ============================================================ */

/* 1. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1C1C1C;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* 2. TOKENS
   ============================================================ */
:root {
  /* Brand */
  --gold:        #C4861A;
  --gold-mid:    #D9A040;
  --gold-light:  #EEC86A;
  --gold-pale:   #FAF0D7;
  --green:       #2D6A4F;
  --green-light: #3D8B68;
  --charcoal:    #1C1C1C;
  --navy:        #0C2461;   /* accent only */

  /* Neutrals */
  --white:      #FFFFFF;
  --cream:      #FAFAF7;
  --cream-mid:  #F4F1EB;
  --smoke:      #EEEBE3;
  --mid-gray:   #6B6B6B;
  --light-gray: #9A9A9A;
  --border:     #E5E0D8;

  /* Typography */
  --serif: 'Cormorant Garant', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation (very subtle) */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 52px rgba(0,0,0,0.11);

  /* Shape */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg: 16px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.00, 0.00, 0.20, 1.00);
  --t:   0.30s var(--ease);
  --t-f: 0.15s var(--ease);
  --t-s: 0.55s var(--ease-out);

  --nav-h: 92px;

  --desc-size: 1.1rem;
  --desc-leading: 1.85;
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  line-height: 1.15;
  color: var(--charcoal);
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem);   }
h2 { font-size: clamp(2rem,   4vw, 3.2rem);  }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);  }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem;    }

p  { font-size: var(--desc-size); line-height: var(--desc-leading); color: var(--mid-gray); }
.lead { font-size: var(--desc-size); line-height: var(--desc-leading); }

em { font-style: italic; }

/* 4. LAYOUT
   ============================================================ */
.container        { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container--narrow{ max-width:  780px; margin: 0 auto; padding: 0 28px; }
.container--wide  { max-width: 1360px; margin: 0 auto; padding: 0 28px; }

section           { padding: 104px 0; }
.section--sm      { padding:  60px 0; }
.section--lg      { padding: 144px 0; }

/* 5. SECTION LABELS / HEADERS
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title       { margin-bottom: 16px; }
.section-title em    { color: var(--gold); font-style: italic; }
.section-subtitle    { font-size: var(--desc-size); color: var(--mid-gray); line-height: var(--desc-leading); max-width: 560px; }
.section-subtitle--c { max-width: 560px; margin: 0 auto; }

/* Gold rule */
.rule {
  display: block;
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 0 0 18px;
}
.rule--c { margin: 0 auto 18px; }

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}
.btn svg { width:17px; height:17px; flex-shrink:0; }

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,134,26,0.35);
}

.btn-dark {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn-lg  { padding: 17px 44px; font-size: 0.9rem; }
.btn-sm  { padding: 10px 22px; font-size: 0.78rem; }

/* 7. NAVIGATION: White / transparent
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.nav--glass {
  background: transparent;
}
.nav--white {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 28px;
}

.nav__logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--t);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav__link {
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--r-sm);
  transition: color var(--t-f);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav__links .nav__link.btn--gold {
  padding: 12px 26px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 10px;
  flex-shrink: 0;
}

.nav__group {
  position: relative;
}

.nav__link--parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__link--parent::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 2px;
  transition: transform var(--t-f);
}

.nav__group:hover .nav__link--parent::after,
.nav__group:focus-within .nav__link--parent::after {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 196px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 200;
}

.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sublink {
  display: block;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid-gray);
  border-radius: var(--r-sm);
  transition: color var(--t-f), background var(--t-f);
}

.nav__sublink:hover,
.nav__sublink.active {
  color: var(--gold);
  background: var(--cream);
}

.nav--white .nav__sublink {
  color: var(--mid-gray);
}

.nav__link:hover,
.nav__link.active { color: var(--gold-light); }

.nav--white .nav__link {
  color: var(--mid-gray);
}
.nav--white .nav__link:hover,
.nav--white .nav__link.active {
  color: var(--charcoal);
}

.nav--white .nav__link.btn--gold,
.nav--white .nav__link.btn.btn--gold {
  color: #fff;
}
.nav--white .nav__link.btn--gold:hover,
.nav--white .nav__link.btn.btn--gold:hover,
.nav--white .nav__link.btn--gold.active,
.nav--white .nav__link.btn.btn--gold.active {
  color: #fff;
}

.nav__cta {
  flex-shrink: 0;
  background: var(--gold);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--t);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--gold-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,134,26,0.4);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: all var(--t);
}
.nav--white .nav__hamburger span { background: var(--charcoal); }
.nav__hamburger.open span:nth-child(1){ transform: rotate(45deg) translate(4px,4px); }
.nav__hamburger.open span:nth-child(2){ opacity: 0; }
.nav__hamburger.open span:nth-child(3){ transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left:0; right:0;
  background: #fff;
  padding: 20px 24px 32px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 999;
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.nav__mobile .nav__link--sub {
  padding: 10px 16px 10px 32px;
  font-size: 0.92rem;
  color: var(--light-gray);
}
.nav__mobile .nav__link--sub:hover,
.nav__mobile .nav__link--sub.active {
  color: var(--gold);
  background: var(--cream);
}
.nav__mobile .nav__link {
  padding: 14px 16px;
  color: var(--mid-gray);
  border-radius: var(--r-md);
  font-size: 1rem;
}
.nav__mobile .nav__link:hover { color: var(--charcoal); background: var(--cream); }
.nav__mobile .nav__cta {
  margin-top: 10px;
  text-align: center;
  padding: 14px;
  display: block;
  border-radius: var(--r-md);
}
.nav__mobile .nav__mobile-cta {
  margin-top: 20px;
  margin-bottom: 4px;
  width: calc(100% - 8px);
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  text-align: center;
}

/* 8. HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #111;
}

@keyframes heroSlideReveal {
  0% {
    clip-path: inset(100% 0 0 0);
    transform: scale(1.06);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 28%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  transition:
    opacity 0.85s ease-in-out,
    visibility 0s linear 0.85s;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
  transition:
    opacity 0.85s ease-in-out,
    visibility 0s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.38) 55%,
    rgba(10,10,10,0.10) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 32px) 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.82;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider controls */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 28px; height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--t);
  padding: 0;
}
.hero-dot.active {
  background: var(--gold-light);
  width: 52px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t);
  backdrop-filter: blur(4px);
  font-size: 1rem;
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-arrow--prev { left: 28px; }
.hero-arrow--next { right: 28px; }

/* Slide counter */
.hero-counter {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 3;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  font-family: var(--sans);
}

/* 9. PAGE HERO: Inner pages (white, no image bg)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 52px) 0 72px;
  background: linear-gradient(165deg, var(--white) 0%, var(--cream) 55%, var(--smoke) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 28px; bottom: 0;
  width: 72px; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-mid) 100%);
  z-index: 2;
}
.page-hero__ghost {
  position: absolute;
  right: min(-2%, -12px);
  top: 52%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 15vw, 10.5rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.045em;
  color: rgba(28, 28, 28, 0.03);
  -webkit-text-stroke: 1px rgba(196, 134, 26, 0.14);
  paint-order: stroke fill;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--light-gray);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.page-hero__crumb a { color: var(--light-gray); transition: color var(--t-f); }
.page-hero__crumb a:hover { color: var(--gold); }
.page-hero__crumb span { color: var(--gold); }

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--charcoal);
  max-width: 700px;
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: var(--desc-size);
  color: var(--mid-gray);
  max-width: 540px;
  line-height: var(--desc-leading);
}

/* 10. STATS STRIP: White background, large numbers
   ============================================================ */
.stats-strip {
  padding: 72px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-services-bridge__strip {
  background: var(--white);
  border-top: none;
  border-bottom: 1px solid var(--border);
  padding: 56px 0 72px;
  margin-top: 52px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%; width: 1px;
  background: var(--border);
}
.stat-number {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
}

/* 11. SPLIT LAYOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--left-wide  { grid-template-columns: 1.1fr 0.9fr; }
.split--right-wide { grid-template-columns: 0.9fr 1.1fr; }

/* Stacked image block */
.img-stack {
  position: relative;
}
.img-stack__main {
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.img-stack__float {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
}
.img-stack__tag {
  position: absolute;
  top: 28px; left: -20px;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
}

/* 12. SERVICE CARDS: Minimal bordered
   ============================================================ */
.service-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 600;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  pointer-events: none;
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}
.service-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

/* 13. WHY CARDS: Horizontal, clean
   ============================================================ */
.why-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { border-top: 1px solid var(--border); }

.why-item__num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.15rem;
  height: 1.15rem;
  overflow: visible;
  flex-shrink: 0;
  min-width: 44px;
  margin: 0;
  padding: 0;
}
.why-item__body h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.why-item__body p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.72;
}

/* 14. PACKAGES: Elegant, border-top accent
   ============================================================ */
.package-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.package-card--pop {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  position: relative;
}
.package-card--pop::after {
  content: 'Most Popular';
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: #fff;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--r-full);
}

.pkg-band {
  height: 6px;
}
.pkg-band--bronze { background: linear-gradient(90deg, #9A5E1E, #C4813E); }
.pkg-band--silver { background: linear-gradient(90deg, #6B7280, #9CA3AF); }
.pkg-band--gold   { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.pkg-head {
  padding: 32px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pkg-tier { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light-gray); margin-bottom: 8px; }
.pkg-name {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.pkg-name--bronze { color: #9A5E1E; }
.pkg-name--silver { color: #4B5563; }
.pkg-name--gold   { color: var(--gold); }
.pkg-tagline { font-size: 0.85rem; color: var(--mid-gray); }

.pkg-body { padding: 28px 32px; flex: 1; }
.pkg-features { display: flex; flex-direction: column; gap: 0; }
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--smoke);
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.5;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pkg-footer { padding: 0 32px 32px; text-align: center; }

/* 15. PROCESS STEPS
   ============================================================ */
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 44px;
  align-items: start;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__line {
  position: absolute;
  left: 27px; top: 58px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), transparent);
}
.process-step:last-child .process-step__line { display: none; }
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  position: relative; z-index: 1;
  background: #fff;
}
.process-step__body { padding-top: 12px; }
.process-step__body h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--charcoal); margin-bottom: 8px; }
.process-step__body p  { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.75; }

/* 17. FAQ ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
  user-select: none;
  transition: color var(--t-f);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
  color: var(--mid-gray);
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-s); }
.faq-answer-inner { padding: 0 0 24px; }
.faq-answer-inner p { font-size: 0.94rem; color: var(--mid-gray); line-height: 1.82; }
.faq-item.open .faq-answer { max-height: 600px; }

/* 18. FORMS
   ============================================================ */
.form-group   { margin-bottom: 22px; }
.form-label   { display: block; font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; letter-spacing: 0.01em; }
.form-label span { color: var(--gold); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: #fff;
  transition: border-color var(--t-f), box-shadow var(--t-f);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,134,26,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #C0BBAF; }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-hint   { font-size: 0.75rem; color: var(--light-gray); margin-top: 5px; }

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #DC2626;
}
.form-group.error .form-label { color: #DC2626; }

.careers-apply-section {
  background: var(--cream);
  padding: 104px 0;
}
.careers-form-success {
  margin: 48px auto 0;
  max-width: 560px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  border: 1px solid rgba(196, 134, 26, 0.35);
  background: var(--gold-pale);
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.65;
}
.careers-form-success a {
  color: var(--gold-mid);
  font-weight: 600;
}
.careers-form-success a:hover {
  text-decoration: underline;
}
.careers-apply-card {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 40px 48px;
}
.careers-apply-form {
  position: relative;
}
.careers-apply-form .careers-apply-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.careers-apply-response-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--light-gray);
  line-height: 1.55;
}
.careers-apply-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.careers-apply-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--mid-gray);
  line-height: 1.6;
}
.careers-apply-check input {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-file {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.86rem;
  font-family: var(--sans);
  background: #fff;
  box-sizing: border-box;
}
.form-file:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
.careers-apply-textarea--short {
  min-height: 96px;
}

/* 19. JOB CARDS
   ============================================================ */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  transition: all var(--t);
}
.job-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.job-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--r-full);
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.job-tag--type { background: var(--cream-mid); color: #555; }
.job-tag--dept { background: var(--gold-pale); color: #7A5800; }
.job-card__meta  { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 7px; }
.job-card__title { font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 7px; }
.job-card__desc  { font-size: 0.86rem; color: var(--mid-gray); line-height: 1.68; }
.job-card__left  { flex: 1; }
.job-card__right { flex-shrink: 0; padding-top: 4px; }

/* 20. CTA BANNER: Dark charcoal, different from before
   ============================================================ */
.cta-banner {
  padding: 108px 0;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,134,26,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 18px;
}
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px; margin: 0 auto 40px;
  line-height: 1.8;
}

/* 21. FOOTER: Warmer dark tone
   ============================================================ */
.footer {
  background: #111;
  padding: 88px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  margin-bottom: 72px;
}
.footer__logo img { height: 56px; width: auto; object-fit: contain; margin-bottom: 18px; }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.78; margin-bottom: 28px; }

.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: all var(--t-f);
}
.footer__social-link:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.footer__col-title {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link  { font-size: 0.865rem; color: rgba(255,255,255,0.42); transition: color var(--t-f); }
.footer__link:hover { color: rgba(255,255,255,0.85); }

.footer__ci    { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer__ci-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__ci-text { font-size: 0.865rem; color: rgba(255,255,255,0.42); line-height: 1.55; }
.footer__ci-text a { color: rgba(255,255,255,0.42); transition: color var(--t-f); }
.footer__ci-text a:hover { color: rgba(255,255,255,0.8); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy     { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer__bot-links { display: flex; gap: 20px; }
.footer__bot-links a { font-size: 0.76rem; color: rgba(255,255,255,0.25); transition: color var(--t-f); }
.footer__bot-links a:hover { color: rgba(255,255,255,0.6); }

/* 22. WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-full);
  padding: 14px 16px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: all var(--t);
  overflow: hidden;
  max-width: 56px;
  text-decoration: none;
}
.wa-float:hover { max-width: 240px; box-shadow: 0 12px 42px rgba(37,211,102,0.5); }
.wa-float svg  { width:26px; height:26px; flex-shrink:0; }
.wa-float__txt { font-size: 0.85rem; font-weight: 700; white-space: nowrap; max-width:0; overflow:hidden; transition: max-width var(--t), margin-left var(--t); }
.wa-float:hover .wa-float__txt { max-width: 180px; margin-left: 10px; }

/* 23. MISCELLANEOUS
   ============================================================ */
/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--mid-gray); line-height: 1.65;
}
.checklist li .ci {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  color: #fff; font-size: 0.65rem; font-weight: 700;
}

/* Highlight / callout */
.callout {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
}
.callout p { font-size: 0.94rem; color: var(--charcoal); line-height: 1.75; }

/* Info box */
.info-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 28px;
}

/* Team card */
.team-card { text-align: center; background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--t); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__img  { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-card__body { padding: 22px 18px; }
.team-card__name { font-family: var(--serif); font-size: 1.05rem; color: var(--charcoal); margin-bottom: 5px; }
.team-card__role { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }

/* Map */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; }

/* Badge pills */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge--cream { background: var(--cream-mid); color: #555; }
.badge--gold  { background: var(--gold-pale); color: #7A5800; }
.badge--green { background: rgba(45,106,79,0.10); color: var(--green); }

/* 24. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
@keyframes shimmer {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  51%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.animate       { opacity:0; transform:translate3d(0, 18px, 0);  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1); }
.animate-left  { opacity:0; transform:translate3d(-32px, 0, 0); transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1); }
.animate-right { opacity:0; transform:translate3d(32px, 0, 0);  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1); }
.animate-scale { opacity:0; transform:scale(0.94); transform-origin: center 60%; transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.34, 1.2, 0.64, 1); }
.animate-clip  { opacity:0; clip-path:inset(0 0 100% 0); transition: opacity 0.55s ease, clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
.animate.visible, .animate-left.visible, .animate-right.visible, .animate-scale.visible { opacity:1; transform:none; }
.animate-clip.visible { opacity:1; clip-path:inset(0 0 0 0); }

.animate-stagger > * {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.98);
  filter: blur(5px);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-stagger.visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.animate-stagger > *:nth-child(1)  { transition-delay: 0.03s; }
.animate-stagger > *:nth-child(2)  { transition-delay: 0.1s; }
.animate-stagger > *:nth-child(3)  { transition-delay: 0.17s; }
.animate-stagger > *:nth-child(4)  { transition-delay: 0.24s; }
.animate-stagger > *:nth-child(5)  { transition-delay: 0.31s; }
.animate-stagger > *:nth-child(6)  { transition-delay: 0.38s; }
.animate-stagger > *:nth-child(7)  { transition-delay: 0.45s; }
.animate-stagger > *:nth-child(8)  { transition-delay: 0.52s; }
.animate-stagger > *:nth-child(9)  { transition-delay: 0.59s; }
.animate-stagger > *:nth-child(10) { transition-delay: 0.66s; }
.animate-stagger > *:nth-child(11) { transition-delay: 0.73s; }
.animate-stagger > *:nth-child(12) { transition-delay: 0.8s; }

.stats-strip__grid.animate-stagger > * {
  filter: none;
  transform: translate3d(0, 26px, 0) scale(0.99);
}
.stats-strip__grid.animate-stagger.visible > * {
  transform: translate3d(0, 0, 0) scale(1);
}
.d1 { transition-delay:.10s; } .d2 { transition-delay:.20s; }
.d3 { transition-delay:.30s; } .d4 { transition-delay:.40s; }
.d5 { transition-delay:.50s; } .d6 { transition-delay:.60s; }

/* 25. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid   { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 900px) {
  .split        { grid-template-columns: 1fr; gap: 48px; }
  .img-stack__float { bottom: -20px; right: -16px; width: 46%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 76px; }
  section { padding: 72px 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero-arrow { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2--two { grid-template-columns: repeat(2,1fr); }

  .footer__grid  { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .stat-item::after { display: none; }
  .form-grid-2   { grid-template-columns: 1fr; }
  .job-card      { flex-direction: column; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }

  .page-hero::after { left: 18px; }
  .page-hero__ghost {
    font-size: clamp(2.2rem, 22vw, 5.5rem);
    right: -6%;
    -webkit-text-stroke: 1px rgba(196, 134, 26, 0.1);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .pkg-body, .pkg-footer { padding: 22px; }
  .pkg-head { padding: 24px 22px 20px; }
}

/* ============================================================
   26. EXTENDED COMPONENTS: New design system additions
   ============================================================ */

/* Utility */
.text-center { text-align: center; }

/* ── Label / eyebrow alias ─────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── Section head ──────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { color: var(--mid-gray); }

/* ── Button aliases (BEM-style double dash) ────────────────── */
.btn--gold         { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover   { background: var(--gold-mid); border-color: var(--gold-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,134,26,0.35); }
.btn--charcoal         { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn--charcoal:hover   { background: #333; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn--outline-white         { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover   { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn--outline-charcoal      { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline-charcoal:hover{ background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 10px 22px; font-size: 0.78rem; }
.btn--lg { padding: 17px 44px; font-size: 0.9rem; }

/* ── Nav logo ──────────────────────────────────────────────── */
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo  { height: 62px; width: auto; object-fit: contain; }

@media (max-width: 1180px) {
  .nav__inner { padding: 0 24px; gap: 20px; }
  .nav__link { padding: 10px 11px; font-size: 0.9rem; }
  .nav__links .nav__link.btn--gold { padding: 11px 22px; font-size: 0.85rem; margin-left: 6px; }
  .nav__logo img, .nav__logo { height: 56px; }
}

@media (max-width: 1024px) {
  .nav__link { padding: 10px 9px; font-size: 0.875rem; }
  .nav__links { gap: 2px; }
}

/* ── Hero slide inner ──────────────────────────────────────── */
.hero-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.72) 0%,
    rgba(8,8,8,0.36) 55%,
    rgba(8,8,8,0.10) 100%
  );
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding-top: calc(var(--nav-h) + clamp(44px, 7vh, 88px));
  padding-bottom: 100px;
}
.hero-slide__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero-slide__tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-light);
}
.hero-slide__content h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 680px;
}
.hero-slide__content h1 em { color: var(--gold-light); font-style: italic; }
.hero-slide__content .lead {
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-slide__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Trust strip ───────────────────────────────────────────── */
.trust-strip {
  position: relative;
  background: linear-gradient(180deg, #1c1c1c 0%, var(--charcoal) 50%, #141414 100%);
  padding: 20px 0;
  overflow: hidden;
}
.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  pointer-events: none;
}
.trust-strip__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.trust-strip__track {
  display: flex;
  width: max-content;
  animation: trust-strip-scroll 48s linear infinite;
  will-change: transform;
}
.trust-strip__group {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0 9px;
  flex-shrink: 0;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  line-height: 1.35;
  backdrop-filter: blur(6px);
}
.trust-strip__item svg {
  color: var(--gold-light);
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.35));
}
@keyframes trust-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-strip__viewport {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }
  .trust-strip__track {
    animation: none;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
  }
  .trust-strip__group[aria-hidden="true"] {
    display: none;
  }
  .trust-strip__group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
  }
}

/* ── Intro split ───────────────────────────────────────────── */
.intro { padding: 104px 0; }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.intro__image-wrap { position: relative; }
.intro__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}
.intro__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.intro__badge {
  position: absolute;
  bottom: -24px; right: -24px;
  z-index: 3;
  background: var(--gold);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.intro__badge-mark {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.intro__badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.intro__body h2 { margin-bottom: 18px; }
.intro__body .lead { margin-bottom: 16px; }
.intro__body p { margin-bottom: 28px; }
.intro__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.intro__list li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
}
.intro__list-icon {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.intro--story { padding-bottom: 72px; scroll-margin-top: 96px; }
.intro--story .intro__grid { align-items: stretch; }
.intro--story .intro__image-wrap {
  display: flex;
  min-height: 0;
}
.intro--story .intro__image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}
.intro--story .intro__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro--story .intro__body h2 { margin-bottom: 0; }
.intro--story .intro__body p,
.intro--story .intro__list li {
  font-size: var(--desc-size);
  line-height: var(--desc-leading);
  color: var(--mid-gray);
}
.intro--story .intro__body p { margin-bottom: 0; }
.intro--story .intro__list {
  margin-bottom: 0;
  gap: 10px;
  padding: 0;
}
.intro--story .intro__list--compact { margin-bottom: 0; }
.intro__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  color: var(--charcoal);
  margin-top: 8px;
  margin-bottom: 12px;
}
.intro__body h3 em { font-style: italic; }
.intro__body .intro__list--compact:last-of-type { margin-bottom: 28px; }
.story-continue {
  scroll-margin-top: 96px;
  padding-top: 72px;
}
.story-continue__body h2 {
  margin-top: 36px;
  margin-bottom: 16px;
}
.story-continue__body p { margin-bottom: 28px; }
.story-continue__body .lead { margin-bottom: 16px; }
.story-continue__body .intro__list { margin-bottom: 28px; }
.intro__list--compact { margin-bottom: 24px; }
.intro__list--teaser {
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 2px;
}
.intro__list--teaser::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.4em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 88%);
  pointer-events: none;
}
.intro__list-item--incomplete {
  position: relative;
  margin-bottom: -2px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 18%, rgba(0, 0, 0, 0.45) 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 18%, rgba(0, 0, 0, 0.45) 62%, transparent 100%);
}
.intro__list-item--incomplete .intro__list-icon {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
}
.intro__story-btn {
  animation: intro-story-btn-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
@keyframes intro-story-btn-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.intro__scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.25s ease, opacity 0.25s ease;
}
.intro__scroll-cue svg {
  animation: intro-scroll-bounce 2s ease-in-out infinite;
}
@keyframes intro-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.intro__scroll-cue:hover { gap: 14px; opacity: 0.85; }

.distance-weight {
  padding: clamp(72px, 8vw, 104px) 0;
  background: linear-gradient(165deg, var(--cream) 0%, #f3efe6 52%, var(--smoke) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.distance-weight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.distance-weight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.distance-weight__content > p {
  margin-bottom: 24px;
}
.distance-weight__panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}
.distance-weight__panel .intro__list {
  margin-bottom: 0;
  gap: 14px;
}
.distance-weight__close {
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}
.distance-weight__media {
  position: relative;
  min-height: 0;
}
.distance-weight__media::before {
  content: "";
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 2px solid rgba(196, 134, 26, 0.18);
  border-radius: var(--r-xl);
  pointer-events: none;
}
.distance-weight__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  max-height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.overview-deep {
  background: linear-gradient(165deg, var(--cream) 0%, #f3efe6 48%, var(--smoke) 100%);
  border-top: 1px solid var(--border);
  padding: clamp(72px, 8vw, 104px) 0;
  scroll-margin-top: 96px;
}
.overview-deep__wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 52px);
}
.overview-deep__head {
  max-width: 680px;
}
.overview-deep__head h2 { margin-bottom: 14px; }
.overview-deep__head .lead { margin-bottom: 0; }
.overview-deep__stage {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.overview-deep__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #faf8f4 0%, #fff 100%);
}
.overview-deep__tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 22px 24px 26px;
  border: none;
  border-right: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.3s ease, color 0.3s ease;
  overflow: hidden;
}
.overview-deep__tab:last-child { border-right: none; }
.overview-deep__tab-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.75;
}
.overview-deep__tab-label {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
}
.overview-deep__tab-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}
.overview-deep__tab.is-active {
  background: #fff;
}
.overview-deep__tab.is-active .overview-deep__tab-label {
  color: var(--gold-mid);
}
.overview-deep__tab.is-active .overview-deep__tab-progress {
  animation: overview-tab-progress 9s linear forwards;
}
.overview-deep__tab.is-paused.is-active .overview-deep__tab-progress {
  animation-play-state: paused;
}
@keyframes overview-tab-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.overview-deep__panels {
  display: grid;
  padding: clamp(28px, 4vw, 44px);
}
.overview-deep__panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.55s;
  pointer-events: none;
}
.overview-deep__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
  pointer-events: auto;
}
.overview-deep__quote {
  position: relative;
  padding: 8px 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.overview-deep__quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.8;
  color: rgba(196, 134, 26, 0.22);
  margin-bottom: 8px;
}
.overview-deep__quote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
  max-width: 820px;
}
.overview-deep__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.overview-deep__pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--cream);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.overview-deep__pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
  border-color: rgba(196, 134, 26, 0.25);
}
.overview-deep__pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(196, 134, 26, 0.12);
  color: var(--gold);
}
.overview-deep__pillar strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
}
.overview-deep__pillar span:last-child {
  font-size: 0.84rem;
  color: var(--mid-gray);
  line-height: 1.65;
}
.overview-deep__panel-head {
  margin-bottom: 28px;
}
.overview-deep__panel-head h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin-bottom: 10px;
}
.overview-deep__panel-head p {
  font-size: var(--desc-size);
  color: var(--mid-gray);
  margin: 0;
  max-width: 640px;
}
.overview-deep__emotion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.overview-deep__emotion-card {
  position: relative;
  padding: 24px 22px 24px 68px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}
.overview-deep__emotion-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(196, 134, 26, 0.28);
}
.overview-deep__emotion-num {
  position: absolute;
  left: 20px;
  top: 22px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(196, 134, 26, 0.45);
  line-height: 1;
}
.overview-deep__emotion-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.65;
}
.overview-deep__mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.overview-deep__mv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.overview-deep__mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-mid) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.overview-deep__panel.is-active .overview-deep__mv-card::before {
  transform: scaleX(1);
}
.about-mv .overview-deep__mv-card::before {
  transform: scaleX(1);
}
.overview-deep__mv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}
.overview-deep__mv-card--vision {
  background: linear-gradient(160deg, #fff 0%, #f7f3eb 100%);
}
.overview-deep__mv-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.overview-deep__mv-text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--charcoal);
}

@media (max-width: 1024px) {
  .overview-deep__pillars,
  .overview-deep__mv-grid {
    grid-template-columns: 1fr;
  }
  .overview-deep__nav {
    grid-template-columns: 1fr;
  }
  .overview-deep__tab {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .overview-deep__tab:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .overview-deep__emotion-grid {
    grid-template-columns: 1fr;
  }
  .overview-deep__emotion-card {
    padding-left: 22px;
    padding-top: 52px;
  }
  .overview-deep__emotion-num {
    left: 22px;
    top: 18px;
  }
  .intro__scroll-cue {
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro__scroll-cue svg {
    animation: none;
  }
  .intro__story-btn {
    animation: none;
  }
  .overview-deep__tab.is-active .overview-deep__tab-progress {
    animation: none;
    transform: scaleX(1);
  }
  .overview-deep__panel {
    transition: none;
  }
}

/* ── Stats strip (new) ─────────────────────────────────────── */
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item__num {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
}

/* ── Services grid (overview) ──────────────────────────────── */
.services-overview { padding: 104px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid.services-grid--quad {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.services-grid.services-grid--quad .svc-card {
  padding: 28px 22px;
}
.services-grid.services-grid--quad .svc-card__title {
  font-size: 1.12rem;
}
.services-grid.services-grid--quad .svc-card__text {
  font-size: 0.84rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}
.values-grid > * {
  min-width: 0;
}
.values-grid .svc-card {
  padding: 28px 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.values-grid .svc-card__title {
  font-size: 1.12rem;
}
.values-grid .svc-card__text {
  font-size: 0.84rem;
  margin-bottom: 16px;
  flex: 1;
}
.values-grid .svc-card__link {
  margin-top: auto;
}

.svc-card {
  padding: 36px 30px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.svc-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(196, 134, 26, 0.14);
  border-color: rgba(196, 134, 26, 0.22);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon { margin-bottom: 20px; }
.svc-card__title { font-family: var(--serif); font-size: 1.25rem; color: var(--charcoal); margin-bottom: 10px; }
.svc-card__text  { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.75; margin-bottom: 20px; }
.svc-card__link  { font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.02em; transition: opacity var(--t-f); }
.svc-card__link:hover { opacity: 0.7; }

/* ── Why strip (homepage) ──────────────────────────────────── */
.why-strip { padding: 104px 0; background: var(--cream); }
.why-strip .why-item__num { top: -2px; position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.why-item { display: flex; gap: 22px; align-items: flex-start; padding: 28px 32px 28px 0; border-bottom: 1px solid var(--border); }
.why-item:nth-child(odd)  { padding-right: 64px; }
.why-item:nth-child(even) { padding-left: 64px; border-left: 1px solid var(--border); padding-right: 0; }
.why-item:first-child, .why-item:nth-child(2) { border-top: 1px solid var(--border); }
.why-item__num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.15rem;
  height: 1.15rem;
  overflow: visible;
  flex-shrink: 0;
  min-width: 44px;
  margin: 0;
  padding: 0;
}
.why-item__icon {
  flex-shrink: 0;
  width: 44px;
  min-width: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}
.why-item__icon svg { display: block; }
.why-item__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0 0 6px 0;
  line-height: 1.15rem;
  padding: 0;
}
.why-item__text { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.72; }

.portfolio-intro {
  padding: 104px 0;
  background: var(--white);
}
.portfolio-intro__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.portfolio-intro__inner p {
  color: var(--mid-gray);
  line-height: var(--desc-leading);
  margin-bottom: 18px;
}
.portfolio-intro__inner p:last-child {
  margin-bottom: 0;
}

.portfolio-services {
  padding: 104px 0;
  background: var(--cream);
}
.portfolio-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.portfolio-service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.portfolio-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 134, 26, 0.28);
}
.portfolio-service__head {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
}
.portfolio-service__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.portfolio-service__title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.portfolio-service__means {
  font-size: 0.92rem;
  color: var(--mid-gray);
  line-height: 1.75;
}
.portfolio-service__body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.portfolio-service__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.portfolio-service__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portfolio-service__list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
}
.portfolio-service__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.portfolio-included {
  padding: 104px 0;
  background: var(--white);
}
.portfolio-included__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}
.portfolio-included__item {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--cream);
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.65;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.portfolio-included__item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.portfolio-supplement {
  padding: 104px 0;
  background: var(--cream-mid);
}
.portfolio-supplement__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.portfolio-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  height: 100%;
}
.portfolio-panel h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.portfolio-panel > p {
  font-size: 0.92rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 22px;
}
.portfolio-panel__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portfolio-panel__list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
}
.portfolio-panel__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.portfolio-different {
  padding: 104px 0;
  background: var(--white);
}

.portfolio-clients {
  padding: 104px 0;
  background: var(--cream);
}
.portfolio-clients__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-clients__chip {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}

.portfolio-position {
  padding: 88px 0;
  background: var(--charcoal);
  text-align: center;
}
.portfolio-position blockquote {
  max-width: 760px;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-style: italic;
  color: #fff;
  line-height: 1.45;
}
.portfolio-position__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  max-width: 900px;
  margin: 0 auto;
}
.portfolio-position__tags span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
  .portfolio-services__grid,
  .portfolio-supplement__grid {
    grid-template-columns: 1fr;
  }
  .portfolio-included__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .portfolio-intro,
  .portfolio-services,
  .portfolio-included,
  .portfolio-supplement,
  .portfolio-different,
  .portfolio-clients {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .portfolio-services__grid,
  .portfolio-included__grid {
    margin-top: 36px;
    gap: 16px;
  }
  .portfolio-supplement__grid {
    margin-top: 36px;
    gap: 20px;
  }
  .portfolio-service__head,
  .portfolio-service__body,
  .portfolio-panel {
    padding-left: 22px;
    padding-right: 22px;
  }
  .portfolio-panel {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .portfolio-position {
    padding: 56px 0;
  }
  .portfolio-clients__chips {
    margin-top: 28px;
    gap: 10px;
  }
  .portfolio-clients__chip {
    font-size: 0.84rem;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .portfolio-included__grid {
    grid-template-columns: 1fr;
  }
}

.ecosystem-intro {
  padding: 72px 0 88px;
  background: linear-gradient(165deg, var(--white) 0%, var(--cream) 55%, var(--smoke) 100%);
  border-bottom: 1px solid var(--border);
}
.ecosystem-intro__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.ecosystem-intro__inner p {
  color: var(--mid-gray);
  line-height: var(--desc-leading);
  margin-bottom: 18px;
}
.ecosystem-intro__inner p:last-child {
  margin-bottom: 0;
}

.ecosystem-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.ecosystem-nav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.ecosystem-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: all var(--t-f);
}
.ecosystem-nav__link:hover {
  border-color: rgba(196, 134, 26, 0.35);
  color: var(--gold);
  background: var(--gold-pale);
}

.ecosystem-group {
  padding: 88px 0;
}
.ecosystem-group:nth-child(even) {
  background: var(--cream);
}
.ecosystem-group__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.ecosystem-group__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.ecosystem-group__head h2 {
  margin-bottom: 12px;
}
.ecosystem-group__head p {
  font-size: var(--desc-size);
  color: var(--mid-gray);
  line-height: var(--desc-leading);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.ecosystem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  color: inherit;
  text-decoration: none;
}
a.ecosystem-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
a.ecosystem-card .ecosystem-card__title {
  color: var(--charcoal);
}
a.ecosystem-card .ecosystem-card__text {
  color: var(--mid-gray);
}
.ecosystem-group:nth-child(even) .ecosystem-card {
  background: #fff;
}
.ecosystem-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-mid) 100%);
  opacity: 0.85;
}
.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 134, 26, 0.28);
}
.ecosystem-card__num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(196, 134, 26, 0.35);
  line-height: 1;
  margin-bottom: 12px;
}
.ecosystem-card__title {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.25;
}
.ecosystem-card__text {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.72;
}

.ecosystem-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.ecosystem-card--compact {
  padding: 24px 22px 26px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ecosystem-card--compact .ecosystem-card__title {
  font-size: 1.12rem;
}
.ecosystem-card--compact .ecosystem-card__text {
  font-size: 0.84rem;
  flex: 1;
  margin-bottom: 0;
}
.ecosystem-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-top: auto;
}
.ecosystem-card__link:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .ecosystem-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ecosystem-intro {
    padding: 56px 0 64px;
  }
  .ecosystem-group {
    padding: 56px 0;
  }
  .ecosystem-group__head {
    margin-bottom: 32px;
  }
  .ecosystem-nav__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ecosystem-nav__inner::-webkit-scrollbar {
    display: none;
  }
  .ecosystem-nav__link {
    flex-shrink: 0;
  }
  .ecosystem-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ecosystem-card,
  .ecosystem-card--compact {
    padding: 22px 20px 24px;
  }
}

/* ── Packages preview (homepage cards) ─────────────────────── */
.packages-preview { padding: 104px 0; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pkg-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.pkg-card--featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.pkg-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.pkg-card__badge {
  display: inline-block;
  background: var(--gold); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--r-full);
  margin-bottom: 16px;
}
.pkg-card__tier { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light-gray); margin-bottom: 8px; }
.pkg-card__price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 14px;
}
.pkg-card__price span { font-size: 1rem; color: var(--mid-gray); font-family: var(--sans); }
.pkg-card__desc { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.72; margin-bottom: 24px; }
.pkg-card .pkg-features { margin-bottom: 28px; }
.pkg-card .pkg-features li { font-size: 0.86rem; padding: 9px 0; }

/* ── Steps (admissions process) ───────────────────────────── */
.steps-section { padding: 104px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step-card { text-align: center; padding: 36px 24px; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--border); transition: all var(--t); }
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-card__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card__title { font-family: var(--serif); font-size: 1.1rem; color: var(--charcoal); margin-bottom: 10px; }
.step-card__text  { font-size: 0.86rem; color: var(--mid-gray); line-height: 1.72; }

/* ── CTA banner inner layout ───────────────────────────────── */
.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}
.cta-banner__text {
  text-align: center;
  max-width: 720px;
}
.cta-banner__text h2 { margin-bottom: 10px; }
.cta-banner__text .lead {
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

/* ── Footer (new structure) ────────────────────────────────── */
.footer__brand { }
.footer__brand > p { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.78; margin: 16px 0 24px; }
.footer__logo  { height: 56px; width: auto; object-fit: contain; margin-bottom: 4px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem; font-weight: 700;
  transition: all var(--t-f);
}
.footer__social:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer__col { }
.footer__heading { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-family: var(--sans); }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links li a { font-size: 0.865rem; color: rgba(255,255,255,0.42); transition: color var(--t-f); }
.footer__links li a:hover { color: rgba(255,255,255,0.85); }
.footer__address p { font-size: 0.865rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 8px; }
.footer__address a { color: rgba(255,255,255,0.42); transition: color var(--t-f); }
.footer__address a:hover { color: rgba(255,255,255,0.8); }
.footer__address small { font-size: 0.76rem; opacity: 0.7; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 26px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom-inner > p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.25); transition: color var(--t-f); }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── WhatsApp float (new class) ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-full);
  padding: 14px 16px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: all var(--t);
  overflow: hidden;
  max-width: 56px;
  text-decoration: none;
}
.whatsapp-float:hover { max-width: 240px; box-shadow: 0 12px 42px rgba(37,211,102,0.5); }
.whatsapp-float svg  { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-float__label { font-size: 0.85rem; font-weight: 700; white-space: nowrap; max-width: 0; overflow: hidden; transition: max-width var(--t), margin-left var(--t); }
.whatsapp-float:hover .whatsapp-float__label { max-width: 180px; margin-left: 10px; }

/* ── Modal overlay ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 48px;
  max-width: 580px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--t);
}
.modal-overlay.open .modal { transform: none; }
.modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: none;
  cursor: pointer; font-size: 1.1rem; color: var(--mid-gray);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-f);
}
.modal__close:hover { background: var(--cream); color: var(--charcoal); }

/* ── Responsive extras ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid.services-grid--quad { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid      { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .why-grid      { grid-template-columns: 1fr; }
  .why-item:nth-child(even) { border-left: none; padding-left: 0; }
}

@media (max-width: 768px) {
  .intro__grid   { grid-template-columns: 1fr; }
  .distance-weight__grid { grid-template-columns: 1fr; gap: 36px; }
  .distance-weight__media { order: -1; }
  .distance-weight__image {
    aspect-ratio: 5 / 4;
    min-height: auto;
    height: auto;
  }
  .distance-weight__media::before {
    inset: -10px -10px 10px 10px;
  }
  .intro__badge  { bottom: -16px; right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid.services-grid--quad { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hero-slide__actions { flex-direction: column; align-items: flex-start; }
  .pkg-grid { max-width: 100%; }
  .section-rail__layout {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }
  .section-rail .section-rail__labels {
    position: relative;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0 0 4px;
    align-self: center;
  }
  .section-rail .section-rail__labels .section-rail__kicker {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    color: rgba(158, 107, 22, 0.78);
    -webkit-text-stroke: 0;
  }
  .section-rail .section-rail__labels .section-rail__kicker.is-active {
    display: block;
  }
  .section-rail .section-rail__slide-inner {
    padding: 0 8px 4px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .stats-strip__grid { grid-template-columns: 1fr; }
  .hero-slide__content h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
}

.section-rail {
  background: linear-gradient(118deg, var(--cream) 0%, #f7f4ee 42%, var(--smoke) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: visible;
}
.section-rail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-mid) 55%, rgba(196, 134, 26, 0.35) 100%);
  opacity: 0.95;
}
.section-rail__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: clamp(18px, 2.5vw, 28px);
  padding-bottom: clamp(18px, 2.5vw, 28px);
  position: relative;
  z-index: 1;
  overflow: visible;
}
.section-rail__layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4.5vw, 56px);
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  overflow: visible;
}
.section-rail__labels {
  position: relative;
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 6vw, 64px);
  min-height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}
.section-rail__labels .section-rail__kicker {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.85vw, 1.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
  color: rgba(158, 107, 22, 0.72);
  -webkit-text-stroke: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.section-rail__labels .section-rail__kicker.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}
.section-rail__labels .section-rail__kicker--single {
  white-space: nowrap;
}
.section-rail__slider {
  flex: 1 1 auto;
  width: auto;
  max-width: 56ch;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.section-rail__viewport {
  overflow: hidden;
  width: 100%;
  transition: height 0.55s cubic-bezier(0.45, 0, 0.2, 1);
}
.section-rail__track {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.2, 1);
  will-change: transform;
}
.section-rail__slide {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: stretch;
  align-items: flex-start;
}
.section-rail__slide-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 2px 0;
}
.section-rail__lead {
  position: relative;
  z-index: 1;
  font-size: var(--desc-size);
  line-height: var(--desc-leading);
  color: var(--charcoal);
  max-width: 52ch;
  margin: 0;
  opacity: 0.92;
  text-align: center;
}
.section-rail__slide-inner .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.admissions-timeline-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 820px;
  overflow: hidden;
}
.admissions-timeline-wrap .process-step__line {
  display: none;
}
.admissions-timeline-steps {
  position: relative;
  max-width: 760px;
  margin: 64px auto 0;
}
.admissions-timeline-steps .admissions-timeline-svg {
  position: absolute;
  left: 26px;
  top: 28px;
  bottom: 36px;
  width: 4px;
  height: auto;
  pointer-events: none;
}
.admissions-timeline-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.admissions-timeline-wrap.timeline-drawn .admissions-timeline-path {
  stroke-dashoffset: 0;
}

a.btn.btn--gold:not(.nav__link),
button.btn.btn--gold:not(.nav__link) {
  background-color: transparent;
  background-image: linear-gradient(180deg, var(--gold-mid) 0%, var(--gold) 42%, #9e6810 100%);
  background-size: 100% 240%;
  background-position: 0 100%;
  transition: background-position 0.5s cubic-bezier(0.34, 1.15, 0.64, 1), transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
a.btn.btn--gold:not(.nav__link):hover,
button.btn.btn--gold:not(.nav__link):hover {
  background-color: transparent;
  background-image: linear-gradient(180deg, #f0c45a 0%, var(--gold-mid) 40%, var(--gold) 100%);
  background-size: 100% 240%;
  background-position: 0 0;
}

@media (hover: hover) and (pointer: fine) {
  body.has-site-cursor {
    cursor: none;
  }
  .site-cursor {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(196, 134, 26, 0.85);
    pointer-events: none;
    z-index: 12000;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
  .site-cursor.is-press {
    width: 14px;
    height: 14px;
    border-color: var(--gold-light);
  }
}
.care-four-grid,
.container .values-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .care-four-grid,
  .container .values-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .care-four-grid,
  .container .values-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  :root { --nav-h: 80px; }

  .nav__links,
  .nav__links .nav__link.btn--gold {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__inner {
    padding: 0 20px;
    gap: 16px;
  }
  .nav__logo,
  .nav__logo img {
    height: 50px;
  }
  .nav__mobile {
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    padding: 8px 16px 24px;
    -webkit-overflow-scrolling: touch;
  }
  .nav__mobile .nav__link {
    font-size: 0.95rem;
    padding: 14px 12px;
    border-radius: var(--r-md);
    border-bottom: 1px solid var(--border);
  }
  .nav__mobile .nav__link:last-of-type {
    border-bottom: none;
  }
  .nav__mobile .nav__mobile-cta {
    margin-top: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }
  .hero-slider {
    min-height: 0;
    height: clamp(560px, 92svh, 760px);
  }
  .hero-slide__overlay {
    background: linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.28) 0%,
      rgba(8, 8, 8, 0.5) 42%,
      rgba(8, 8, 8, 0.84) 100%
    );
  }
  .hero-slide {
    background-position: center 24%;
  }
  .hero-slide__content {
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 92px;
    justify-content: center;
  }
  .hero-slide__content h1,
  .hero-slide__content .lead {
    max-width: 100%;
  }

  .section-rail__layout {
    flex-direction: column;
    gap: 18px;
    max-width: min(640px, 100%);
  }
  .section-rail .section-rail__labels {
    position: relative;
    width: 100%;
    align-self: stretch;
    min-height: 0;
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .section-rail .section-rail__labels .section-rail__kicker {
    position: static;
    transform: none;
    display: none;
    font-family: var(--serif);
    font-size: clamp(1.85rem, 4.8vw, 2.35rem);
    letter-spacing: 0.06em;
    color: rgba(158, 107, 22, 0.85);
    text-align: center;
    line-height: 1.2;
  }
  .section-rail .section-rail__labels .section-rail__kicker.is-active {
    display: block;
  }
  .section-rail .section-rail__labels .section-rail__kicker--single {
    white-space: nowrap;
  }
  .section-rail__slider {
    max-width: 100%;
  }
  .section-rail__lead {
    max-width: 100%;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 36px) 0 52px;
  }
  .page-hero h1 {
    max-width: 100%;
  }
  .page-hero p {
    max-width: 100%;
  }
  .page-hero__ghost {
    font-size: clamp(2.8rem, 18vw, 6rem);
    right: -4%;
  }

  .intro__grid[style*="direction"] {
    direction: ltr;
  }
  .intro__grid[style*="direction"] > * {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 72px;
    --desc-size: 0.94rem;
    --desc-leading: 1.7;
  }

  section {
    padding: 56px 0;
  }
  section[style*="padding:104px"],
  section[style*="padding: 104px"],
  .core-services,
  .why-strip,
  .packages-preview,
  .steps-section,
  .services-overview,
  .intro {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .container {
    padding: 0 20px;
  }

  .section-head {
    margin-bottom: 36px;
  }
  .section-head h2 {
    font-size: clamp(1.85rem, 6.2vw, 2.35rem);
  }

  .hero-slider {
    min-height: 0;
    height: clamp(520px, 88svh, 680px);
  }
  .hero-slide__content {
    justify-content: flex-end;
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 84px;
  }
  .hero-slide__content h1 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
    margin-bottom: 16px;
  }
  .hero-slide__content .lead {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 4px;
  }
  .hero-slide__tag {
    font-size: 0.62rem;
    margin-bottom: 14px;
    letter-spacing: 0.16em;
  }
  .hero-slide__tag::before {
    width: 22px;
  }
  .hero-slide__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-slide__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-dots {
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  .hero-counter {
    display: none;
  }

  .trust-strip {
    padding: 16px 0;
  }
  .trust-strip__item {
    font-size: 0.78rem;
    padding: 10px 16px;
  }

  .section-rail__inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .section-rail__layout {
    gap: 16px;
  }
  .section-rail__slide-inner {
    padding: 0;
    gap: 14px;
  }
  .section-rail__lead {
    font-size: 0.96rem;
    line-height: 1.68;
  }
  .section-rail__slide-inner .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }

  .intro__grid {
    gap: 28px;
  }
  .intro--story .intro__grid { align-items: start; }
  .intro--story .intro__image-wrap { display: block; }
  .intro--story .intro__image {
    height: auto;
    aspect-ratio: 5 / 4;
  }
  .intro__image {
    aspect-ratio: 5 / 4;
    border-radius: var(--r-lg);
  }
  .intro__image-wrap {
    text-align: center;
  }
  .intro__badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin: 18px auto 0;
    padding: 18px 22px;
  }
  .intro__body h2 {
    font-size: clamp(1.85rem, 6vw, 2.25rem);
  }

  .svc-card,
  .step-card,
  .pkg-card {
    padding: 24px;
  }
  .steps-grid {
    margin-top: 36px;
    gap: 16px;
  }

  .why-item,
  .why-item:nth-child(odd),
  .why-item:nth-child(even) {
    padding: 22px 0;
    border-left: none;
    border-right: none;
    gap: 16px;
  }
  .why-item:nth-child(odd) {
    padding-right: 0;
  }
  .why-item:nth-child(even) {
    padding-left: 0;
  }
  .why-item__num {
    font-size: 1.85rem;
    min-width: 36px;
  }
  .why-item__title {
    font-size: 1.05rem;
  }
  .why-item__text {
    font-size: 0.86rem;
  }

  .cta-banner {
    padding: 56px 0;
  }
  .cta-banner__inner {
    gap: 22px;
  }
  .cta-banner__text h2 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }
  .cta-banner__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta-banner__actions .btn {
    width: 100%;
    max-width: none;
  }

  .page-hero {
    padding: calc(var(--nav-h) + 28px) 0 44px;
  }
  .page-hero__ghost {
    display: none;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 7.5vw, 2.65rem);
  }
  .page-hero::after {
    left: 20px;
    width: 56px;
  }

  .footer {
    padding-top: 56px;
  }
  .footer__grid {
    gap: 32px;
    margin-bottom: 36px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer__bottom-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    padding: 12px 14px;
    max-width: 52px;
  }
  .whatsapp-float:hover {
    max-width: 52px;
  }

  .container > div[style*="grid-template-columns"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .container > div[style*="grid-template-columns"] aside {
    position: static !important;
    top: auto !important;
  }
  .container > div[style*="grid-template-columns"] aside ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .container > div[style*="grid-template-columns"] aside li a {
    padding: 10px 14px !important;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font-size: 0.82rem !important;
  }
  div[style*="padding:48px"] {
    padding: 28px 20px !important;
  }
  div[style*="padding: 48px"] {
    padding: 28px 20px !important;
  }

  .btn {
    min-height: 44px;
  }
  .btn--sm {
    min-height: 40px;
  }

  .modal {
    padding: 28px 22px;
    border-radius: var(--r-lg);
  }
  .modal-overlay {
    padding: 16px;
  }

  .faq-item .faq-question {
    font-size: 0.92rem;
    padding: 18px 0;
  }
  .container > div[style*="grid-template-columns"] h3 {
    font-size: 1.35rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav__logo,
  .nav__logo img {
    height: 44px;
  }

  .hero-slider {
    height: clamp(480px, 86svh, 620px);
  }
  .hero-slide__content h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .trust-strip__group {
    gap: 12px;
  }
  .trust-strip__item {
    font-size: 0.74rem;
    padding: 9px 14px;
  }

  .section-rail .section-rail__labels .section-rail__kicker {
    font-size: 1.65rem;
  }

  .footer__socials {
    flex-wrap: wrap;
  }
}

@media (hover: none), (pointer: coarse) {
  .site-cursor {
    display: none !important;
  }
}
