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

:root {
  --font-display: 'Fraunces', Georgia, serif;
  --navy: #0B1F3A;
  --navy-deep: #061526;
  --navy-mid: #132d52;
  --navy-light: #1a3a6b;
  --blue: #2F6EB5;
  --gold: #C6933A;
  --gold-light: #E8B96A;
  --gold-pale: #F7EDD8;
  --cream: #F3F5F8;
  --cream-dark: #E6EAF0;
  --white: #FFFFFF;
  --text: #152536;
  --text-muted: #5A6A7A;
  --border: #D5DCE6;
  --green: #2D7A56;
  --red-soft: #C0392B;
  --shadow-sm: 0 2px 16px rgba(11,31,58,0.07);
  --shadow-md: 0 8px 28px rgba(11,31,58,0.10);
  --shadow-lg: 0 16px 48px rgba(11,31,58,0.14);
  --page-pad: clamp(16px, 4vw, 32px);
  --section-pad: clamp(64px, 9vw, 104px);
  --radius: 14px;
  --radius-lg: 20px;
  --touch: 44px;
  --nav-h: 100px;
  --content: 1120px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 48px);
}
body {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: clamp(15px, 0.35vw + 14.5px, 17px);
  line-height: 1.6;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-left,
.topbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-sep { opacity: 0.45; }
.arn-pill {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* ── NAV ── */
nav { background: var(--white); position: sticky; top: 0; z-index: 300; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { max-width: var(--content); margin: 0 auto; padding: 0 var(--page-pad); display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); position: relative; z-index: 260; }
.logo { display: flex; align-items: center; text-decoration: none; gap: 0; }
.logo-img { height: 98px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 26px; align-items: center; height: 100%; }
.nav-links > li { display: flex; align-items: center; height: 100%; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 6px; font-weight: 600 !important; font-size: 14px !important; transition: all 0.2s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(198,147,58,0.25) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: var(--touch);
  min-height: var(--touch);
  background: transparent;
  border: none;
  border-radius: 10px;
  z-index: 260;
}
.hamburger:hover { background: var(--cream); }
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  display: block;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 96px) var(--page-pad) clamp(56px, 8vw, 90px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 75% at 88% 50%, rgba(198,147,58,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 12% 85%, rgba(198,147,58,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 50% 10%, rgba(26,58,107,0.5) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198,147,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.hero-inner {
  max-width: var(--content);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.1rem, 4.2vw + 1rem, 3.875rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: clamp(15px, 1.1vw + 12px, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  max-width: 36rem;
  margin-bottom: 38px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  min-height: var(--touch);
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198,147,58,0.35);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  min-height: var(--touch);
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 12px 22px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-navy:hover { background: var(--blue); transform: translateY(-1px); }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(198,147,58,0.24);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(14px);
  animation: fadeUp 0.7s ease 0.35s backwards;
}
.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.hstat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 14px;
  transition: background 0.2s;
}
.hstat:hover { background: rgba(255,255,255,0.09); }
.hstat-n {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  line-height: 1;
}
.hstat-l {
  font-size: 11.5px;
  color: rgba(255,255,255,0.42);
  margin-top: 6px;
  line-height: 1.4;
}
.amfi-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(198,147,58,0.1);
  border: 1px solid rgba(198,147,58,0.26);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}
.amfi-check {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  color: var(--navy);
  font-weight: 700;
}
.amfi-t1 { font-size: 14px; font-weight: 600; color: var(--white); }
.amfi-t2 { font-size: 11.5px; color: rgba(255,255,255,0.42); margin-top: 2px; }
.hero-quote {
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
  line-height: 1.65;
}

.count-up { display: inline-block; }
@keyframes glowPulse { 0%,100%{box-shadow:0 0 0 0 rgba(198,147,58,0)} 50%{box-shadow:0 0 0 8px rgba(198,147,58,0.15)} }

/* ── SECTION BASE ── */
section { padding: var(--section-pad) var(--page-pad); }
.si { max-width: var(--content); margin: 0 auto; }
.stag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.stag-line { width: 28px; height: 2px; background: var(--gold); border-radius: 1px; }
.stag-text { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
h2.sh {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
h2.sh-light { color: var(--white); }
.sdesc { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 38rem; font-weight: 400; }
.sdesc-light { color: rgba(255,255,255,0.62); }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-head { max-width: 760px; margin-bottom: 36px; }
.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.about-summary {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 22px;
  padding: 34px;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-summary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(198,147,58,0.2) 0%, transparent 40%);
  pointer-events: none;
}
.about-summary h3 {
  position: relative;
  z-index: 1;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--white);
  font-weight: 700;
}
.about-summary p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 22px;
  font-weight: 300;
}
.about-summary-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.about-summary-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #eef3fb;
  font-size: 15px;
  line-height: 1.6;
}
.about-summary-item span { color: var(--gold-light); font-weight: 700; }
.about-mini-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
}
.about-mini-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 14px;
}
.about-mini-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.about-mini-stat span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.5;
}
.about-points { display: grid; gap: 18px; }
.pillar {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15,33,55,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,33,55,0.09);
}
.p-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  line-height: 1;
}
.p-title { font-weight: 600; font-size: 18px; color: var(--navy); margin-bottom: 7px; }
.p-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ── HOW WE GUIDE ── */
.gsm-example { background: var(--white); }
.example-head { max-width: 40rem; margin-bottom: 36px; }

.guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.guide-process {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  padding: 22px 0 0;
}
.guide-process-label {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.guide-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.guide-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.guide-steps span {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.guide-steps strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.guide-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
.guide-process-note {
  margin: 18px 0 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--navy);
  font-style: italic;
}

.guide-chat {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 18px 18px 16px;
}
.guide-chat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.guide-chat-top span:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.guide-chat-top span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.guide-turn {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}
.guide-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.guide-turn.client .guide-avatar {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.guide-turn.gsm .guide-avatar {
  background: var(--navy);
  color: var(--gold-light);
}
.guide-bubble {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 4px 14px 14px 14px;
}
.guide-turn.gsm .guide-bubble {
  background: var(--navy);
  border-color: transparent;
  border-radius: 14px 4px 14px 14px;
}
.guide-who {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.guide-turn.gsm .guide-who { color: var(--gold-light); }
.guide-bubble p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}
.guide-turn.gsm .guide-bubble p {
  color: rgba(255,255,255,0.9);
  font-family: 'Fraunces', serif;
  font-size: 17px;
  line-height: 1.45;
}

.guide-close {
  margin-top: 8px;
  padding: 16px 16px 14px;
  background: var(--white);
  border-top: 2px solid var(--gold);
}
.guide-close strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.25;
}
.guide-close p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ── WHO ── */
.who { background: var(--cream); }
.who-head { max-width: 48rem; margin-bottom: 40px; }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.who-card {
  border-radius: 14px;
  padding: 32px 30px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.who-card-yes { border: 2px solid #D4EDDA; }
.who-card-yes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2D7A56, #4CAF50);
}
.who-card-no { border: 2px solid #FADADD; }
.who-card-no::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C0392B, #E74C3C);
}
.who-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.who-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.who-badge-yes { background: #D4EDDA; color: var(--green); }
.who-badge-no { background: #FADADD; color: var(--red-soft); }
.who-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.45rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.who-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.who-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 300;
}
.who-list li::before {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.who-list-yes li::before { content: '✓'; color: var(--green); }
.who-list-no li::before { content: '✕'; color: var(--red-soft); }
.who-bottom {
  margin-top: 32px;
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.who-bottom-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.who-bottom-text {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  font-weight: 300;
  max-width: 42rem;
}
.who-bottom-btn { flex-shrink: 0; }

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(47,110,181,0.22) 0%, transparent 55%);
  pointer-events: none;
}
.philosophy .si { position: relative; z-index: 1; }
.philo-head { max-width: 36rem; margin-bottom: 36px; }
.philo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.philo-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 26px 24px 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.philo-list li:nth-child(odd) { padding-right: 28px; border-right: 1px solid rgba(255,255,255,0.12); }
.philo-list li:nth-child(even) { padding-left: 28px; }
.philo-list span {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.philo-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.philo-list p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.avoid-band {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.avoid-band > h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 20px;
}
.avoid-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.avoid-items p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.avoid-items strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* ── SERVICES ── */
.services { background: var(--white); }
.services-head { max-width: 36rem; margin-bottom: 28px; }
.svc-index { border-top: 1px solid var(--border); }
.svc-row {
  display: grid;
  grid-template-columns: 56px minmax(160px, 0.9fr) minmax(0, 1.4fr) 28px;
  gap: 16px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, padding-left 0.2s;
}
.svc-row:hover { background: var(--cream); padding-left: 14px; }
.svc-idx {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}
.svc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.svc-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.svc-go {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.2s;
  justify-self: end;
}
.svc-row:hover .svc-go { transform: translateX(4px); }

/* ── TEAM SECTION ── */
.team { background: var(--cream); }
.team-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.team-section-head .sh { margin-bottom: 10px; max-width: 22ch; }
.view-full-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 11px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
}
.view-full-team-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tm-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
}
.tm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.tm-photo .tm-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
}

.team-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.team-slider-nav,
.team-slider-count {
  display: none;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card-copy {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.team-card-name {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 0.8vw + 1rem, 1.45rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.team-card-role {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
}
.team-card-exp {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Legacy carousel bits kept for overlay safety */
.carousel-nav { display: flex; align-items: center; gap: 12px; margin-top: 18px; justify-content: center; }
.c-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--navy); transition: all 0.2s; flex-shrink: 0; }
.c-btn:hover:not(:disabled) { background: var(--navy); color: var(--white); border-color: var(--navy); }
.c-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.c-dots { display: flex; gap: 6px; }
.c-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}
.c-dot.active { background: var(--gold); transform: scale(1.4); }

/* ── TESTIMONIALS ── */
.testi { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.tst-carousel-outer { margin-top: 36px; position: relative; }
.tst-wrap { overflow: hidden; }
.tst-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
}
.tst-track:active { cursor: grabbing; }
.tst-slide {
  flex: 0 0 calc(50% - 10px);
  min-width: min(100%, 280px);
  display: flex;
}
.testcard {
  background: var(--cream);
  border-radius: 12px;
  padding: 22px 22px 18px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.testcard:hover {
  box-shadow: 0 10px 28px rgba(11,31,58,0.08);
  transform: translateY(-2px);
  background: var(--white);
}
.testcard::before {
  content: '"';
  font-family: 'Fraunces', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 4px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
.test-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.test-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  overflow: hidden;
  flex: 1 1 auto;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  flex-shrink: 0;
}
.test-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.test-desig { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; font-weight: 300; line-height: 1.35; }
.tst-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

/* ── BOOKS ── */
.books { background: var(--cream); }
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
  align-items: stretch;
}
.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(11,31,58,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11,31,58,0.1);
}
.book-cover-wrap {
  height: 210px;
  padding: 18px 16px 12px;
  background: linear-gradient(180deg, #eef1f5 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.book-cover {
  height: 100%;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(11,31,58,0.18));
}
.book-cover-wrap-soon {
  align-items: center;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border-bottom-color: rgba(255,255,255,0.08);
}
.book-cover-soon {
  width: min(100%, 140px);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(198,147,58,0.35);
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  text-align: center;
  color: var(--gold-light);
}
.book-cover-soon span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.book-cover-soon strong {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}
.book-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.book-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.book-label-soon { color: var(--gold-light); }
.book-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 0.8vw + 1rem, 1.45rem);
  line-height: 1.22;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}
.book-sub {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 400;
}
.book-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.book-tag {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  color: var(--navy);
}
.book-tag-soon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
}
.book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold-pale);
  border: 1px solid rgba(198,147,58,0.28);
  border-radius: 6px;
  padding: 10px 12px;
  transition: background 0.2s, transform 0.2s;
  width: fit-content;
}
.book-link:hover { background: #f3dfb6; transform: translateY(-1px); }
.book-soon-note {
  margin: auto 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
}
.upcoming-card {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-color: rgba(198,147,58,0.22);
}
.upcoming-card .book-title { color: var(--white); }
.upcoming-card .book-sub { color: rgba(255,255,255,0.7); }
.books-head {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 8px;
}
.ceo-pic-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(11,31,58,0.08);
}
.ceo-pic {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.books-heading { font-size: clamp(1.9rem, 3vw + 1rem, 2.75rem); line-height: 1.08; margin: 0 0 12px; }
.books-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  max-width: 40rem;
  margin: 0 0 8px;
  font-weight: 400;
}

/* ── NEWSLETTER ── */
.newsletter { background: var(--white); padding-top: 0; }
.newsletter-box { max-width: 1200px; margin: 0 auto; background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 22px; padding: 38px 40px; display: grid; grid-template-columns: 1.2fr auto; gap: 24px; align-items: center; border: 1px solid rgba(198,147,58,0.18); box-shadow: 0 16px 44px rgba(11,31,58,0.14); }
.newsletter-label { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); font-size: 11.5px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 10px; }
.newsletter-label::before { content: ''; width: 22px; height: 2px; background: var(--gold); border-radius: 1px; }
.newsletter-box h3 { font-family: 'Fraunces', serif; font-size: 36px; line-height: 1.22; color: var(--white); margin-bottom: 10px; font-weight: 700; }
.newsletter-box p { font-size: 16px; line-height: 1.78; color: rgba(255,255,255,0.68); max-width: 680px; font-weight: 300; }
.newsletter-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.newsletter-note { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ── CTA ── */
.cta { background: linear-gradient(140deg, var(--navy) 0%, #183558 100%); padding: 92px 32px; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(198,147,58,0.09) 0%, transparent 55%); }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.58); line-height: 1.72; margin-bottom: 28px; font-weight: 300; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.2vw, 47px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta-heading em {
  font-style: italic;
  color: var(--gold-light);
}
.cta-promises { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta-promises li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 300; }
.cta-promises li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.cform { background: rgba(255,255,255,0.065); border: 1px solid rgba(198,147,58,0.2); border-radius: 14px; padding: 34px; }
.cform-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.cform-title-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.ffull { grid-column: 1 / -1; }
.field label { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.field input, .field select { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 7px; padding: 11px 14px; color: var(--white); font-family: 'Outfit', sans-serif; font-size: 15px; outline: none; width: 100%; transition: border-color 0.2s; }
.field input::placeholder { color: rgba(255,255,255,0.28); }
.field input:focus, .field select:focus { border-color: var(--gold); }
.field select option { background: var(--navy); }
.fsub { width: 100%; background: var(--gold); color: var(--navy); padding: 13px; border: none; border-radius: 7px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; margin-top: 6px; transition: all 0.2s; }
.fsub:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-1px); }
.fsub:disabled { opacity: 0.72; cursor: not-allowed; transform: none; }
.hp-field { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.contact-form-flash { margin-bottom: 16px; padding: 12px 14px; border-radius: 8px; font-size: 15px; line-height: 1.45; }
.contact-form-flash--ok { background: rgba(76, 175, 80, 0.2); border: 1px solid rgba(129, 199, 132, 0.5); color: #c8e6c9; }
.contact-form-flash--err { background: rgba(239, 83, 80, 0.15); border: 1px solid rgba(239, 83, 80, 0.45); color: #ffcdd2; }
.fnote { font-size: 11.5px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: clamp(40px, 5vw, 64px) var(--page-pad) 0;
}
.footer-grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.65fr);
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-logo-frame {
  display: inline-flex;
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.fbrand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 34rem;
}
.fcontact-list { display: grid; gap: 8px; }
.fcontact-item {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.5;
}
.fcontact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.fcontact-item a:hover { color: var(--gold-light); }
.fcontact-sep {
  margin: 0 8px;
  opacity: 0.4;
}
.fbadges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.fbadge {
  background: rgba(198,147,58,0.1);
  border: 1px solid rgba(198,147,58,0.22);
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 10.5px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.fcol h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 12px;
}
.flinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flinks a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
  line-height: 1.35;
}
.flinks a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--content);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.32);
  flex-wrap: wrap;
  gap: 6px 16px;
}
.footer-disc {
  max-width: var(--content);
  margin: 0 auto;
  padding: 12px 0 max(20px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}
.footer-disc strong { color: rgba(255,255,255,0.4); font-weight: 600; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.7s ease backwards; }
.hero-left > *:nth-child(1) { animation-delay: 0.08s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.32s; }
.hero-left > *:nth-child(4) { animation-delay: 0.44s; }

@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── FULL TEAM OVERLAY ── */
.ft-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 16, 30, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: clamp(12px, 3vw, 28px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ft-overlay.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: fadeIn 0.28s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ft-sheet {
  width: min(920px, 100%);
  margin: auto;
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  max-height: min(92vh, 960px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ft-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 2;
  flex-shrink: 0;
}
.ft-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.ft-page-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}
.ft-page-sub {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 38rem;
  font-weight: 400;
}
.ft-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.ft-close:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.ft-sheet-body {
  padding: 22px 24px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ft-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
}
.ft-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.ft-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
}

.ft-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.ft-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ft-card-copy {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-exp {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.ft-name {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.ft-role {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.35;
}

/* ── NAV DROPDOWN ── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--navy);
}
.nav-dropdown-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  margin-left: 2px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  transform-origin: 50% 50%;
}
.nav-dropdown-chevron svg {
  display: block;
  width: 12px;
  height: 12px;
}
.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  margin: 0;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.14);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
/* Invisible bridge so the cursor can move from trigger → menu without closing */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text) !important;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--cream);
  color: var(--navy) !important;
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(6, 16, 30, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 360px);
  height: 100%;
  max-height: 100dvh;
  background: var(--white);
  box-shadow: -16px 0 48px rgba(11,31,58,0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav.active .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  padding-top: max(18px, env(safe-area-inset-top));
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  flex-shrink: 0;
}
.mobile-nav-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-nav-title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.mobile-nav-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 8px 12px;
}
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-list > li > a,
.mobile-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 14px 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.mobile-nav-list > li > a:active,
.mobile-acc-trigger:active { background: var(--cream); }

.mobile-acc-chevron {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.mobile-acc-chevron svg { width: 14px; height: 14px; }
.mobile-acc.is-open .mobile-acc-chevron { transform: rotate(180deg); color: var(--gold); }

.mobile-acc-panel {
  list-style: none;
  margin: 0;
  padding: 4px 0 8px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.mobile-acc-panel[hidden] { display: none !important; }
.mobile-acc-panel a {
  display: block;
  min-height: 44px;
  padding: 11px 12px 11px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
}
.mobile-acc-panel a:active,
.mobile-acc-panel a:hover {
  color: var(--navy);
  background: rgba(255,255,255,0.7);
  border-left-color: var(--gold);
}

.mobile-nav-foot {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav-foot a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
}
.mob-cta-gold { background: var(--gold); color: var(--navy); }
.mob-cta-primary { background: var(--navy); color: var(--white); }
.mobile-nav-tel {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
  font-weight: 600 !important;
}

.tst-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--navy); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(11,31,58,0.10);
  transition: all 0.2s; z-index: 10;
}
.tst-arr:hover:not(:disabled) { background: var(--navy); color: var(--white); border-color: var(--navy); }
.tst-arr:disabled { opacity: 0.3; cursor: not-allowed; }
.tst-arr-l { left: -22px; }
.tst-arr-r { right: -22px; }
.tst-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.25s; border: none; padding: 0; }
.tst-dot.on { background: var(--gold); transform: scale(1.45); }

.cta { padding: var(--section-pad) var(--page-pad); }
footer { padding: clamp(40px, 5vw, 64px) var(--page-pad) 0; }
.footer-grid { max-width: var(--content); }
.newsletter-box { max-width: var(--content); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-desc { max-width: none; }
  .books-head { grid-template-columns: 1fr; max-width: 420px; }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .guide-layout { grid-template-columns: 1fr; gap: 28px; }
  .guide-process { position: static; padding-top: 0; }
  .svc-row { grid-template-columns: 48px minmax(140px, 0.85fr) minmax(0, 1.4fr) 24px; }
}

@media (max-width: 980px) {
  .ft-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-layout { grid-template-columns: 1fr; }
  .who-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 14px; }
  .philo-list { grid-template-columns: 1fr; }
  .philo-list li:nth-child(odd),
  .philo-list li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
  }
  .avoid-items { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 900px) {
  .topbar { padding: 7px 0; font-size: 12px; }
  .topbar-inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .topbar-left { display: none; }
  .topbar-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .topbar-mail { display: none; }
  .topbar-phone {
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .arn-pill { font-size: 10px; padding: 3px 9px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  :root { --nav-h: 72px; }
  .logo-img { height: 72px; }
  .nav-inner { height: var(--nav-h); }
}

@media (max-width: 860px) {
  .newsletter-box { grid-template-columns: 1fr; padding: 28px 24px; }
  .newsletter-actions { justify-content: flex-start; }
  .newsletter-box h3 { font-size: clamp(26px, 5vw, 34px); }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-row {
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 12px;
  }
  .svc-desc { grid-column: 2 / -1; }
  .svc-go { grid-column: 3; grid-row: 1; }
  .tst-slide { flex: 0 0 100%; min-width: 0; }
  .tst-arr-l { left: 4px; }
  .tst-arr-r { right: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 640px) {
  .topbar-phone { font-size: 12.5px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-gold,
  .hero-btns .btn-ghost { width: 100%; }
  .hero-card { padding: 22px 18px; border-radius: 14px; }
  .hero-quote { display: none; }
  .amfi-row { align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .team-slider {
    position: relative;
    margin: 0 calc(var(--page-pad) * -1);
    padding: 0 var(--page-pad);
  }
  .team-slider .team-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-pad);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .team-slider .team-grid::-webkit-scrollbar { display: none; }
  .team-slider .team-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: center;
    max-width: 320px;
  }
  .team-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }
  .team-slider-arr {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  }
  .team-slider-arr:hover:not(:disabled) {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
  }
  .team-slider-arr:disabled {
    opacity: 0.35;
    cursor: default;
  }
  .team-slider-dots {
    display: flex;
    gap: 7px;
    align-items: center;
    max-width: min(56vw, 220px);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .team-slider-dots::-webkit-scrollbar { display: none; }
  .team-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--border);
    cursor: pointer;
    flex-shrink: 0;
  }
  .team-slider-dot.on {
    background: var(--gold);
    transform: scale(1.15);
  }
  .team-slider-count {
    display: block;
    text-align: center;
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
  }
  .books-grid { grid-template-columns: 1fr; }
  .books-head { max-width: none; }
  .book-cover-wrap { height: 200px; }
  .ft-overlay { padding: 0; align-items: stretch; }
  .ft-sheet {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border: none;
    margin: 0;
  }
  .ft-sheet-head {
    padding: 16px 16px 14px;
    padding-top: max(16px, env(safe-area-inset-top));
  }
  .ft-sheet-body {
    padding: 16px 16px max(28px, env(safe-area-inset-bottom));
  }
  .ft-grid { grid-template-columns: 1fr; gap: 12px; }
  .who-card { padding: 24px 20px; }
  .frow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; padding-bottom: 22px; }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }
  .footer-cols .fcol:last-child { grid-column: 1 / -1; }
  .footer-cols .fcol:last-child .flinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  .fcol h4 { margin-bottom: 10px; }
  .flinks { gap: 7px; }
  .flinks a { font-size: 13px; }
  .footer-logo-img { height: 38px; }
  .footer-logo-frame { padding: 5px 10px; }
  .fbrand-desc { font-size: 13px; margin-bottom: 10px; }
  .fcontact-list { gap: 6px; }
  .fcontact-item { font-size: 12.5px; }
  .fbadges { margin-top: 10px; gap: 5px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
    font-size: 12px;
  }
  .footer-disc {
    padding: 10px 0 18px;
    font-size: 11px;
    line-height: 1.55;
  }
  .team-section-head { flex-direction: column; align-items: flex-start; }
  .view-full-team-btn { width: 100%; justify-content: center; }
  .cform { padding: 24px 18px; }
  .field input,
  .field select,
  .fsub { min-height: var(--touch); font-size: 16px; }
  .testcard { padding: 24px 20px; }
  .tst-arr { display: none; }
  .tst-carousel-outer { margin-left: 0; margin-right: 0; }
  .guide-chat { padding: 14px; }
  .guide-turn { grid-template-columns: 32px minmax(0, 1fr); gap: 10px; }
  .guide-avatar { width: 32px; height: 32px; font-size: 11px; }
}

@media (max-width: 420px) {
  .topbar { font-size: 11.5px; }
  .arn-pill { font-size: 9.5px; padding: 2px 8px; }
  .ceo-pic-wrap { padding: 8px; }
  .mobile-nav-panel { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── SCROLL TO TOP ── */
.scroll-top-btn {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 400;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--navy-mid);
}
.scroll-top-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

