:root {
  --ink: #102a43;
  --ink-deep: #071c2d;
  --paper: #f7f5ef;
  --paper-deep: #ece9df;
  --white: #fffefa;
  --muted: #65717c;
  --gold: #b48a4c;
  --gold-light: #dbbc7d;
  --line: rgba(16, 42, 67, 0.14);
  --shadow: 0 24px 70px rgba(25, 38, 48, 0.12);
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(247, 245, 239, 0.88);
  box-shadow: 0 8px 30px rgba(16, 42, 67, 0.05);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1320px, calc(100% - 48px));
  height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: -0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #31465a;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 2px;
  transition: background 200ms ease, transform 200ms ease;
}

.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 1px;
  display: block;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.hero {
  padding-top: 88px;
  background:
    radial-gradient(circle at 84% 10%, rgba(210, 181, 122, 0.14), transparent 27%),
    linear-gradient(90deg, transparent 0 49.95%, rgba(16, 42, 67, 0.04) 50%, transparent 50.05%),
    var(--paper);
}

.hero-grid {
  height: calc(100vh - 88px);
  height: calc(100svh - 88px);
  min-height: 552px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-top: clamp(18px, 3.4vh, 38px);
  padding-bottom: clamp(24px, 4.8vh, 54px);
}

.eyebrow {
  margin: 0 0 clamp(15px, 2.8vh, 28px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.hero h1,
.section-title,
.approach-intro h2,
.contact h2,
.contact-dialog h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, min(6.5vw, 9.2vh), 91px);
}

em {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 625px;
  margin: clamp(18px, 3vh, 30px) 0 0;
  color: #526170;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  margin-top: clamp(22px, 3.6vh, 36px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  color: var(--gold);
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-proof {
  margin-top: clamp(28px, 5.2vh, 62px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding: 20px 20px 0 0;
}

.hero-proof div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof div > span {
  display: block;
}

.hero-proof strong {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero-proof div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  padding: 0 18px 28px 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 70%;
  height: 78%;
  border: 1px solid rgba(180, 138, 76, 0.45);
}

.portrait-frame {
  position: relative;
  z-index: 1;
  width: min(100%, clamp(330px, calc(75svh - 138.75px), 480px));
  height: auto;
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 20, 32, 0.35));
  pointer-events: none;
}

.portrait-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.012);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.portrait-glow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.4);
}

.availability-pill {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(7, 28, 45, 0.75);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #7dd6a4;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(125, 214, 164, 0.15);
}

.portrait-caption {
  position: absolute;
  right: 38px;
  bottom: -3px;
  z-index: 2;
  margin: 0;
  padding-inline: 8px;
  color: var(--muted);
  background: var(--paper);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.ticker {
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  transform: none;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  animation: ticker 28s linear infinite;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker i {
  color: var(--gold-light);
  font-style: normal;
  font-size: 8px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-number {
  margin-bottom: 34px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-number.light {
  color: var(--gold-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 9vw, 140px);
}

.section-title {
  max-width: 760px;
  font-size: clamp(43px, 5vw, 70px);
}

.about-copy {
  padding-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

.about-copy p {
  margin: 0 0 22px;
}

.about-copy .lead {
  color: #344b5f;
  font-size: 19px;
  line-height: 1.65;
}

.signature {
  margin-top: 35px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
  transform: rotate(-4deg);
  transform-origin: left;
}

.venture-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venture-card {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  gap: 25px;
  padding: 27px;
  transition: color 250ms ease, background 250ms ease;
}

.venture-card + .venture-card {
  border-left: 1px solid var(--line);
}

.venture-card:hover {
  color: var(--white);
  background: var(--ink);
}

.venture-index {
  position: absolute;
  top: 25px;
  left: 27px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
}

.venture-card p {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venture-card h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.venture-arrow {
  margin-left: auto;
  color: var(--gold);
}

.expertise {
  background: var(--white);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading-row .section-title {
  max-width: 810px;
}

.section-aside {
  max-width: 310px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.services-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--paper);
  box-shadow: 0 22px 55px rgba(16, 42, 67, 0.1);
  transform: translateY(-7px);
}

.service-card.featured {
  color: var(--white);
  background: var(--ink);
}

.service-card.featured:hover {
  background: #163953;
}

.service-number {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
}

.service-icon {
  width: 43px;
  height: 43px;
  margin: 58px 0 27px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.service-card h3 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.service-tag {
  position: absolute;
  top: 26px;
  right: 25px;
  padding: 5px 9px;
  color: var(--gold-light);
  border: 1px solid rgba(219, 188, 125, 0.35);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.approach {
  padding-bottom: 0;
}

.approach-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: clamp(45px, 6vw, 80px);
  color: var(--white);
  background: var(--ink-deep);
}

.approach-card::after {
  content: "WR";
  position: absolute;
  right: -10px;
  bottom: -118px;
  color: rgba(255,255,255,0.025);
  font-family: var(--sans);
  font-size: 300px;
  font-weight: 700;
  letter-spacing: -0.12em;
}

.approach-intro h2 {
  max-width: 600px;
  font-size: clamp(40px, 4.5vw, 64px);
}

.approach-steps {
  position: relative;
  z-index: 2;
  display: grid;
}

.approach-steps > div {
  display: grid;
  grid-template-columns: 42px 115px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.approach-steps span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 10px;
}

.approach-steps h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
}

.approach-steps p {
  margin: 0;
  color: rgba(255,255,255,0.54);
  font-size: 12px;
  line-height: 1.6;
}

.experience-meta {
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 7px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.meta-line {
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.timeline {
  position: relative;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 202px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 202px 1fr 210px;
  align-items: center;
  min-height: 138px;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.timeline-item:hover {
  background: rgba(255,255,255,0.58);
}

.timeline-date {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.7;
  text-transform: uppercase;
}

.timeline-date span {
  color: var(--ink);
  font-weight: 700;
}

.timeline-role {
  padding: 25px 50px;
}

.timeline-role h3 {
  margin: 0 0 4px;
  font-family: var(--sans);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.timeline-role p,
.timeline-location {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.timeline-location {
  text-align: right;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 198px;
  width: 9px;
  height: 9px;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.timeline-item:hover .timeline-dot {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(180, 138, 76, 0.13);
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.contact-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(219,188,125,.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-orbit::after {
  content: "";
  position: absolute;
  inset: 90px;
  border: 1px solid rgba(219,188,125,.13);
  border-radius: 50%;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact .eyebrow {
  justify-content: center;
  color: var(--gold-light);
}

.contact h2 {
  font-size: clamp(50px, 7vw, 94px);
}

.contact-copy {
  max-width: 535px;
  margin: 30px auto;
  color: rgba(255,255,255,0.62);
  font-size: 15px;
}

.button-light {
  margin-top: 10px;
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--gold);
}

.phone-link {
  width: fit-content;
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: rgba(255,255,255,0.54);
  font-family: var(--sans);
  transition: color 200ms ease;
}

.phone-link::before {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--gold-light);
  transition: width 200ms ease;
}

.phone-link:hover {
  color: var(--white);
}

.phone-link:hover::before {
  width: 36px;
}

.phone-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-number {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}

.contact-footer {
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-footer a {
  transition: color 200ms ease;
}

.contact-footer a:hover {
  color: var(--gold-light);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.7);
}

.linkedin-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.linkedin-link span:last-child {
  color: var(--gold-light);
  transition: transform 200ms ease;
}

.linkedin-link:hover span:last-child {
  transform: translate(2px, -2px);
}

.site-footer {
  color: rgba(255,255,255,0.55);
  background: var(--ink-deep);
}

.footer-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--white);
  text-transform: none;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--paper);
}

.contact-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: clamp(28px, 5vw, 55px);
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 30px 100px rgba(0,0,0,.3);
}

.contact-dialog::backdrop {
  background: rgba(7, 28, 45, 0.76);
  backdrop-filter: blur(8px);
}

.contact-dialog[open] {
  animation: dialog-in 260ms ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.dialog-kicker {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-dialog h2 {
  max-width: 470px;
  font-size: clamp(35px, 5vw, 50px);
}

.contact-dialog > p {
  margin: 17px 0 26px;
  color: var(--muted);
  font-size: 13px;
}

#contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

#contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #344b5f;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

#contact-form label:nth-child(n+3),
#contact-form .form-submit,
#contact-form .form-note {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  font-family: var(--body);
  font-size: 13px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180,138,76,.1);
}

#contact-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .82;
  transform: none;
}

.submit-loader {
  width: 16px;
  height: 16px;
  display: none;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: submit-spin 700ms linear infinite;
}

.form-submit.is-loading .submit-arrow {
  display: none;
}

.form-submit.is-loading .submit-loader {
  display: block;
}

@keyframes submit-spin {
  to { transform: rotate(360deg); }
}

.form-note {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-note.is-error {
  color: #a33b32;
  font-size: 11px;
}

.form-success {
  min-height: 495px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-dialog.submitted > .dialog-kicker,
.contact-dialog.submitted > h2,
.contact-dialog.submitted > p,
.contact-dialog.submitted > form {
  display: none;
}

.contact-dialog.submitted .form-success {
  display: flex;
  animation: success-in 500ms cubic-bezier(.2,.8,.2,1) both;
}

.success-mark {
  width: 82px;
  height: 82px;
  margin-bottom: 28px;
  color: var(--gold);
}

.success-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.success-mark circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: success-draw 650ms 150ms ease forwards;
}

.success-mark path {
  stroke-dasharray: 35;
  stroke-dashoffset: 35;
  animation: success-draw 450ms 650ms ease forwards;
}

.form-success .dialog-kicker {
  margin-bottom: 14px;
}

.form-success h2 {
  max-width: 430px;
}

.form-success p {
  max-width: 430px;
  margin: 20px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

.success-close {
  min-width: 150px;
}

.success-phone {
  margin-top: 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  transition: color 200ms ease, border-color 200ms ease;
}

.success-phone:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@keyframes success-in {
  from { opacity: 0; transform: translateY(14px); }
}

@keyframes success-draw {
  to { stroke-dashoffset: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 260ms; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 38px, 760px); }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 35px;
  }

  .hero h1 { font-size: clamp(48px, 7.4vw, 72px); }
  .about-layout { grid-template-columns: 1fr; gap: 35px; }
  .about-copy { max-width: 600px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-card { grid-template-columns: 1fr; gap: 45px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; gap: 28px; }
  .timeline-item { grid-template-columns: 160px 1fr 150px; }
  .timeline::before { left: 160px; }
  .timeline-dot { left: 156px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); }

  .site-header.scrolled {
    background: rgba(247, 245, 239, 0.98);
    backdrop-filter: none;
  }

  .nav-wrap { width: calc(100% - 32px); height: 74px; }
  .brand-name { font-size: 14px; }
  .menu-toggle { position: relative; z-index: 102; display: block; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    color: var(--ink);
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
    font-size: 25px;
  }

  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav .nav-cta { margin-top: 10px; font-size: 14px; }

  .hero {
    padding-top: 100px;
  }
  .hero-grid { height: auto; min-height: 0; display: flex; flex-direction: column; padding-top: 36px; padding-bottom: 60px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(47px, 14vw, 68px); }
  .hero-intro { margin-top: 25px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-proof { margin-top: 50px; }
  .hero-proof div { padding-right: 10px; }
  .hero-proof div + div { padding-left: 14px; }
  .hero-proof strong { font-size: 23px; }
  .hero-visual { width: 100%; max-width: 560px; margin-top: 15px; align-self: center; }
  .portrait-frame { width: 100%; height: auto; aspect-ratio: 3 / 4; }
  .ticker-track { padding: 14px 0; }

  .section { padding-top: 95px; padding-bottom: 95px; }
  .section-title { font-size: clamp(40px, 12vw, 58px); }
  .venture-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .venture-card { min-height: 155px; }
  .venture-card + .venture-card { border-top: 1px solid var(--line); border-left: 0; }
  .services-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .service-card { min-height: 305px; }
  .service-icon { margin-top: 45px; }
  .approach { padding-top: 16px; }
  .approach-card { width: 100%; padding: 50px 25px; }
  .approach-steps > div { grid-template-columns: 35px 95px 1fr; }
  .experience-meta { width: 100%; min-width: 0; }
  .timeline { margin-top: 55px; }
  .timeline::before { left: 6px; }
  .timeline-item { display: block; min-height: 0; padding: 30px 8px 30px 30px; }
  .timeline-date { display: inline-flex; flex-direction: row; gap: 8px; }
  .timeline-role { padding: 12px 0 9px; }
  .timeline-location { text-align: left; }
  .timeline-dot { top: 37px; left: 2px; transform: none; }
  .contact h2 { font-size: clamp(45px, 13vw, 67px); }
  .phone-link { flex-wrap: wrap; gap: 8px 12px; }
  .contact-footer { margin-top: 80px; }
  .footer-inner { padding: 35px 0; flex-direction: column; gap: 17px; text-align: center; }
}

@media (max-width: 520px) {
  .availability-pill { right: 10px; bottom: 10px; }
  .approach-steps > div { grid-template-columns: 28px 1fr; }
  .approach-steps p { grid-column: 2; margin-top: 3px; }
  .contact-footer { flex-direction: column; gap: 12px; }
  #contact-form { grid-template-columns: 1fr; }
  #contact-form label { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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