@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --navy: #040d1a;
  --navy-mid: #071228;
  --navy-soft: #0d1f3c;
  --panel: #0a1628;
  --gold: #c9a84c;
  --gold-light: #e6c97a;
  --gold-dim: rgba(201, 168, 76, .12);
  --gold-line: rgba(201, 168, 76, .3);
  --white: #f4f0e8;
  --off-white: #d5cfc0;
  --muted: #6b7a94;
  --border: rgba(255, 255, 255, .06);
  --red-flag: #e05050;
  --green-flag: #3ecf8e;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;
  --ff-mono: 'DM Mono', 'Courier New', monospace;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in: cubic-bezier(.64, 0, .78, 0);
  --dur: .45s;

  --max-w: 1280px;
  --col-gap: clamp(2rem, 5vw, 5rem);
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--ff-serif);
  line-height: 1.2;
}

h4,
h5,
h6,
p,
label,
span,
a {
  font-family: var(--ff-sans);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--ff-sans);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-line);
  border-radius: 3px;
}

/* ─── LAYOUT ────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-alt {
  background: var(--navy-mid);
}

.section-panel {
  background: var(--panel);
}

/* ─── TYPOGRAPHY UTILITIES ──────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.display-xl {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.display-lg {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.display-md {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.015em;
}

.display-sm {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 600;
}

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

.text-muted {
  color: var(--muted);
}

.text-off {
  color: var(--off-white);
}

.text-serif {
  font-family: var(--ff-serif);
}

.italic-serif {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold-light);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 2px;
  transition: all var(--dur) var(--ease-out);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .06);
  opacity: 0;
  transition: opacity .25s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 30px rgba(201, 168, 76, .2);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 168, 76, .35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold-line);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
  gap: .4rem;
}

.btn-ghost svg {
  transition: transform .25s var(--ease-out);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 1.5rem 0;
  transition: padding var(--dur) var(--ease-out), background var(--dur), border-color var(--dur);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: .9rem 0;
  background: rgba(4, 13, 26, .92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}

.nav-logo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--gold-line);
  flex-shrink: 0;
}

.nav-logo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-name {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-role {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-mono);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--off-white);
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s var(--ease-out);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy-soft);
  border-left: 1px solid var(--border);
  z-index: 800;
  padding: 7rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right var(--dur) var(--ease-out);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer a {
  font-size: 1.15rem;
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--off-white);
  transition: color .25s;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--gold);
}

.mobile-drawer a.drawer-cta {
  border: none;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 26, .7);
  z-index: 799;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── HERO (HOME) ────────────────────────────────────────── */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.hero-home::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, .06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 50%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--col-gap);
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-number {
  font-family: var(--ff-mono);
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.hero-number::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--border);
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: .75rem;
}

.hero-tagline strong {
  color: var(--gold);
}

.hero-desc {
  font-size: .95rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-pulse {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--green-flag);
  letter-spacing: .08em;
}

.hero-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-flag);
  animation: pulseRing 2.5s ease infinite;
  flex-shrink: 0;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 207, 142, .5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(62, 207, 142, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(62, 207, 142, 0);
  }
}

/* Hero Visual — Polaroid-style card */
.hero-visual {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-soft);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 168, 76, .08);
}

.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  filter: saturate(.95);
  transition: transform 5s var(--ease-out);
}

.hero-photo-frame:hover img {
  transform: scale(1.03);
}

.hero-photo-caption {
  background: var(--navy-soft);
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-photo-caption-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
}

.hero-photo-caption-role {
  font-family: var(--ff-mono);
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--navy-soft);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: .75rem 1rem;
  backdrop-filter: blur(10px);
}

.hero-badge-1 {
  top: 8%;
  left: -20%;
}

.hero-badge-2 {
  bottom: 15%;
  right: -18%;
}

.hero-badge-num {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-badge-label {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--ff-mono);
  margin-top: 2px;
}

/* ─── STATS BAR ─────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-cell {
  background: var(--navy-soft);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.stat-cell:hover {
  background: var(--panel);
}

.stat-cell::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .4s var(--ease-out);
}

.stat-cell:hover::before {
  width: 60%;
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--ff-mono);
}

/* ─── PAGE HERO (inner pages) ─────────────────────────────  */
.page-hero {
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, .04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 820px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity .25s;
}

.breadcrumb a:hover {
  opacity: .8;
}

.breadcrumb-sep {
  color: var(--border);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.75;
  max-width: 640px;
}

/* ─── ABOUT / BIO SECTION ───────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--col-gap);
  align-items: start;
}

.bio-image-wrap {
  position: sticky;
  top: 120px;
}

.bio-image-frame {
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  overflow: hidden;
}

.bio-image-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: saturate(.9) contrast(1.05);
  transition: transform 6s var(--ease-out);
}

.bio-image-frame:hover img {
  transform: scale(1.04);
}

.bio-stamp {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(4, 13, 26, .85);
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.bio-stamp-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.bio-stamp-label {
  font-size: .65rem;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--ff-mono);
  margin-top: 3px;
}

.bio-content {
  padding-top: 1rem;
}

.bio-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.bio-text {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* Pull quote */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 0 1rem 1.75rem;
  margin: 2.5rem 0;
}

.pull-quote p {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: .5rem;
}

.pull-quote cite {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-style: normal;
}

/* Traits grid */
.traits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 2rem;
}

.trait-chip {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1rem;
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: .85rem;
  color: var(--off-white);
  transition: border-color .25s, color .25s;
}

.trait-chip:hover {
  border-color: var(--gold-line);
  color: var(--white);
}

.trait-chip::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Two column info grid */
.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: start;
}

/* ─── TIMELINE ───────────────────────────────────────────── */
.timeline-wrap {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}

.timeline-items {
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}

.tl-item:last-child {
  border-bottom: none;
}

.tl-dot {
  position: absolute;
  left: -43px;
  top: 2.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--navy);
  z-index: 2;
  transition: background .3s, box-shadow .3s;
}

.tl-item:hover .tl-dot {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, .5);
}

.tl-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .6rem;
}

.tl-phase {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: .2rem .6rem;
  border-radius: 1px;
}

.tl-firm {
  font-size: .75rem;
  color: var(--muted);
  font-family: var(--ff-mono);
  letter-spacing: .08em;
}

.tl-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}

.tl-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}

.tl-tag {
  font-size: .7rem;
  font-family: var(--ff-mono);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .2rem .6rem;
  letter-spacing: .06em;
}

/* ─── VISION & MISSION CARDS ────────────────────────────── */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vm-card {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out);
}

.vm-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.vm-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.vm-card-label {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}

.vm-card p {
  font-size: .95rem;
  color: var(--off-white);
  line-height: 1.8;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-masthead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: start;
  margin-bottom: 5rem;
}

.services-masthead-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  align-self: center;
}

.masthead-stat {
  background: var(--navy-soft);
  padding: 2rem;
  text-align: center;
  transition: background .25s;
}

.masthead-stat:hover {
  background: var(--panel);
}

.masthead-stat-num {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}

.masthead-stat-label {
  font-size: .7rem;
  color: var(--muted);
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* Services cards — magazine-style rows */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.service-row {
  background: var(--navy-soft);
  padding: 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: background .3s;
  cursor: default;
}

.service-row:hover {
  background: var(--panel);
}

.service-row-icon {
  width: 56px;
  height: 56px;
  border-radius: 2px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s, color .3s;
}

.service-row:hover .service-row-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.service-row-body {}

.service-row-title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}

.service-row-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-row-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-top: .6rem;
  flex-shrink: 0;
  min-width: 190px;
}

.service-feat {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--off-white);
  font-family: var(--ff-mono);
}

.service-feat::before {
  content: '→';
  color: var(--gold);
  font-size: .75rem;
}

/* Services CTA box */
.service-cta-box {
  background: var(--navy-soft);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: 4rem;
  text-align: center;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.service-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, .07) 0%, transparent 70%);
  pointer-events: none;
}

.service-cta-box h2 {
  margin-bottom: 1rem;
}

.service-cta-box h2 span {
  color: var(--gold);
  font-style: italic;
}

.service-cta-box p {
  color: var(--off-white);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--col-gap);
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-panel {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
}

.contact-info-panel h2 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

.contact-info-panel>p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color .25s;
}

.contact-channel:hover {
  border-color: var(--gold-line);
}

.channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.channel-label {
  font-size: .7rem;
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 2px;
}

.channel-value {
  font-size: .9rem;
  color: var(--off-white);
  font-weight: 500;
}

.status-indicator-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.25rem;
  background: rgba(62, 207, 142, .05);
  border: 1px solid rgba(62, 207, 142, .15);
  border-radius: 2px;
  font-size: .82rem;
  color: var(--green-flag);
  font-family: var(--ff-mono);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-flag);
  flex-shrink: 0;
  animation: pulseRing 2s infinite;
}

/* Contact form */
.form-panel {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3rem;
}

.form-panel-eyebrow {
  margin-bottom: 1rem;
}

.form-panel h2 {
  font-size: 1.9rem;
  margin-bottom: .5rem;
}

.form-panel>p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* Inquiry type pills */
.inquiry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.inquiry-pill {
  padding: .45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .78rem;
  font-family: var(--ff-mono);
  color: var(--muted);
  letter-spacing: .05em;
  background: transparent;
  transition: all .25s;
}

.inquiry-pill.active,
.inquiry-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-full {
  grid-column: span 2;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.field label {
  font-size: .75rem;
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.field input,
.field textarea {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  color: var(--white);
  padding: .85rem 1rem;
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-size: .92rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
  padding: .75rem 0;
}

.form-privacy svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: .5rem;
}

.btn-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: .95rem 2.5rem;
  font-family: var(--ff-sans);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--dur) var(--ease-out);
  box-shadow: 0 4px 20px rgba(201, 168, 76, .2);
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 168, 76, .35);
}

.form-status {
  text-align: center;
  padding: .85rem 1rem;
  border-radius: 2px;
  font-size: .88rem;
  font-family: var(--ff-mono);
  display: none;
  margin-top: 1rem;
}

.form-status.success {
  display: block;
  background: rgba(62, 207, 142, .08);
  color: var(--green-flag);
  border: 1px solid rgba(62, 207, 142, .2);
}

.form-status.error {
  display: block;
  background: rgba(224, 80, 80, .08);
  color: var(--red-flag);
  border: 1px solid rgba(224, 80, 80, .2);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}

.footer-brand-name {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-brand-name span {
  color: var(--gold);
  font-style: italic;
}

.footer-brand-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--gold-line);
}

.footer-brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-bio {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-col ul a {
  font-size: .88rem;
  color: var(--muted);
  transition: color .25s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .85rem;
}

.footer-contact-row svg {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-row span {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .8rem;
  color: var(--muted);
  font-family: var(--ff-mono);
}

.footer-tag {
  font-size: .75rem;
  color: var(--muted);
  font-family: var(--ff-mono);
  opacity: .5;
}

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  background: var(--navy-soft);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(201, 168, 76, .08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner h2 span {
  color: var(--gold);
  font-style: italic;
}

.cta-banner p {
  color: var(--off-white);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.delay-1 {
  transition-delay: .12s;
}

.reveal.delay-2 {
  transition-delay: .24s;
}

.reveal.delay-3 {
  transition-delay: .36s;
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 2px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: all .35s var(--ease-out);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 168, 76, .25);
}

.back-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {

  .hero-grid,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge-1,
  .hero-badge-2 {
    display: none;
  }

  .hero-photo-frame {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .services-masthead {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {

  .info-columns,
  .vm-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 56px 1fr;
  }

  .service-row-features {
    display: none;
  }

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

  .nav-links,
  .navbar .btn-outline {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .bio-image-wrap {
    position: static;
  }

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

  .form-full {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .cta-banner {
    padding: 3rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-cta-box {
    padding: 3rem 1.5rem;
  }
}