:root {
  --prop-navy: #161d2e;
  --navy: #0f1729;
  --navy-mid: #1a2744;
  --navy-soft: #243352;
  --cream: #f4efe6;
  --cream-dark: #ebe4d8;
  --gold: #c4a574;
  --gold-deep: #a38456;
  --gold-muted: #d4bc94;
  --white: #ffffff;
  --taupe: #c4b8a8;
  --taupe-line: #d8cfc3;
  --text: #3a4154;
  --text-soft: #5c6478;
  --max-width: 1140px;
  --header-h: 72px;
  --shadow-sm: 0 4px 20px rgba(15, 23, 41, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 41, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 41, 0.18);
  --radius: 4px;
  --radius-lg: 12px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: 100%;
  position: relative;
}

body.nav-locked {
  overflow: hidden;
  /* Keep page from jumping when scroll is locked */
  touch-action: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  background: var(--white);
  color: var(--navy);
  z-index: 100;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.container {
  width: min(var(--max-width), 92vw);
  max-width: 100%;
  margin: 0 auto;
}

.narrow-block {
  max-width: 720px;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: #e8edf7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  color: var(--white);
  z-index: 55;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 1.9vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background: linear-gradient(180deg, #e8c4a8 0%, #c9a882 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  z-index: 55;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.nav-open .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .menu-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-list a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-list a:hover {
  color: var(--white);
  border-color: var(--gold-muted);
}

.nav-list a.active {
  color: var(--gold-muted);
  border-color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: var(--cream);
  background: var(--navy);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
  color: var(--white);
}

.btn-secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: rgba(15, 23, 41, 0.06);
}

.btn-arrow {
  font-weight: 400;
}

.btn-nav-cta {
  background: linear-gradient(135deg, #d4b896 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: var(--navy);
  border-color: rgba(196, 165, 116, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-nav-cta:hover {
  color: var(--navy);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.btn-gold {
  background: linear-gradient(135deg, #dcc9a8, var(--gold) 50%, var(--gold-deep));
  color: var(--navy);
  border-color: transparent;
}

.btn-gold:hover {
  color: var(--navy);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.6);
  z-index: 45;
  pointer-events: auto;
}

.nav-scrim[hidden] {
  display: none;
  pointer-events: none;
}

/* ——— Main & routes ——— */
#app,
.page,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

.page {
  min-height: calc(100vh - 200px);
}

.route-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.route-view.entering {
  opacity: 0;
  transform: translateY(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Typography ——— */
.eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.page-hero--navy .eyebrow,
.hero-home .eyebrow {
  color: var(--gold-muted);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  margin-bottom: 1rem;
  font-weight: 500;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 0.45rem;
}

.lead {
  font-size: 1.05rem;
  max-width: 62ch;
  color: var(--text);
}

.lead-on-dark {
  color: rgba(232, 237, 247, 0.88);
}

.section-lead {
  margin-top: 0.5rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(244, 239, 230, 0.95) 100%);
}

.section-white {
  background: var(--white);
  border-top: 1px solid var(--taupe-line);
  border-bottom: 1px solid var(--taupe-line);
}

.section-muted {
  background: var(--cream-dark);
  border-top: 1px solid var(--taupe-line);
  border-bottom: 1px solid var(--taupe-line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.25rem;
}

/* ——— Page heroes ——— */
.page-hero {
  padding: clamp(3.2rem, 10vw, 5.5rem) 0;
}

.page-hero--navy {
  background: linear-gradient(145deg, #0a1020 0%, var(--navy) 42%, var(--navy-mid) 100%);
  color: #e8edf7;
  position: relative;
  overflow: hidden;
}

.page-hero--navy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(196, 165, 116, 0.12), transparent 55%);
  pointer-events: none;
}

.page-hero--navy > .container {
  position: relative;
  z-index: 1;
}

.page-hero--navy h1,
.page-hero--navy h2 {
  color: var(--white);
}

.page-hero--cream {
  background: var(--cream);
  border-bottom: 1px solid var(--taupe-line);
}

/* ——— Home hero ——— */
.hero-home {
  position: relative;
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(3.5rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 10% 20%, rgba(196, 165, 116, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(26, 39, 68, 0.12), transparent 45%),
    linear-gradient(180deg, var(--cream) 0%, #efe8dd 100%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--taupe-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-panel-inner {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(165deg, #fff 0%, #faf7f2 100%);
}

.hero-checklist {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.hero-checklist li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.98rem;
  color: var(--text-soft);
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--taupe-line);
}

.hero-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

/* ——— Sitemap-style pillar grid ——— */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--taupe-line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--taupe);
}

.pillar-icon {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pillar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  flex: 1;
  margin-bottom: 1rem;
}

.text-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--gold-deep);
}

/* ——— Why section ——— */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.why-list {
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.why-list li {
  margin-bottom: 0.6rem;
}

.why-cards {
  display: grid;
  gap: 1rem;
}

.glass-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 239, 230, 0.5));
  border: 1px solid var(--taupe-line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ——— Testimonials ——— */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--taupe-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
  transition: box-shadow 0.25s ease;
}

.quote-card:hover {
  box-shadow: var(--shadow-md);
}

.quote-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.quote-card figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.quote-card figcaption a {
  color: var(--gold-deep);
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.quote-card figcaption a:hover {
  border-color: var(--gold-deep);
}

/* ——— CTA band ——— */
.cta-band {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 55%, #1e2d4d 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(196, 165, 116, 0.15), transparent 45%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cta-lead {
  color: rgba(232, 237, 247, 0.82);
  max-width: 52ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cta-band--compact .cta-band-inner {
  grid-template-columns: 1fr auto;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 0;
}

/* ——— Team ——— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.35rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--taupe-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy-soft), var(--navy));
  color: #f0e6d8;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 4rem);
}

.team-photo-placeholder--blank {
  background: linear-gradient(165deg, #e6e2db 0%, #d8d3ca 55%, #cdc7bc 100%);
}

.team-body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.team-role {
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.team-bio {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.team-contact {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--taupe-line);
  font-size: 0.92rem;
}

.team-contact a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.team-contact a:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* ——— Values & accreditations ——— */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.value-tile {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--taupe-line);
  background: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.value-tile:hover {
  border-color: var(--gold);
  background: var(--white);
}

.accreditation-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.acc-badge {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--taupe-line);
  box-shadow: var(--shadow-sm);
}

.acc-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.acc-desc {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.acc-desc a {
  border-bottom: 1px solid var(--gold);
}

/* ——— Services layout ——— */
.services-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2rem;
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
}

.services-rail {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--taupe-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rail-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.services-rail a {
  font-size: 0.88rem;
  color: var(--text-soft);
  padding: 0.35rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.65rem;
  margin-left: -0.65rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.services-rail a:hover,
.services-rail a.is-active {
  color: var(--navy);
  border-color: var(--gold);
}

.services-content {
  padding-bottom: 2rem;
}

.service-block {
  scroll-margin-top: calc(var(--header-h) + 12px);
  padding: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 1.25rem;
  background: var(--white);
  border: 1px solid var(--taupe-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.service-block p {
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.service-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.service-list li {
  margin-bottom: 0.45rem;
}

.service-disclaimer {
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  background: #fff8e1;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.service-disclaimer p {
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.service-disclaimer-list {
  list-style: none;
  padding: 0.75rem 0 0.75rem 0;
  margin: 0.75rem 0;
  border-top: 1px solid var(--taupe-line);
}

.service-disclaimer-list li {
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

/* ——— Insights ——— */
.insights-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.insight-hero-card {
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #e8edf7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.insight-hero-card .eyebrow {
  color: var(--gold-muted);
}

.insight-hero-card h2 {
  color: var(--white);
  margin: 0.5rem 0 0.75rem;
}

.insight-hero-card p {
  color: rgba(232, 237, 247, 0.82);
  margin-bottom: 1rem;
}

.insight-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--taupe-line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.insight-row h3 {
  font-size: 1.05rem;
  margin-top: 0.35rem;
}

.meta-pill {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--taupe-line);
}

/* ——— Legal ——— */
.legal-doc {
  max-width: 780px;
  margin: 0 auto;
}

.legal-doc h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--navy);
  margin: 2rem 0 0.85rem;
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 1.6rem 0 0.65rem;
}

.legal-doc p,
.legal-section p {
  color: var(--text-soft);
  margin-bottom: 0.85rem;
  line-height: 1.75;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 1rem 1.2rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.45rem;
}

.legal-doc li {
  line-height: 1.65;
}

.legal-doc .legal-sub {
  margin-bottom: 0.65rem;
}

.legal-contact-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--taupe-line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.legal-contact-box .legal-phone {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--navy);
  margin: 0.5rem 0;
}

.legal-contact-box a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-regulatory {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--taupe-line);
  font-size: 0.92rem;
  color: var(--text-soft);
}

.legal-regulatory p {
  margin-bottom: 0.75rem;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--taupe-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.contact-hours {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.contact-card--form {
  border-color: rgba(196, 165, 116, 0.35);
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.contact-card--book {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #e8edf7;
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-card--book h2,
.contact-card--book .eyebrow {
  color: var(--gold-muted);
}

.contact-card--book h2 {
  color: var(--white);
}

.contact-card--book p {
  color: rgba(232, 237, 247, 0.85);
}

.fine-print {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  opacity: 0.75;
}

/* ——— Forms ——— */
.form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form label {
  font-size: 0.68rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  border: 1px solid var(--taupe-line);
  background: var(--white);
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 23, 41, 0.08);
}

.form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.9rem;
}

.form-status.error {
  color: #b91c1c;
}

.form-status.success {
  color: #15803d;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Modal ——— */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1rem;
  backdrop-filter: blur(3px);
}

.modal-backdrop.open {
  display: flex;
}

.modal-card {
  width: min(480px, 94vw);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--taupe-line);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

.modal-card p {
  color: var(--text-soft);
}

.modal-actions {
  margin-top: 1.1rem;
  display: flex;
  justify-content: flex-end;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 0;
}

.footer-regulatory {
  background: #0a0f1a;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-regulatory-inner {
  padding: 2rem 1.25rem 2.5rem;
}

.footer-regulatory-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.footer-regulatory-links a {
  font-size: 0.95rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.footer-regulatory-links a:hover {
  color: var(--gold-muted);
}

.footer-regulatory-text {
  max-width: 52rem;
  margin: 0 auto 2rem;
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-regulatory-text p + p {
  margin-top: 1rem;
}

.footer-regulatory-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-regulatory-text a:hover {
  color: var(--gold-muted);
}

.footer-accreditation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
}

.footer-accreditation-logo {
  display: block;
  height: auto;
  max-width: 100%;
}

.footer-accreditation-logo--pfs {
  width: min(100%, 300px);
}

.footer-accreditation-logo--libf {
  width: min(100%, 110px);
}

.footer-copyright {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .insights-feature {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {
  body {
    padding-top: var(--header-h);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 80;
  }

  .site-header.nav-open {
    z-index: 90;
  }

  .nav-scrim {
    z-index: 85;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 3.25rem);
  }

  .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 95;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 88;
    width: min(340px, 100vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--navy) 0%, #121a30 100%);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    gap: 1.5rem;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .site-header.nav-open .primary-nav {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 0.78rem;
  }

  .btn-nav-cta {
    text-align: center;
    justify-content: center;
  }

  .hero-grid,
  .why-grid,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-band-actions {
    justify-content: flex-start;
  }

  .sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid,
  .values-grid,
  .accreditation-row {
    grid-template-columns: 1fr;
  }

  .services-layout {
    grid-template-columns: 1fr;
    padding-top: 1.25rem;
  }

  .services-rail {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 1rem;
  }

  .services-rail a {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
  }

  .services-rail a.is-active {
    border-color: var(--gold);
  }

  .rail-title {
    width: 100%;
  }
}

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

  .hero-stat-row {
    grid-template-columns: 1fr;
  }

  .prop-stat-grid,
  .prop-contrast-grid,
  .prop-feature-grid,
  .vouchedfor-band {
    grid-template-columns: 1fr;
  }

  .prop-banner-meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  .office-showcase-grid {
    grid-template-columns: 1fr;
  }

  .office-visual-caption {
    text-align: center;
  }

  .office-visual-frame img {
    min-height: 240px;
    max-height: 320px;
  }
}

/* ——— Investment proposition ——— */
.prop-stats {
  background: var(--prop-navy);
  color: #e8ecf5;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.prop-stats h1,
.prop-stats h2 {
  color: #fff;
}

.eyebrow-light {
  color: var(--gold-muted);
}

.prop-stat-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.prop-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 165, 116, 0.35);
  padding: 1.25rem;
}

.prop-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--gold-muted);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.prop-stat-num span {
  font-size: 0.55em;
  opacity: 0.85;
}

.prop-stat-num--text {
  letter-spacing: 0.06em;
}

.prop-stat-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.prop-stat-lead {
  color: #c5ccdc;
  margin-bottom: 0.75rem;
}

.prop-stat-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: #b8c0d2;
  font-size: 0.95rem;
}

.prop-stat-list li::before {
  content: "—";
  color: var(--gold);
  margin-right: 0.45rem;
}

.prop-stat-note {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(196, 165, 116, 0.25);
  color: #dce2ef;
}

.prop-banner {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(196, 165, 116, 0.45);
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.prop-banner-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
}

.prop-banner-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  color: #c5ccdc;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.prop-contrast-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.prop-contrast h2 em {
  font-style: italic;
  color: var(--gold-deep);
}

.prop-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.prop-feature {
  background: var(--white);
  border: 1px solid var(--taupe-line);
  padding: 1.35rem;
}

/* ——— VouchedFor ——— */
.vouchedfor-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--taupe-line);
  background: var(--white);
}

.vouchedfor-widget {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.vouchedfor-stars-mount {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.vouchedfor-stars-mount iframe,
.vf-prof-review iframe,
.vf-prof-review img {
  max-width: 100% !important;
}

.vf-prof-review {
  width: 100%;
  max-width: 100%;
  text-align: center;
  overflow: hidden;
}

.vf-prof-review a {
  display: inline-block;
}

/* ——— Office showcase (About) ——— */
.office-showcase {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

.office-showcase-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.office-visual {
  margin: 0;
}

.office-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196, 165, 116, 0.35);
}

.office-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 41, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.office-visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.office-showcase-grid:hover .office-visual-frame img {
  transform: scale(1.02);
}

.office-visual-caption {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  font-style: italic;
  text-align: left;
}

.office-details h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.office-address {
  font-style: normal;
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  line-height: 1.7;
  color: var(--text);
}

.office-points {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-soft);
}

.office-points li {
  padding-left: 1.1rem;
  position: relative;
}

.office-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.office-contact-lines {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.office-contact-lines a {
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.office-contact-lines a:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}

/* ——— Cookie banner ——— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 -4px 24px rgba(15, 23, 41, 0.18);
  padding: 1.1rem 1.5rem;
  animation: cookieSlideUp 0.35s ease;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.25rem;
}

.cookie-banner-text strong {
  color: var(--white);
}

.cookie-learn {
  font-size: 0.8rem;
  color: var(--gold-muted);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.cookie-learn:hover {
  border-color: var(--gold-muted);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-ghost-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-ghost-sm:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

.btn-primary-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 500;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary-sm:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
