:root {
  --navy: #071a29;
  --navy-mid: #0d2638;
  --navy-soft: #16374d;
  --gold: #c89a55;
  --gold-light: #e6c88f;
  --paper: #f5f3ef;
  --white: #ffffff;
  --ink: #14212a;
  --muted: #66727a;
  --line: rgba(7, 26, 41, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], article[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.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: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--navy);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--white);
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(7, 26, 41, .96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}
.nav-wrap {
  width: min(1180px, calc(100% - 3rem));
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header.is-scrolled .nav-wrap { height: 76px; }
.brand img { width: min(370px, 33vw); height: auto; }
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav a {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold-light); }
.nav-contact { border-bottom: 1px solid var(--gold); padding-bottom: .28rem; }
.primary-nav .nav-fees { color: var(--gold-light); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 350px);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding: 8rem max(1.5rem, calc((100vw - 1180px) / 2)) 5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 88%, rgba(200,154,85,.14), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, #0b2436 74%, #13364d 100%);
  overflow: hidden;
}
.hero-copy {
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 3rem 0;
}
.eyebrow, .section-kicker {
  margin: 0 0 1.35rem;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow.dark { color: #91662d; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.06; }
h1 { max-width: 800px; margin-bottom: 1.6rem; font-size: clamp(3.7rem, 5.6vw, 5.8rem); letter-spacing: -.045em; }
.hero h1 { max-width: 850px; font-size: clamp(3rem, 4.4vw, 4.7rem); }
h2 { margin-bottom: 1.5rem; font-size: clamp(2.5rem, 4vw, 4.3rem); letter-spacing: -.035em; }
.hero-lead { max-width: 680px; margin-bottom: 1.25rem; color: rgba(255,255,255,.78); font-size: 1.16rem; }
.hero-pricing { max-width: 680px; margin-bottom: 2.4rem; color: var(--gold-light); font-family: var(--serif); font-size: clamp(1.55rem, 2.1vw, 2rem); line-height: 1.2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.45rem;
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #071725; }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.4); color: var(--white); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-portrait {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 455px;
  align-self: center;
  border: 1px solid rgba(230,200,143,.55);
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,26,41,.55) 0%, transparent 24%), linear-gradient(0deg, rgba(7,26,41,.24), transparent 36%);
  pointer-events: none;
}
.hero-portrait > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }
.portrait-caption {
  position: absolute;
  z-index: 2;
  right: 2.5rem;
  bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  display: grid;
  line-height: 1.25;
  text-align: left;
}
.portrait-caption span { font-family: var(--serif); font-size: 1.4rem; }
.portrait-caption small { color: rgba(255,255,255,.72); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-mark {
  position: absolute;
  left: 2.5vw;
  bottom: -9rem;
  color: rgba(255,255,255,.025);
  font-family: var(--serif);
  font-size: 27rem;
  line-height: 1;
  pointer-events: none;
}

.section-pad { padding: clamp(4.75rem, 8vw, 7.5rem) max(1.5rem, calc((100vw - 1180px) / 2)); }
.intro { background: var(--paper); }
.section-kicker { color: #8c672f; }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.intro-grid h2 { max-width: 700px; }
.intro-grid div { padding-top: .5rem; color: #4e5c64; font-size: 1.06rem; }
.intro-grid p:last-child { margin-bottom: 0; }

.placements { background: var(--navy-mid); color: var(--white); }
.placement-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.placement-tabs button {
  min-height: 88px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: rgba(255,255,255,.55);
  font: 650 .85rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.placement-tabs button:last-child { border-right: 0; }
.placement-tabs button[aria-selected="true"] { background: var(--gold); color: var(--navy); }
.placement-panel {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(4.5rem, 8vw, 7.5rem) max(1.5rem, calc((100vw - 1180px) / 2));
  animation: panel-in .28s ease both;
}
.placement-panel[hidden] { display: none; }
.placement-panel h2 { max-width: 680px; }
.placement-detail > p { color: rgba(255,255,255,.72); }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.service-list { list-style: none; padding: 2.2rem 0; margin: 1.5rem 0; border-top: 1px solid var(--line); }
.placement-panel .service-list { border-color: rgba(255,255,255,.15); }
.service-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.placement-panel .service-list li { border-color: rgba(255,255,255,.15); }
.service-list span { color: #9b6f32; font-size: .72rem; letter-spacing: .1em; }
.placement-panel .service-list span { color: var(--gold-light); }
.text-link { display: inline-flex; gap: .8rem; align-items: center; padding-bottom: .25rem; border-bottom: 1px solid currentColor; font-weight: 650; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(5px); }
.text-link.gold { color: var(--gold-light); }
.service-page-link { display: flex; width: fit-content; gap: .7rem; align-items: center; margin-top: 1.25rem; color: rgba(255,255,255,.76); font-size: .9rem; font-weight: 650; text-decoration-color: rgba(230,200,143,.55); text-underline-offset: .3rem; }
.service-page-link:hover, .service-page-link:focus-visible { color: var(--gold-light); }

.fees { background: #e9e5de; }
.fees-heading { max-width: 760px; }
.fees-heading > p:last-child { color: #5b676e; font-size: 1.08rem; }
.fee-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 4rem;
  padding: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  background: var(--navy);
  border-left: 5px solid var(--gold);
  box-shadow: 0 20px 45px rgba(7,26,41,.12);
}
.fee-feature-label {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.fee-feature h3 {
  max-width: 700px;
  margin-bottom: .9rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}
.fee-feature-copy > p:last-child { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.72); }
.fee-feature-price { padding-left: clamp(1.5rem, 3vw, 3rem); border-left: 1px solid rgba(230,200,143,.35); }
.fee-feature .fee-price { margin-bottom: 1.2rem; color: var(--gold-light); }
.fee-feature .text-link { color: var(--white); }
.fee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; background: rgba(7,26,41,.16); border: 1px solid rgba(7,26,41,.16); }
.fee-card { min-height: 285px; padding: clamp(2rem, 3vw, 3.2rem); background: #f7f5f1; }
.fee-level { min-height: 3.5rem; margin-bottom: 1.8rem; color: #8f662d; font-size: .8rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.fee-price { margin-bottom: .75rem; color: var(--navy); font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1; }
.fee-price span { font-family: var(--sans); font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.fee-salary { min-height: 3rem; color: #445159; font-weight: 650; }
.fee-notes { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); margin-top: 2rem; padding: clamp(2rem, 4vw, 3rem); border: 1px solid rgba(154,107,45,.5); background: rgba(255,255,255,.58); }
.fee-notes p { margin: 0; }
.fee-promise > p:first-child { color: var(--navy); font-family: var(--serif); font-size: 1.55rem; line-height: 1.25; }
.fee-promise > p:last-child { margin-top: 1rem; color: #56636a; }
.fee-inclusions > p { margin-bottom: 1rem; color: var(--navy); }
.fee-inclusions ul { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.fee-inclusions li { position: relative; padding-left: 1.35rem; color: #56636a; }
.fee-inclusions li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.focus { background: var(--white); }
.focus > h2 { max-width: 720px; }
.focus-list { margin-top: 3rem; border-top: 1px solid var(--line); }
.focus-list > div { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 1rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.focus-list span { color: #9b6f32; font-size: .74rem; letter-spacing: .12em; }
.focus-list h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.5rem); font-weight: 400; }

.about { display: grid; grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr); gap: clamp(3rem, 9vw, 9rem); align-items: center; background: var(--paper); }
.about-photo { position: relative; width: 100%; max-width: 420px; }
.about-photo::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid rgba(200,154,85,.7); }
.about-photo img { position: relative; display: block; width: 100%; height: auto; }
.about-copy { max-width: 640px; }
.about-copy > p:not(.section-kicker) { color: #546169; font-size: 1.05rem; }
.about-copy h2 strong { color: #9b6f32; font-weight: 600; }
blockquote { margin: 2.4rem 0; padding-left: 1.5rem; border-left: 2px solid var(--gold); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.85rem); font-style: italic; line-height: 1.35; }

.service-header { position: absolute; z-index: 20; inset: 0 0 auto; color: var(--white); }
.service-hero { min-height: 680px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); padding: 9rem max(1.5rem, calc((100vw - 1180px) / 2)) 6rem; color: var(--white); background: radial-gradient(circle at 82% 24%, rgba(200,154,85,.18), transparent 24%), linear-gradient(135deg, var(--navy) 0%, #0b2639 100%); }
.service-hero h1 { max-width: 760px; font-size: clamp(3.2rem, 5.4vw, 5.5rem); }
.service-hero-copy > p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.76); font-size: 1.14rem; }
.service-offer { padding: clamp(2.2rem, 4vw, 3.6rem); border: 1px solid rgba(230,200,143,.5); background: rgba(255,255,255,.055); box-shadow: 0 25px 60px rgba(0,0,0,.18); }
.service-offer-label { margin-bottom: 1rem; color: var(--gold-light); font-size: .76rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.service-offer .fee-price { color: var(--gold-light); }
.service-offer > p:nth-of-type(3) { color: rgba(255,255,255,.72); }
.service-offer .button { margin-top: .75rem; }
.service-tier-summary { margin: 1.5rem 0 1.75rem; border-top: 1px solid rgba(255,255,255,.18); }
.service-tier-summary div { display: flex; justify-content: space-between; gap: 1.25rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.service-tier-summary span { color: rgba(255,255,255,.72); }
.service-tier-summary strong { color: var(--gold-light); white-space: nowrap; }
.service-offer-note { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: .82rem; }
.service-intro { background: var(--paper); }
.service-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.service-intro-grid > div:last-child { color: #4e5c64; font-size: 1.06rem; }
.role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 4rem; border: 1px solid var(--line); background: var(--line); }
.role-card { min-height: 250px; padding: clamp(2rem, 3.5vw, 3rem); background: var(--white); }
.role-card span { color: #91662d; font-size: .74rem; font-weight: 750; letter-spacing: .13em; }
.role-card h3 { margin: 1.25rem 0 .8rem; color: var(--navy); font-family: var(--serif); font-size: clamp(1.65rem, 2.6vw, 2.25rem); font-weight: 400; line-height: 1.1; }
.role-card p { margin-bottom: 0; color: #59666d; }
.service-inclusions { display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr); gap: clamp(3rem, 8vw, 8rem); color: var(--white); background: var(--navy-mid); }
.service-inclusions h2 { max-width: 660px; }
.service-inclusions > div:first-child > p:last-child { color: rgba(255,255,255,.7); }
.included-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.17); }
.included-list li { position: relative; padding: 1.15rem 0 1.15rem 2rem; border-bottom: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.82); }
.included-list li::before { content: ""; position: absolute; left: 0; top: 1.7rem; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.fee-boundary { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; background: #e9e5de; }
.fee-boundary-note { padding: clamp(2rem, 4vw, 3.5rem); border-left: 5px solid var(--gold); background: var(--white); box-shadow: 0 18px 45px rgba(7,26,41,.08); }
.fee-boundary-note h2 { font-size: clamp(2.1rem, 3.8vw, 3.5rem); }
.fee-boundary-note p { color: #526067; }
.fee-boundary-note p:last-child { margin-bottom: 0; }
.service-personal { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; background: var(--white); }
.service-personal p { color: #536168; font-size: 1.05rem; }
.service-personal-quote { padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid rgba(200,154,85,.6); }
.service-personal-quote p:first-child { margin-bottom: 1rem; color: var(--navy); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.18; }
.service-personal-quote p:last-child { margin-bottom: 0; color: #805c2c; font-size: .78rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.service-cta { padding: clamp(4rem, 8vw, 6rem) max(1.5rem, calc((100vw - 1180px) / 2)); text-align: center; color: var(--white); background: var(--navy); }
.service-cta h2 { max-width: 780px; margin-inline: auto; }
.service-cta p { max-width: 650px; margin: 0 auto 2rem; color: rgba(255,255,255,.72); font-size: 1.08rem; }

.contact { position: relative; min-height: 640px; padding: clamp(5.5rem, 9vw, 8rem) max(1.5rem, calc((100vw - 1180px) / 2)); display: flex; align-items: center; color: var(--white); background: var(--navy); overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 620px; height: 620px; right: -260px; top: -260px; border: 1px solid rgba(200,154,85,.32); border-radius: 50%; box-shadow: 0 0 0 90px rgba(200,154,85,.025), 0 0 0 180px rgba(200,154,85,.025); }
.contact-inner { position: relative; z-index: 2; width: 100%; max-width: 1180px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(3rem, 8vw, 7rem); }
.contact-copy h2 { max-width: 620px; }
.contact-copy > p { color: rgba(255,255,255,.72); font-size: 1.1rem; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.7rem; margin-top: 2.2rem; }
.contact-form { display: grid; gap: 1.15rem; padding: clamp(1.5rem, 3vw, 2.4rem); border: 1px solid rgba(230,200,143,.34); background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .45rem; }
.contact-form label > span { color: var(--gold-light); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-form label small { color: rgba(255,255,255,.56); font-size: .7rem; font-weight: 500; letter-spacing: .04em; text-transform: none; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.24); border-radius: 0; padding: .85rem .95rem; color: var(--white); background: rgba(255,255,255,.08); font: inherit; line-height: 1.45; }
.contact-form textarea { min-height: 135px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-light); outline: 2px solid rgba(230,200,143,.22); outline-offset: 2px; }
.contact-form .button { justify-self: start; margin-top: .25rem; cursor: pointer; }
.form-note, .form-status { margin: -.35rem 0 0; color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.45; }
.form-note a { color: var(--gold-light); text-underline-offset: .2rem; }
.form-status:empty { display: none; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form .button:disabled { cursor: wait; opacity: .7; }
footer { min-height: 210px; display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 2rem; align-items: center; padding: 3rem max(1.5rem, calc((100vw - 1180px) / 2)); color: rgba(255,255,255,.66); background: #04121d; font-size: .8rem; }
footer img { width: min(370px, 100%); }
footer p { margin: 0; }
footer p:last-child { text-align: right; }
.footer-details { display: grid; gap: .5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .65rem; }
.footer-links a { color: var(--gold-light); text-underline-offset: .25rem; }

.privacy-header { position: relative; background: var(--navy); }
.privacy-header .nav-wrap { height: 88px; }
.privacy-back { color: var(--gold-light); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.privacy-hero { padding: clamp(4rem, 8vw, 7rem) max(1.5rem, calc((100vw - 900px) / 2)); color: var(--white); background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.privacy-hero h1 { max-width: 760px; margin-bottom: 1rem; font-size: clamp(3rem, 6vw, 5rem); }
.privacy-hero p:last-child { margin-bottom: 0; color: rgba(255,255,255,.74); font-size: 1.1rem; }
.privacy-content { max-width: 900px; margin: 0 auto; }
.privacy-content .last-updated { color: var(--muted); font-size: .9rem; }
.privacy-content h2 { margin-top: 3rem; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.privacy-content p, .privacy-content li { color: #4e5c64; }
.privacy-content ul { padding-left: 1.25rem; }
.privacy-content a { color: #8c672f; text-underline-offset: .2rem; }

a:focus-visible, button:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 1050px) {
  .nav-wrap { width: calc(100% - 2rem); height: 78px; }
  .brand img { width: min(320px, 68vw); }
  .menu-button { width: 46px; height: 46px; display: grid; place-content: center; gap: 7px; border: 0; background: transparent; color: white; cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; width: 26px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: absolute; inset: 78px 0 auto; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 1rem; background: rgba(7,26,41,.98); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { width: 100%; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 2rem; padding-top: 8.5rem; }
  .hero-copy { min-height: auto; padding: 3.5rem 0; }
  .hero-portrait { width: min(360px, 80vw); height: 440px; margin: 0 auto; }
  .hero-portrait::after { background: linear-gradient(0deg, rgba(7,26,41,.55), transparent 35%); }
  .intro-grid, .about { grid-template-columns: 1fr; }
  .placement-panel { min-height: auto; grid-template-columns: 1fr; }
  .fee-feature { grid-template-columns: 1fr; }
  .fee-feature-price { padding: 1.5rem 0 0; border-top: 1px solid rgba(230,200,143,.35); border-left: 0; }
  .fee-grid { grid-template-columns: 1fr; }
  .fee-card { min-height: auto; }
  .fee-level, .fee-salary { min-height: 0; }
  .fee-notes { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; margin-inline: auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .service-hero, .service-intro-grid, .service-inclusions, .fee-boundary, .service-personal { grid-template-columns: 1fr; }
  .service-hero { min-height: auto; padding-top: 9rem; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card { min-height: auto; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer p:last-child { text-align: left; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .hero h1 { font-size: clamp(2.55rem, 11vw, 3.6rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.3rem); }
  .hero { grid-template-columns: 1fr; gap: 1rem; padding: 8.5rem 1.5rem 4rem; }
  .hero-copy { width: 100%; min-height: auto; padding: 2rem 0; }
  .hero-lead { font-size: 1.06rem; }
  .hero-actions .button { width: 100%; }
  .hero-portrait { width: min(330px, 88vw); height: 405px; margin: 0 auto; }
  .hero-portrait > img { object-position: 50% 24%; }
  .portrait-caption { right: 1.5rem; bottom: 1.5rem; }
  .focus-list > div { grid-template-columns: 45px 1fr; }
  .placement-tabs button { min-height: 72px; padding: .7rem; font-size: .75rem; }
  .about-photo::before { inset: -10px 10px 10px -10px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .button { width: 100%; }
  .contact-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
