:root {
  --ink: #0b1024; /* darker navy for high contrast */
  --forest: #151729; /* deep anchor */
  --teal-dk: #3f20cb; /* purple accent */
  --teal: #8870da; /* light purple highlight */
  --sage: #706791;
  --sage-lt: #dedaf6;
  --mist: #f0ebff;
  --gold: #d7b779;
  --gold-lt: #e3cfa8;
  --gold-pale: #eedcbc;
  --parch: #f0e7e1;
  --cream: #f4eefc; /* soft lilac cream */
  --off: #fbf8ff; /* very light purple background */
  --white: #ffffff;
  --text-body: #2b2e48; /* readable body text */
  --text-muted: #7b78a5;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.76, 0, 0.24, 1);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 2px 12px rgba(22, 28, 45, 0.06);
  --shadow-md: 0 8px 32px rgba(22, 28, 45, 0.09);
  --shadow-lg: 0 20px 60px rgba(22, 28, 45, 0.12);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--sans);
  background: var(--off);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--forest);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── SKIP LINK ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ── LOADER ───────────────────────────────────── */
#site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s;
}
#site-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.loader-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
  line-height: 1;
}
.loader-name em {
  font-style: italic;
  color: var(--gold);
}
.loader-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(178, 152, 112, 0.5);
}
.loader-track {
  width: 180px;
  height: 1px;
  background: rgba(244, 240, 245, 0.12);
  position: relative;
  overflow: hidden;
}
.loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  transition: width 0.08s linear;
}
.loader-pct {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(178, 152, 112, 0.45);
  font-variant-numeric: tabular-nums;
}

/* ── SHIMMER ──────────────────────────────────── */
@keyframes shimmer {
  0% {
    background-position: -900px 0;
  }
  100% {
    background-position: 900px 0;
  }
}
.sk,
.sk-d {
  background-size: 900px 100%;
  animation: shimmer 1.8s infinite linear;
  border-radius: var(--r-sm);
}
.sk {
  background: linear-gradient(
    90deg,
    rgba(22, 28, 45, 0.05) 25%,
    rgba(22, 28, 45, 0.11) 50%,
    rgba(22, 28, 45, 0.05) 75%
  );
}
.sk-d {
  background: linear-gradient(
    90deg,
    rgba(244, 240, 245, 0.04) 25%,
    rgba(244, 240, 245, 0.09) 50%,
    rgba(244, 240, 245, 0.04) 75%
  );
}
.sk-r {
  border-radius: 100px;
}
.sk-circ {
  border-radius: 50%;
}

/* ── SKELETON LAYOUT ──────────────────────────── */
#skel {
  transition: opacity 0.4s var(--ease);
}
#skel.gone {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
}
#app {
  opacity: 0;
  transition: opacity 0.55s var(--ease) 0.15s;
}
#app.show {
  opacity: 1;
}

.sk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 198;
  height: 72px;
  background: rgba(249, 248, 245, 0.94);
  border-bottom: 1px solid rgba(22, 28, 45, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}
.sk-hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
}
.sk-hleft {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.sk-hright {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.sk-hcell {
  background: rgba(244, 240, 245, 0.04);
}
.sk-strip {
  background: var(--gold);
  height: 52px;
  background: linear-gradient(
    90deg,
    rgba(22, 28, 45, 0.07) 25%,
    rgba(22, 28, 45, 0.16) 50%,
    rgba(22, 28, 45, 0.07) 75%
  );
  background-size: 900px 100%;
  animation: shimmer 1.4s infinite linear;
}
.sk-sec {
  padding: 96px 60px;
  background: var(--off);
}
.sk-sec-dk {
  padding: 96px 60px;
  background: var(--ink);
}
.sk-sec-cr {
  padding: 96px 60px;
  background: var(--cream);
}
.sk-g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.sk-g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}
.sk-g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.sk-g22 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sk-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sk-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sk-card {
  background: var(--white);
  border: 1px solid rgba(22, 28, 45, 0.06);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sk-card-d {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 240, 245, 0.06);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sk-34 {
  aspect-ratio: 3/4;
}
.sk-statbar {
  margin-top: 20px;
  background: rgba(244, 240, 245, 0.05);
  border: 1px solid rgba(178, 152, 112, 0.15);
  border-radius: var(--r-md);
  padding: 18px 24px;
  display: flex;
  gap: 28px;
  align-items: center;
}
@media (max-width: 800px) {
  .sk-nav {
    padding: 0 20px;
  }
  .sk-hero {
    grid-template-columns: 1fr;
  }
  .sk-hright {
    display: none;
  }
  .sk-hleft {
    padding: 100px 20px 48px;
  }
  .sk-sec,
  .sk-sec-dk,
  .sk-sec-cr {
    padding: 72px 20px;
  }
  .sk-g2,
  .sk-g4,
  .sk-g3 {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
  PAGE SYSTEM
  ═══════════════════════════════════════════════ */
.page {
  display: none;
}
.page.active {
  display: block;
  animation: pgIn 0.5s var(--ease) both;
}
@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════
  NAV
  ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(249, 248, 245, 0.92);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(22, 28, 45, 0.055);
  transition:
    box-shadow 0.4s,
    background 0.4s;
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(249, 248, 245, 0.97);
}
.nav-brand {
  display: flex;
  flex-direction: row;
  gap: 2px;
  cursor: pointer;
}
.nav-inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 10px;
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-brand-tag {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}
.nav-lnk {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-body);
  padding: 9px 16px;
  border-radius: var(--r-sm);
  transition:
    color 0.2s,
    background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-lnk:hover {
  color: var(--ink);
  background: rgba(22, 28, 45, 0.045);
}
.nav-lnk.on {
  color: var(--ink);
  font-weight: 500;
}
.nav-lnk.on::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.nav-hire {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: 100px;
  transition:
    background 0.25s,
    transform 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-hire:hover {
  background: var(--teal-dk);
  transform: translateY(-1px);
}
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.hbg:hover {
  background: rgba(22, 28, 45, 0.05);
}
.hbg span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.hbg.on span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hbg.on span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hbg.on span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mob {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 190;
  background: var(--white);
  border-bottom: 1px solid rgba(22, 28, 45, 0.07);
  padding: 12px 20px 24px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 60px rgba(22, 28, 45, 0.12);
}
.mob.on {
  display: flex;
}
.mob .nav-lnk {
  font-size: 16px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
}
.mob .nav-hire {
  margin-top: 10px;
  justify-content: center;
  border-radius: var(--r-md);
  padding: 15px;
}

/* ═══════════════════════════════════════════════
  SHARED ATOMS
  ═══════════════════════════════════════════════ */
.ew {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.ew::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.ew.dim {
  color: rgba(178, 152, 112, 0.7);
}
.ew.dim::before {
  background: rgba(178, 152, 112, 0.7);
}

.h-display {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h-display em {
  font-style: italic;
  color: var(--sage);
}
.h-display.lt {
  color: var(--cream);
}
.h-display.lt em {
  color: var(--gold);
}

.body {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--text-body);
  font-weight: 300;
}
.muted {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-muted);
  font-weight: 300;
}

/* Buttons */
.b-ink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 100px;
  transition:
    background 0.25s,
    transform 0.2s,
    gap 0.25s;
  cursor: pointer;
}
.b-ink:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
  gap: 14px;
}
.b-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid rgba(22, 28, 45, 0.17);
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.2s,
    gap 0.25s;
  cursor: pointer;
}
.b-outline:hover {
  border-color: var(--ink);
  background: rgba(22, 28, 45, 0.03);
  transform: translateY(-2px);
  gap: 14px;
}
.b-outline.lt {
  color: rgba(244, 240, 245, 0.75);
  border-color: rgba(244, 240, 245, 0.22);
}
.b-outline.lt:hover {
  color: var(--cream);
  border-color: rgba(244, 240, 245, 0.5);
  background: rgba(244, 240, 245, 0.05);
}
.b-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 100px;
  transition:
    background 0.25s,
    transform 0.2s,
    gap 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.b-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  gap: 14px;
  box-shadow: 0 8px 28px rgba(178, 152, 112, 0.3);
}

/* Reveal */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════
  HOME, HERO
  ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--teal) 12%, var(--forest) 100%);
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
  overflow: hidden;
  position: relative;
}
/* Left */
.hero-l {
  padding: 80px 64px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(178, 152, 112, 0.12);
  border: 1px solid rgba(178, 152, 112, 0.22);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(234, 217, 184, 0.58);
  font-weight: 300;
  max-width: 430px;
  margin-bottom: 40px;
}
.hero-acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
.hero-statbar {
  margin-top: 52px;
  display: flex;
  gap: 0;
  background: rgba(244, 240, 245, 0.055);
  border: 1px solid rgba(178, 152, 112, 0.18);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  overflow: hidden;
  width: fit-content;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 28px;
  border-right: 1px solid rgba(178, 152, 112, 0.12);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-n {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.hero-stat-l {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(139, 173, 163, 0.7);
  margin-top: 3px;
}

/* Right mosaic */
.hero-r {
  height: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
}
.hero-cell {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.hero-cell-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}
.hero-cell:hover .hero-cell-bg {
  transform: scale(1.04);
}
.hg1 {
  background: linear-gradient(150deg, var(--teal) 0%, var(--forest) 100%);
}
.hg2 {
  background: linear-gradient(150deg, var(--forest) 0%, var(--teal-dk) 100%);
}
.hg3 {
  background: linear-gradient(150deg, var(--teal-dk) 0%, var(--forest) 100%);
}
.hg4 {
  background: linear-gradient(150deg, var(--forest) 0%, var(--ink) 100%);
}
.hero-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 27, 39, 0.72) 0%,
    transparent 60%
  );
}
.hero-cell-lbl {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(234, 217, 184, 0.45);
}
.hero-cell-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.12;
}

/* ═══════════════════════════════════════════════
  MARQUEE
  ═══════════════════════════════════════════════ */
.mqstrip {
  background: var(--gold);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.mqinner {
  display: inline-flex;
  animation: mq 24s linear infinite;
}
.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(22, 28, 45, 0.7);
  padding: 0 28px;
}
.mqdot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(22, 28, 45, 0.3);
  flex-shrink: 0;
}
@keyframes mq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════
  INTRO / WHO WE ARE
  ═══════════════════════════════════════════════ */
.intro {
  background: var(--off);
  padding: 108px 60px;
}
.intro-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-l .ew {
  margin-bottom: 18px;
}
.intro-l h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.intro-l p {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 30px;
}
.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.icard {
  background: var(--white);
  border: 1px solid rgba(22, 28, 45, 0.06);
  border-radius: var(--r-md);
  padding: 22px;
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.icard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(178, 152, 112, 0.25);
}
.icard-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(126, 139, 120, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.icard h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.icard p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
  SERVICES PREVIEW (HOME)
  ═══════════════════════════════════════════════ */
.svcprev {
  background: linear-gradient(180deg, var(--teal-dk) 0%, var(--forest) 100%);
  padding: 108px 60px;
}
.svcprev-in {
  max-width: 1200px;
  margin: 0 auto;
}
.svcprev-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.svcprev-hd h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-top: 10px;
}
.svcgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.svcard {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.svcard-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.svcard:hover .svcard-bg {
  transform: scale(1.06);
}
.sg1 {
  background: linear-gradient(160deg, var(--teal) 0%, var(--forest) 100%);
}
.sg2 {
  background: linear-gradient(160deg, var(--teal-dk) 0%, var(--teal) 100%);
}
.sg3 {
  background: linear-gradient(160deg, var(--teal-dk) 0%, var(--forest) 100%);
}
.sg4 {
  background: linear-gradient(160deg, var(--forest) 0%, var(--ink) 100%);
}
.svcard-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 25, 36, 0.92) 0%,
    rgba(17, 25, 36, 0.1) 55%,
    transparent 100%
  );
}
.svcard-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
}
.svcard-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.svcard-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}
.svcard-arr {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(178, 152, 112, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.svcard:hover .svcard-arr {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════
  MISSION / VISION
  ═══════════════════════════════════════════════ */
.mission {
  background: var(--cream);
  padding: 108px 60px;
}
.mission-in {
  max-width: 1200px;
  margin: 0 auto;
}
.mission-hd {
  text-align: center;
  margin-bottom: 64px;
}
.mission-hd h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.mvcols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.mvcol {
  background: var(--white);
  padding: 52px;
  transition: box-shadow 0.35s;
  position: relative;
}
.mvcol::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.mvcol:hover::before {
  transform: scaleX(1);
}
.mvcol:hover {
  box-shadow: var(--shadow-lg);
}
.mvcol-ico {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.mvcol h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.mvcol p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-body);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
  TESTIMONIALS
  ═══════════════════════════════════════════════ */
.testi {
  background: var(--forest);
  padding: 108px 60px;
  overflow: hidden;
  position: relative;
}
.testi::before {
  content: "\201C";
  position: absolute;
  top: -80px;
  right: 32px;
  font-family: var(--serif);
  font-size: 420px;
  line-height: 1;
  color: rgba(178, 152, 112, 0.05);
  pointer-events: none;
  user-select: none;
}
.testi-in {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testi-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.testi-hd h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 10px;
}
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tcard {
  background: rgba(255, 255, 255, 0.042);
  border: 1px solid rgba(244, 240, 245, 0.07);
  border-radius: var(--r-lg);
  padding: 30px;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.tcard:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(178, 152, 112, 0.18);
  transform: translateY(-3px);
}
.tstars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.tstars span {
  color: var(--gold);
  font-size: 13px;
}
.tquote {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.68;
  color: rgba(244, 240, 245, 0.82);
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 2px solid rgba(178, 152, 112, 0.35);
}
.tauthor {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tavatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  flex-shrink: 0;
}
.tname {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.trole {
  font-size: 11.5px;
  color: rgba(139, 173, 163, 0.6);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════
  STATS BAR
  ═══════════════════════════════════════════════ */
.statsbar {
  background: var(--gold);
  padding: 0 60px;
}
.statsbar-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(22, 28, 45, 0.1);
}
.statitem {
  padding: 52px 36px;
  border-right: 1px solid rgba(22, 28, 45, 0.1);
  text-align: center;
  transition: background 0.25s;
}
.statitem:hover {
  background: rgba(22, 28, 45, 0.05);
}
.statnum {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.statlbl {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 28, 45, 0.52);
}

/* ═══════════════════════════════════════════════
  CTA BAND
  ═══════════════════════════════════════════════ */
.ctaband {
  background: var(--off);
  padding: 108px 60px;
  text-align: center;
}
.ctaband-in {
  max-width: 640px;
  margin: 0 auto;
}
.ctaband h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 12px 0 18px;
}
.ctaband p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 32px;
}
.ctaband-acts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
  PAGE HERO (inner pages)
  ═══════════════════════════════════════════════ */
.pghero {
  background: linear-gradient(160deg, var(--teal), var(--forest));
  padding: 148px 60px 88px;
  position: relative;
  overflow: hidden;
}
.pghero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(178, 152, 112, 0.28),
    transparent
  );
}
.pghero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: repeating-linear-gradient(
    90deg,
    rgba(223, 175, 103, 0.135) 0px,
    rgba(139, 70, 151, 0.413) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}
.pghero-in {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pghero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 14px 0 18px;
  max-width: 680px;
}
.pghero h1 em {
  font-style: italic;
  color: var(--gold);
}
.pghero p {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(234, 217, 184, 0.5);
  font-weight: 300;
  max-width: 500px;
}

/* ═══════════════════════════════════════════════
  SERVICES PAGE
  ═══════════════════════════════════════════════ */
.svcfull {
  background: var(--off);
  padding: 80px 60px 108px;
}
.svcfull-in {
  max-width: 1200px;
  margin: 0 auto;
}
.svclist {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(22, 28, 45, 0.06);
}
.svcrow {
  display: grid;
  grid-template-columns: 72px 1fr 52px;
  align-items: center;
  gap: 36px;
  background: var(--white);
  padding: 32px 36px;
  border-bottom: 1px solid rgba(22, 28, 45, 0.055);
  transition:
    background 0.25s,
    transform 0.25s;
  cursor: pointer;
}
.svcrow:hover {
  background: var(--cream);
  transform: translateX(6px);
}
.svcrow:hover .svcrow-arr {
  background: var(--gold);
  border-color: var(--gold);
}
.svcrnum {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: rgba(22, 28, 45, 0.1);
  line-height: 1;
  letter-spacing: -0.02em;
}
.svcinfo h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -0.005em;
}
.svcinfo p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}
.svcrow-arr {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(22, 28, 45, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
  transition:
    background 0.25s,
    border-color 0.25s;
}

/* Training section */
.training {
  background: var(--cream);
  padding: 108px 60px;
}
.training-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.training-vis {
  position: relative;
  height: 520px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal), var(--teal-dk));
}
.training-vis-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dk) 100%);
}
.training-vis-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(178, 152, 112, 0.04) 0,
      rgba(178, 152, 112, 0.04) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(178, 152, 112, 0.04) 0,
      rgba(178, 152, 112, 0.04) 1px,
      transparent 1px,
      transparent 48px
    );
  pointer-events: none;
}
.training-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold);
  padding: 22px 26px;
}
.training-badge-n {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.training-badge-l {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 28, 45, 0.55);
  margin-top: 4px;
}
.training-txt h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 12px 0 18px;
}
.training-txt p {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 14px;
}
.chklist {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.chkitem {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.55;
}
.chk-ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(126, 139, 120, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════
  ABOUT PAGE
  ═══════════════════════════════════════════════ */
.astory {
  background: var(--off);
  padding: 80px 60px 108px;
}
.astory-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* appended: scroll-to-top, marquee, tel links, whatsapp CTA */
.scroll-top-btn{position:fixed;right:18px;bottom:18px;display:grid;place-items:center;width:44px;height:44px;border-radius:8px;background:var(--brand);color:#fff;box-shadow:var(--shadow);border:none;cursor:pointer;opacity:0;transform:translateY(8px);transition:opacity .25s,transform .25s;z-index:9999}
.scroll-top-btn.show{opacity:1;transform:translateY(0)}
.mqstrip{cursor:grab}
.mqstrip:active{cursor:grabbing}
a[href^="tel"]{color:inherit;text-decoration:none}
.b-whatsapp{background:#25D366;color:#042A10;padding:10px 14px;border-radius:8px;display:inline-flex;align-items:center;gap:10px;font-weight:600;text-decoration:none}
.b-whatsapp:focus,.b-whatsapp:hover{filter:brightness(.95);text-decoration:none}
.astory-txt h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 12px 0 22px;
}
.astory-txt p {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 18px;
}
.avis {
  position: relative;
  height: 580px;
}

.avis-gold {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  background: var(--gold);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.avis-gold-n {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.avis-gold-l {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 28, 45, 0.55);
  margin-top: 5px;
  line-height: 1.4;
}

/* Values */
.values {
  background: var(--white);
  padding: 108px 60px;
}
.values-in {
  max-width: 1200px;
  margin: 0 auto;
}
.values-hd {
  text-align: center;
  margin-bottom: 60px;
}
.values-hd h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vcard {
  padding: 34px;
  border: 1px solid rgba(22, 28, 45, 0.065);
  border-radius: var(--r-xl);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.vcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(178, 152, 112, 0.28);
}
.vcard-ico {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.vcard h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 9px;
  letter-spacing: -0.005em;
}
.vcard p {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--text-muted);
  font-weight: 300;
}

/* Team */
.team {
  background: var(--cream);
  padding: 108px 60px;
}
.team-in {
  max-width: 1200px;
  margin: 0 auto;
}
.team-hd {
  margin-bottom: 52px;
}
.team-hd h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tmcard {
  background: var(--white);
  border-radius: var(--r-lg);
  height: 90%;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.tmcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.tmavy {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tmavy-ltr {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}
.tminfo {
  padding: 18px 20px;
}
.tmname {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.tmrole {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
  EVENTS PAGE
  ═══════════════════════════════════════════════ */
.evgrid {
  background: var(--off);
  padding: 80px 60px 108px;
}
.evgrid-in {
  max-width: 1200px;
  margin: 0 auto;
}
.evlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.evcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(22, 28, 45, 0.06);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.evcard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.evcard-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.evcard-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.evcard-body {
  padding: 22px 24px;
}
.evcard-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.evcard-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.evcard-desc {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--text-muted);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
  CONTACT PAGE
  ═══════════════════════════════════════════════ */
.contact {
  background: var(--off);
  padding: 80px 60px 108px;
}
.contact-in {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}
.contact-side h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 12px 0 18px;
}
.contact-side p {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 36px;
}
.cinfos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cinfo {
  background: var(--white);
  border: 1px solid rgba(22, 28, 45, 0.06);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.cinfo:hover {
  border-color: rgba(178, 152, 112, 0.3);
  box-shadow: var(--shadow-sm);
}
.cinfo-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(126, 139, 120, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-lbl {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.cinfo-val {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.cinfo-val a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.cinfo-val a:hover {
  color: var(--gold);
}
.hours {
  margin-top: 34px;
}
.hours h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
}
.hrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(22, 28, 45, 0.06);
}
.hrow:last-child {
  border-bottom: none;
}
.hday {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 300;
}
.htime {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}

/* Contact CTA Right Column */
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-card {
  background: var(--white);
  border: 1px solid rgba(22, 28, 45, 0.06);
  border-radius: var(--r-xl);
  padding: 40px;
  transition: all 0.3s var(--ease);
}
.cta-card:hover {
  border-color: rgba(178, 152, 112, 0.2);
  box-shadow: var(--shadow-md);
}
.cta-card p.ew {
  margin-bottom: 8px;
}
.cta-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.1;
}
.cta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(22, 28, 45, 0.04);
  transition: all 0.2s;
  cursor: pointer;
}
.cta-item:last-child {
  border-bottom: none;
}
.cta-item:hover {
  padding-left: 4px;
  color: var(--gold);
}
.cta-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(126, 139, 120, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4a7a6d;
  transition: all 0.2s;
}
.cta-item:hover .cta-ico {
  background: rgba(215, 183, 121, 0.15);
  color: var(--gold);
}
.cta-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.cta-item:hover span {
  color: var(--gold);
}

/* Primary CTA Card */
.cta-card.primary {
  background: linear-gradient(135deg, #3f20cb 0%, #2a1b8a 100%);
  border-color: rgba(215, 183, 121, 0.15);
}
.cta-card.primary:hover {
  box-shadow: 0 12px 40px rgba(63, 32, 203, 0.2);
}
.cta-card.primary p.ew,
.cta-card.primary h3 {
  color: var(--cream);
}
.cta-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244, 240, 245, 0.75);
  margin-bottom: 24px;
  font-weight: 300;
}
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(215, 183, 121, 0.25);
}

/* Map */
.maprow {
  background: var(--forest);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mapgrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(178, 152, 112, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(178, 152, 112, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
}
.mapdot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 8px rgba(178, 152, 112, 0.18),
    0 0 0 18px rgba(178, 152, 112, 0.08);
}
.maptxt {
  text-align: center;
  position: relative;
  z-index: 1;
}
.maptxt p {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(178, 152, 112, 0.55);
  margin-bottom: 7px;
}
.maptxt h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
}

/* ═══════════════════════════════════════════════
  FOOTER
  ═══════════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, var(--ink) 0%, #0a1114 100%);
  padding: 96px 60px 48px;
  border-top: 1px solid rgba(215, 183, 121, 0.08);
}
.footer-g {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244, 240, 245, 0.06);
  margin-bottom: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.fbrand-n {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.fbrand-t {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.95;
}
.fbrand-d {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(234, 217, 184, 0.48);
  max-width: 280px;
  font-weight: 300;
}
.fcol-t {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.9;
}
.flinks {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.flinks a {
  font-size: 13.5px;
  color: rgba(234, 217, 184, 0.52);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  font-weight: 300;
  position: relative;
}
.flinks a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.flinks a:hover::before {
  width: 100%;
}
.flinks a:hover {
  color: var(--cream);
}
.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.fcopy {
  font-size: 12px;
  color: rgba(234, 217, 184, 0.28);
  font-weight: 300;
}
.fsocs {
  display: flex;
  gap: 10px;
}
.fsoc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(215, 183, 121, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(215, 183, 121, 0.45);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.fsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(215, 183, 121, 0.12);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
  RESPONSIVE
  ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-r {
    min-height: 340px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
  .hero-statbar {
    margin-top: 40px;
    position: static;
  }
  .svcgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mvcols,
  .intro-in,
  .training-in,
  .astory-in,
  .contact-in {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .tcards {
    grid-template-columns: 1fr 1fr;
  }
  .statsbar-in {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-g {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .tgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }
  .nav-links,
  .nav-hire {
    display: none;
  }
  .hbg {
    display: flex;
  }
  .hero-l {
    padding: 100px 24px 48px;
  }
  .intro,
  .svcprev,
  .mission,
  .testi,
  .statsbar,
  .ctaband,
  .svcfull,
  .training,
  .astory,
  .values,
  .team,
  .evgrid,
  .contact,
  .footer,
  .pghero {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-r {
    grid-template-columns: 1fr 1fr;
    min-height: 240px;
  }
  .svcgrid {
    grid-template-columns: 1fr 1fr;
  }
  .vgrid,
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }
  .evlist {
    grid-template-columns: 1fr 1fr;
  }
  .footer-g {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 520px) {
  .hero-h1 {
    font-size: 38px;
  }
  .hero-r {
    display: none;
  }
  .hero-statbar {
    flex-wrap: wrap;
  }
  .svcgrid,
  .vgrid,
  .tgrid,
  .evlist,
  .tcards {
    grid-template-columns: 1fr;
  }
  .intro-cards {
    grid-template-columns: 1fr;
  }
  .statsbar-in {
    grid-template-columns: 1fr;
  }
  .svcrow {
    grid-template-columns: 52px 1fr 40px;
    gap: 16px;
    padding: 22px 18px;
  }
  .footer-g {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer {
    padding: 56px 20px 32px;
  }
  .fbot {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .fsocs {
    justify-content: center;
  }
}
