/* ============================================================
   RION CAPITAL — Shared Stylesheet
   Brand: Navy #3D4F6B · Pink #EB99C2
   Fonts: Cormorant Garamond · DM Sans
   ============================================================ */

:root {
  --navy:        #3D4F6B;
  --navy-dark:   #2A3545;
  --navy-light:  #4D6180;
  --blue-pale:   #EBF0F7;
  --blue-mid:    #B5CDE8;
  --blue-border: #8AADD4;
  --pink:        #EB99C2;
  --pink-dim:    #C4709A;
  --pink-pale:   #FAEDF4;
  --off-white:   #F4F7FB;
  --text-dark:   #1C2533;
  --text-mid:    #3D4F6B;
  --text-muted:  #6B7585;
  --text-light:  #A8B0BE;
  --border-light:#DDE5F0;
  --border-mid:  #C0CDE0;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 64px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
}

/* ── TOP UTILITY BAR ── */
.nav-utility {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-utility-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px;
}
.util-link {
  font-size: 11.5px; color: rgba(255,255,255,0.65);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.util-link:hover { color: var(--pink); }
.util-right { display: flex; gap: 28px; }

/* ── MAIN NAV ROW ── */
.nav-main {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 80px; gap: 24px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 64px; width: auto; display: block; border-radius: 3px; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  flex: 1; justify-content: flex-end;
}
.nav-links > a {
  font-size: 13px; color: rgba(255,255,255,0.72);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links > a:hover { color: #fff; }
.nav-rradar-text { color: var(--pink) !important; font-weight: 500; }
.nav-rradar-text:hover { color: #fff !important; }
.nav-cta {
  border: 1.5px solid rgba(255,255,255,0.38);
  color: #fff; background: transparent;
  padding: 9px 22px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.07em; border-radius: 2px; cursor: pointer;
  transition: all 0.2s; font-family: "DM Sans", sans-serif;
  white-space: nowrap; text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--pink); border-color: var(--pink); color: var(--navy-dark); }

/* ── MEGA DROPDOWN ── */
.nav-item-mega { position: relative; }
.nav-item-mega > a {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: rgba(255,255,255,0.72);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.2s; white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}
.nav-item-mega:hover > a { color: #fff; }
.nav-item-mega > a::after { content: "▾"; font-size: 9px; opacity: 0.6; }
.nav-mega {
  display: none; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; min-width: 620px;
  border-radius: 6px; box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  padding: 28px 8px; z-index: 200;
  display: none; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 8px;
}
.nav-item-mega::after {
  content: ""; position: absolute;
  top: 100%; left: 0; right: 0; height: 16px;
}
.nav-item-mega:hover .nav-mega { display: grid; }
.mega-col { padding: 0 24px; }
.mega-col:first-child { border-right: 1px solid var(--border-light); }
.mega-col-title {
  font-family: "Cormorant Garamond", serif; font-size: 20px;
  font-weight: 400; color: var(--navy); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-light);
}
.mega-col-title span { color: var(--pink-dim); font-style: italic; }
.mega-col-title a { text-decoration: none; color: inherit; transition: color 0.2s; }
.mega-col-title a:hover { color: var(--pink-dim); }
.mega-col a {
  display: block; padding: 9px 0;
  text-decoration: none; color: var(--text-dark);
  font-size: 14.5px; font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.15s;
}
.mega-col a:hover { color: var(--navy); }
.mega-col a small {
  display: block; font-size: 11.5px; font-weight: 300;
  color: var(--text-muted); margin-top: 2px; line-height: 1.4;
}

/* ── SECTION HELPERS ── */
.section { padding: 96px 0; position: relative; }
.bg-white  { background: #fff; }
.bg-pale   { background: var(--off-white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.bg-navy   { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

.sec-label    { font-size: 10px; letter-spacing: 0.22em; color: var(--pink-dim); text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.sec-label-lt { color: rgba(235,153,194,0.75); }
.sec-title    { font-family: "Cormorant Garamond", serif; font-weight: 300; font-size: 48px; line-height: 1.1; color: var(--navy); }
.sec-intro    { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ── BUTTONS ── */
.btn-pink {
  background: var(--pink); color: var(--navy-dark);
  padding: 13px 30px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; border: none; border-radius: 2px;
  cursor: pointer; transition: all 0.2s; font-family: "DM Sans", sans-serif;
}
.btn-pink:hover { background: var(--pink-dim); color: #fff; }
.btn-gl {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.75);
  padding: 12px 26px; font-size: 13px; border-radius: 2px;
  cursor: pointer; transition: all 0.2s;
  font-family: "DM Sans", sans-serif; font-weight: 500;
}
.btn-gl:hover { border-color: rgba(255,255,255,0.65); color: #fff; }
.btn-navy {
  background: var(--navy); color: #fff; border: none;
  padding: 13px 28px; font-size: 13px; font-weight: 600;
  border-radius: 2px; cursor: pointer;
  font-family: "DM Sans", sans-serif; text-align: center; transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline-navy {
  border: 1.5px solid var(--navy); color: var(--navy);
  background: transparent; padding: 12px 28px;
  font-size: 13px; font-weight: 500; border-radius: 2px; cursor: pointer;
  font-family: "DM Sans", sans-serif; text-align: center; transition: all 0.2s;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 640px; overflow: hidden;
  display: flex; align-items: center; background: var(--navy);
}
canvas#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(42,53,69,0.88) 38%, rgba(61,79,107,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center; padding: 80px 0 70px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left  { animation: fadeUp 0.9s ease 0.1s both; }
.hero-right { animation: fadeUp 0.9s ease 0.3s both; }
.hero-broker-visual { display: flex; align-items: center; justify-content: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.ey-bar  { width: 28px; height: 1.5px; background: var(--pink); }
.ey-txt  { font-size: 10.5px; letter-spacing: 0.22em; color: var(--pink); text-transform: uppercase; font-weight: 600; }
.hero h1 { font-family: "Cormorant Garamond", serif; font-weight: 300; font-size: 68px; line-height: 1.08; color: #fff; }
.hero h1 em { font-style: italic; color: var(--pink); }
.hero-sub { margin-top: 20px; font-size: 15.5px; color: rgba(255,255,255,0.62); line-height: 1.73; font-weight: 300; max-width: 460px; }
.hero-btns { margin-top: 36px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--off-white);
  padding: 44px 0;
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 36px;
  border-right: 1px solid var(--border-mid);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }

/* Number + suffix on the same baseline */
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px; font-weight: 300;
  color: var(--navy); line-height: 1;
  display: flex; align-items: baseline; gap: 1px;
  justify-content: center;
}
/* +  °  ★  all same size, same colour, same baseline */
.stat-num .suffix {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px; font-weight: 300;
  color: var(--pink-dim);
  font-style: normal;
  line-height: 1;
}
.stat-lbl {
  font-size: 10.5px; color: var(--text-muted);
  letter-spacing: 0.07em; margin-top: 5px; text-transform: uppercase;
}
.google-link {
  color: var(--text-muted); text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  font-size: 10.5px; letter-spacing: 0.07em; text-transform: uppercase;
}
.google-link:hover { color: var(--navy); }

/* ── ECOSYSTEM / SERVICES ── */
.eco-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 56px;
}
.eco-diagram {
  display: grid;
  grid-template-columns: 1fr 108px 1fr;
  gap: 0; align-items: center;
}

/* Tiles */
.eco-stream {
  border: 0.5px solid var(--border-light);
  padding: 24px 22px 28px; background: #fff;
  border-radius: 6px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.eco-stream:hover { border-color: var(--blue-border); box-shadow: 0 6px 28px rgba(61,79,107,0.07); }
.eco-stream-clickable { cursor: pointer; }
.eco-stream::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--pink);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.eco-stream:hover::before { transform: scaleX(1); }
.eco-stream-icon {
  width: 34px; height: 34px;
  border: 0.5px solid var(--border-light); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--navy);
}
.eco-stream-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px; font-weight: 300; color: var(--navy); margin-bottom: 8px;
}
.eco-stream-desc {
  font-size: 12.5px; color: var(--text-muted);
  line-height: 1.65; font-style: italic; font-weight: 300; margin-bottom: 15px;
}
.sub-products { display: flex; flex-direction: column; gap: 6px; }
.sub-p { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--text-mid); font-weight: 300; }
.sub-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }

/* Centre person hub */
.eco-bridge {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 0 4px; height: 100%;
}
.eco-person {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 2;
  box-shadow: 0 4px 20px rgba(61,79,107,0.22);
}
.eco-person svg { display: block; }
.eco-bridge-label {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 10px; width: 90px;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(61,79,107,0.4); text-align: center; line-height: 1.6;
  white-space: nowrap;
}

/* Connector lines drawn via JS */
.eco-connector {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}

.eco-tagline {
  text-align: center; margin-top: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px; font-style: italic; font-weight: 300;
  color: var(--text-muted); letter-spacing: 0.01em;
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-quote { font-family: "Cormorant Garamond", serif; font-size: 30px; font-style: italic; font-weight: 300; color: #fff; line-height: 1.45; }
.about-quote em { color: var(--pink); font-style: normal; }
.about-bar { width: 36px; height: 2px; background: var(--pink); margin: 22px 0; }
.about-body { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; font-weight: 300; }
.about-body p + p { margin-top: 14px; }
.why-grid { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--pink); font-size: 15px;
}
.why-title { font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.why-body  { font-size: 12.5px; color: rgba(255,255,255,0.48); line-height: 1.6; font-weight: 300; }

/* ── APPROACH ── */
.approach-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.approach-left h2 { font-family: "Cormorant Garamond", serif; font-size: 38px; font-weight: 300; line-height: 1.1; color: var(--navy); margin-bottom: 14px; }
.approach-left p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 30px 1fr;
  gap: 18px; padding: 22px 0;
  border-bottom: 1px solid var(--border-light); align-items: start;
}
.step:first-child { padding-top: 0; }
.step-n     { font-family: "Cormorant Garamond", serif; font-size: 16px; color: var(--pink-dim); padding-top: 1px; }
.step-title { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.step-body  { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ── RRADAR ── */
.rradar-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.rradar-screen-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); line-height: 0; }
.rradar-screen-wrap img { width: 100%; height: auto; display: block; border-radius: 12px; }
.rradar-logo-wrap { margin-bottom: 24px; }
.rradar-logo-wrap img { height: 72px; width: auto; }
.rradar-copy h2 { font-family: "Cormorant Garamond", serif; font-weight: 300; font-size: 40px; line-height: 1.1; color: #fff; margin-bottom: 14px; }
.rradar-copy h2 em { font-style: italic; color: var(--pink); }
.rradar-copy p { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.75; font-weight: 300; margin-bottom: 26px; }
.features { display: flex; flex-direction: column; gap: 11px; }
.feat { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; color: rgba(255,255,255,0.68); }
.feat-check {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1.5px solid var(--pink); border-radius: 2px;
  margin-top: 2px; display: flex; align-items: center;
  justify-content: center; font-size: 8px; color: var(--pink); font-weight: 700;
}
.rr-pill {
  display: inline-block; margin-top: 24px;
  background: rgba(235,153,194,0.12);
  border: 1px solid rgba(235,153,194,0.25);
  color: var(--pink); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 2px;
}

/* ── TESTIMONIAL ── */
.testi-carousel {
  position: relative; height: 260px;
  touch-action: pan-y;
  user-select: none;
}
.testi-slide {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  animation: fadeInSlide 0.6s ease;
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  padding: 0 20px;
}
.testi-slide.active { display: flex; }
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 28px;
}
.testi-arrow {
  background: none; border: 1px solid var(--border-mid);
  color: var(--navy); width: 34px; height: 34px;
  border-radius: 50%; font-size: 18px; line-height: 1;
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.testi-arrow:hover { background: var(--off-white); border-color: var(--blue-border); }
.testi-dots {
  display: flex; gap: 6px; justify-content: flex-start;
  max-width: 280px; overflow-x: auto;
  scrollbar-width: none; padding: 4px 0;
}
.testi-dots::-webkit-scrollbar { display: none; }
.testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-mid); cursor: pointer; transition: background 0.2s;
  flex-shrink: 0;
}
.testi-dot.on { background: var(--pink-dim); }
.testi-stars { color: #F4B400; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.q-text {
  font-family: "Cormorant Garamond", serif; font-size: 24px;
  font-style: italic; font-weight: 300; color: var(--navy);
  line-height: 1.55; margin-bottom: 20px; max-width: 700px; text-align: center;
}
.q-attr  { font-size: 11px; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }
.q-attr span { color: var(--pink-dim); }
.testi-source { font-size: 10px; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; }
.testi-source a { color: #4285F4; text-decoration: none; }
.testi-source a:hover { text-decoration: underline; }
.google-header { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 36px; }
.google-header-label { font-family: "DM Sans", sans-serif; font-size: 13px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.google-header-stars { color: #F4B400; font-size: 15px; }
.google-header-score { font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--navy); font-weight: 300; }
.google-cta { text-align: center; margin-top: 24px; }
.google-cta a {
  font-family: "DM Sans", sans-serif; font-size: 11.5px;
  color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--border-light); padding-bottom: 2px;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; }
.office-block { margin-bottom: 26px; }
.off-label { font-size: 9.5px; letter-spacing: 0.2em; color: var(--pink); text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.off-addr  { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.65; font-weight: 300; }
.off-detail { font-size: 13px; color: rgba(255,255,255,0.42); margin-top: 3px; }
.off-detail a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.off-detail a:hover { color: var(--pink); }
.cf-hdr { font-family: "Cormorant Garamond", serif; font-size: 30px; font-weight: 300; color: #fff; margin-bottom: 20px; }
.cf-hdr em { font-style: italic; color: var(--pink); }
.ff { margin-bottom: 12px; }
.ff input, .ff textarea {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
  padding: 11px 14px; font-size: 13px; color: #fff;
  font-family: "DM Sans", sans-serif; outline: none; transition: border-color 0.2s;
}
.ff input::placeholder, .ff textarea::placeholder { color: rgba(255,255,255,0.22); }
.ff input:focus, .ff textarea:focus { border-color: rgba(235,153,194,0.4); }
.ff textarea { min-height: 94px; resize: vertical; }

/* ── CTA STRIP ── */
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-h { font-family: "Cormorant Garamond", serif; font-weight: 300; font-size: 46px; line-height: 1.1; color: var(--navy); }
.cta-h em { font-style: italic; color: var(--pink-dim); }
.cta-sub  { font-size: 14px; color: var(--text-muted); margin-top: 10px; font-weight: 300; }
.cta-btns { display: flex; flex-direction: column; gap: 11px; min-width: 180px; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.07); padding: 44px 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: start; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 40px; }
.footer-logo img { height: 84px; width: auto; border-radius: 4px; }
.footer-nav { display: flex; gap: 48px; flex: 1; justify-content: center; }
.fnc h4 { font-size: 9.5px; letter-spacing: 0.18em; color: rgba(255,255,255,0.28); text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.fnc a  { display: block; font-size: 12px; color: rgba(255,255,255,0.42); text-decoration: none; margin-bottom: 7px; transition: color 0.2s; }
.fnc a:hover { color: var(--pink); }
.footer-social { display: flex; gap: 10px; }
.si {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); text-decoration: none;
  font-size: 12px; transition: all 0.2s; font-family: serif;
}
.si:hover { border-color: var(--pink); color: var(--pink); }
.footer-bottom { margin-top: 22px; display: flex; justify-content: space-between; align-items: start; gap: 40px; }
.footer-copy { font-size: 10.5px; color: rgba(255,255,255,0.2); line-height: 1.75; max-width: 560px; }
.footer-legal { display: flex; gap: 18px; flex-shrink: 0; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--pink); }

/* ============================================================
   RESPONSIVE — Mobile & Tablet
   Breakpoints: 768px (tablet), 480px (mobile)
   ============================================================ */

@media (max-width: 768px) {

  /* ── BASE ── */
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* ── NAV ── */
  .nav-utility { display: none; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 48px; }
  .nav-links { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 12px; }

  /* ── HERO ── */
  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 0 44px;
  }
  .hero-right { display: none; }
  .hero h1 { font-size: 42px; }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-btns .btn-pink,
  .hero-btns .btn-gl { width: 100%; text-align: center; }

  /* ── STATS BAR ── */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-item {
    padding: 20px 20px;
    border-right: 1px solid var(--border-mid);
    border-bottom: 1px solid var(--border-mid);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:first-child { padding-left: 20px; }
  .stat-num { font-size: 32px; }

  /* ── SECTION HEADINGS ── */
  .sec-title { font-size: 32px; }
  .sec-intro { font-size: 14px; }

  /* ── ECOSYSTEM — Mobile: vertical stack ── */
  .eco-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  .eco-diagram {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left right";
    grid-template-rows: auto;
    position: relative;
    gap: 12px;
    align-items: stretch;
  }
  #ecoLeft  { grid-area: left; }
  #ecoRight { grid-area: right; }
  #ecoHub   { grid-area: unset; position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 10; }

  /* Hide SVG connector lines on mobile */
  #ecoSvg { display: none; }

  /* Tiles side by side, extra bottom padding for person overlap */
  .eco-stream {
    padding: 18px 14px 52px;
    border-radius: 6px;
    font-size: 13px;
  }
  .eco-stream-desc { font-size: 12px; margin-bottom: 12px; }
  .sub-products { gap: 5px; }
  .sub-p { font-size: 11.5px; }

  /* Person circle handled by #ecoHub absolute positioning above */
  .eco-bridge {
    padding: 0; margin: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .eco-person {
    width: 56px;
    height: 56px;
    z-index: 10;
    box-shadow: 0 0 0 3px #fff, 0 4px 16px rgba(61,79,107,0.25);
  }
  .eco-bridge-label { display: none; }
  .eco-diagram::before { display: none; }

  /* ── ABOUT SECTION ── */
  .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about-stats { grid-template-columns: 1fr 1fr !important; }

  /* ── CONTACT — single column, form first then locations ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    display: flex;
    flex-direction: column;
  }
  .contact-grid > div:nth-child(1) { order: 2; }
  .contact-grid > div:nth-child(2) { order: 1; }

  /* ── RRADAR SHOWCASE & CONTACT FORM — single column, image/form first ── */
  .rradar-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rradar-screen-wrap { order: 1; }
  .rradar-copy { order: 2; }

  /* ── OUR APPROACH — single column ── */
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ── TESTIMONIALS ── */
  .testi-dots { max-width: 200px; }
  .q-text { font-size: 18px; padding: 0 8px; }
  .testi-carousel { height: 300px; }

  /* ── CTA STRIP ── */
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .cta-h { font-size: 30px; }
  .cta-btns { flex-direction: row; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ── */
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {

  /* ── HERO ── */
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 13.5px; }

  /* ── STATS — single column on very small screens ── */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* ── ECOSYSTEM ── */
  .eco-stream { padding: 20px 16px 24px; }

  /* ── SECTION HEADINGS ── */
  .sec-title { font-size: 28px; }

  /* ── CTA ── */
  .cta-h { font-size: 26px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn-pink,
  .cta-btns .btn-navy { width: 100%; }
}

/* ── HAMBURGER & MOBILE DRAWER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--navy-dark);
  padding: 20px 20px 28px;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--pink); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
}

/* ============================================================
   SUB-PAGE TEMPLATE — Page Hero, Tile Menu, Content Sections
   Used by: private-wealth.html, commercial.html, about.html,
   partner-with-us.html, locate-contact-us.html
   ============================================================ */

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
}
.page-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.page-hero-right {
  display: flex; align-items: center; justify-content: flex-end;
}
.page-hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.page-hero-bar { width: 26px; height: 1.5px; background: var(--pink); }
.page-hero-tag { font-size: 10.5px; letter-spacing: 0.2em; color: var(--pink); text-transform: uppercase; font-weight: 600; }
.page-hero h1 {
  font-family: "Cormorant Garamond", serif; font-weight: 300;
  font-size: 50px; line-height: 1.12; color: #fff; max-width: 760px;
}
.page-hero h1 em { font-style: italic; color: var(--pink); }
.page-hero-sub {
  margin-top: 18px; font-size: 15px; color: rgba(255,255,255,0.62);
  line-height: 1.8; font-weight: 300; max-width: 520px;
}
.page-hero-btns { margin-top: 30px; display: flex; gap: 14px; }

/* Portfolio card (Private Wealth hero) */
.portfolio-card {
  width: 310px; background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 30px; font-family: "DM Sans", sans-serif; position: relative;
}
.pc-label { font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.pc-totals { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.pc-tot-lbl { font-size: 9px; color: rgba(255,255,255,0.28); margin-bottom: 4px; }
.pc-tot-num { font-family: "Cormorant Garamond", serif; font-size: 30px; font-weight: 300; line-height: 1; color: #fff; }
.pc-tot-num.pink { color: var(--pink); }
.pc-rows { display: flex; flex-direction: column; gap: 11px; }
.pc-row { display: flex; justify-content: space-between; align-items: center; }
.pc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pc-name { font-size: 11.5px; color: rgba(255,255,255,0.58); margin-left: 8px; }
.pc-rate { font-size: 11.5px; color: rgba(255,255,255,0.32); }
.pc-alert { margin-top: 16px; padding-top: 16px; border-top: 0.5px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 8px; }
.pc-alert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
.pc-alert-txt { font-size: 10.5px; color: rgba(235,153,194,0.75); }
.pc-via { position: absolute; top: 22px; right: 22px; font-size: 8px; letter-spacing: 0.06em; color: rgba(235,153,194,0.28); font-style: italic; }

/* Commercial client diagram — mobile only */
.comm-mobile-diagram { display: none; }

@media (max-width: 768px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-right { display: none; }
  .page-hero h1 { font-size: 34px; }
  .page-hero-sub { font-size: 13.5px; }
  .comm-mobile-diagram { display: block; }
}
/* ── TILE MENU (jump-to-section cards) ── */
.tile-menu-section { padding: 56px 0 8px; }
.tile-menu-label { text-align: center; margin-bottom: 28px; }
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.tile-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding: 26px 16px;
  border: 0.5px solid var(--border-light); border-radius: 6px;
  background: #fff; text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tile-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 10px 28px rgba(61,79,107,0.1);
  transform: translateY(-2px);
}
.tile-card-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--off-white); border: 0.5px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0;
}
.tile-card-name {
  font-family: "Cormorant Garamond", serif; font-size: 16px;
  font-weight: 500; color: var(--navy); line-height: 1.3;
}

/* ── CONTENT SECTION (per-tile detail block) ── */
.content-section { padding: 64px 0; border-top: 1px solid var(--border-light); scroll-margin-top: 90px; }
.content-section:nth-of-type(odd) { background: var(--off-white); }
.content-grid {
  display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start;
}
.content-icon-lg {
  width: 64px; height: 64px; border-radius: 8px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.content-title {
  font-family: "Cormorant Garamond", serif; font-size: 30px;
  font-weight: 300; color: var(--navy); margin-bottom: 12px;
}
.content-body { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; font-weight: 300; max-width: 720px; }
.content-points { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.content-point { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-mid); font-weight: 300; }
.content-point .sub-dot { margin-top: 6px; }
.back-to-top {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 22px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pink-dim); text-decoration: none; font-weight: 600;
}
.back-to-top:hover { color: var(--navy); }

/* ── PARTNER PAGE SPECIFIC ── */
.partner-types-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 36px;
}
.partner-type-card {
  padding: 28px 24px; border: 0.5px solid var(--border-light); border-radius: 6px;
  background: #fff;
}
.partner-type-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--off-white); border: 0.5px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 16px;
}
.partner-type-name { font-family: "Cormorant Garamond", serif; font-size: 19px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.partner-type-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.partner-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
}
.partner-cta-card {
  padding: 32px 28px; border-radius: 8px; text-align: center;
}
.partner-cta-card.pink { background: var(--pink-pale); border: 1px solid rgba(235,153,194,0.3); }
.partner-cta-card.navy { background: var(--navy); color: #fff; }
.partner-cta-card h3 { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 400; margin-bottom: 10px; }
.partner-cta-card.navy h3 { color: #fff; }
.partner-cta-card p { font-size: 13px; line-height: 1.65; margin-bottom: 18px; }
.partner-cta-card.navy p { color: rgba(255,255,255,0.65); }
.partner-cta-card.pink p { color: var(--text-muted); }

/* ── LOCATE & CONTACT PAGE ── */
.office-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.office-card-lg { padding: 30px 26px; border: 0.5px solid var(--border-light); border-radius: 8px; background: #fff; }
.office-card-lg h3 { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.office-card-lg .office-card-addr { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.office-card-lg .office-card-map { font-size: 12px; color: var(--pink-dim); text-decoration: none; font-weight: 600; letter-spacing: 0.03em; }
.office-card-lg .office-card-map:hover { color: var(--navy); }

@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-icon-lg { width: 52px; height: 52px; }
  .partner-cta-grid { grid-template-columns: 1fr; }
  .office-cards-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RELATIONSHIP MODEL DIAGRAM ── */
.rm-section { padding: 64px 0; }
.rm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.rm-col-title { font-family: "Cormorant Garamond", serif; font-size: 17px; font-weight: 500; color: var(--text-muted); text-align: center; margin-bottom: 24px; }
.rm-col-title.navy { color: var(--navy); font-weight: 600; }

.rm-linear { display: flex; flex-direction: column; align-items: center; gap: 0; }
.rm-step {
  width: 100%; max-width: 220px; padding: 14px 18px; border-radius: 4px;
  background: var(--border-mid); color: var(--navy); text-align: center;
  font-size: 13.5px; font-weight: 500;
}
.rm-arrow-down { font-size: 14px; color: var(--border-mid); margin: 4px 0; }
.rm-stop {
  width: 40px; height: 40px; border-radius: 50%;
  background: #d64545; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-top: 10px;
}

.rm-cycle { position: relative; width: 300px; height: 300px; margin: 0 auto; }
.rm-arrow-ring { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.rm-cycle-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 128px; height: 128px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: "Cormorant Garamond", serif; font-size: 15px; font-weight: 500; line-height: 1.3;
  padding: 10px; z-index: 2;
}
.rm-cycle-node {
  position: absolute; width: 98px; height: 98px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 12px; font-weight: 500; line-height: 1.3; padding: 8px;
  color: var(--navy); z-index: 3;
}
.rm-cycle-node.pink { background: var(--pink-pale); border: 1px solid rgba(235,153,194,0.4); }
.rm-cycle-node.grey { background: var(--off-white); border: 1px solid var(--border-light); }
.rm-n1 { top: 0%;   left: 50%; transform: translate(-50%, -28%); }
.rm-n2 { top: 25%;  left: 91%; transform: translate(-50%, -50%); }
.rm-n3 { top: 75%;  left: 91%; transform: translate(-50%, -50%); }
.rm-n4 { top: 100%; left: 50%; transform: translate(-50%, -72%); }
.rm-n5 { top: 75%;  left: 9%;  transform: translate(-50%, -50%); }
.rm-n6 { top: 25%;  left: 9%;  transform: translate(-50%, -50%); }

.rm-tagline { text-align: center; margin-top: 36px; font-family: "Cormorant Garamond", serif; font-size: 17px; font-style: italic; font-weight: 300; color: var(--text-muted); }
.rm-tagline strong { font-style: normal; color: var(--navy); font-weight: 600; }

@media (max-width: 768px) {
  .rm-grid { grid-template-columns: 1fr; gap: 40px; }
  .rm-cycle { width: 240px; height: 240px; }
  .rm-cycle-center { width: 100px; height: 100px; font-size: 12px; }
  .rm-cycle-node { width: 78px; height: 78px; font-size: 10px; }
}
