:root {
  --navy: #0d2845;
  --navy-deep: #06192d;
  --blue: #163c63;
  --gold: #dcae52;
  --gold-soft: #f3d99d;
  --cream: #f5f1e8;
  --paper: #fbfaf7;
  --ink: #14263a;
  --muted: #667586;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 40, 69, 0.1);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(24px, 6vw, 96px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: var(--navy);
  color: var(--gold-soft);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  height: 38px;
  justify-content: center;
  letter-spacing: 0;
  width: 38px;
}

nav {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 30px;
}

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

nav a:not(.nav-cta)::after {
  background: var(--gold);
  bottom: -6px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--navy);
  padding: 10px 16px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(48px, 8vw, 130px);
  grid-template-columns: 1.05fr 0.85fr;
  min-height: calc(100vh - 75px);
  overflow: hidden;
  padding: 80px clamp(24px, 8vw, 132px);
  position: relative;
}

.hero::before {
  background: linear-gradient(135deg, rgba(220, 174, 82, 0.11), transparent 65%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-copy,
.portrait-wrap {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.16em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--gold);
  height: 1px;
  width: 38px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  color: var(--navy);
  font-size: clamp(62px, 8.4vw, 132px);
  letter-spacing: -0.055em;
  margin: 0;
}

h1 em {
  color: var(--gold);
  display: block;
  font-weight: 400;
}

.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  margin: 34px 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.05em;
  padding: 15px 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(13, 40, 69, 0.18);
  color: white;
}

.button-secondary {
  border: 1px solid rgba(13, 40, 69, 0.25);
}

.availability {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 10px;
  margin-top: 30px;
}

.status-dot {
  background: #57a875;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(87, 168, 117, 0.14);
  height: 8px;
  width: 8px;
}

.portrait-wrap {
  height: min(650px, 65vw);
  min-height: 470px;
}

.portrait-frame {
  background: var(--cream);
  border: 1px solid rgba(13, 40, 69, 0.12);
  bottom: 5%;
  left: 8%;
  overflow: hidden;
  position: absolute;
  right: 8%;
  top: 5%;
  transform: rotate(2deg);
}

.portrait-frame::after {
  border: 1px solid rgba(220, 174, 82, 0.7);
  content: "";
  inset: 16px;
  pointer-events: none;
  position: absolute;
}

.portrait-frame img {
  filter: saturate(0.88) contrast(1.02);
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  transform: scale(1.02) rotate(-2deg);
  width: 100%;
}

.orbit {
  border: 1px solid rgba(220, 174, 82, 0.35);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  height: 72%;
  right: -13%;
  top: -3%;
  width: 72%;
  animation: float 7s ease-in-out infinite;
}

.orbit-two {
  bottom: -7%;
  height: 48%;
  left: -10%;
  width: 48%;
  animation: float 9s ease-in-out infinite reverse;
}

.portrait-card {
  background: var(--navy);
  box-shadow: 0 14px 35px rgba(6, 25, 45, 0.18);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 16px 22px;
  position: absolute;
}

.portrait-card span {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.card-top {
  right: -1%;
  top: 20%;
}

.card-bottom {
  bottom: 15%;
  left: -1%;
}

.intro,
.expertise-section,
.experience-section,
.tools {
  padding: 110px clamp(24px, 8vw, 132px);
}

.intro {
  background: var(--navy);
  color: white;
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.35fr 1fr;
}

.intro h2,
.section-heading h2,
.experience-intro h2,
.contact h2 {
  font-size: clamp(46px, 6vw, 86px);
  letter-spacing: -0.04em;
  margin: 0 0 34px;
}

.intro p:not(.section-label) {
  color: #c5d0dc;
  font-size: clamp(17px, 1.5vw, 22px);
  max-width: 860px;
}

.expertise-section {
  background: var(--cream);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 54px;
}

.section-heading h2 {
  color: var(--navy);
  margin: 0;
}

.expertise-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.expertise-card {
  background: var(--paper);
  border-top: 3px solid var(--gold);
  min-height: 310px;
  padding: 36px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.expertise-card:hover {
  box-shadow: 0 18px 50px rgba(13, 40, 69, 0.1);
  transform: translateY(-6px);
}

.card-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.expertise-card h3,
.timeline-item h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 60px 0 14px;
}

.expertise-card p,
.timeline-item p,
.experience-intro > p:last-child {
  color: var(--muted);
}

.card-arrow {
  bottom: 30px;
  color: var(--gold);
  font-size: 24px;
  position: absolute;
  right: 34px;
}

.experience-section {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.75fr 1.25fr;
}

.experience-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.experience-intro h2 {
  color: var(--navy);
}

.timeline {
  border-top: 1px solid rgba(13, 40, 69, 0.18);
}

.timeline-item {
  border-bottom: 1px solid rgba(13, 40, 69, 0.18);
  display: grid;
  gap: 30px;
  grid-template-columns: 125px 1fr;
  padding: 34px 0;
}

.timeline-period {
  color: var(--gold) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-item h3 {
  font-size: 25px;
  margin: 0 0 10px;
}

.timeline-item p {
  margin: 0;
}

.tools {
  background: var(--gold);
  color: var(--navy-deep);
  overflow: hidden;
  padding-bottom: 70px;
  padding-top: 70px;
}

.tools > p {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 55px);
  gap: 12px 38px;
}

.tool-row span:not(:last-child)::after {
  color: rgba(13, 40, 69, 0.4);
  content: "·";
  margin-left: 38px;
}

.contact {
  background: var(--navy-deep);
  color: white;
  padding: 110px clamp(24px, 8vw, 132px) 32px;
}

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

.contact h2 {
  max-width: 1100px;
}

.contact-copy {
  color: #aebdca;
  font-size: 18px;
}

.contact-link {
  border-bottom: 1px solid rgba(243, 217, 157, 0.45);
  color: var(--gold-soft);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 52px);
  justify-content: space-between;
  margin-top: 60px;
  padding-bottom: 18px;
}

.contact footer {
  color: #7890a6;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-top: 90px;
}

.contact footer div {
  display: flex;
  gap: 24px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    gap: 18px;
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .portrait-wrap {
    height: 560px;
  }

  .intro,
  .experience-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

  .experience-intro {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 13px 18px;
  }

  .brand > span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 48px 20px 70px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 82px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .portrait-wrap {
    height: 440px;
    min-height: 0;
    margin-top: 30px;
  }

  .portrait-frame {
    left: 2%;
    right: 2%;
  }

  .intro,
  .expertise-section,
  .experience-section,
  .tools,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro,
  .expertise-section,
  .experience-section {
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .intro h2,
  .section-heading h2,
  .experience-intro h2,
  .contact h2 {
    font-size: 46px;
  }

  .timeline-item {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .contact-link {
    font-size: 23px;
  }

  .contact footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact footer div {
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selected dark editorial hero */
.site-header {
  background: rgba(6, 25, 45, 0.96);
  border-bottom-color: rgba(220, 174, 82, 0.24);
  color: white;
}

.brand-mark {
  background: var(--gold);
  color: var(--navy-deep);
}

.nav-cta {
  border-color: rgba(243, 217, 157, 0.62);
  color: var(--gold-soft);
}

.hero {
  background: var(--navy-deep);
  display: block;
  min-height: calc(100vh - 75px);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.hero-desktop-layout {
  display: grid;
  grid-template-columns: minmax(620px, 1.08fr) minmax(480px, 0.92fr);
  height: calc(100vh - 75px);
  margin: 0 auto;
  max-width: 2400px;
  min-height: 430px;
  position: relative;
  z-index: 2;
}

.hero-desktop-copy {
  align-self: center;
  padding: clamp(54px, 6vh, 96px) clamp(48px, 6vw, 132px);
}

.hero-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero-desktop-copy h1 {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(74px, 6.2vw, 132px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.hero-desktop-copy h1 span {
  display: block;
}

.hero-rule {
  background: rgba(220, 174, 82, 0.3);
  height: 1px;
  margin: clamp(30px, 5vh, 56px) 0 30px;
  max-width: 780px;
  position: relative;
}

.hero-rule span {
  background: var(--gold);
  height: 13px;
  left: 52%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 13px;
}

.hero-disciplines {
  color: white;
  font-size: clamp(19px, 1.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0;
  text-transform: uppercase;
}

.hero-summary {
  color: #aebdca;
  font-size: clamp(17px, 1.1vw, 21px);
  margin: 18px 0 0;
  max-width: 680px;
}

.hero-actions-inline {
  margin-top: clamp(28px, 5vh, 48px);
}

.hero-desktop-portrait {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.hero-desktop-portrait::after {
  display: none;
}

.hero-desktop-portrait img {
  height: 100%;
  margin-left: 0;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  width: 100%;
}

.hero::before {
  background:
    linear-gradient(180deg, transparent 58%, rgba(6, 25, 45, 0.84) 100%),
    linear-gradient(90deg, rgba(6, 25, 45, 0.14), transparent 48%);
  inset: 0;
  z-index: 1;
}

.hero-poster {
  display: none;
  height: calc(100vh - 75px);
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.hero-actions-overlay {
  bottom: 42px;
  display: none;
  left: clamp(24px, 7vw, 110px);
  position: absolute;
  z-index: 3;
}

.button-gold {
  background: var(--gold);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  color: var(--navy-deep);
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: white;
}

.scroll-cue {
  align-items: center;
  bottom: 38px;
  color: var(--gold-soft);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.16em;
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  text-transform: uppercase;
  z-index: 3;
}

.scroll-cue b {
  align-items: center;
  border: 1px solid rgba(243, 217, 157, 0.5);
  border-radius: 50%;
  display: flex;
  font-size: 15px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

@media (max-width: 900px) {
  .hero-desktop-layout {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-poster {
    display: block;
    height: auto;
    min-height: 0;
    object-fit: contain;
    width: 100%;
  }

  .hero-actions-overlay {
    background: var(--navy-deep);
    bottom: auto;
    display: flex;
    left: auto;
    padding: 24px clamp(20px, 6vw, 42px) 34px;
    position: relative;
  }

  .scroll-cue {
    display: none;
  }
}

@media (min-width: 1400px) {
  body {
    font-size: 18px;
  }

  .site-header {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .hero-desktop-layout {
    height: calc(100vh - 86px);
  }

  .hero-desktop-portrait {
    margin-right: clamp(28px, 3vw, 72px);
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    font-size: 15px;
    height: 42px;
    width: 42px;
  }

  nav {
    font-size: 15px;
    gap: 36px;
  }

  .button {
    font-size: 15px;
    padding: 14px 20px;
  }

  .hero-kicker {
    font-size: 14px;
  }

  .hero-summary {
    font-size: clamp(18px, 1.2vw, 23px);
  }

  .expertise-card p,
  .timeline-item p,
  .experience-intro > p:last-child {
    font-size: 18px;
  }

  .timeline-period,
  .section-label,
  .tools > p,
  .contact footer {
    font-size: 13px;
  }
}

@media (min-width: 901px) and (max-height: 800px) {
  .hero-desktop-copy {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-desktop-copy h1 {
    font-size: clamp(70px, 5.7vw, 112px);
    line-height: 0.84;
  }

  .hero-rule {
    margin-bottom: 18px;
    margin-top: 22px;
  }

  .hero-disciplines {
    font-size: clamp(19px, 1.35vw, 25px);
  }

  .hero-summary {
    display: none;
  }

  .hero-actions-inline {
    margin-top: 20px;
  }

  .scroll-cue {
    bottom: 20px;
  }
}

@media (min-width: 1800px) {
  .brand {
    font-size: 18px;
  }

  nav {
    font-size: 17px;
  }

  .button {
    font-size: 16px;
    padding: 16px 23px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 0;
  }

  .hero-actions-overlay {
    gap: 10px;
    margin: 0;
    padding-top: 20px;
  }

  .hero-poster {
    background: var(--navy-deep);
    height: auto;
    object-fit: contain;
  }
}

.legal-section {
  background: #f0ece3;
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 90px clamp(24px, 8vw, 132px);
}

.legal-section article {
  scroll-margin-top: 100px;
}

.legal-section h2 {
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 28px;
}

.legal-section p {
  color: #42566a;
  max-width: 680px;
}

.legal-section a {
  border-bottom: 1px solid rgba(13, 40, 69, 0.3);
}

.legal-note {
  border-left: 2px solid var(--gold);
  font-size: 13px;
  margin-top: 26px;
  padding-left: 18px;
}

@media (max-width: 760px) {
  .legal-section {
    grid-template-columns: 1fr;
    padding: 70px 20px;
  }
}
