/* ==========================================================
   YUKTISAAR — COMBINED STYLESHEET
   Merged from style-2.css + about.css + assurance.css
   Order preserved so cascade/specificity behaves identically
   to the original three separate <link> tags.
   ========================================================== */

/* ============================================================
   SECTION 1: style-2.css — base site styles (nav, hero, footer,
   trust bar, buttons, global tokens, etc.)
   ============================================================ */

:root {
  /* deep blue-green (teal-forest) header/hero palette */
  --forest-950: #562506;
  --forest-900: #0b2e2b;
  --forest-800: #123f3a;
  --gold: #c79a4b;
  --gold-soft: #e0c489;
  --sage: #8fb996;
  --sage-deep: #5c8a62;
  --cream: #f4f0e6;
  --cream-deep: #ede7d8;
  --ink: #9f5425;
  --muted: #7b7666;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
.serif {
  font-family: "Fraunces", Georgia, serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

/* ================= NAV ================= */
header.site-nav {
  background: #2a1b12;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 50;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.brand-word {
  line-height: 1.15;
}
.brand-word .name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.03em;
  color: #f4f0e6;
  display: block;
}
.brand-word .tag {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
nav.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
nav.nav-links a {
  font-size: 14.5px;
  color: rgba(244, 240, 230, 0.82);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-bottom: 6px;
  white-space: nowrap;
}
nav.nav-links a.active {
  color: #f4f0e6;
}
nav.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

/* ---- Services dropdown (desktop) ---- */
.nav-item.dropdown {
  position: relative;
}
.nav-item.dropdown .dropdown-toggle {
  cursor: pointer;
}
.nav-item.dropdown .dropdown-toggle i {
  font-size: 11px;
  transition: transform 0.25s ease;
  color: var(--gold-soft);
}
.nav-item.dropdown:hover .dropdown-toggle i,
.nav-item.dropdown:focus-within .dropdown-toggle i {
  transform: rotate(180deg);
}
.nav-item.dropdown::after {
  /* invisible bridge so the menu doesn't close on the small gap */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 300px;
  background: #2a1b12;
  border: 1px solid rgba(199, 154, 75, 0.25);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(244, 240, 230, 0.85);
  white-space: normal;
}
.dropdown-menu a i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}
.dropdown-menu a:hover {
  background: rgba(199, 154, 75, 0.12);
  color: #f4f0e6;
}
.dropdown-menu a + a {
  margin-top: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.btn-gold {
  background: linear-gradient(135deg, #d4af6a, #b7863a);
  color: #1b1204;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(199, 154, 75, 0.25);
  white-space: nowrap;
}
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(244, 240, 230, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  font-size: 16px;
}
@media (min-width: 992px) {
  .icon-circle {
    display: none;
  }
}

/* ================= MOBILE SIDEBAR ================= */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 14, 12, 0.55);
  backdrop-filter: blur(2px);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.sidebar-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(78vw, 320px);
  background: var(--forest-950);
  border-left: 1px solid rgba(199, 154, 75, 0.2);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 26px 26px 34px;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
}
.mobile-sidebar.open {
  transform: translateX(0);
}

.mobile-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.mobile-sidebar-head .brand-mark {
  height: 36px;
}
.mobile-sidebar-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(244, 240, 230, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4f0e6;
  background: none;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin-bottom: auto;
}
.mobile-nav-links a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(244, 240, 230, 0.85);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(244, 240, 230, 0.08);
}
.mobile-nav-links a.active {
  color: var(--gold-soft);
}

/* ---- Services dropdown (mobile) ---- */
.mobile-dropdown {
  border-bottom: 1px solid rgba(244, 240, 230, 0.08);
}
.mobile-dropdown details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(244, 240, 230, 0.85);
  padding: 14px 4px;
  cursor: pointer;
  list-style: none;
}
.mobile-dropdown details summary::-webkit-details-marker {
  display: none;
}
.mobile-dropdown details summary i {
  font-size: 13px;
  color: var(--gold-soft);
  transition: transform 0.25s ease;
}
.mobile-dropdown details[open] summary i {
  transform: rotate(180deg);
}
.mobile-dropdown-menu {
  list-style: none;
  padding: 0 0 10px 12px;
}
.mobile-dropdown-menu a {
  display: block;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(244, 240, 230, 0.7);
  padding: 10px 4px;
  border-bottom: none;
}
.mobile-dropdown-menu a:hover {
  color: var(--gold-soft);
}

.mobile-sidebar .btn-gold {
  justify-content: center;
  margin-top: 28px;
}

body.sidebar-lock {
  overflow: hidden;
}

@media (min-width: 992px) {
  .mobile-sidebar,
  .sidebar-backdrop {
    display: none;
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 900px;
}
.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: start;
}
.hero-copy {
  position: absolute;
  top: 100px;
  left: 60px;
  width: 520px;
  z-index: 10;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-soft);
  flex-shrink: 0;
}
h1.hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.1;
  color: #f7f4eb;
  margin-bottom: 22px;
}
h1.hero-title .accent {
  color: #f7e1d4;
  font-style: italic;
  font-weight: 500;
}
p.hero-sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(244, 240, 230, 0.72);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-outline {
  border: 1px solid rgba(244, 240, 230, 0.6);
  color: #f4f0e6;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.btn-outline .play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(244, 240, 230, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

/* growth path illustration */
.growth-stage {
  display: none;
}

.growth-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.growth-scene-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stage-label {
  position: absolute;
  text-align: center;
  width: 120px;
  transform: translateX(-50%);
}
.stage-label .idx {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(199, 154, 75, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 13px;
  color: var(--gold-soft);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  background: rgba(15, 42, 31, 0.6);
}
.stage-label .num {
  font-size: 11px;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.stage-label .name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  color: #f4f0e6;
  margin-bottom: 6px;
}
.stage-label .desc {
  font-size: 12px;
  line-height: 1.5;
  color: white;
}

/*==============================
    RIGHT SIDEBAR
===============================*/

.sidebar-icons {
  position: absolute;
  right: 35px;
  top: 40%;
  transform: translateY(-50%);
  width: 74px;
  background: #2a1b12;
  border: 1px solid rgba(196, 155, 73, 0.28);
  border-radius: 18px;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(18px);
  z-index: 100;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.sidebar-icons .item {
  width: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 0;
  transition: 0.35s;
}

.sidebar-icons .item i {
  font-size: 20px;
  color: #c89b49;
  transition: 0.35s;
}

.sidebar-icons .item span {
  font-size: 11px;
  color: #d8d8d8;
  line-height: 1;
}

.sidebar-icons .item:hover {
  transform: translateY(-3px);
}

.sidebar-icons .item:hover i {
  color: #f0c56d;
  transform: scale(1.15);
}

.sidebar-icons .item.active i {
  color: #e2b257;
}

/*==========================
      Floating Stats
===========================*/

.stats-bar {
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  width: min(86%, 1200px);
  z-index: 999;
  max-width: 1200px;
  min-height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--forest-950);
  border: 1px solid rgba(201, 162, 73, 0.18);
  border-radius: 18px;
  padding: 20px 35px;
  z-index: 30;
  flex-wrap: wrap;
  row-gap: 24px;
}

.stat {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  min-width: 150px;
  justify-content: flex-start;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 30px;
}

.stat .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 73, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat .icon i {
  font-size: 22px;
  color: #c89b49;
}

.stat h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: #d5a441;
  font-weight: 600;
  line-height: 1;
}

.stat p {
  margin-top: 6px;
  color: #ece6d9;
  font-size: 14px;
  line-height: 1.45;
}

.stat {
  transition: 0.3s;
}

.stat:hover {
  transform: translateY(-4px);
}

.stat:hover .icon {
  background: #c89b49;
}

.stat:hover .icon i {
  color: #05221d;
}

/* ================= EXPERTISE ================= */
.expertise {
  background: var(--cream);
  padding: 170px 48px 90px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
}
.expertise .intro-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
h2.expertise-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 380px;
}
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  border-top: 2px solid var(--gold);
  padding-top: 16px;
  width: fit-content;
}
.expertise-rail {
  width: 2px;
  background: var(--gold);
  height: 28px;
  margin-bottom: 16px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(19, 42, 32, 0.06);
}
.service-card .icon {
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
}
.service-card .arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
}
.service-card.gold .arrow {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ================= SERVICES (compact row style) ================= */
.services-real {
  background: var(--cream);
  padding: 120px 48px;
}

.services-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.services-intro .intro-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.services-intro h2.expertise-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.32;
  color: var(--ink);
  margin-bottom: 26px;
}
.services-intro .view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  border-top: 2px solid var(--gold);
  padding-top: 14px;
}
.services-intro .view-all i {
  font-size: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: linear-gradient(160deg, #7a3c12 0%, #562506 55%, #3c1a04 100%);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 26px 22px 24px;
  transition: 0.3s;
  box-shadow: 0 10px 26px rgba(45, 20, 5, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(224, 196, 137, 0.18);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 40px rgba(45, 20, 5, 0.28);
}

.service-icon {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--gold-soft);
  margin-bottom: 22px;
}

.service-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(244, 240, 230, 0.72);
  margin-bottom: 18px;
}

.card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
  transition: 0.3s;
}
.card-arrow:hover {
  background: var(--gold);
  color: #fff;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chips span {
  padding: 5px 12px;
  border-radius: 30px;
  background: rgba(224, 196, 137, 0.14);
  border: 1px solid rgba(224, 196, 137, 0.3);
  font-size: 10px;
  color: var(--gold-soft);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(244, 240, 230, 0.12);
  border: 1px solid rgba(224, 196, 137, 0.4);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-soft);
  text-decoration: none;
  transition: 0.3s;
}
.card-cta i {
  font-size: 12px;
}
.card-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

@media (max-width: 1500px) {
  .services-real {
    padding: 100px 32px;
  }

  .services-row {
    grid-template-columns: 260px 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .service-card {
    padding: 24px 20px 22px;
  }
}

@media (max-width: 991px) {
  .services-real {
    padding: 80px 24px;
  }

  .services-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-intro {
    text-align: center;
  }

  .services-intro h2.expertise-title {
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 30px;
  }

  .services-intro .view-all {
    margin: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services-real {
    padding: 70px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card {
    padding: 22px 18px 20px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .services-real {
    padding: 60px 16px;
  }

  .services-intro {
    text-align: left;
  }

  .services-intro h2.expertise-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .services-intro .view-all {
    margin: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 20px 22px;
  }

  .service-icon {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 14px;
  }

  .chips {
    gap: 8px;
  }

  .chips span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ================= CONTACT INFO ================= */
.contact-wrap {
  background: var(--cream);
  padding: 110px 48px;
}

.contact-backdrop {
  background: #efe1c4;
  border: 1px solid var(--gold);
  border-radius: 40px;
  padding: 56px;
  box-shadow: 0 24px 54px rgba(86, 37, 6, 0.1);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  position: relative;
  background: linear-gradient(160deg, #7a3c12 0%, #562506 55%, #3c1a04 100%);
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(45, 20, 5, 0.18);
  overflow: hidden;
}
.contact-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(224, 196, 137, 0.16);
  pointer-events: none;
}
.contact-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.contact-divider {
  height: 1px;
  background: rgba(224, 196, 137, 0.28);
  margin: 26px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-soft);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 12.5px;
  color: rgba(244, 240, 230, 0.68);
  margin-bottom: 6px;
}
.contact-value {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  word-break: break-word;
}
.contact-value:hover {
  color: var(--gold-soft);
}

.locations-block {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.locations-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.locations-pin {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.locations-head h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 27px;
  color: var(--ink);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.location-card {
  position: relative;
  background: linear-gradient(160deg, #7a3c12 0%, #562506 55%, #3c1a04 100%);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 26px 24px;
  color: rgba(244, 240, 230, 0.82);
  font-size: 14px;
  line-height: 1.65;
  box-shadow: 0 10px 26px rgba(45, 20, 5, 0.18);
  transition: 0.3s;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute;
  top: -46px;
  right: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(224, 196, 137, 0.16);
  pointer-events: none;
}
.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 40px rgba(45, 20, 5, 0.28);
}
.location-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* video CTA panel nested inside the backdrop */
.contact-backdrop .cta-video {
  background: none;
  padding: 0;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .contact-wrap {
    padding: 90px 32px;
  }
  .contact-backdrop {
    padding: 44px;
  }
  .contact-info-grid {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 991px) {
  .contact-wrap {
    padding: 80px 24px;
  }
  .contact-backdrop {
    padding: 36px;
    border-radius: 32px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .contact-wrap {
    padding: 60px 16px;
  }
  .contact-backdrop {
    padding: 24px;
    border-radius: 26px;
  }
  .contact-card {
    padding: 36px 26px;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT US ================= */
.about {
  background: var(--forest-950);
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 8/9;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #123f3a, #07211f);
  border: 1px solid rgba(199, 154, 75, 0.2);
}
.about-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 20px;
}
.about h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 34px);
  color: #f7f4eb;
  line-height: 1.3;
  margin-bottom: 22px;
}
.about p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 240, 230, 0.68);
  margin-bottom: 18px;
  max-width: 520px;
}
.etymology {
  display: flex;
  gap: 20px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(199, 154, 75, 0.2);
  border-bottom: 1px solid rgba(199, 154, 75, 0.2);
  flex-wrap: wrap;
}
.etymology div {
  flex: 1 1 140px;
}
.etymology .word {
  font-family: "Fraunces", Georgia, serif;
  color: var(--gold-soft);
  font-size: 17px;
  margin-bottom: 4px;
}
.etymology .mean {
  font-size: 13px;
  color: rgba(244, 240, 230, 0.6);
  line-height: 1.5;
}
.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.about-stats .num {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--gold-soft);
}
.about-stats .lbl {
  font-size: 12.5px;
  color: rgba(244, 240, 230, 0.6);
}

/* ================= JOURNEY (compact repeat) ================= */
.journey {
  background: var(--cream);
  padding: 100px 48px;
}
.journey-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.journey .eyebrow-dark {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.journey h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--ink);
  line-height: 1.28;
}
/* ==== growth accordion (expanding flex cards) ==== */
.growth-accordion {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.growth-accordion__item {
  position: relative;
  flex: 1 1 0%;
  min-width: 70px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--cream-deep);
}
.growth-accordion__item.is-active {
  flex: 6 1 0%;
}
.growth-accordion__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  filter: grayscale(1);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.growth-accordion__item:hover .growth-accordion__bg {
  transform: scale(1.04);
  filter: grayscale(0);
}
.growth-accordion__item.is-active .growth-accordion__bg {
  filter: grayscale(0);
}
.growth-accordion__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 6, 0) 35%, rgba(9, 8, 6, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.growth-accordion__item.is-active .growth-accordion__overlay {
  opacity: 1;
}
.growth-accordion__number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--forest-900);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.growth-accordion__item.is-active .growth-accordion__number {
  opacity: 1;
  transform: translateY(0);
}
.growth-accordion__icon {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 0);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  z-index: 2;
  transition: opacity 0.35s ease;
}
.growth-accordion__item.is-active .growth-accordion__icon {
  opacity: 0;
  pointer-events: none;
}
.growth-accordion__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  white-space: normal;
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}
.growth-accordion__content h4 {
  font-family: "Fraunces", Georgia, serif;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}
.growth-accordion__content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 360px;
}
.growth-accordion__item.is-active .growth-accordion__content {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 991px) {
  .growth-accordion {
    height: 360px;
  }
  .growth-accordion__content p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .growth-accordion {
    flex-direction: column;
    height: auto;
  }
  .growth-accordion__item {
    flex: none !important;
    height: 70px;
    transition: height 0.5s ease;
  }
  .growth-accordion__item.is-active {
    height: 300px;
  }
  .growth-accordion__icon {
    left: 20px;
    bottom: 50%;
    transform: translate(0, 50%);
  }
  .growth-accordion__item.is-active .growth-accordion__icon {
    bottom: 24px;
    transform: translate(0, 0);
  }
  .growth-accordion__content {
    left: 20px;
    right: 20px;
    bottom: 16px;
  }
}

/* ================= TEAM ================= */
.team {
  background: var(--forest-950);
  padding: 100px 48px;
}
.team .head {
  text-align: center;
  margin-bottom: 56px;
}
.team .eyebrow {
  justify-content: center;
}
.team h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 34px);
  color: #f7f4eb;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
}

/* --- Flip card (image container, ~30% bigger than the previous compact size) --- */
.flip-card {
  width: min(195px, 90%);
  margin: 0 auto 20px;
  aspect-ratio: 1/1.05;
  perspective: 1200px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  border: 1px solid rgba(199, 154, 75, 0.2);
  overflow: hidden;
}
.flip-front {
  background: linear-gradient(160deg, #1a4a46, #0b2e2b);
}
.flip-front.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--gold-soft);
}
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #562506, #9f5425);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
}
.flip-desc {
  font-size: 10.5px;
  line-height: 1.4;
  color: #f7f4eb;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.know-more-btn {
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #562506;
  background: var(--gold-soft);
  border: none;
  border-radius: 20px;
  padding: 5px 14px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.know-more-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.team-card h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  color: #f7f4eb;
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 13px;
  color: var(--gold-soft);
}

/* --- Team member modal --- */
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 24px;
}
.team-modal.open {
  visibility: visible;
  opacity: 1;
}
.team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 46, 43, 0.72);
  backdrop-filter: blur(2px);
}
.team-modal-content {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.team-modal.open .team-modal-content {
  transform: translateY(0) scale(1);
}
.team-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(11, 46, 43, 0.08);
  color: var(--forest-950, #0b2e2b);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.team-modal-close:hover {
  background: rgba(11, 46, 43, 0.16);
}
.team-modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.team-modal-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(199, 154, 75, 0.3);
}
.team-modal-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--forest-950, #0b2e2b);
  margin: 0 0 4px;
}
.team-modal-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #a3752f;
}
.team-modal-desc p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #2c2c2c;
  margin: 0 0 14px;
}
.team-modal-desc p:last-child {
  margin-bottom: 0;
}

/* ================= TRACK RECORD ================= */
.track {
  background: var(--cream);
  padding: 100px 48px;
}
.track .head {
  max-width: 640px;
  margin-bottom: 20px;
}
.track h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--ink);
  line-height: 1.28;
}
.track-tabs {
  display: flex;
  gap: 12px;
  margin: 30px 0 36px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.track-tabs::-webkit-scrollbar {
  display: none;
}

.tab-arrow {
  display: none;
}
.track-tabs label {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid var(--cream-deep);
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.track-tabs label:hover,
.track-tabs label.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
input[name="track-tab"] {
  display: none;
}
.track-panel {
  display: none;
}
#t1:checked ~ .track-tabs label[for="t1"],
#t2:checked ~ .track-tabs label[for="t2"],
#t3:checked ~ .track-tabs label[for="t3"] {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
#t1:checked ~ .track-panels #p1 {
  display: grid;
}
#t2:checked ~ .track-panels #p2 {
  display: grid;
}
#t3:checked ~ .track-panels #p3 {
  display: grid;
}
.track-panel {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.track-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid var(--cream-deep);
  box-shadow: 0 2px 14px rgba(86, 37, 6, 0.04);
}
.track-logo {
  flex: 0 0 110px;
  width: 110px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.track-logo-fallback {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--forest-900);
  color: var(--gold-soft);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 13px;
}
.track-divider {
  flex: 0 0 auto;
  width: 1px;
  align-self: stretch;
  background: var(--ink);
  opacity: 0.35;
}
.track-info {
  flex: 1 1 auto;
  min-width: 0;
}
.track-card h5 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}
.track-card .type {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
}
.track-card .meta {
  font-size: 11.5px;
  color: var(--gold);
  font-weight: 600;
}

/* ================= CTA ================= */
.consultation-section {
  min-height: 50vh;
  padding: 80px 0;
  position: relative;
  background:
    linear-gradient(rgba(56, 13, 13, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 32, 32, 0.045) 1px, transparent 1px),
    #3a271c;
}

.consultation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(43, 2, 5, 0.2),
    transparent 70%
  );
  pointer-events: none;
}

.container {
  width: 90%;
  max-width: 1220px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  position: relative;
  z-index: 10;
}

.left-content {
  flex: 1;
  max-width: 600px;
}

.start-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9a35f;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 35px;
}

.start-tag i {
  font-size: 15px;
}

.left-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 57px;
  line-height: 1.05;
  color: #fff;
  font-weight: 600;
}

.left-content h1 span {
  color: #d0a55e;
  font-style: italic;
}

.description {
  margin-top: 34px;
  max-width: 520px;
  line-height: 1.9;
  color: #d8d8d8;
  font-size: 18px;
  font-weight: 300;
}

.curve-line {
  width: 430px;
  margin-top: 55px;
}
.curve-line svg {
  width: 100%;
}

.cta-stats {
  display: flex;
  gap: 55px;
  margin-top: 70px;
  flex-wrap: wrap;
}
.cta-stat h2 {
  font-family: "Cormorant Garamond", serif;
  color: #d7ae66;
  font-size: 40px;
  font-weight: 600;
}

.cta-stat span {
  display: block;
  margin-top: 8px;
  color: #dadada;
  font-size: 14px;
}

/* ===========================
CALL & TAGLINE
=========================== */

.call-tagline {
  margin-top: 55px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 62px;
  padding: 0 34px;
  background: #c8a158;
  color: #2a1b12;
  border-radius: 999px;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: 0.35s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.call-btn i {
  font-size: 17px;
}

.call-btn:hover {
  background: #d7b06a;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201, 161, 88, 0.3);
}

.sanskrit-line {
  margin-top: 26px;
  color: #cfd6d2;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.sanskrit-line .devanagari {
  display: inline-block;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 500;
  color: #e7cf9c;
  margin-right: 6px;
}

/* ===========================
RIGHT SIDE — VERTICAL PICTURE
=========================== */

.picture-card {
  position: relative;
  width: 460px;
  height: 640px;
  border-top: 3px solid rgba(195, 168, 108, 0.45);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 35px 70px rgba(0, 0, 0, 0.35);
}

.picture-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(111, 90, 52, 0.3) 0%,
    #8a7142 15%,
    #b79c60 35%,
    #e3c182 50%,
    #b79c60 65%,
    #8a7142 85%,
    rgba(111, 90, 52, 0.3) 100%
  );

  z-index: 2;
}

.picture-card::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 8%;
  width: 84%;
  height: 8px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(227, 193, 130, 0.35),
    rgba(255, 226, 170, 0.8),
    rgba(227, 193, 130, 0.35),
    transparent
  );
  filter: blur(8px);
  pointer-events: none;
}

.picture-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .container {
    gap: 55px;
  }
  .left-content h1 {
    font-size: 58px;
  }
  .description {
    font-size: 18px;
  }
  .picture-card {
    width: 380px;
    height: 540px;
  }
  .stats {
    gap: 30px;
  }
  .stat h2 {
    font-size: 36px;
  }
}

@media (max-width: 1200px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .left-content {
    max-width: 100%;
  }
  .picture-card {
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .left-content {
    max-width: 100%;
  }
  .picture-card {
    width: 100%;
    max-width: 460px;
  }
  .left-content h1 {
    font-size: 52px;
  }
  .description {
    max-width: 100%;
  }
  .curve-line {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .consultation-section {
    padding: 60px 20px;
  }
  .container {
    width: 100%;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .left-content h1 {
    font-size: 42px;
  }
  .description {
    font-size: 16px;
    line-height: 1.8;
  }
  .stats {
    gap: 25px;
  }
  .stat {
    width: 100%;
  }
  .stat h2 {
    font-size: 34px;
  }
  .picture-card {
    height: 420px;
  }
  .call-btn {
    height: 54px;
    font-size: 16px;
    padding: 0 26px;
  }
}

@media (max-width: 480px) {
  .left-content h1 {
    font-size: 34px;
  }
  .description {
    font-size: 15px;
  }
  .picture-card {
    height: 360px;
  }
  .start-tag {
    font-size: 12px;
  }
  .stat h2 {
    font-size: 30px;
  }
  .call-btn {
    font-size: 15px;
  }
}

/* ================= FOOTER ================= */
footer.site-footer {
  background: var(--forest-950);
  padding: 70px 48px 30px;
  color: rgba(244, 240, 230, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-grid .brand {
  margin-bottom: 18px;
}
.footer-grid p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 340px;
}
.footer-grid h5 {
  font-family: "Fraunces", Georgia, serif;
  color: #f7f4eb;
  font-size: 15px;
  margin-bottom: 18px;
}
.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-grid a {
  font-size: 13.5px;
  color: rgba(244, 240, 230, 0.65);
}
.footer-bottom {
  border-top: 1px solid rgba(244, 240, 230, 0.12);
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(244, 240, 230, 0.45);
  text-align: center;
}

/* ================= TRUST BAR ================= */
.trust-bar {
  background: var(--forest-950);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar .msg {
  font-size: 13.5px;
  color: rgba(244, 240, 230, 0.7);
  max-width: 220px;
  line-height: 1.5;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.trust-logos span {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  color: rgba(244, 240, 230, 0.55);
  letter-spacing: 0.02em;
}
.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 60;
}

/* ======================================================================
   RESPONSIVE 
   ====================================================================== */

@media (max-width: 1200px) {
  .hero-copy {
    width: 46%;
    left: 40px;
  }
  h1.hero-title {
    font-size: clamp(30px, 4vw, 48px);
  }
}

@media (max-width: 991px) {
  header.site-nav {
    padding: 16px 20px;
  }
  nav.nav-links {
    display: none;
  }
  .hero {
    position: relative;
    min-height: auto;
    overflow: hidden;
  }
  .hero-grid {
    display: block;
    position: static;
  }

  .growth-scene {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
    height: min(130vw, 640px);
    min-height: 460px;
    border-radius: 0 !important;
    overflow: hidden;
    display: block;
  }
  .growth-scene-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .stage-label {
    display: none;
  }
  .hero-copy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: min(130vw, 550px);
    min-height: 460px;
    width: auto;
    max-width: none;
    margin: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    padding: 26px 20px 24px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 14px;
  }
  .hero-copy h1.hero-title {
    margin-bottom: 14px;
  }
  .hero-copy p.hero-sub {
    margin-bottom: 0;
  }
  .hero-ctas {
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 20px;
  }

  .sidebar-icons {
    display: none;
  }

  .stats-bar {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 40px);
    max-width: 640px;
    margin: -70px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 28px 24px;
  }
  .stat {
    min-width: 0;
  }
  .stat:not(:last-child)::after {
    display: none;
  }
  .stat .icon {
    width: 40px;
    height: 40px;
  }
  .stat .icon i {
    font-size: 18px;
  }
  .stat h3 {
    font-size: 19px;
  }
  .stat p {
    font-size: 12.5px;
  }
  .about {
    grid-template-columns: 1fr;
    padding: 70px 24px;
  }
  .journey {
    padding: 70px 24px;
  }
  .team {
    padding: 70px 24px;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 620px;
    margin: 0 auto;
  }
  .team-modal-content {
    padding: 28px 20px;
  }
  .team-modal-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .track {
    padding: 70px 24px;
  }
  .track-panel {
    grid-template-columns: repeat(2, 1fr);
  }
  .track-card {
    gap: 14px;
    padding: 16px 18px;
  }
  .track-logo {
    flex-basis: 96px;
    width: 96px;
    height: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  footer.site-footer {
    padding: 56px 24px 24px;
  }
  .cta-band {
    padding: 64px 24px;
  }
}

@media (max-width: 768px) {
  h1.hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  p.hero-sub {
    font-size: 15px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-ctas a {
    justify-content: center;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 24px);
    margin-top: -60px;
    padding: 24px 18px;
    gap: 20px 12px;
  }
  h2.expertise-title {
    font-size: 26px;
  }

  .about-stats {
    gap: 28px;
  }
  .etymology {
    gap: 24px;
  }

  .cta-band h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 360px;
  }
  .track-tabs-wrapper {
    position: relative;
  }
  .track-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 40px;
  }

  .track-tabs::-webkit-scrollbar {
    display: none;
  }

  .track-tabs label {
    flex: 0 0 auto;
  }

  .tab-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
  }

  .tab-arrow.left {
    left: 0;
  }

  .tab-arrow.right {
    right: 0;
  }

  .tab-arrow i {
    font-size: 14px;
    color: #123f3a;
  }
}

@media (max-width: 480px) {
  .nav-right .btn-gold {
    display: none;
  }
  header.site-nav {
    padding: 14px 16px;
  }
  .brand-mark {
    height: 60px;
  }
  .btn-gold {
    padding: 10px 16px;
    font-size: 13px;
  }
  .icon-circle {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
  }
  .hero-grid {
    display: block;
    position: static;
  }
  .hero-copy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 24px 20px 22px;
    display: flex;
    flex-direction: column;
  }

  .growth-scene {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    background: radial-gradient(
      120% 90% at 50% 30%,
      #123f3a 0%,
      #0b2e2b 50%,
      #07211f 100%
    );
    display: block;
  }

  .growth-scene-img {
    position: static;
    width: 100%;
    height: auto;
    display: block;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 14px;
  }
  h1.hero-title {
    font-size: clamp(26px, 8vw, 32px);
    margin-bottom: 12px;
  }
  p.hero-sub {
    font-size: 13.5px;
    margin-bottom: 0;
    max-width: 260px;
  }

  .hero-ctas {
    margin-top: auto;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .btn-outline,
  .hero-ctas .btn-gold {
    flex: 1 1 0;
    justify-content: center;
    padding: 12px 10px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: -40px;
    gap: 18px;
    padding: 22px 18px;
    width: calc(100% - 20px);
  }
  .stat {
    justify-content: flex-start;
  }
  .content h3 {
    font-size: 16px;
  }

  h2.expertise-title {
    font-size: 23px;
  }
  .chips span {
    font-size: 12px;
    padding: 7px 12px;
  }

  .about {
    padding: 56px 16px;
  }
  .about h2 {
    font-size: 22px;
  }
  .etymology {
    flex-direction: column;
    gap: 18px;
  }
  .about-stats {
    flex-direction: column;
    gap: 18px;
  }

  .journey {
    padding: 56px 16px;
  }
  .journey h2 {
    font-size: 22px;
  }

  .team {
    padding: 56px 16px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 260px;
  }
  .track {
    padding: 56px 16px;
  }
  .track h2 {
    font-size: 22px;
  }
  .track-panel {
    grid-template-columns: 1fr;
  }
  .track-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 18px;
  }
  .track-divider {
    display: none;
  }
  .track-logo {
    flex-basis: 100%;
    width: 100%;
    height: 44px;
  }

  .cta-band {
    padding: 50px 16px;
  }
  .cta-band h2 {
    font-size: 22px;
  }

  footer.site-footer {
    padding: 44px 16px 20px;
  }
}


/* ============================================================
   SECTION 2: about.css — About page + shared .wrap/.eyebrow-dark
   utilities reused by other inner pages
   ============================================================ */

/* =========================================================
   ABOUT PAGE — extends style-2.css design tokens
   (--forest-950/900/800, --gold, --gold-soft, --sage,
    --cream, --cream-deep, --ink, --muted, Fraunces + Inter)
   ========================================================= */

.wrap {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------------- PAGE HEADER ---------------- */
.page-header {
  background: var(--forest-950);
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(199, 154, 75, 0.10), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(143, 185, 150, 0.08), transparent 55%);
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(199, 154, 75, 0.18);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(244, 240, 230, 0.55);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(244, 240, 230, 0.75); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span.sep { color: var(--gold); }
.breadcrumb span.current { color: var(--gold-soft); }

.page-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 20px;
}
.page-header .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.page-header h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.12;
  color: #f7f4eb;
  max-width: 780px;
}
.page-header h1 .accent {
  color: var(--sage);
  font-style: italic;
  font-weight: 500;
}
.page-header p.lead {
  margin-top: 22px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(244, 240, 230, 0.7);
}

/* ---------------- ABOUT HERO (photo pair + intro, adapted from Amoxi about-one) ---------------- */
.about-hero {
  background: var(--cream);
  padding: 90px 0 100px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* --- image pair --- */
.about-hero-visual {
  position: relative;
}
.ah-image {
  display: flex;
  justify-content: center;
}
.ah-image__one {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.ah-image__one img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 6;
  max-height: 560px;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}

/* --- rotating "since 2010" badge --- */
.ah-badge {
  width: 148px;
  height: 148px;
  margin: 0 0 -74px 40px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(199, 154, 75, 0.35);
  background: var(--cream);
}
.ah-badge__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: #3f2719;
}
.ah-badge__ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 130px;
  height: 130px;
  animation: ahSpin 15s linear infinite;
}
.ah-badge__ring text {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  fill: var(--muted);
}
@keyframes ahSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- experience / challenge panel --- */
.ah-experience {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
}
.ah-experience__year {
  margin: 0;
  padding: 16px 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  writing-mode: sideways-lr;
  border-radius: 10px;
  background-color: var(--gold);
  -webkit-text-stroke: 2px var(--forest-950);
}
.ah-experience__content {
  display: flex;
  flex-direction: column;
}
.ah-experience__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest-900);
  text-transform: uppercase;
}
.ah-experience__title:first-child {
  position: relative;
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.ah-experience__title:first-child::before {
  content: "";
  width: calc(100% + 22px);
  height: 1px;
  position: absolute;
  left: -22px;
  bottom: 0;
  background: rgba(199, 154, 75, 0.35);
}

/* --- copy --- */
.about-hero-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 46px);
  color: var(--forest-900);
  margin-bottom: 26px;
}
.ah-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.ah-item__icon-box {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(199, 154, 75, 0.1);
  border: 1px solid rgba(199, 154, 75, 0.3);
}
.ah-item__icon {
  font-size: 30px;
  color: var(--forest-900);
}
.ah-item__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}
.about-hero-copy > p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 560px;
}

/* --- "our services" pill button (adapted from .amoxi-btn) --- */
.ah-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.ah-btn__text {
  padding: 14.5px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1b1204;
  border-radius: 100px;
  background: linear-gradient(135deg, #d4af6a, #b7863a);
  transition: opacity 250ms ease;
}
.ah-btn__icon-box {
  width: 42px;
  height: 42px;
  margin-left: -14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--gold-soft);
  font-size: 16px;
  transition: transform 250ms ease;
}
.ah-btn:hover .ah-btn__text {
  opacity: 0.9;
}
.ah-btn:hover .ah-btn__icon-box {
  transform: rotate(45deg);
}

@media (max-width: 991px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .ah-image__one {
    max-width: 320px;
  }
  .ah-badge {
    width: 116px;
    height: 116px;
    margin: 0 0 -58px 20px;
  }
  .ah-badge__icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .ah-badge__ring {
    width: 100px;
    height: 100px;
  }
  .ah-experience__year {
    font-size: 40px;
    padding: 12px 10px;
  }
  .ah-experience__title {
    font-size: 17px;
  }
  .ah-item {
    align-items: flex-start;
  }
  .ah-item__icon-box {
    width: 64px;
    height: 64px;
  }
  .ah-item__icon {
    font-size: 22px;
  }
}

/* ---------------- ESSENCE (Yukti + Saar) ---------------- */
.essence {
  background: var(--cream);
  padding: 100px 0;
}
.essence-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.eyebrow-dark {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.essence-intro h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 18px;
}
.essence-intro p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
}
.essence-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.essence-card {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 16px;
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.essence-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(11, 46, 43, 0.09);
  border-color: var(--gold-soft);
}
.essence-card .word {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--forest-900);
  margin-bottom: 14px;
}
.essence-card .word i {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  font-style: normal;
}
.essence-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------------- MISSION QUOTE ---------------- */
.mission {
  background: #562506;
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.mission .stats-bar.stats-bar--inline {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  margin: 0 auto 44px;
  text-align: left;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.mission .quote-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 90px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 12px;
}
.mission-text {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.5;
  color: #f7f4eb;
  max-width: 780px;
  margin: 0 auto 40px;
}
.mission .stat-line {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 32px;
  border-top: 1px solid rgba(199, 154, 75, 0.3);
  border-bottom: 1px solid rgba(199, 154, 75, 0.3);
  margin-bottom: 40px;
}
.mission .stat-line .num {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--gold-soft);
}
.mission .stat-line .lbl {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244, 240, 230, 0.65);
  text-align: left;
  max-width: 180px;
}
.mission .btn-gold {
  display: inline-flex;
}

/* ---------------- FOUNDER LETTER ---------------- */
.founder-letter {
  background: var(--cream);
  padding: 100px 0;
}
.letter-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 72px;
  align-items: start;
}
.founder-card {
  position: sticky;
  top: 32px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 20px;
  padding: 36px 28px 30px;
}
.founder-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 22px;
  background: var(--cream-deep);
}
.founder-card h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--forest-900);
  margin-bottom: 4px;
}
.founder-card .role {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.founder-card .badge {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-deep);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.founder-card .badge strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  color: var(--forest-900);
  margin-bottom: 2px;
}

.letter-body .eyebrow-dark { margin-bottom: 14px; }
.letter-body h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--ink);
  line-height: 1.32;
  margin-bottom: 30px;
  max-width: 640px;
}
.letter-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 680px;
}
.letter-body blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.6;
  color: var(--forest-900);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 26px;
  margin: 32px 0;
  max-width: 640px;
}
.letter-body blockquote cite {
  display: block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}

/* ---------------- DISCIPLINES ---------------- */
.disciplines {
  background: var(--forest-950);
  padding: 100px 0;
  margin-bottom: 100px;
}
.disciplines .head {
  max-width: 760px;
  margin-bottom: 48px;
}
.disciplines .head .eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 16px;
}
.disciplines .head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.4;
  color: #f7f4eb;
}
.discipline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.discipline-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(199, 154, 75, 0.32);
  color: rgba(244, 240, 230, 0.88);
  font-size: 14px;
  font-weight: 500;
  background: rgba(199, 154, 75, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.discipline-list span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.discipline-list span:hover {
  background: rgba(199, 154, 75, 0.16);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ---------------- WATCH VIDEO CTA ---------------- */
.cta-video {
  background: var(--cream);
  padding: 0 0 100px;
}
.cta-video .panel {
  background: linear-gradient(160deg, #7a3c12 0%, #562506 55%, #3c1a04 100%);
  border-radius: 22px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border: 1px solid var(--gold);
}
.cta-video .copy .eyebrow-dark { color: var(--gold-soft); margin-bottom: 10px; }
.cta-video h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #f7f4eb;
}
.cta-video .play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--forest-950);
  font-weight: 600;
  font-size: 14.5px;
  padding: 16px 28px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-video .play-btn .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--forest-950);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991px) {
  .essence-grid,
  .letter-grid {
    grid-template-columns: 1fr;
  }
  .founder-card {
    position: static;
    max-width: 320px;
  }
  .essence-cards { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .page-header { padding: 44px 0 64px; }
  .essence, .mission, .founder-letter, .disciplines { padding: 64px 0; }
  .cta-video { padding-bottom: 64px; }
  .cta-video .panel { padding: 36px 26px; flex-direction: column; align-items: flex-start; }
  .mission .stat-line { flex-direction: column; gap: 6px; text-align: center; }
  .mission .stat-line .lbl { text-align: center; max-width: none; }
}


/* ============================================================
   SECTION 3: assurance.css — Assurance/service detail page
   ============================================================ */

/* =========================================================
   ASSURANCE PAGE — extends style-2.css + about.css tokens
   (--forest-950/900/800, --gold, --gold-soft, --sage,
    --cream, --cream-deep, --ink, --muted, Fraunces + Inter)
   ========================================================= */

/* ---------------- PAGE HEADER (HERO) ----------------
   Dark, image-backed hero. Drop your photo/texture into
   .page-header-bg img (currently pointing at
   assets/images/backgrounds/assurance-hero-bg.jpg) — a dark
   overlay is applied automatically so the white text stays
   readable regardless of the source image's brightness. */
.page-header {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  padding: 150px 0 110px;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}
.page-header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.page-header > .wrap {
  position: relative;
  z-index: 1;
}
.page-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}
.page-header-copy {
  max-width: 640px;
}
.page-header-copy h1 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
}
.page-header-copy h1 .accent {
  color: var(--gold);
}
.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb-pill a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.breadcrumb-pill a:hover {
  color: #fff;
}
.breadcrumb-pill .sep-icon {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb-pill .current {
  color: var(--gold);
}
.page-header-side {
  justify-self: end;
  max-width: 400px;
}
.page-header-side .lead {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------------- SERVICE INTRO ---------------- */
.service-intro {
  background: var(--cream);
  padding: 100px 0;
}
.service-intro-media {
  margin-bottom: 48px;
}
.service-intro-media img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 24px;
  background: var(--cream-deep);
}
.service-intro-copy {
  max-width: auto;
}
.service-intro-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--ink);
  line-height: 1.32;
  margin-bottom: 22px;
}
.service-intro-copy p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ---------------- SERVICE DETAIL ---------------- */
.service-detail {
  background: var(--cream);
  padding: 0 0 100px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 72px;
  align-items: start;
}

/* Left image — same sticky-scroll behaviour & sizing as
   .founder-card img in about.css */
.detail-media {
  position: sticky;
  top: 32px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-deep);
}
.detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.detail-list {
  display: flex;
  flex-direction: column;
}
.detail-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 26px;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid var(--cream-deep);
}
.detail-item:first-child {
  padding-top: 0;
}
.detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 154, 75, 0.1);
  border: 1px solid rgba(199, 154, 75, 0.3);
  color: var(--ink);
  font-size: 22px;
  flex-shrink: 0;
}
.detail-copy h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--forest-900);
  line-height: 1.35;
  margin-bottom: 10px;
}
.detail-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
}
.detail-list > .btn-gold {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 34px;
}

/* ---------------- FOOTER ALIGNMENT ----------------
   footer.site-footer in style-2.css has its own fixed
   left/right padding (48px) which doesn't line up with the
   1180px / 90% .wrap used by every section above it. Zero
   that horizontal padding out and let .wrap center + gutter
   the footer content the same way. */
footer.site-footer {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991px) {
  .page-header {
    padding: 120px 0 70px;
    min-height: 0;
  }
  .page-header-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-header-side {
    justify-self: start;
    max-width: 100%;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-media {
    position: static;
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-pill {
    flex-wrap: wrap;
    padding: 10px 16px;
  }
  .service-intro { padding: 64px 0; }
  .service-intro-media { margin-bottom: 32px; }
  .service-intro-media img { aspect-ratio: 4/3; border-radius: 18px; }
  .service-detail { padding-bottom: 64px; }
  .detail-item {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .detail-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }
}