:root {
  --ink: oklch(19% 0.032 122);
  --ink-soft: oklch(29% 0.035 122);
  --moss: oklch(36% 0.075 122);
  --lime: oklch(74% 0.13 122);
  --coral: oklch(65% 0.185 33);
  --coral-deep: oklch(47% 0.16 32);
  --mist: oklch(94% 0.008 115);
  --paper: oklch(98% 0.003 115);
  --charcoal: oklch(24% 0.018 90);
  --line-dark: color-mix(in oklch, var(--paper) 23%, transparent);
  --line-light: color-mix(in oklch, var(--ink) 16%, transparent);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Onest", "Helvetica Neue", sans-serif;
  --shell: min(1400px, calc(100vw - 80px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button { cursor: pointer; }

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

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

:focus { scroll-margin-bottom: 82px; }

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

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line-dark);
}

.wordmark {
  display: inline-flex;
  align-items: flex-end;
  width: fit-content;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wordmark i {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 1px;
  border-radius: 50%;
  background: var(--lime);
}

.header-location {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
}

.header-cta span { margin-left: 5px; color: var(--lime); }

.hero {
  position: relative;
  overflow: clip;
  min-height: 790px;
  padding: 138px 0 48px;
  background: var(--ink);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  content: "";
  inset: auto -17vw -23vw auto;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--moss);
  opacity: 0.55;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  min-height: 605px;
}

.hero-copy {
  z-index: 2;
  grid-column: 1 / span 6;
  align-self: center;
  padding: 38px 0 82px;
}

.hero-label,
.section-label,
.route-kicker,
.dialog-kicker {
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.choice-heading h2,
.process-title h2,
.space-copy h2,
.other-layout h2,
.lead-copy h2,
.lead-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 6.15vw, 6.9rem);
}

h1 em,
h2 em { color: var(--lime); font-weight: 600; }

.hero-summary {
  max-width: 560px;
  margin: 25px 0 0;
  color: color-mix(in oklch, var(--paper) 78%, transparent);
  font-size: 18px;
  line-height: 1.58;
  text-wrap: pretty;
}

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

.action,
.form-submit,
.lead-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease-out, background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.action:hover,
.form-submit:hover,
.lead-trigger:hover { transform: translateY(-2px); }

.action--coral { background: var(--coral); color: var(--ink); }

.action--coral:hover { background: var(--lime); }

.action--ghost {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--paper);
}

.action--ghost:hover { border-color: var(--lime); color: var(--lime); }

.hero-portrait {
  z-index: 1;
  grid-column: 7 / -1;
  align-self: start;
  width: 100%;
  margin: 0;
  padding: 0 0 0 4vw;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.05 / 1;
  clip-path: polygon(18% 0, 100% 0, 100% 86%, 82% 100%, 0 100%, 0 15%);
}

.portrait-frame::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, color-mix(in oklch, var(--ink) 30%, transparent), transparent 42%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero-portrait figcaption {
  margin: 15px 0 0 12%;
  color: color-mix(in oklch, var(--paper) 62%, transparent);
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
}

.hero-note {
  z-index: 3;
  grid-column: 1 / span 3;
  align-self: end;
  display: flex;
  gap: 16px;
  max-width: 290px;
  color: color-mix(in oklch, var(--paper) 72%, transparent);
  font-size: 13px;
  line-height: 1.45;
}

.hero-note p { margin: 0; }
.note-mark { color: var(--coral); font-size: 28px; line-height: 0.7; }

.hero-rule { position: relative; height: 1px; }
.hero-rule span { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--line-dark); }

.choice-section { padding: 150px 0 120px; background: var(--paper); }

.choice-heading {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 8.33%;
  align-items: start;
  margin-bottom: 80px;
}

.choice-heading > p {
  max-width: 230px;
  margin: 11px 0 0;
  color: var(--moss);
  font-size: 15px;
  line-height: 1.45;
}

.choice-heading h2 {
  max-width: 900px;
  font-size: clamp(3.4rem, 5.2vw, 6.2rem);
}

.choice-heading em { color: var(--coral-deep); }

.route-lines { border-top: 1px solid var(--line-light); }

.route-line {
  display: grid;
  grid-template-columns: minmax(74px, 1fr) minmax(0, 7.4fr);
  gap: 26px;
  align-items: center;
  min-height: 230px;
  border-bottom: 1px solid var(--line-light);
  transition: background 240ms ease-out, padding 240ms ease-out;
}

.route-line:hover { padding-inline: 22px; background: var(--mist); }

.route-count {
  align-self: start;
  padding-top: 34px;
  color: var(--coral-deep);
  font-family: var(--display);
  font-size: 27px;
  font-style: italic;
}

.route-copy { padding: 31px 0; }
.route-kicker { margin-bottom: 12px; color: var(--moss); }

.route-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.1vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}

.route-copy p:last-child {
  max-width: 610px;
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.58;
}

.route-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0 0 11px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
  transition: color 160ms ease-out, border-color 160ms ease-out;
}

.route-button:hover { border-color: var(--coral-deep); color: var(--coral-deep); }
.route-button b { font-size: 20px; font-weight: 400; }

.process-section {
  padding: 84px 0 88px;
  border-block: 1px solid var(--line-light);
  background: var(--mist);
  color: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: 3.3fr 6.7fr;
  gap: 8.33%;
  align-items: start;
}

.process-title .section-label { color: var(--coral-deep); }

.process-title h2 { max-width: 510px; font-size: clamp(3.7rem, 5.8vw, 6.1rem); }
.process-title em { color: var(--coral-deep); }

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line-light);
}

.process-list span { color: var(--coral-deep); font-family: var(--display); font-size: 25px; font-style: italic; }
.process-list h3 { margin: 0; font-size: 20px; font-weight: 700; line-height: 1.25; }
.process-list p { max-width: 500px; margin: 6px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

.space-section { padding: 102px 0 106px; background: var(--paper); overflow: clip; }

.space-layout {
  position: relative;
  display: grid;
  grid-template-columns: 4.6fr 5.4fr;
  gap: 8.33%;
  align-items: center;
}

.space-image {
  position: relative;
  z-index: 1;
  width: min(100%, 565px);
  margin: 0;
}

.space-image img {
  width: 100%;
  height: min(780px, 55vw);
  object-fit: cover;
  object-position: 50% center;
  clip-path: polygon(0 0, 87% 0, 100% 13%, 100% 100%, 15% 100%, 0 85%);
}

.space-copy { max-width: 570px; padding: 32px 0; }
.space-copy .section-label { color: var(--coral-deep); }
.space-copy h2 { font-size: clamp(3.8rem, 5.2vw, 6rem); }
.space-copy h2 em { color: var(--coral-deep); }

.space-lead {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.58;
}

.values-list { margin: 38px 0 0; padding: 0; list-style: none; }
.values-list li { padding: 12px 0; border-top: 1px solid var(--line-light); font-size: 15px; line-height: 1.45; }
.values-list li:last-child { border-bottom: 1px solid var(--line-light); }
.values-list span { color: var(--coral-deep); font-weight: 700; }

.lead-section { padding: 136px 0; background: var(--paper); }

.lead-layout {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 10%;
  align-items: end;
}

.lead-copy .section-label { color: var(--coral-deep); }
.lead-copy h2 { max-width: 790px; font-size: clamp(4.1rem, 6.2vw, 7rem); }
.lead-copy h2 em { color: var(--coral-deep); }
.lead-copy p { max-width: 510px; margin: 28px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.58; }

.lead-trigger {
  align-self: center;
  min-height: 112px;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 2.6vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.lead-trigger:hover { background: var(--lime); }
.lead-trigger i { font-family: var(--body); font-size: 27px; font-style: normal; }

.site-footer { padding: 30px 0; background: var(--ink); color: var(--paper); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.footer-inner p { margin: 0; color: color-mix(in oklch, var(--paper) 58%, transparent); font-size: 13px; }
.footer-inner > a:last-child { justify-self: end; color: var(--lime); font-size: 13px; font-weight: 700; }

.mobile-cta { display: none; }

.lead-dialog {
  width: min(710px, calc(100vw - 32px));
  max-height: min(810px, calc(100vh - 32px));
  margin: auto;
  padding: 31px 34px 35px;
  overflow: auto;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 8px 8px rgb(9 12 6 / 22%);
}

.lead-dialog::backdrop { background: rgb(17 24 11 / 76%); }

.dialog-header { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.dialog-kicker { margin-bottom: 0; color: var(--coral-deep); }

.dialog-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.lead-dialog h2 { max-width: 570px; margin-top: 31px; font-size: clamp(2.8rem, 5vw, 4.4rem); }
.dialog-description { max-width: 540px; margin: 18px 0 0; color: var(--ink-soft); line-height: 1.55; }

#lead-form { margin-top: 28px; }

.route-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-block: 1px solid var(--line-light);
}

.route-summary[hidden],
.route-choice[hidden] { display: none; }

.route-summary span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.route-summary strong { display: block; margin-top: 2px; font-size: 15px; }

.route-change {
  flex: 0 0 auto;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--coral-deep);
  background: transparent;
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 700;
}

.route-choice { margin: 0; padding: 0; border: 0; }
.route-choice legend { padding: 0; font-size: 14px; font-weight: 700; }

.route-choice-options,
.contact-choice-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 11px; }

.route-choice-options label,
.contact-choice-options label { position: relative; }

.route-choice-options input,
.contact-choice-options input { position: absolute; opacity: 0; pointer-events: none; }

.route-choice-options span,
.contact-choice-options span {
  display: block;
  padding: 10px 13px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: background 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out;
}

.route-choice-options input:checked + span,
.contact-choice-options input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.route-choice-options input:focus-visible + span,
.contact-choice-options input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 3px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 15px; margin-top: 24px; }
.form-grid--lead { align-items: end; }
.contact-choice { grid-column: 1 / -1; margin: 0; padding: 0; border: 0; }
.contact-choice legend { padding: 0; color: var(--ink-soft); font-size: 13px; font-weight: 600; }

.field { display: grid; gap: 7px; }
.field > span { color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.field > span em { color: color-mix(in oklch, var(--ink-soft) 68%, transparent); font-style: normal; font-weight: 400; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0 11px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: color-mix(in oklch, var(--ink-soft) 58%, transparent); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--coral-deep); }
.field-error { min-height: 16px; margin: 3px 0 0; color: var(--coral-deep); font-size: 12px; line-height: 1.35; }

.form-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  border-radius: 0;
  background: var(--coral);
  color: var(--ink);
}

.form-submit:hover { background: var(--lime); }
.form-submit[disabled] { cursor: progress; opacity: 0.65; transform: none; }

.form-mode {
  margin: 20px 0 0;
  padding-top: 11px;
  border-top: 1px solid var(--line-light);
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.form-note { margin: 12px 0 0; color: color-mix(in oklch, var(--ink-soft) 78%, transparent); font-size: 11px; line-height: 1.45; }
.form-status { min-height: 20px; margin: 14px 0 0; color: var(--moss); font-size: 13px; font-weight: 600; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 1400px); }

  .hero { min-height: 0; padding-top: 122px; }
  .hero-layout { min-height: 0; }
  .hero-copy { grid-column: 1 / span 7; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(3.8rem, 9.2vw, 5.6rem); }
  .hero-summary { font-size: 16px; }
  .hero-portrait { grid-column: 8 / -1; align-self: center; padding-left: 0; }
  .portrait-frame { aspect-ratio: 0.8; clip-path: polygon(13% 0, 100% 0, 100% 88%, 78% 100%, 0 100%, 0 10%); }
  .portrait-frame img { object-position: 70% center; }
  .hero-note { grid-column: 1 / span 4; }
  .choice-heading { grid-template-columns: 1fr 2fr; gap: 40px; }
  .route-line { grid-template-columns: 70px minmax(0, 1fr); gap: 16px; padding: 24px 0; }
  .route-line:hover { padding-inline: 14px; }
  .route-count { padding-top: 7px; }
  .route-copy { padding: 0; }
  .route-button { grid-column: 2; max-width: 250px; }
  .process-grid,
  .space-layout,
  .lead-layout { grid-template-columns: 1fr; gap: 50px; }
  .process-title h2 { max-width: 640px; }
  .space-image { width: min(100%, 500px); }
  .lead-trigger { width: min(100%, 520px); }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 36px); }

  body { padding-bottom: 66px; }
  .header-inner { min-height: 69px; }
  .header-location { display: none; }
  .header-cta { display: none; }
  .hero { padding: 101px 0 33px; }
  .hero::before { top: 280px; right: -130px; width: 350px; }
  .hero-layout { display: block; }
  .hero-copy { padding: 0; }
  .hero-label { margin-bottom: 17px; font-size: 10px; }
  .hero h1 { font-size: clamp(3.2rem, 13.5vw, 4.4rem); line-height: 0.89; }
  .hero-summary { margin-top: 20px; font-size: 15px; }
  .hero-actions { display: grid; margin-top: 25px; }
  .action { width: 100%; min-height: 51px; }
  .hero-portrait { width: 100%; margin-top: 27px; }
  .portrait-frame { aspect-ratio: 0.98; clip-path: polygon(17% 0, 100% 0, 100% 88%, 78% 100%, 0 100%, 0 15%); }
  .portrait-frame img { object-position: 61% center; }
  .hero-portrait figcaption { margin-top: 11px; font-size: 19px; }
  .hero-note { width: 88%; margin-top: 35px; font-size: 12px; }
  .hero-rule { margin-top: 26px; }

  .choice-section { padding: 76px 0 70px; }
  .choice-heading { display: block; margin-bottom: 36px; }
  .choice-heading > p { margin: 0 0 20px; font-size: 14px; }
  .choice-heading h2 { font-size: clamp(3rem, 12vw, 4.2rem); }
  .route-line { display: block; min-height: 0; padding: 26px 0; }
  .route-line:hover { padding-inline: 0; background: transparent; }
  .route-count { padding: 0; font-size: 21px; }
  .route-copy { margin-top: 12px; }
  .route-copy h3 { font-size: clamp(2.6rem, 12vw, 3.5rem); }
  .route-copy p:last-child { margin-top: 14px; font-size: 14px; }
  .route-button { width: 100%; max-width: none; margin-top: 22px; }

  .process-section { padding: 65px 0 64px; }
  .process-grid { gap: 32px; }
  .process-title h2 { font-size: clamp(3.5rem, 14vw, 4.7rem); }
  .process-list li { grid-template-columns: 43px 1fr; gap: 11px; padding: 18px 0; }
  .process-list span { font-size: 22px; }
  .process-list h3 { font-size: 17px; }
  .process-list p { font-size: 14px; }

  .space-section { padding: 72px 0 74px; }
  .space-layout { gap: 34px; }
  .space-image { width: 100%; }
  .space-image img { height: min(590px, 150vw); }
  .space-copy { padding: 0; }
  .space-copy h2 { font-size: clamp(3.5rem, 14vw, 4.7rem); }
  .space-lead { margin-top: 23px; font-size: 16px; }
  .values-list { margin-top: 28px; }
  .lead-section { padding: 82px 0; }
  .lead-layout { gap: 37px; }
  .lead-copy h2 { font-size: clamp(3.7rem, 14.5vw, 5rem); }
  .lead-copy p { margin-top: 22px; font-size: 16px; }
  .lead-trigger { min-height: 84px; padding: 0 20px; font-size: 2.15rem; }
  .site-footer { padding: 26px 0; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner p { display: none; }

  .mobile-cta {
    position: fixed;
    z-index: 15;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
    padding: 0 18px;
    border: 0;
    background: var(--lime);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    transition: transform 180ms ease-out;
  }

  .mobile-cta.is-suppressed { pointer-events: none; transform: translateY(110%); }

  .lead-dialog { width: calc(100vw - 18px); max-height: calc(100vh - 18px); padding: 24px 20px 25px; }
  .lead-dialog h2 { margin-top: 27px; font-size: clamp(2.8rem, 12.5vw, 3.8rem); }
  .dialog-description { margin-top: 14px; font-size: 14px; }
  .form-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 20px; }
  .route-choice-options { display: grid; grid-template-columns: 1fr; }
  .contact-choice-options { display: grid; grid-template-columns: repeat(2, 1fr); }
  .route-choice-options span { padding: 10px 12px; }
}

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