/* =========================================================
   Zikay Group — stylesheet
   BEM naming: .block, .block__element, .block--modifier
   ========================================================= */

/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FBF7F8;
  font-family: 'Work Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #14122E;
}

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

a {
  color: #262261;
  text-decoration: none;
  transition: color .18s ease;
}

a:hover {
  color: #7C2A3B;
}

h1, h2, h3, p {
  margin: 0;
}

button {
  font-family: inherit;
}

/* ---------- Decorative float animation (data-float) ---------- */
@keyframes zkFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

@keyframes zkFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

.float-blob {
  position: absolute;
  pointer-events: none;
  animation: zkFloat 9s ease-in-out infinite;
}

.float-blob--alt {
  animation: zkFloat2 11s ease-in-out infinite;
}

/* ---------- Scroll progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #7C2A3B;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 60;
}

/* =========================================================
   Layout shell: topbar (mobile), sidebar (desktop), drawer
   ========================================================= */

.topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(251, 247, 248, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E5D9DD;
  z-index: 50;
}

.topbar__logo {
  height: 42px;
  width: auto;
}

.topbar__menu-btn {
  border: 1px solid #E5D9DD;
  background: #FBF7F8;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.topbar__menu-bar {
  width: 18px;
  height: 2px;
  background: #262261;
  border-radius: 2px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 288px;
  height: 100vh;
  overflow-y: auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  background: #FBF7F8;
  border-right: 1px solid #E5D9DD;
  padding: 40px 32px;
}

.sidebar__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.sidebar__logo {
  height: 104px;
  width: auto;
}

.sidebar__rule {
  height: 2px;
  width: 120px;
  background: #7C2A3B;
}

.sidebar__eyebrow {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #7C2A3B;
  padding-top: 2px;
}

.sidebar__tagline {
  font: 400 13px/1.65 'Work Sans', sans-serif;
  color: #4E4A6B;
  margin: 28px 0 0;
  max-width: 58ch;
}

.sidebar__hq {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #E5D9DD;
}

.sidebar__hq-label {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #7C2A3B;
  margin-bottom: 8px;
}

.sidebar__hq-text {
  font: 400 13px/1.6 'Work Sans', sans-serif;
  color: #4E4A6B;
}

.main {
  margin-left: 288px;
}

@media (max-width: 1024px) {
  .sidebar { display: none; }
  .main { margin-left: 0; padding-top: 66px; }
  .topbar { display: flex; }
}

/* ---------- Nav (shared: sidebar / drawer / footer) ---------- */

.nav {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 40px;
}

.nav__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav__label {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #8A7E86;
}

.nav__link {
  font: 400 14px/1 'Work Sans', sans-serif;
  color: #4E4A6B;
  padding-left: 15px;
}

.nav__link--active {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 600 14px/1 'Work Sans', sans-serif;
  color: #14122E;
  padding-left: 0;
}

.nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7C2A3B;
  flex: none;
}

/* ---------- Mobile drawer ---------- */

.drawer__scrim {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 46, .5);
  backdrop-filter: blur(2px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.drawer__scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: #FBF7F8;
  z-index: 80;
  transform: translateX(-105%);
  transition: transform .42s cubic-bezier(.4, 0, .1, 1);
  box-shadow: 0 0 60px -10px rgba(38, 34, 97, .5);
  padding: 28px 28px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__logo {
  height: 56px;
  width: auto;
}

.drawer__close {
  border: none;
  background: none;
  font: 400 30px/1 'Work Sans', sans-serif;
  color: #4E4A6B;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}

.drawer__rule {
  height: 2px;
  width: 48px;
  background: #7C2A3B;
  margin: 18px 0 4px;
}

.drawer .nav {
  margin-top: 22px;
  gap: 30px;
}

.drawer .nav__link,
.drawer .nav__link--active {
  padding-left: 0;
  font-size: 16px;
}

.drawer .nav__link--active {
  gap: 0;
}

/* =========================================================
   Buttons / links
   ========================================================= */

.btn {
  display: inline-flex;
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 3px;
  transition: background .18s ease, color .18s ease;
}

.btn--solid {
  background: #F5EEF0;
  color: #262261;
}

.btn--solid:hover {
  background: #ffffff;
  color: #7C2A3B;
}

.btn--outline {
  border: 1px solid #C08497;
  color: #F5EEF0;
}

.btn--outline:hover {
  background: rgba(192, 132, 151, .18);
}

.btn--outline-light {
  border: 1px solid #E7C3CC;
  color: #F5EEF0;
}

.btn--outline-light:hover {
  background: rgba(231, 195, 204, .18);
}

.btn--outline-dark {
  border: 1px solid #D9C6CC;
  color: #4E4A6B;
}

.btn--outline-dark:hover {
  background: #262261;
  color: #F5EEF0;
}

.link-arrow {
  display: inline-flex;
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7C2A3B;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #262261;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 34, 97, .72) 0%, rgba(38, 34, 97, .55) 40%, rgba(38, 34, 97, .9) 100%);
}

.hero__content {
  position: relative;
  max-width: 780px;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 72px) clamp(56px, 7vw, 88px);
  color: #F5EEF0;
}

.hero__eyebrow {
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: #E7C3CC;
}

.hero__title {
  font: 600 clamp(40px, 6.2vw, 78px)/1.0 'Cormorant Garamond', serif;
  letter-spacing: .005em;
  margin: 26px 0 0;
  color: #F5EEF0;
  text-wrap: balance;
}

.hero__rule {
  height: 2px;
  width: 72px;
  background: #C08497;
  margin: 32px 0;
}

.hero__lead {
  font: 500 italic clamp(18px, 2.3vw, 22px)/1.45 'Cormorant Garamond', serif;
  letter-spacing: .02em;
  color: #E7C3CC;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* =========================================================
   Section helpers
   ========================================================= */

.section {
  padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 72px);
  border-top: 1px solid #E5D9DD;
}

.section--tint {
  background: #F5EEF0;
}

.section__eyebrow {
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.section__title {
  font: 600 clamp(30px, 3.6vw, 40px)/1.1 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 16px 0 0;
  text-wrap: balance;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
}

.section__lead {
  font: 400 15px/1.75 'Work Sans', sans-serif;
  color: #4E4A6B;
  max-width: 58ch;
}

/* ---------- Intro + stats ---------- */

.intro {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 5vw, 64px);
  align-items: flex-start;
}

.intro__text {
  flex: 1.25;
  min-width: 320px;
}

.intro__text p {
  font: 400 15px/1.75 'Work Sans', sans-serif;
  color: #4E4A6B;
  margin: 0 0 16px;
  max-width: 58ch;
}

.intro__text p:last-child {
  margin-bottom: 0;
}

.stats {
  flex: 1;
  min-width: 300px;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 36px 24px;
  border-left: 1px solid #E5D9DD;
  padding-left: clamp(28px, 4vw, 48px);
  padding-top: 6px;
}

.stats--vertical {
  grid-template-columns: 1fr;
}

.stat__value {
  font: 700 clamp(42px, 5vw, 54px)/1 'Cormorant Garamond', serif;
  color: #7C2A3B;
}

.stat__value--light {
  color: #F5EEF0;
}

.stat__value .star {
  font-size: 0.6em;
}

.stat__label {
  font: 600 11px/1.3 'Work Sans', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8A7E86;
  margin-top: 8px;
}

.stat__label--light {
  color: #E7C3CC;
}

/* =========================================================
   Card (.zk-card equivalent)
   ========================================================= */

.card {
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(38, 34, 97, .06), 0 24px 48px -32px rgba(38, 34, 97, .28);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), box-shadow .55s cubic-bezier(.2, .7, .2, 1);
}

.card:hover {
  transform: translateY(-9px);
  box-shadow: 0 1px 2px rgba(38, 34, 97, .06), 0 40px 70px -34px rgba(38, 34, 97, .5);
}

.card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.card__image-wrap--tall {
  height: 180px;
}

.card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .7, .2, 1);
}

.card:hover .card__image {
  transform: scale(1.07);
}

.card__body {
  padding: 24px;
  border-top: 4px solid #262261;
}

.card__body--plain {
  border-top: none;
}

.card__number {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.card__meta {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.card__title {
  font: 600 24px/1.1 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 8px 0;
}

.card__title--sm {
  font-size: 22px;
  margin: 12px 0 8px;
}

.card__text {
  font: 400 13px/1.6 'Work Sans', sans-serif;
  color: #4E4A6B;
}

.card__link {
  display: inline-flex;
  margin-top: 16px;
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card-grid--news {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ---------- Others banner ---------- */

.others-banner {
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(38, 34, 97, .06), 0 24px 48px -32px rgba(38, 34, 97, .28);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), box-shadow .55s cubic-bezier(.2, .7, .2, 1);
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.others-banner:hover {
  transform: translateY(-9px);
  box-shadow: 0 1px 2px rgba(38, 34, 97, .06), 0 40px 70px -34px rgba(38, 34, 97, .5);
}

.others-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 46, 0) 30%, rgba(20, 18, 46, .82) 100%);
}

.others-banner__body {
  position: relative;
  padding: 24px;
  color: #F5EEF0;
}

.others-banner__title {
  font: 600 22px/1.1 'Cormorant Garamond', serif;
  margin: 6px 0 8px;
}

.others-banner__text {
  font: 400 13px/1.55 'Work Sans', sans-serif;
  color: #E7C3CC;
}

.others-banner__link {
  display: inline-flex;
  margin-top: 12px;
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #F5EEF0;
}

/* ---------- Sub-row (.zk-sub) ---------- */

.sub-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  transition: background .3s ease, border-color .3s ease;
}

.sub-row:hover {
  background: #F5EEF0;
  border-color: #C08497;
}

.sub-row + .sub-row {
  margin-top: 14px;
}

.sub-row__name {
  font: 600 15px/1.3 'Work Sans', sans-serif;
  color: #14122E;
}

.sub-row__text {
  font: 400 13px/1.5 'Work Sans', sans-serif;
  color: #4E4A6B;
}

.sub-row--navy { border-left: 4px solid #262261; }
.sub-row--maroon { border-left: 4px solid #7C2A3B; }
.sub-row--rose { border-left: 4px solid #C08497; }

.sub-row__meta-label {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8A7E86;
  margin-bottom: 6px;
}

.sub-row__meta-value {
  font: 600 13px/1.4 'Work Sans', sans-serif;
  color: #262261;
}

.sub-row__num {
  font: 700 20px/1 'Cormorant Garamond', serif;
  min-width: 34px;
}

.card__price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5D9DD;
}

.card__price-label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8A7E86;
}

.card__price-value {
  font: 700 21px/1 'Cormorant Garamond', serif;
  color: #262261;
}

.sub-row__status {
  margin-left: auto;
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7C2A3B;
  background: #F5EEF0;
  border: 1px solid #E5D9DD;
  border-radius: 20px;
  padding: 6px 12px;
}

/* ---------- "+ Others" callout row ---------- */

.callout-row {
  margin-top: clamp(40px, 5vw, 56px);
  padding: 20px 24px;
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.callout-row__tag {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.callout-row__text {
  font: 400 14px/1.5 'Work Sans', sans-serif;
  color: #4E4A6B;
}

.callout-row__link {
  margin-left: auto;
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7C2A3B;
  white-space: nowrap;
}

/* =========================================================
   Timeline (milestones / founding story)
   ========================================================= */

.timeline {
  position: relative;
  padding-top: 8px;
}

.timeline__rule {
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 2px;
  background: #262261;
}

.timeline__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.timeline__item {
  padding-right: 16px;
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7C2A3B;
}

.timeline__dot--alt {
  background: #262261;
}

.timeline__year {
  font: 700 32px/1 'Cormorant Garamond', serif;
  color: #262261;
  margin: 20px 0 8px;
}

.timeline__label {
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8A7E86;
  margin-bottom: 10px;
}

.timeline__text {
  font: 400 13px/1.6 'Work Sans', sans-serif;
  color: #4E4A6B;
}

/* =========================================================
   CSR / dark feature band
   ========================================================= */

.feature-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8A2F42 0%, #7C2A3B 46%, #5C1E2C 100%);
  color: #F5EEF0;
  padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.feature-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .08;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.feature-band__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 12% 0%, rgba(231, 195, 204, .16) 0%, rgba(231, 195, 204, 0) 45%);
  pointer-events: none;
}

.feature-band__text {
  position: relative;
  z-index: 1;
  flex: 1.1;
  min-width: 320px;
}

.feature-band__eyebrow {
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #E7C3CC;
}

.feature-band__title {
  font: 600 clamp(32px, 3.8vw, 42px)/1.1 'Cormorant Garamond', serif;
  color: #F5EEF0;
  margin: 18px 0 20px;
  text-wrap: balance;
}

.feature-band__lead {
  font: 400 15px/1.75 'Work Sans', sans-serif;
  color: #E7C3CC;
  margin: 0 0 28px;
  max-width: 54ch;
}

.feature-band__stats {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px 24px;
  border-left: 1px solid rgba(245, 238, 240, .2);
  padding-left: clamp(28px, 4vw, 48px);
}

/* =========================================================
   Map
   ========================================================= */

.map-frame {
  height: clamp(300px, 40vw, 700px);
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 2px rgba(38, 34, 97, .06), 0 24px 48px -32px rgba(38, 34, 97, .28);
}

.map-frame iframe,
.map-frame #zk-map {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame__card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 24px 48px -24px rgba(38, 34, 97, .5);
  pointer-events: none;
  z-index: 500;
}

.map-frame__title {
  font: 600 13px/1.2 'Work Sans', sans-serif;
  color: #14122E;
}

.map-frame__subtitle {
  font: 400 11px/1.4 'Work Sans', sans-serif;
  color: #8A7E86;
  margin-top: 2px;
}

.leaflet-container {
  font-family: 'Work Sans', sans-serif;
}

/* =========================================================
   Form fields (Contact)
   ========================================================= */

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__label {
  display: block;
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7C2A3B;
  margin-bottom: 8px;
}

.field {
  width: 100%;
  font: 400 14px/1.4 'Work Sans', sans-serif;
  color: #14122E;
  background: #FBF7F8;
  border: 1px solid #D9C6CC;
  border-radius: 4px;
  padding: 13px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field:focus {
  outline: none;
  border-color: #7C2A3B;
  box-shadow: 0 0 0 3px rgba(124, 42, 59, .12);
}

textarea.field {
  resize: vertical;
  min-height: 120px;
}

select.field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234E4A6B' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

@media (max-width: 640px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Careers: chips + job rows
   ========================================================= */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  cursor: pointer;
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .06em;
  border-radius: 20px;
  padding: 10px 18px;
  border: 1px solid #D9C6CC;
  background: transparent;
  color: #4E4A6B;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.chip.is-active {
  background: #7C2A3B;
  color: #F5EEF0;
  border-color: #7C2A3B;
}

.chip:not(.is-active):hover {
  border-color: #7C2A3B;
  color: #7C2A3B;
}

.role-count {
  font: 400 13px/1.5 'Work Sans', sans-serif;
  color: #8A7E86;
  margin-bottom: 20px;
}

.jobs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  background: #FBF7F8;
  transition: background .25s ease, border-color .25s ease;
}

.job:hover {
  background: #F5EEF0;
  border-color: #C08497;
}

.job.is-hidden {
  display: none;
}

.job__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}

.job__title {
  font: 600 16px/1.3 'Work Sans', sans-serif;
  color: #14122E;
}

.job__meta {
  font: 400 12px/1.4 'Work Sans', sans-serif;
  color: #8A7E86;
}

.job__apply {
  margin-left: auto;
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7C2A3B;
  white-space: nowrap;
}

/* =========================================================
   Property: show-more expand/collapse
   ========================================================= */

.show-more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .6s cubic-bezier(.4, 0, .1, 1), opacity .5s ease;
}

.show-more.is-open {
  max-height: 1400px;
  opacity: 1;
}

.show-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(24px, 3vw, 32px);
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4E4A6B;
  background: transparent;
  border: 1px solid #D9C6CC;
  border-radius: 3px;
  padding: 14px 22px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.show-more-toggle:hover {
  background: #262261;
  color: #F5EEF0;
}

.show-more-toggle__chevron {
  display: inline-block;
  transition: transform .35s ease;
}

.show-more-toggle.is-open .show-more-toggle__chevron {
  transform: rotate(180deg);
}

/* =========================================================
   Construction: carousel
   ========================================================= */

.carousel-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #D9C6CC;
  background: #FBF7F8;
  color: #262261;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, color .18s ease;
}

.carousel-nav__btn:hover {
  background: #262261;
  color: #F5EEF0;
}

.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel__card {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 32vw, 340px);
}

/* =========================================================
   Construction: animated process flow
   ========================================================= */

.flow {
  position: relative;
  display: flex;
  gap: 0;
}

.flow__item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}

.flow__track,
.flow__fill {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 2px;
}

.flow__track {
  background: #E0D3D8;
}

.flow__fill {
  background: #7C2A3B;
  transform: scaleX(0);
  transform-origin: left center;
}

.flow__arrow {
  position: absolute;
  top: 19px;
  right: calc(10% - 3px);
  width: 12px;
  height: 12px;
  border-top: 2px solid #7C2A3B;
  border-right: 2px solid #7C2A3B;
  transform: rotate(45deg);
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
}

.flow__num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F5EEF0;
  border: 2px solid #262261;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 18px/1 'Cormorant Garamond', serif;
  color: #262261;
  flex: none;
  margin-bottom: 20px;
}

.flow__num--final {
  background: #7C2A3B;
  border-color: #7C2A3B;
  color: #F5EEF0;
}

.flow__title {
  font: 600 15px/1.25 'Work Sans', sans-serif;
  color: #14122E;
  margin-bottom: 6px;
}

.flow__text {
  font: 400 12.5px/1.55 'Work Sans', sans-serif;
  color: #4E4A6B;
}

@media (max-width: 760px) {
  .flow {
    flex-direction: column;
  }
  .flow__item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    padding: 0 0 30px 0;
  }
  .flow__item:last-child {
    padding-bottom: 0;
  }
  .flow__track {
    top: 0;
    bottom: 26px;
    left: 25px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .flow__fill,
  .flow__arrow {
    display: none;
  }
}

/* =========================================================
   Construction: certification flip / tilt cards
   ========================================================= */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.cert {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  perspective: 1200px;
  height: 240px;
}

.cert__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  cursor: pointer;
}

.cert.is-flipped .cert__inner {
  transform: rotateY(180deg);
}

.cert__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 4px;
  border: 1px solid #C08497;
  box-shadow: inset 0 0 0 1px rgba(124, 42, 59, .12), 0 10px 24px -18px rgba(20, 18, 46, .4);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow .35s ease;
}

.cert__face::before,
.cert__face::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #7C2A3B;
  opacity: .55;
  pointer-events: none;
}

.cert__face::before {
  top: 9px;
  left: 9px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.cert__face::after {
  bottom: 9px;
  right: 9px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.cert:hover .cert__face {
  box-shadow: inset 0 0 0 1px rgba(124, 42, 59, .16), 0 18px 34px -20px rgba(20, 18, 46, .5);
}

.cert__face--front {
  background:
    radial-gradient(120% 140% at var(--mx) var(--my), rgba(192, 132, 151, .28), transparent 60%),
    #FBF7F8;
}

.cert__face--back {
  background:
    radial-gradient(120% 140% at var(--mx) var(--my), rgba(124, 42, 59, .35), transparent 60%),
    #262261;
  color: #F5EEF0;
  transform: rotateY(180deg);
}

.cert__seal {
  width: 30px;
  height: 30px;
  flex: none;
  fill: none;
  stroke: #7C2A3B;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 14px;
}

.cert__face--back .cert__seal {
  stroke: #E7C3CC;
}

.cert__code {
  font: 700 21px/1.15 'Cormorant Garamond', serif;
  letter-spacing: .01em;
  color: #14122E;
}

.cert__category {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7C2A3B;
  margin-top: 10px;
}

.cert__rule {
  height: 2px;
  width: 32px;
  background: #C08497;
  margin: 16px 0;
}

.cert__face--back .cert__rule {
  background: #7C2A3B;
}

.cert__body {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #E7C3CC;
}

.cert__hint {
  margin-top: auto;
  padding-top: 16px;
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8A7E86;
}

.cert__face--back .cert__code {
  color: #F5EEF0;
  margin-top: 6px;
}

.cert__covers {
  font: 400 13px/1.65 'Work Sans', sans-serif;
  color: #E7C3CC;
  margin-top: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .cert__inner {
    transition: none;
  }
}

/* =========================================================
   Chips (capabilities tags)
   ========================================================= */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .06em;
  border-radius: 20px;
  padding: 10px 18px;
  border: 1px solid #E5D9DD;
  background: #FBF7F8;
  color: #4E4A6B;
}

/* =========================================================
   Blockquote (Founders / reviews)
   ========================================================= */

.quote {
  border-left: 2px solid #7C2A3B;
  padding-left: 22px;
  margin: 0;
}

.quote__text {
  font: 500 italic clamp(18px, 2vw, 22px)/1.5 'Cormorant Garamond', serif;
  color: #14122E;
}

.quote__cite {
  display: block;
  margin-top: 14px;
  font: 600 12px/1.4 'Work Sans', sans-serif;
  letter-spacing: .04em;
  color: #7C2A3B;
  font-style: normal;
}

.quote__stars {
  color: #C79A5B;
  font-size: 14px;
  margin-bottom: 10px;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  position: relative;
  overflow: hidden;
  background: #262261;
  color: #F5EEF0;
  padding: clamp(56px, 7vw, 72px) clamp(24px, 5vw, 72px) 0;
}

.footer__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23C08497' stroke-width='1' stroke-opacity='0.14'%3E%3Crect x='18' y='18' width='36' height='36'/%3E%3Crect x='18' y='18' width='36' height='36' transform='rotate(45 36 36)'/%3E%3Cpath d='M0 36 H18 M54 36 H72 M36 0 V18 M36 54 V72'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
}

.footer__top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 64px);
  padding-bottom: 48px;
}

.footer__brand {
  max-width: 440px;
}

.footer__logo {
  height: 64px;
  width: auto;
}

.footer__eyebrow {
  font: 500 9px/1 'Work Sans', sans-serif;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #C08497;
  margin-top: 14px;
}

.footer__tagline {
  font: 400 13px/1.65 'Work Sans', sans-serif;
  color: #E7C3CC;
  margin: 20px 0 0;
}

.footer__contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 30px;
}

.footer__contact-label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #C08497;
  margin-bottom: 7px;
}

.footer__contact-text {
  font: 400 13px/1.7 'Work Sans', sans-serif;
  color: #F5EEF0;
}

.footer__nav-cols {
  display: flex;
  gap: clamp(32px, 5vw, 120px);
  flex-wrap: wrap;
  flex-direction: row;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-label {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #C08497;
  margin-bottom: 4px;
}

.footer__nav-link {
  font: 400 13px/1 'Work Sans', sans-serif;
  color: #E7C3CC;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(245, 238, 240, .14);
  padding: 16px 0 28px;
  font: 400 10px/1.6 'Work Sans', sans-serif;
  letter-spacing: .04em;
  color: #8A7E86;
}

/* =========================================================
   About Us: vision/mission cards, values, org structure
   ========================================================= */

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.vision-card {
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  padding: 34px 32px;
  border-top: 4px solid #262261;
  box-shadow: 0 1px 2px rgba(38, 34, 97, .06), 0 24px 48px -32px rgba(38, 34, 97, .28);
}

.vision-card--alt {
  border-top-color: #7C2A3B;
}

.vision-card__eyebrow {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.vision-card__title {
  font: 600 26px/1.15 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 14px 0 12px;
}

.vision-card__text {
  font: 400 14px/1.7 'Work Sans', sans-serif;
  color: #4E4A6B;
}

.values-row {
  margin-top: clamp(32px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.values-row__label {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #7C2A3B;
  margin-right: 6px;
}

.value-chip {
  font: 500 13px/1 'Work Sans', sans-serif;
  color: #262261;
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 22px;
  padding: 11px 20px;
}

.org-section {
  background: #262261;
  color: #F5EEF0;
  padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.org-section__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23C08497' stroke-width='1' stroke-opacity='0.12'%3E%3Crect x='18' y='18' width='36' height='36'/%3E%3Crect x='18' y='18' width='36' height='36' transform='rotate(45 36 36)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
}

.org-section > * {
  position: relative;
  z-index: 1;
}

.org-section .section__eyebrow {
  color: #E7C3CC;
}

.org-section .section__title {
  color: #F5EEF0;
}

.org-section .section__lead {
  color: #E7C3CC;
}

.org-root {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.org-root__card {
  background: #F5EEF0;
  color: #262261;
  border-radius: 6px;
  padding: 20px 34px;
  text-align: center;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, .6);
}

.org-root__label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #7C2A3B;
  margin-bottom: 6px;
}

.org-root__title {
  font: 600 24px/1.05 'Cormorant Garamond', serif;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.org-item {
  background: rgba(245, 238, 240, .06);
  border: 1px solid rgba(245, 238, 240, .16);
  border-top: 3px solid #C08497;
  border-radius: 5px;
  padding: 16px 16px 18px;
}

.org-item--muted {
  border-top-color: #8A7E86;
}

.org-item__num {
  font: 700 22px/1 'Cormorant Garamond', serif;
  color: #E7C3CC;
}

.org-item__name {
  font: 600 14px/1.2 'Work Sans', sans-serif;
  color: #F5EEF0;
  margin: 8px 0 4px;
}

.org-item__desc {
  font: 400 11px/1.45 'Work Sans', sans-serif;
  color: #C7B9C0;
}

/* =========================================================
   Founders: profile rows, principles, pull-quote
   ========================================================= */

.founder-row {
  border-top: 1px solid #E5D9DD;
  padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 5vw, 60px);
  align-items: flex-start;
}

.founder-row--tint {
  background: #F5EEF0;
}

.founder-row--reverse {
  flex-direction: row-reverse;
}

.founder-row__image {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(38, 34, 97, .06), 0 40px 70px -40px rgba(38, 34, 97, .5);
}

.founder-row__body {
  flex: 1.4;
  min-width: 320px;
}

.founder-row__eyebrow {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.founder-row__name {
  font: 600 clamp(32px, 3.8vw, 44px)/1.05 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 12px 0 6px;
}

.founder-row__role {
  font: 500 italic 17px/1.5 'Cormorant Garamond', serif;
  color: #7C2A3B;
  margin-bottom: 20px;
}

.founder-row__text {
  font: 400 15px/1.75 'Work Sans', sans-serif;
  color: #4E4A6B;
  margin: 0 0 16px;
  max-width: 58ch;
}

.founder-row__text:last-of-type {
  margin-bottom: 0;
}

.founder-row__list {
  font: 400 15px/1.75 'Work Sans', sans-serif;
  color: #4E4A6B;
  max-width: 58ch;
  margin: 0 0 16px;
  padding-left: 20px;
}

.founder-row__list li {
  margin-bottom: 4px;
}

.founder-row__list li:last-child {
  margin-bottom: 0;
}

.founder-row .quote {
  margin-top: 26px;
}

.founder-row .quote__text {
  color: #262261;
}

.principle-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.principle-card {
  background: rgba(245, 238, 240, .06);
  border: 1px solid rgba(245, 238, 240, .16);
  border-top: 3px solid #C08497;
  border-radius: 5px;
  padding: 24px 22px 26px;
}

.principle-card__title {
  font: 700 26px/1.05 'Cormorant Garamond', serif;
  color: #E7C3CC;
}

.principle-card__subtitle {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C08497;
  margin: 8px 0 12px;
}

.principle-card__text {
  font: 400 13px/1.6 'Work Sans', sans-serif;
  color: #C7B9C0;
}

.pullquote-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8A2F42 0%, #7C2A3B 46%, #5C1E2C 100%);
  color: #F5EEF0;
  padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 72px);
}

.pullquote-band__content {
  position: relative;
  z-index: 1;
  # max-width: 820px;
}

.pullquote-band__eyebrow {
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #E7C3CC;
  margin-bottom: 24px;
}

.pullquote-band__mark {
  font: 700 clamp(40px, 6vw, 72px)/1 'Cormorant Garamond', serif;
  color: #C08497;
  margin-bottom: -8px;
}

.pullquote-band__text {
  margin: 0;
  font: 600 clamp(26px, 3.6vw, 42px)/1.25 'Cormorant Garamond', serif;
  color: #F5EEF0;
  text-wrap: balance;
}

.pullquote-band__cite {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.pullquote-band__rule {
  height: 2px;
  width: 40px;
  background: #C08497;
}

.pullquote-band__name {
  font: 600 12px/1.4 'Work Sans', sans-serif;
  letter-spacing: .06em;
  color: #E7C3CC;
}

.pullquote-band__role {
  font-weight: 400;
  color: #C7B9C0;
  letter-spacing: .02em;
}

/* =========================================================
   Careers: hiring process cards, graduate CTA facts
   ========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid #E5D9DD;
  border-radius: 5px;
  padding: 28px 24px;
}

.process-card__num {
  font: 600 13px/1 'Cormorant Garamond', serif;
  color: #C08497;
  letter-spacing: .1em;
}

.process-card__title {
  font: 600 20px/1.15 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 14px 0 8px;
}

.process-card__text {
  font: 400 13px/1.6 'Work Sans', sans-serif;
  color: #4E4A6B;
}

.fact-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  border-top: 1px solid rgba(245, 238, 240, .2);
  padding-top: 26px;
}

.fact-row__label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #E7C3CC;
  margin-bottom: 7px;
}

.fact-row__value {
  font: 400 14px/1.6 'Work Sans', sans-serif;
  color: #F5EEF0;
}

/* =========================================================
   Financial: pattern overlays
   ========================================================= */

.pattern-diamond {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23262261' stroke-width='1' stroke-opacity='0.05'%3E%3Cpath d='M40 8 L72 40 L40 72 L8 40 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.pattern-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23C08497' stroke-width='1' stroke-opacity='0.13'%3E%3Ccircle cx='32' cy='32' r='11'/%3E%3Cpath d='M32 6 V16 M32 48 V58 M6 32 H16 M48 32 H58'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px;
}

/* =========================================================
   Others: specialist company rows
   ========================================================= */

.company-section {
  background: #1B1940;
  padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 72px);
  border-top: 1px solid #E5D9DD;
}

.company-section .section__eyebrow {
  color: #E7C3CC;
}

.company-section .section__title {
  color: #F5EEF0;
  margin-bottom: 40px;
}

.company-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-row {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 30px 26px;
  border-radius: 5px;
  color: #F5EEF0;
  background-size: cover;
  background-position: center;
}

.company-row__body {
  flex: 2;
  min-width: 240px;
}

.company-row__title {
  font: 600 22px/1.1 'Cormorant Garamond', serif;
  color: #F5EEF0;
  margin: 0 0 3px;
}

.company-row__text {
  font: 400 13px/1.55 'Work Sans', sans-serif;
  color: #C7B9C0;
}

.company-row__meta {
  flex: 1;
  min-width: 190px;
}

.company-row__meta-label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #E7C3CC;
  margin-bottom: 5px;
}

.company-row__meta-value {
  font: 600 13px/1.4 'Work Sans', sans-serif;
  color: #F5EEF0;
}

.company-row__link {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #E7C3CC;
  white-space: nowrap;
}

/* =========================================================
   Hospitality: reviews, events band, map section
   ========================================================= */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  margin: 0;
  background: #F5EEF0;
  border: 1px solid #E5D9DD;
  border-radius: 5px;
  padding: 30px;
  overflow: hidden;
}

.review-card__mark {
  font: 700 96px/.7 'Cormorant Garamond', serif;
  color: #E7C3CC;
  height: 44px;
}

.review-card__text {
  font: 500 italic 21px/1.45 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 6px 0 20px;
}

.review-card__rule {
  height: 1px;
  background: #E5D9DD;
  margin-bottom: 14px;
}

.review-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card__cite {
  font: 600 11px/1 'Work Sans', sans-serif;
  letter-spacing: .06em;
  color: #4E4A6B;
  font-style: normal;
}

.review-card__stars {
  font: 400 13px/1 'Work Sans', sans-serif;
  color: #C08497;
  letter-spacing: .1em;
}

.events-band {
  position: relative;
  min-height: min(78vh, 660px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #262261;
}

.events-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 46, .28) 0%, rgba(20, 18, 46, .42) 40%, rgba(20, 18, 46, .92) 100%);
}

.events-band__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 72px) clamp(44px, 5vw, 64px);
  color: #F5EEF0;
}

.events-band__title {
  font: 600 clamp(34px, 4.4vw, 52px)/1.02 'Cormorant Garamond', serif;
  color: #F5EEF0;
  margin: 18px 0 18px;
  text-wrap: balance;
}

.events-band__lead {
  font: 400 15px/1.7 'Work Sans', sans-serif;
  color: #EAD9DE;
  max-width: 52ch;
}

.events-band__stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 28px;
  border-top: 1px solid rgba(245, 238, 240, .24);
}

.events-band__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
}

.events-band__stat-value {
  font: 700 clamp(34px, 4vw, 48px)/1 'Cormorant Garamond', serif;
  color: #F5EEF0;
}

.events-band__stat-label {
  font: 600 10px/1.3 'Work Sans', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #E7C3CC;
  margin-top: 8px;
}

.locations-intro {
  padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 72px) clamp(36px, 4vw, 48px);
}

.locations-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 20px;
}

.locations-legend__item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.locations-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: none;
}

.locations-legend__label {
  font: 600 13px/1 'Work Sans', sans-serif;
  color: #14122E;
}

.card__price-row--split {
  justify-content: space-between;
}

/* =========================================================
   Contact: detail list, hours list, map overlay card
   ========================================================= */

.detail-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E5D9DD;
}

.detail-row {
  padding: 18px 0;
  border-bottom: 1px solid #E5D9DD;
}

.detail-row__label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8A7E86;
  margin-bottom: 7px;
}

.detail-row__value {
  font: 400 15px/1.65 'Work Sans', sans-serif;
  color: #4E4A6B;
}

.detail-row__link {
  font: 600 15px/1.6 'Work Sans', sans-serif;
  color: #262261;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #E5D9DD;
}

.hours-row__day {
  font: 500 14px/1.4 'Work Sans', sans-serif;
  color: #14122E;
}

.hours-row__time {
  font: 400 14px/1.4 'Work Sans', sans-serif;
  color: #4E4A6B;
}

.hours-row__time--closed {
  color: #A79BA1;
}

.map-section {
  position: relative;
  height: min(52vh, 460px);
  border-top: 1px solid #E5D9DD;
  border-bottom: 1px solid #E5D9DD;
}

.map-section #zk-map {
  width: 100%;
  height: 100%;
  background: #E9DEE2;
}

.map-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 500;
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  box-shadow: 0 18px 40px -22px rgba(38, 34, 97, .5);
  padding: 18px 20px;
  max-width: 300px;
  pointer-events: none;
}

.map-overlay-card__label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #7C2A3B;
  margin-bottom: 8px;
}

.map-overlay-card__title {
  font: 600 17px/1.2 'Cormorant Garamond', serif;
  color: #14122E;
  margin-bottom: 5px;
}

.map-overlay-card__text {
  font: 400 12.5px/1.6 'Work Sans', sans-serif;
  color: #4E4A6B;
}

/* =========================================================
   Founders: photo placeholder, quick-nav, board rows,
   navy/rose quote-band variants, accent chips, CTA callout
   ========================================================= */

.founder-photo {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}

@media (min-width: 900px) {
  .founder-photo {
    position: sticky;
    top: 40px;
  }
}

.founder-photo__box {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  border: 1px dashed #C08497;
  background: rgba(192, 132, 151, .09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}

.founder-photo__label {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.founder-photo__caption {
  font: 500 italic 17px/1.45 'Cormorant Garamond', serif;
  color: #8A7E86;
  max-width: 24ch;
}

.founder-nav {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid #E5D9DD;
  padding-left: clamp(28px, 4vw, 48px);
}

.founder-nav__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #E5D9DD;
}

.founder-nav__name {
  display: block;
  font: 600 clamp(21px, 2.4vw, 25px)/1.2 'Cormorant Garamond', serif;
  color: #14122E;
}

.founder-nav__title {
  display: block;
  font: 600 10px/1.4 'Work Sans', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8A7E86;
  margin-top: 7px;
}

.founder-nav__arrow {
  font: 400 18px/1 'Work Sans', sans-serif;
  color: #7C2A3B;
  flex: none;
}

.board-list__heading {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #8A7E86;
  margin: 34px 0 14px;
}

.board-row {
  border-top: 1px solid #E5D9DD;
  padding: 14px 0;
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.board-row:last-child {
  border-bottom: 1px solid #E5D9DD;
}

.board-row__label {
  font: 600 11px/1.6 'Work Sans', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7C2A3B;
  flex: none;
  width: 82px;
}

.board-row__label--member {
  color: #8A7E86;
}

.board-row__value {
  font: 400 15px/1.6 'Work Sans', sans-serif;
  color: #14122E;
}

.pullquote-band--navy {
  background: #262261;
}

.pattern-squares-rose {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23E7C3CC' stroke-width='1' stroke-opacity='0.16'%3E%3Crect x='18' y='18' width='36' height='36'/%3E%3Crect x='18' y='18' width='36' height='36' transform='rotate(45 36 36)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
}

.tag--accent {
  color: #7C2A3B;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: #fff;
}

.btn--maroon {
  background: #7C2A3B;
  color: #F5EEF0;
}

.btn--maroon:hover {
  background: #5C1E2C;
  color: #F5EEF0;
}

.callout-split {
  padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 72px);
  border-top: 1px solid #E5D9DD;
  background: #F5EEF0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
}

.callout-split__text {
  flex: 1.6;
  min-width: 300px;
}

.callout-split__title {
  font: 600 clamp(28px, 3.2vw, 38px)/1.15 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 14px 0 14px;
  text-wrap: balance;
}

.callout-split__cta {
  flex: none;
}

/* =========================================================
   Utility spacing
   ========================================================= */

.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 44px; }

.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  padding: 24px 22px 26px;
  box-shadow: 0 1px 2px rgba(38, 34, 97, .05);
}

.gov-card__tag {
  align-self: flex-start;
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7C2A3B;
  background: #F5EEF0;
  border: 1px solid #E7C3CC;
  border-radius: 999px;
  padding: 6px 11px;
}

.gov-card__name {
  font: 600 22px/1.15 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 0;
}

.gov-card__text {
  font: 400 13px/1.65 'Work Sans', sans-serif;
  color: #4E4A6B;
  margin: 0;
}

.gov-card__meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #E5D9DD;
  font: 600 12px/1 'Work Sans', sans-serif;
  color: #262261;
}

@media (max-width: 860px) {
  .gov-grid { grid-template-columns: 1fr; }
}

.numcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.numcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F5EEF0;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  padding: 26px 24px 28px;
}

.numcard__num {
  width: 46px;
  height: 46px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FBF7F8;
  border: 1px solid #E7C3CC;
  font: 600 20px/1 'Cormorant Garamond', serif;
  color: #7C2A3B;
}

.numcard__title {
  font: 600 22px/1.15 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 0;
}

.numcard__text {
  font: 400 13px/1.65 'Work Sans', sans-serif;
  color: #4E4A6B;
  margin: 0;
}

@media (max-width: 860px) {
  .numcard-grid { grid-template-columns: 1fr; }
}

.tree-section {
  background: #F5EEF0;
  border: 1px solid #E5D9DD;
  border-radius: 6px;
  padding: 52px 56px 56px;
}

/* header */
.tree-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.tree-section__eyebrow {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #7C2A3B;
}

.tree-section__title {
  font: 600 38px/1.1 'Cormorant Garamond', serif;
  color: #14122E;
  margin: 0;
}

.tree-section__lead {
  font: 400 14px/1.7 'Work Sans', sans-serif;
  color: #4E4A6B;
  margin: 0;
  max-width: 60ch;
}

/* holding company */
.tree-root {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 38px;
}

.tree-root__card {
  background: #262261;
  border-radius: 5px;
  padding: 20px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tree-root__label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #C08497;
}

.tree-root__title {
  font: 600 24px/1.1 'Cormorant Garamond', serif;
  color: #F5EEF0;
}

.tree-root__trunk {
  width: 1px;
  height: 28px;
  background: #C08497;
}

/* core divisions + connectors */
.tree-core {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  row-gap: 0;                       /* connectors must touch card tops */
}

.tree-core__spine {
  grid-column: 1 / -1;
  height: 1px;
  background: #C08497;
  margin: 0 calc((100% - 48px) / 8); /* half a column: (grid - 3 gaps) / 8 */
}

.tree-core__drop {
  justify-self: center;
  width: 1px;
  height: 24px;
  background: #C08497;
}

.tree-core__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-top: 3px solid #262261;
  border-radius: 5px;
  padding: 18px 16px 20px;
}

.tree-core__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 24px;                     /* keeps all four baselines aligned */
  margin-bottom: 2px;
  color: #262261;                   /* icon stroke */
}

.tree-core__num {
  font: 600 10px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  color: #7C2A3B;
}

.tree-core__name {
  font: 600 19px/1.15 'Cormorant Garamond', serif;
  color: #14122E;
}

.tree-core__desc {
  font: 400 11px/1.5 'Work Sans', sans-serif;
  color: #4E4A6B;
}

/* divider */
.tree-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 18px;
}

.tree-divider::before,
.tree-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5D9DD;
}

.tree-divider__label {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #8A7E86;
}

/* supporting enterprises */
.tree-sub {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.tree-sub__card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #FBF7F8;
  border: 1px solid #E5D9DD;
  border-radius: 5px;
  padding: 14px 14px 16px;
}

.tree-sub__top {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7C2A3B;                   /* icon stroke */
}

.tree-sub__num {
  font: 600 9px/1 'Work Sans', sans-serif;
  letter-spacing: .16em;
  color: #C08497;
}

.tree-sub__name {
  font: 600 16px/1.15 'Cormorant Garamond', serif;
  color: #14122E;
}

.tree-sub__desc {
  font: 400 10px/1.5 'Work Sans', sans-serif;
  color: #8A7E86;
}

/* icons */
.tree-icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tree-icon--sm { width: 16px; height: 16px; }

.tree-icon__face { fill: #FBF7F8; }  /* front banknote occludes the one behind */

.tree-icon__rm {
  font: 700 7.2px 'Work Sans', sans-serif;
  letter-spacing: -.2px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1000px) {
  .tree-section { padding: 40px 28px 44px; }
  .tree-section__title { font-size: 30px; }
  .tree-core { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .tree-core__spine, .tree-core__drop { display: none; }
  .tree-sub { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .tree-core, .tree-sub { grid-template-columns: 1fr; }
}
