/* ============================================================
   Professional Profile — Executive Theme
   Palette: Navy #001233 · Gold #a78831 · Ivory #faf8f3
   ============================================================ */

:root {
  --navy:        #001233;
  --navy-900:    #00102b;
  --navy-800:    #061b3f;
  --navy-700:    #0d2550;
  --gold:        #a78831;
  --gold-light:  #c6a653;
  --gold-soft:   #e9dcb8;
  --ivory:       #faf8f3;
  --paper:       #ffffff;
  --ink:         #1a1f2b;
  --muted:       #5b6473;
  --line:        #e6e2d6;
  --line-navy:   rgba(167, 136, 49, 0.28);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --radius: 4px;
  --shadow: 0 24px 60px -28px rgba(0, 18, 51, 0.45);
  --shadow-sm: 0 14px 36px -22px rgba(0, 18, 51, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; margin: 0; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
p  { margin: 0 0 1.1rem; }
.lead { font-size: 1.18rem; color: #46505f; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Layout ---------- */
.wrap { width: min(var(--wrap), calc(100% - 3rem)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section.tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.center { text-align: center; }
.measure { max-width: 720px; }
.measure.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 12px 30px -14px rgba(167,136,49,.7); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: rgba(0,18,51,.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-arrow::after { content: "\2192"; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 1.1rem 0;
}
.site-header.solid {
  background: rgba(0, 16, 43, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(167,136,49,.25);
  padding: 0.7rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { width: 46px; height: auto; }
.contact-detail .cv a { color: inherit; text-decoration: none; transition: color .2s ease; }
.contact-detail .cv a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; color: #fff; font-weight: 600; letter-spacing: .01em; }
.brand-name span { color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,.82); text-transform: uppercase; position: relative; padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold-light); transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.nav-cta { padding: 0.72rem 1.7rem; font-size: 0.72rem; font-weight: 700; color: #fff; line-height: 1; border-radius: var(--radius); }
.nav-links a.nav-cta::after { content: none; }
.nav-links a.nav-cta:hover { color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background:
    radial-gradient(1200px 600px at 75% 10%, rgba(167,136,49,.16), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy) 45%, var(--navy-700) 100%);
  color: #fff; overflow: hidden; padding: 9rem 0 5rem;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(1000px 600px at 70% 30%, #000, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
/* emphasised heading words: upright gold accent (italic Cormorant reads poorly at display size) */
h1 em, h2 em, h3 em { font-style: normal; color: var(--gold); }
.hero h1 em, .hero h2 em, .on-navy h1 em, .on-navy h2 em { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,.78); font-size: 1.18rem; max-width: 46ch; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }

.hero-emblem {
  display: grid; place-items: center; position: relative;
}
.hero-emblem .ring {
  width: min(360px, 80%); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--line-navy);
  display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 50% 35%, rgba(167,136,49,.14), transparent 65%);
}
.hero-emblem .ring::before {
  content: ""; position: absolute; inset: 22px; border-radius: 50%; border: 1px solid rgba(167,136,49,.18);
}
.hero-emblem img { width: 46%; filter: drop-shadow(0 18px 30px rgba(0,0,0,.4)); }

.hero-stats { display: flex; gap: 2.6rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero-stats .stat .n { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-light); line-height: 1; }
.hero-stats .stat .l { font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .4rem; }

/* ---------- Sections on navy ---------- */
.on-navy { background: var(--navy); color: #fff; position: relative; }
.on-navy h2, .on-navy h3 { color: #fff; }
.on-navy p { color: rgba(255,255,255,.74); }
.on-navy .eyebrow { color: var(--gold-light); }
.on-navy .eyebrow::before, .on-navy .eyebrow.center::after { background: var(--gold-light); }

.on-ivory { background: var(--ivory); }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-media .frame {
  position: absolute; inset: -16px -16px auto auto; width: 62%; height: 62%;
  border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1;
}
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- Pillars / cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: top; transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.card:hover::before { transform: scaleY(1); }
.card .num { font-family: var(--serif); font-size: 1rem; color: var(--gold); letter-spacing: .2em; display: block; margin-bottom: 1rem; }
.card h3 { margin-bottom: .7rem; }
.card p { color: var(--muted); margin: 0; }

.on-navy .card { background: var(--navy-800); border-color: rgba(167,136,49,.22); }
.on-navy .card:hover { border-color: var(--gold); box-shadow: 0 24px 50px -28px #000; }
.on-navy .card p { color: rgba(255,255,255,.72); }

.icon-badge {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--gold); color: var(--gold); margin-bottom: 1.4rem; font-family: var(--serif); font-size: 1.3rem;
}
.on-navy .icon-badge { color: var(--gold-light); border-color: rgba(167,136,49,.5); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2.4rem 2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.step .step-n { font-family: var(--serif); font-size: 3rem; color: var(--gold-soft); line-height: 1; display: block; margin-bottom: .6rem; }
.step h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Checklist ---------- */
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 2.2rem; list-style: none; padding: 0; margin: 1.8rem 0 0; }
.checks li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 500; }
.checks li::before {
  content: "\2713"; color: var(--gold); font-weight: 700; flex: none;
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--gold-soft);
  display: grid; place-items: center; font-size: .8rem; margin-top: 2px;
}
.on-navy .checks li::before { border-color: rgba(167,136,49,.4); color: var(--gold-light); }

/* "without us" cross list */
.crosses { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .8rem; }
.crosses li { display: flex; gap: .9rem; align-items: center; color: rgba(255,255,255,.85); }
.crosses li::before {
  content: "\2715"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; font-size: .75rem; color: rgba(255,255,255,.55);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(167,136,49,.2), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff; border-radius: 6px; padding: clamp(3rem, 6vw, 5rem); text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 56ch; margin-inline: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 1.4rem 0; transition: .3s;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 2rem;
  font-family: var(--serif); font-size: 1.3rem; color: var(--navy); font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--gold); font-size: 1.6rem; font-family: var(--sans); font-weight: 300; transition: transform .3s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 1rem 0 0; max-width: 70ch; }

/* ---------- Profiles grid ---------- */
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.profile-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: .4rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.profile-card .avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy);
  color: var(--gold-light); display: grid; place-items: center; font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1rem;
  border: 1px solid var(--line-navy);
}
.profile-card h3 { font-size: 1.4rem; }
.profile-card .role { color: var(--gold); font-weight: 600; font-size: .9rem; }
.profile-card .loc { color: var(--muted); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .6rem; }
.profile-card .bio { color: var(--muted); font-size: .95rem; flex: 1; }
.profile-card .read-more {
  margin-top: 1.2rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--navy);
  display: inline-flex; gap: .5rem; align-items: center;
}
.profile-card .read-more::after { content: "\2192"; transition: transform .25s ease; }
.profile-card:hover .read-more { color: var(--gold); }
.profile-card:hover .read-more::after { transform: translateX(4px); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(2rem, 4vw, 3rem); box-shadow: var(--shadow);
}
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; font-weight: 600; }
.field input, .field textarea {
  width: 100%; padding: .95rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(167,136,49,.14); }
.field textarea { min-height: 130px; resize: vertical; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-detail .ci { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; flex: none; }
.contact-detail .ct { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-detail .cv { font-weight: 600; color: var(--navy); }
.on-navy .contact-detail .cv,
.hero .contact-detail .cv,
.hero .contact-detail .cv a { color: #fff; }
.on-navy .contact-detail .ct,
.hero .contact-detail .ct { color: rgba(255,255,255,.65); }

/* ---------- Logo strip / values ---------- */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.value-row .v { padding: 2.4rem 2rem; border-right: 1px solid var(--line); }
.value-row .v:last-child { border-right: 0; }
.value-row .v h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: .6rem; }
.value-row .v p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 4.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-name { margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer-col a { font-size: .95rem; color: rgba(255,255,255,.66); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-emblem { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .steps, .profiles-grid, .value-row { grid-template-columns: 1fr; }
  .grid-2, .checks, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 2rem; }
  .value-row .v { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-row .v:last-child { border-bottom: 0; }

  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 80%);
    background: var(--navy-900); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 1.6rem; transform: translateX(100%); transition: transform .35s ease; box-shadow: -20px 0 50px rgba(0,0,0,.4);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: block; z-index: 70; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-stats { gap: 1.6rem; }
  .profiles-grid { gap: 1rem; }
}

/* ---------- Accessibility helpers ---------- */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.skip-link {
  position:absolute; left:1rem; top:-3rem; z-index:200; background:var(--gold); color:#fff;
  padding:.7rem 1.2rem; border-radius:var(--radius); font-size:.82rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; transition:top .25s ease;
}
.skip-link:focus { top:1rem; outline:2px solid #fff; outline-offset:2px; }
:focus-visible { outline:2px solid var(--gold); outline-offset:3px; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size:.8rem; letter-spacing:.04em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-bottom:1.8rem; }
.crumbs a { color:var(--gold-light); }
.crumbs a:hover { color:#fff; }
.crumbs span { margin:0 .15rem; }

/* ---------- Profile detail page ---------- */
.profile-hero { display:flex; align-items:center; gap:1.8rem; }
.profile-avatar {
  width:96px; height:96px; flex:none; border-radius:50%; background:var(--navy-800);
  border:1px solid var(--line-navy); color:var(--gold-light); display:grid; place-items:center;
  font-family:var(--serif); font-size:2.4rem;
}
.profile-hero h1 { color:#fff; font-size:clamp(2.2rem,4.5vw,3.4rem); }
.profile-role { color:var(--gold-light); font-weight:600; font-size:1.15rem; margin:.5rem 0 .2rem; }
.profile-loc { color:rgba(255,255,255,.6); font-size:.95rem; text-transform:uppercase; letter-spacing:.08em; }

.profile-detail { display:grid; grid-template-columns:1.6fr .9fr; gap:clamp(2rem,5vw,4rem); align-items:start; }
.profile-main .lead { color:var(--ink); }
.aside-card { background:var(--ivory); border:1px solid var(--line); border-radius:6px; padding:2rem 1.8rem; position:sticky; top:6rem; }
.aside-card h3 { font-size:1.3rem; margin-bottom:1.2rem; }
.aside-card .ag { display:flex; flex-direction:column; gap:.1rem; padding:.85rem 0; border-bottom:1px solid var(--line); }
.aside-card .ag:last-child { border-bottom:0; }
.aside-card .ag span { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.aside-card .ag strong { color:var(--navy); font-weight:600; }

.profile-nav-links { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.profile-nav-links .pn { display:flex; flex-direction:column; gap:.2rem; color:var(--navy); transition:color .2s ease; }
.profile-nav-links .pn span { font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); }
.profile-nav-links .pn strong { font-family:var(--serif); font-size:1.3rem; font-weight:600; }
.profile-nav-links .pn-next { text-align:right; margin-left:auto; }
.profile-nav-links .pn:hover { color:var(--gold); }

@media (max-width:940px){
  .profile-detail { grid-template-columns:1fr; }
  .aside-card { position:static; }
}

/* ---------- Back-to-top button ---------- */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--gold-light);
  background: var(--gold); color: #fff; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 14px 34px -12px rgba(167,136,49,.75);
  opacity: 0; visibility: hidden; transform: translateY(14px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .25s ease, visibility .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold-light); transform: translateY(-3px); }
@media (max-width: 560px) { .to-top { right: 1rem; bottom: 1rem; width: 44px; height: 44px; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}

/* ---------- Legal pages ---------- */
.legal-updated { font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; color:var(--gold); }
.legal { max-width:820px; }
.legal h2 { font-size:1.55rem; margin:2.4rem 0 .8rem; padding-top:1.6rem; border-top:1px solid var(--line); }
.legal h2:first-child { border-top:0; padding-top:0; margin-top:0; }
.legal p { color:var(--ink); }
.legal ul { margin:0 0 1.1rem; padding-left:1.2rem; color:var(--ink); }
.legal li { margin-bottom:.5rem; }
.legal a { color:var(--gold); text-decoration:underline; text-underline-offset:3px; }
.legal a:hover { color:var(--navy); }
.legal-ph { background:rgba(167,136,49,.14); border:1px dashed var(--gold); border-radius:3px; padding:.05rem .4rem; color:var(--gold); font-style:italic; font-size:.92em; }

/* ---------- Profile card photos ---------- */
.profile-card { padding: 0 0 1.7rem; overflow: hidden; }
.pc-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top; margin-bottom: 1.3rem; background: var(--ivory); }
.profile-card h3, .profile-card .role, .profile-card .loc, .profile-card .bio { padding-left: 1.8rem; padding-right: 1.8rem; }
.profile-card .read-more { margin-left: 1.8rem; margin-right: 1.8rem; }
.profile-card .avatar { margin-left: 1.8rem; margin-top: 1.8rem; }

/* ---------- Profile detail photo ---------- */
.profile-photo { width: 168px; height: 200px; object-fit: cover; object-position: center top; border-radius: 6px;
  border: 1px solid var(--line-navy); box-shadow: var(--shadow-sm); flex: none; background: var(--navy-800); }

/* ---------- Social chips ---------- */
.profile-socials { display: flex; gap: .65rem; margin-top: 1.2rem; }
.profile-socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.profile-socials a:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(0,0,0,.45); }
.profile-socials img { width: 18px; height: 18px; object-fit: contain; }
.ag-soc .profile-socials { margin-top: .5rem; }

/* ---------- Experience / Education timeline ---------- */
.prof-sec-title { font-size: clamp(1.5rem,3vw,1.95rem); margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.timeline-item { position: relative; padding: 0 0 1.6rem 1.6rem; border-left: 2px solid var(--gold-soft); margin-left: .3rem; }
.timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -8px; top: .35rem; width: 13px; height: 13px;
  border-radius: 50%; background: var(--gold); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--gold-soft); }
.timeline-item h3 { font-size: 1.25rem; margin-top: .1rem; }
.timeline-item .ti-meta { color: var(--gold); font-weight: 600; font-size: .92rem; margin: .25rem 0 .55rem; }
.timeline-item p { color: var(--muted); margin-bottom: .6rem; }

/* ---------- Create page emblem photo ---------- */
.ring.ring-photo { border-color: rgba(167,136,49,.18); }
.ring.ring-photo img { width: 76%; filter: drop-shadow(0 14px 26px rgba(0,0,0,.35)); }

@media (max-width: 560px) {
  .profile-hero { flex-direction: column; text-align: center; }
  .profile-photo { width: 140px; height: 168px; }
  .profile-hero .profile-socials { justify-content: center; }
}

/* ---------- Whole profile card clickable (stretched link) ---------- */
.profile-card { position: relative; cursor: pointer; }
.profile-card .read-more::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.profile-card .read-more { position: static; }

/* ---------- Cookie notice (compact, unobtrusive) ---------- */
.cookie-notice {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 95;
  width: min(340px, calc(100% - 2rem));
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem .9rem;
  background: rgba(0,16,43,.96); color: rgba(255,255,255,.8);
  border: 1px solid rgba(167,136,49,.35); border-radius: 8px;
  padding: .7rem .85rem; box-shadow: 0 16px 40px -18px rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.cookie-notice.show { opacity: 1; visibility: visible; transform: none; }
.cookie-notice .cookie-text { flex: 1 1 160px; font-size: .78rem; line-height: 1.45; margin: 0; }
.cookie-notice a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-notice a:hover { color: #fff; }
.cookie-actions { display: flex; gap: .4rem; flex: 0 0 auto; }
.cookie-btn {
  font-family: var(--sans); font-size: .72rem; font-weight: 600; cursor: pointer;
  padding: .38rem .8rem; border-radius: 5px; border: 1px solid transparent; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookie-accept { background: var(--gold); color: #fff; }
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.25); }
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* ============================================================
   Page-one difference — SERP before/after comparison
   (self-contained; navy #001233 / gold #a78831)
   ============================================================ */
.serp-stage__search{display:flex;align-items:center;gap:12px;max-width:540px;margin:0 auto 2rem;background:#fff;border:1.5px solid rgba(0,18,51,.18);border-radius:999px;padding:14px 22px;font-size:1.05rem;color:#001233;box-shadow:0 1px 3px rgba(0,18,51,.06)}
.serp-stage__search svg{width:18px;height:18px;color:#8a6f24;flex:none}
.serp-stage__type{font-weight:600}
.serp-stage__caret{display:inline-block;width:2px;height:1.15em;background:#a78831;margin-left:2px;vertical-align:-3px;animation:serp-caret 1s steps(2,end) infinite}
@keyframes serp-caret{50%{opacity:0}}
@media (prefers-reduced-motion: reduce){.serp-stage__caret{animation:none}}
.serp-compare{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
@media (max-width:900px){.serp-compare{grid-template-columns:1fr}}
.serp-compare__label{display:flex;align-items:center;gap:10px;margin:0 0 14px}
.serp-compare__pill{display:inline-block;font-family:var(--sans,sans-serif);font-size:.72rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:4px 12px;border-radius:999px}
.serp-compare__pill--without{background:rgba(192,57,43,.08);color:#a63029}
.serp-compare__pill--with{background:rgba(167,136,49,.14);color:#8a6f24}
.serp{position:relative;background:#fff;border:1px solid rgba(0,18,51,.10);border-radius:12px;padding:22px 24px;box-shadow:0 24px 60px -28px rgba(0,18,51,.45)}
.serp::before{content:"";position:absolute;inset:-1px;border-radius:12px;background:linear-gradient(135deg,transparent,rgba(167,136,49,.4),transparent);z-index:-1;opacity:0;transition:opacity .3s}
.serp--featured::before{opacity:1}
.serp__chrome{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.serp__dots{display:flex;gap:6px}
.serp__dot{width:11px;height:11px;border-radius:50%;background:rgba(0,18,51,.10)}
.serp__addr{flex:1;background:#faf8f3;padding:6px 12px;border-radius:999px;font-size:.82rem;color:#5b6473}
.serp__search{display:flex;align-items:center;gap:10px;border:1px solid rgba(0,18,51,.12);border-radius:999px;padding:10px 18px;margin-bottom:18px;background:#fff}
.serp__search svg{width:16px;height:16px;color:#5b6473;flex:none}
.serp__search-q{color:#001233;font-weight:600}
.serp__label{display:block;font-size:.74rem;color:#5b6473;text-transform:uppercase;letter-spacing:.12em;margin-bottom:12px}
.serp__results{display:grid;gap:14px}
.serp__result{padding:12px 14px;border-radius:8px}
.serp__result--featured{position:relative;background:linear-gradient(135deg,rgba(167,136,49,.10),rgba(167,136,49,.04));border:1px solid rgba(167,136,49,.35)}
.serp__result--featured::after{content:"\2713";position:absolute;top:12px;right:14px;width:26px;height:26px;background:#a78831;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700}
.serp__result-url{display:flex;align-items:center;gap:8px;font-size:.78rem;color:#5b6473;margin-bottom:4px}
.serp__result-url-icon{width:18px;height:18px;flex:none;background:#001233;color:#c6a653;border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:.7rem;font-weight:700;font-family:var(--sans,sans-serif)}
.serp__result-title{font-family:var(--serif,serif);font-weight:600;font-size:1.1rem;color:#001233;margin:0 0 4px;line-height:1.2}
.serp__result-snippet{font-size:.86rem;color:#5b6473;margin:0;line-height:1.45}
.serp__result--empty{border:1px dashed rgba(0,18,51,.22);text-align:center;color:#8089a1;font-size:.88rem;padding:24px 14px}

/* ---------- Fix: long eyebrow overflowing on small screens ---------- */
@media (max-width: 600px) {
  .eyebrow { display: flex; flex-wrap: wrap; letter-spacing: 0.2em; row-gap: 0.4rem; }
  .eyebrow.center { justify-content: center; }
}

/* SERP heading emphasis - match brand gold (parity with source) */
.on-ivory h2 em{color:var(--gold);font-style:normal;}

/* ---------- Contact form: honeypot + status ---------- */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.form-status { margin: 1rem 0 0; font-size: .92rem; line-height: 1.5; min-height: 1.2em; }
.form-status.is-success { color: #1f7a4d; font-weight: 600; }
.form-status.is-error { color: #b3261e; font-weight: 600; }

/* ============================================================
   EXECUTIVE REFINEMENTS (visual polish, CSS-only)
   ============================================================ */

/* Crisper type rendering + kerning/ligatures */
html { font-feature-settings: "kern" 1, "liga" 1, "calt" 1; }
h1, h2, h3, h4 { font-feature-settings: "kern" 1, "liga" 1; }
h1 { line-height: 1.04; }
.lead { color: #3f4a59; }

/* Primary button: subtle gold sheen + refined depth */
.btn-gold {
  background-image: linear-gradient(135deg, #b1912e 0%, #caa850 55%, #b89636 100%);
  letter-spacing: 0.15em;
  box-shadow: 0 10px 26px -12px rgba(167,136,49,.75), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-gold:hover { background-image: linear-gradient(135deg, #c0a13c 0%, #d8b863 55%, #c4a242 100%); }

/* Refined gold rule beneath centred section headings */
.section-head.center h2::after {
  content: ""; display: block; width: 56px; height: 2px; margin: 1.2rem auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px;
}

/* Cards: softer lift + longer, lighter shadow */
.card, .step, .profile-card, .aside-card, .form-card {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.card:hover, .profile-card:hover { box-shadow: 0 30px 60px -32px rgba(0,18,51,.5); }

/* Split-section imagery: clip + slow refined zoom on hover */
.split-media { overflow: hidden; border-radius: 6px; box-shadow: var(--shadow); }
.split-media img { border-radius: 0; box-shadow: none; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.split-media:hover img { transform: scale(1.045); }

/* Profiles: unify varied headshots (gentle desaturate) -> full colour + zoom on hover */
.pc-photo { filter: saturate(.82) contrast(1.02); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.profile-card:hover .pc-photo { filter: none; transform: scale(1.05); }
.profile-photo { filter: saturate(.9); }

/* Footer: refined gold hairline accent on top edge */
.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(167,136,49,.7), transparent);
}

/* Hero monogram ring: a touch more presence */
.hero-emblem .ring { box-shadow: 0 40px 90px -40px rgba(0,0,0,.6); }

/* ============================================================
   ANTI-"AI-TEMPLATE" REFINEMENTS — art-direction & texture
   ============================================================ */

/* 1. Cohesive brand tint over stock imagery (reads art-directed, not stock-grabbed) */
.split-media { position: relative; }
.split-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(0,18,51,.34) 0%, rgba(0,18,51,.08) 55%, rgba(167,136,49,.12) 100%);
  mix-blend-mode: multiply; transition: opacity .6s ease; opacity: 1;
}
.split-media:hover::after { opacity: .55; }
.split-media img { filter: saturate(.8) contrast(1.03); }

/* 2. Fine film grain over flat navy areas (kills the default-gradient look) */
.hero::before, .on-navy::before, .cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.cta-band { position: relative; }
.cta-band > * { position: relative; z-index: 2; }

/* 3. Editorial numerals for the pillars (replaces generic geometric icons) */
.num-badge {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600; line-height: 1;
  color: var(--gold); letter-spacing: .04em; margin-bottom: 1.1rem; padding-bottom: .7rem;
  display: inline-block; border-bottom: 1px solid rgba(167,136,49,.35);
}
.on-navy .num-badge { color: var(--gold-light); }

/* keep navy-section content above the grain layer */
.on-navy > .wrap { position: relative; z-index: 2; }

/* ============================================================
   PRESTIGE PASS — Pavesen-style light serif & airier text
   ============================================================ */
/* Light-weight display serif (the key luxury cue) */
h1, h2 { font-weight: 300; letter-spacing: -0.01em; }
h3 { font-weight: 400; }
.hero h1 em, h1 em, h2 em { font-weight: 300; }     /* keep emphasis same light weight */
.profile-role { font-weight: 500; }

/* Airier body rhythm */
body { line-height: 1.72; }
p { margin-bottom: 1.2rem; }

/* Calmer, finer eyebrow tracking (0.28em read a touch loud) */
.eyebrow { letter-spacing: 0.2em; }

/* preload the light serif so the hero doesn't flash bold */

/* ---------- Who we work with ---------- */
.audience { padding: 1.6rem 0 1.6rem 1.7rem; border-left: 2px solid var(--gold-soft); }
.audience h3 { font-size: 1.45rem; margin-bottom: .45rem; }
.audience p { color: var(--muted); margin: 0; }

/* ---------- Testimonials ---------- */
.quote {
  margin: 0; background: var(--navy-800); border: 1px solid rgba(167,136,49,.22);
  border-radius: 6px; padding: 2.4rem 2rem 2rem; position: relative; overflow: hidden;
}
.quote::before {
  content: "\201C"; position: absolute; top: .35rem; left: 1.1rem;
  font-family: var(--serif); font-size: 4.5rem; line-height: 1; color: rgba(167,136,49,.45);
}
.quote blockquote {
  margin: 1.2rem 0 1.5rem; font-family: var(--serif); font-weight: 300;
  font-size: 1.3rem; line-height: 1.5; color: #fff;
}
.quote figcaption { display: flex; flex-direction: column; gap: .15rem; border-top: 1px solid rgba(167,136,49,.2); padding-top: 1rem; }
.q-role { color: var(--gold-light); font-weight: 600; font-size: .95rem; }
.q-org { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ---------- Chip list (profile sections) ---------- */
.chip-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; max-width: 880px; margin-inline: auto; }
.chip-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1.2rem; font-size: .92rem; color: var(--navy);
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.chip-list li:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- How we work (process) ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { padding: 1.8rem 1.4rem; border-top: 1px solid rgba(167,136,49,.3); }
.process-step .num-badge { font-size: 1.9rem; margin-bottom: .8rem; padding-bottom: .5rem; border-bottom: 0; }
.process-step h3 { font-size: 1.3rem; margin-bottom: .5rem; color: #fff; }
.process-step p { color: rgba(255,255,255,.72); margin: 0; font-size: .96rem; }
@media (max-width: 880px){ .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .process { grid-template-columns: 1fr; } }

/* ---------- Insights ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.insight-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 2rem; display: flex; flex-direction: column; position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.insight-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -32px rgba(0,18,51,.5); border-color: var(--gold-soft); }
.insight-meta { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.insight-card h3 { font-size: 1.45rem; margin-bottom: .7rem; }
.insight-card p { color: var(--muted); flex: 1; margin-bottom: 1.2rem; }
.insight-card .read-more { position: static; }
.insight-card .read-more::after { content: ""; position: absolute; inset: 0; }
@media (max-width: 940px){ .insights-grid { grid-template-columns: 1fr; } }

/* ---------- Article ---------- */
.article { max-width: 760px; }
.article .lead { color: var(--ink); font-size: 1.3rem; line-height: 1.5; margin-bottom: 1.6rem; }
.article p { color: #364152; font-size: 1.08rem; line-height: 1.8; margin-bottom: 1.3rem; }
.article-meta { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }

/* ---------- Intro reveal (homepage, first visit per session) ---------- */
#intro {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--navy-900), var(--navy) 55%, var(--navy-700));
  animation: introOut 1.6s ease forwards;       /* fail-safe: auto-dismisses via CSS alone */
}
#intro img { width: 96px; height: auto; opacity: 0; transform: translateY(8px) scale(.96); animation: introMark .8s ease forwards .1s; filter: drop-shadow(0 18px 36px rgba(0,0,0,.5)); }
@keyframes introMark { to { opacity: 1; transform: none; } }
@keyframes introOut {
  0%, 62% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
html.intro-seen #intro { display: none; }       /* skip on repeat visits this session */
@media (prefers-reduced-motion: reduce) { #intro { display: none; } }

/* ---------- Tablet tier: 2-up card grids (phones stay 1-up) ---------- */
@media (min-width: 620px) and (max-width: 940px) {
  .grid-3, .profiles-grid, .steps, .insights-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Why be featured (benefits) ---------- */
.benefit { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease; }
.benefit:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -32px rgba(0,18,51,.5); border-color: var(--gold-soft); }
.benefit-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--gold-soft); color: var(--gold); font-size: 1.05rem; margin-bottom: 1.1rem; }
.benefit h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.benefit p { color: var(--muted); margin: 0; }

/* Create-page emblem: profile-avatar outline (not a photo) */
.ring.ring-avatar img { width: 60%; filter: none; }

/* Fix: section-head paragraphs on navy must be light, not muted grey */
.on-navy .section-head p { color: rgba(255,255,255,.92); }
