:root {
  --paper:#f6f5f1;
  --ink:#303531;
  --muted:#59615a;
  --line:#daddd5;
  --accent:#dce2d8;
  --white:#ffffff;
  --serif:Georgia,'Times New Roman',serif;
  --sans:Arial,Helvetica,sans-serif
}

* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.65
}
a {
  color:inherit;
  text-decoration:none
}
a:focus-visible {
  outline:3px solid #9b622f;
  outline-offset:6px
}
figure,p,h1,h2,h3 {
  margin:0
}
::selection {
  background:var(--accent);
  color:var(--ink)
}
.wrap {
  width:min(1280px,calc(100% - 96px));
  margin-inline:auto
}
.site-header {
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-bottom:1px solid var(--line)
}
.wordmark {
  font:26px/1.2 var(--serif)
}
nav {
  display:flex;
  align-items:center;
  gap:36px;
  font-size:13px
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  background:var(--ink);
  color:var(--white);
  padding:17px 25px;
  border-radius:5px;
  font-size:13px;
  font-weight:600;
  transition:background .18s,box-shadow .18s
}
.button:hover {
  background:#596b59;
  box-shadow:0 3px 10px #30353118
}
.button span {
  font-size:19px;
  line-height:1
}
.button-small {
  padding:12px 22px;
  gap:28px
}
.hero {
  display:grid;
  grid-template-columns:1.06fr 1fr;
  gap:70px;
  align-items:center;
  padding-block:70px 88px
}
.eyebrow {
  text-transform:uppercase;
  letter-spacing:.17em;
  font-size:11px;
  font-weight:600;
  margin-bottom:27px
}
.dot {
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#8c6268;
  margin-right:10px;
  vertical-align:middle
}
h1,h2,h3 {
  font-family:var(--serif);
  font-weight:400
}
h1 {
  font-size:clamp(58px,6.1vw,88px);
  line-height:1.01;
  letter-spacing:-.055em
}
h1 em,h2 em {
  font-weight:400;
  color:#596b59
}
h2 {
  font-size:clamp(44px,4.4vw,64px);
  line-height:1.08;
  letter-spacing:-.045em
}
h3 {
  font-size:27px;
  line-height:1.2;
  letter-spacing:-.02em
}
.location {
  margin-top:23px;
  font-size:15px;
  letter-spacing:.03em
}
.placeholder-label {
  display:block;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:11px;
  font-weight:600;
  line-height:1.6
}
.text-link {
  font-size:12px;
  border-bottom:1px solid #a5b0a2;
  padding-bottom:5px;
  display:inline-flex;
  align-items:center;
  gap:22px
}
.text-link:hover {
  color:#80565c
}
.hero-copy>.text-link {
  display:flex;
  width:fit-content;
  margin-top:20px
}
.section-space {
  padding-block:96px
}
.opportunity {
  background:var(--white);
  border-block:1px solid var(--line)
}
.section-grid {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:100px
}
.firm-section {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  align-items:center;
  gap:100px
}
.application {
  background:var(--ink);
  color:var(--paper)
}
.application-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center
}
.application h2 em {
  color:#e5e9df
}
.application .eyebrow {
  color:#e5e9df
}
.application-copy {
  color:#edf0e9;
  max-width:330px;
  font-size:15px;
  margin-top:25px
}
.application-placeholder {
  border:1px solid #809183;
  border-radius:8px;
  padding:38px;
  background:#ffffff05
}
.application-placeholder>.placeholder-label {
  color:#edf0e9
}
.application-placeholder h3 {
  font-size:36px;
  margin-top:23px
}
.application-placeholder p {
  max-width:320px;
  margin-top:20px;
  font-size:15px;
  color:#edf0e9
}
.form-status {
  display:flex;
  align-items:center;
  gap:12px;
  border-top:1px solid #718373;
  padding-top:22px;
  margin-top:32px;
  font-size:11px
}
.status-ring {
  width:8px;
  height:8px;
  border:1px solid #e5e9df;
  border-radius:50%;
  flex-shrink:0
}
footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding-block:40px
}
footer p {
  font-size:11px;
  color:var(--muted)
}
.skip-link {
  position:absolute;
  top:-100px;
  left:20px;
  padding:12px 20px;
  background:var(--white);
  z-index:10
}
.skip-link:focus {
  top:10px
}

@media(min-width:1600px) {
  .hero {
  gap:100px
}

}

@media(max-width:1000px) {
  .wrap {
  width:calc(100% - 64px)
}
.hero {
  gap:35px
}
.section-grid,.firm-section,.application-grid {
  gap:45px
}
.section-space {
  padding-block:75px
}
h1 {
  font-size:64px
}

}

@media(max-width:700px) {
  .wrap {
  width:calc(100% - 40px)
}
.site-header {
  min-height:89px;
  gap:12px
}
.wordmark {
  font-size:23px
}
.nav-role {
  display:none
}
.button-small {
  padding:11px 17px;
  gap:20px
}
.hero {
  grid-template-columns:1fr;
  gap:38px;
  padding-block:43px 52px
}
.eyebrow {
  margin-bottom:23px;
  font-size:11px
}
h1 {
  font-size:clamp(52px,14.8vw,76px)
}
h2 {
  font-size:46px
}
.location {
  margin-top:20px;
  font-size:13px
}
.hero-copy>.text-link {
  margin-top:21px
}
.section-space {
  padding-block:57px
}
.section-grid,.firm-section,.application-grid {
  grid-template-columns:1fr;
  gap:37px
}
h3 {
  font-size:25px
}
.firm-section {
  gap:37px
}
.application-placeholder {
  padding:27px
}
.application-placeholder h3 {
  font-size:33px
}
.form-status {
  font-size:10px;
  gap:9px
}
footer {
  align-items:flex-start;
  flex-wrap:wrap;
  padding-block:32px;
  gap:25px
}
footer p {
  order:3;
  flex-basis:100%;
  border-top:1px solid var(--line);
  padding-top:20px
}
footer .text-link {
  margin-top:6px
}

}

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

}



/* Firm identity and approved content, retaining the Version 1 layout. */
.wordmark img { display: block; width: 310px; max-width: 100%; height: auto; }
.hero-lead { max-width: 460px; font: 25px/1.4 var(--serif); margin-top: 28px; }
.hero-intro { max-width: 470px; color: var(--muted); margin-block: 20px 28px; }
.hero-portraits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; position: relative; padding: 42px 0; max-width: 520px; margin-inline: auto; isolation: isolate; }
.hero-portraits::before { content: ''; position: absolute; inset: 0 30px; background: #e4e8df; border-radius: 8px; z-index: -1; }
.portrait { display: block; width: 100%; height: auto; border-radius: 7px; }
.portrait-krauss { margin-top: 70px; }
.portrait-caption { grid-column: 1 / -1; text-align: center; font: 22px/1.5 var(--serif); margin-top: 6px; }
.portrait-caption span { display: block; font: 10px/1.5 var(--sans); text-transform: uppercase; letter-spacing: .16em; }
.section-copy, .details p, .benefits p, .fit-note p { max-width: 54ch; margin-top: 22px; color: var(--muted); }
.benefits { border-left: 3px solid #8c6268; padding-left: 24px; margin-top: 38px; }
.benefits h3 { font-size: 28px; }
.details { padding-top: 43px; }
.details h3 { font-size: 40px; }
.team-photo { justify-self: center; max-width: 300px; }
.team-photo img { display: block; width: 100%; height: auto; border-radius: 8px; }
.team-photo figcaption { margin-top: 16px; font-size: 11px; color: var(--muted); }
.firm-copy .text-link { margin-top: 28px; }
.fit-section { background: var(--white); border-top: 1px solid var(--line); }
.fit-note { border-top: 1px solid var(--line); padding-top: 30px; margin-top: 32px; }
.requirements { align-self: start; background: #eef0e9; border-radius: 8px; padding: 36px; }
.requirements h3 { font-size: 34px; }
.requirements ul { padding-left: 20px; margin: 24px 0 0; }
.requirements li { padding-left: 9px; margin-top: 20px; }
.requirements li::marker { color: #8c6268; }
.application { background: #596b59; }
.hero { grid-template-columns: 1.08fr 1fr; }
.firm-section { grid-template-columns: 1fr 1.2fr; }
.application-placeholder { border-color: #a2afa0; }
@media (max-width: 1000px) {
  .wordmark img { width: 260px; }
  .hero-portraits { gap: 12px; }
  .hero-lead { font-size: 23px; }
  .section-grid { gap: 48px; }
}
@media (max-width: 700px) {
  .wordmark img { width: 205px; }
  .hero, .firm-section { grid-template-columns: 1fr; }
  .hero-portraits { width: 100%; max-width: 390px; padding-block: 28px; }
  .portrait-krauss { margin-top: 40px; }
  .portrait-caption { font-size: 21px; }
  .hero-lead { font-size: 23px; }
  .details { border-top: 1px solid var(--line); padding-top: 32px; }
  .details h3 { font-size: 34px; }
  .team-photo { max-width: 280px; }
  .requirements { padding: 27px; }
  .section-grid { gap: 37px; }
  .benefits { padding-left: 20px; }
  footer .wordmark img { width: 215px; }
}
@media (max-width: 360px) {
  .wordmark img { width: 175px; }
  .button-small { padding-inline: 14px; gap: 12px; }
}
/* Visual review: improve scanning and keep the small team image crisp. */
h2, h3, .hero-lead { text-wrap: balance; }
.hero-intro strong, .details strong { color: var(--ink); font-weight: 600; }
.team-photo { max-width: 250px; }
@media (max-width: 700px) {
  .team-photo { max-width: 240px; }
  .portrait-krauss { margin-top: 24px; }
  .benefits h3 { font-size: 26px; }
}
/* Editorial reading flow: one continuous column for the approved body copy. */
.editorial-flow {
  max-width: 720px;
}
.editorial-flow .section-copy,
.editorial-flow .details p,
.editorial-flow .benefits p,
.editorial-flow .fit-note p {
  max-width: none;
  font-size: 17px;
  line-height: 1.8;
}
.editorial-flow .details {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.editorial-flow .details h3 { font-size: 42px; }
.editorial-flow .benefits {
  margin-top: 44px;
  padding: 26px 30px;
  background: var(--paper);
}
.editorial-flow .benefits h3 { font-size: 32px; }
.editorial-flow .benefits p { margin-top: 16px; }
.fit-section h2,
.fit-section .fit-note h3 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.editorial-flow .fit-note {
  margin-top: 44px;
  padding-top: 40px;
}
.editorial-flow .requirements {
  margin-top: 44px;
  padding: 34px 38px;
}
.requirements li { font-size: 17px; line-height: 1.75; }
.nav-role {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  border-bottom: 1px solid #8e9b89;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .015em;
}
.nav-role:hover { color: #596b59; border-color: var(--ink); }
.secondary-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-height: 48px;
  gap: 28px;
  margin-top: 14px;
  padding: 12px 20px;
  border: 1px solid #a5b0a2;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}
.secondary-action:hover { background: #e9ede4; }
.firm-section {
  max-width: 960px;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 64px;
}
.firm-copy .section-copy { font-size: 17px; line-height: 1.8; }
@media (max-width: 700px) {
  .site-header { display: grid; grid-template-columns: 1fr auto; gap: 0 16px; padding-top: 20px; }
  .site-header nav { display: contents; }
  .site-header .button-small { grid-column: 2; grid-row: 1; min-height: 44px; }
  .site-header .nav-role { grid-column: 1 / -1; grid-row: 2; justify-self: start; margin-top: 9px; border-bottom: 0; font-size: 14px; }
  .firm-section { grid-template-columns: 1fr; gap: 32px; }
  .editorial-flow .details h3 { font-size: 34px; }
  .fit-section h2, .fit-section .fit-note h3 { font-size: 38px; }
  .editorial-flow .benefits { padding: 24px; }
  .editorial-flow .benefits h3 { font-size: 29px; }
  .editorial-flow .requirements { padding: 26px; }
  .editorial-flow .details, .editorial-flow .fit-note { margin-top: 34px; padding-top: 32px; }
  .editorial-flow .requirements, .editorial-flow .benefits { margin-top: 34px; }
}
/* Final review: comfortable line lengths and touch targets. */
.editorial-flow { max-width: 680px; }
.firm-copy .text-link, footer .text-link { min-height: 44px; }
@media (max-width: 700px) {
  .editorial-flow .section-copy,
  .editorial-flow .details p,
  .editorial-flow .benefits p,
  .editorial-flow .fit-note p,
  .firm-copy .section-copy,
  .requirements li { line-height: 1.7; }
  .requirements ul { padding-left: 17px; }
  .requirements li { padding-left: 5px; }
}
/* Partner identity and restrained brand details. */
:root { --mauve: #80585f; --mauve-line: #c9b5b9; }
.eyebrow { color: var(--mauve); }
.hero-portraits { align-items: start; padding-block: 32px 18px; }
.partner { min-width: 0; background: transparent; }
.partner .portrait { border-radius: 7px; }
.partner figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 9px;
  border-top: 0;
  color: var(--ink);
  text-align: center;
  font: 17px/1.4 var(--serif);
}
.nav-role { font-size: 16px; color: var(--mauve); border-color: var(--mauve-line); gap: 16px; }
.nav-role::after { content: '\2193'; font-weight: 400; }
.secondary-action { color: var(--mauve); border-color: var(--mauve-line); }
.secondary-action:hover { background: #eee7e6; }
.firm-section {
  max-width: 680px;
  grid-template-columns: 1fr;
  gap: 28px;
}
.firm-section .team-photo { justify-self: start; width: 220px; }
.firm-copy .section-copy { margin-top: 0; max-width: none; }
.fit-section .fit-note { border-top-color: var(--mauve-line); }
.requirements h3 { color: #596b59; }
@media (max-width: 700px) {
  .hero-portraits { gap: 12px; padding-block: 24px 14px; }
  .partner figcaption { font-size: 15px; min-height: 68px; padding: 10px 7px; }
  .site-header .nav-role { color: var(--mauve); }
  .firm-section .team-photo { width: 220px; }
}
/* Review refinement: keep credentials with the surname on small screens. */
.name-ending { white-space: nowrap; }
.partner figcaption > span { text-wrap: balance; }
@media (max-width: 700px) {
  .firm-section { gap: 24px; }
}

/* Reference-led maroon accents; green remains the main visual foundation. */
:root { --maroon-surface: #875b60; }
.hero-portraits::before { inset: 0; }
.secondary-action > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: var(--maroon-surface);
  color: #fff;
}
.secondary-action { padding: 8px 10px 8px 18px; }
.nav-role::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: var(--maroon-surface);
  color: #fff;
}

/* Final hero treatment: unframed portraits and quiet ruled captions. */
.hero-portraits::before { content: none; }
.hero-portraits { align-items: stretch; }
.partner { display: flex; flex-direction: column; }
.partner figcaption {
  flex: 1;
  align-items: flex-start;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--mauve-line);
  background: transparent;
}
.secondary-action { padding: 12px 20px; justify-content: center; }
@media (max-width: 700px) {
  .partner figcaption { min-height: 68px; padding-top: 12px; }
}
/* Keep the text-only hero actions visually balanced. */
.hero-copy > .button, .hero-copy > .secondary-action {
  min-width: 224px;
  justify-content: center;
}
/* Tally controls height; only constrain width to the existing form panel. */
.application-form { min-width: 0; }
.application-form iframe { display: block; width: 100%; max-width: 100%; border: 0; }

/* Keep the firm website link secondary to the application action. */
.firm-copy .firm-website { display: flex; width: fit-content; margin-top: 12px; color: var(--muted); }
.firm-copy .firm-website:hover { color: #80565c; }
