:root {
  --navy: #0a2333;
  --navy-soft: #12384a;
  --teal: #2a8d86;
  --teal-light: #8fc3bd;
  --paper: #f4f1e9;
  --paper-light: #faf8f2;
  --ink: #102a38;
  --muted: #5f727a;
  --line: rgba(10, 35, 51, 0.17);
  --light-line: rgba(255, 255, 255, 0.18);
  --shell: min(1440px, calc(100% - 10vw));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--navy);
}

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

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

.top-rule {
  height: 7px;
  background: var(--navy);
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(244, 241, 233, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--navy);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 17px;
  height: 1px;
  background: var(--teal);
  transform-origin: left center;
}

.brand-mark::before {
  top: 14px;
  transform: rotate(42deg);
}

.brand-mark::after {
  top: 26px;
  transform: rotate(-42deg);
}

.brand-name,
.brand-descriptor {
  display: block;
}

.brand-name {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.045em;
}

.brand-descriptor {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  color: #314b58;
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.nav-arrow) {
  position: relative;
  padding: 14px 0;
}

.main-nav > a:not(.nav-arrow)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--teal);
  transition: right 240ms ease;
}

.main-nav > a:not(.nav-arrow):hover::after,
.main-nav > a:not(.nav-arrow):focus-visible::after {
  right: 0;
}

.nav-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    transform 240ms ease;
}

.nav-arrow:hover {
  color: var(--paper);
  background: var(--navy);
  transform: translateX(3px);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 56% 44%;
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(8.333% - 1px),
      rgba(10, 35, 51, 0.04) calc(8.333% - 1px),
      rgba(10, 35, 51, 0.04) 8.333%
    ),
    var(--paper);
}

.hero-copy {
  padding: 82px 7vw 76px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.hero h1 {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(61px, 5.35vw, 92px);
  line-height: 0.97;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  font-weight: 400;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -3%;
  bottom: 4px;
  left: 2%;
  height: 6px;
  background: var(--teal-light);
  opacity: 0.7;
}

.support-row {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}

.support-copy {
  max-width: 390px;
  margin: 0;
  color: #50656e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.primary-cta,
.contact-button {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 25px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background-color 240ms ease,
    transform 240ms ease;
}

.primary-cta {
  width: 210px;
  flex: 0 0 auto;
}

.primary-cta > span:last-child,
.contact-button > span:last-child {
  color: var(--teal-light);
  font-size: 20px;
  font-weight: 400;
}

.primary-cta:hover,
.contact-button:hover {
  background: var(--navy-soft);
  transform: translateY(-3px);
}

.hero-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.panel-index {
  position: absolute;
  top: 42px;
  right: 5vw;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.panel-index::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--teal);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--light-line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: min(42vw, 680px);
  aspect-ratio: 1;
}

.orbit-two {
  width: min(30vw, 470px);
  aspect-ratio: 1;
}

.orbit-three {
  width: min(17vw, 250px);
  aspect-ratio: 1;
  border-color: rgba(143, 195, 189, 0.5);
  background: rgba(42, 141, 134, 0.08);
}

.crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--light-line);
  transform: translate(-50%, -50%);
}

.crosshair.horizontal {
  width: 100%;
  height: 1px;
}

.crosshair.vertical {
  width: 1px;
  height: 100%;
}

.monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(74px, 7vw, 118px);
  transform: translate(-50%, -53%);
}

.panel-note {
  position: absolute;
  bottom: 62px;
  left: 13%;
  margin: 0;
  padding-left: 28px;
  border-left: 2px solid var(--teal);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.services-section {
  padding: 118px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 70px;
}

.section-heading h2,
.about-intro h2,
.process-copy h2,
.contact-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  max-width: 800px;
  font-size: clamp(42px, 4.1vw, 66px);
  line-height: 1.04;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  padding: 52px clamp(30px, 4.2vw, 70px);
  border-right: 1px solid var(--line);
  transition:
    background-color 240ms ease,
    color 240ms ease;
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-child(-n + 3) {
  border-bottom: 1px solid var(--line);
}

.service-card:hover {
  background: var(--navy);
  color: var(--paper);
}

.service-number {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.service-card h3 {
  max-width: 360px;
  margin: 56px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.25vw, 38px);
  line-height: 1.08;
  font-weight: 400;
}

.service-card p {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: color 240ms ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.service-arrow {
  position: absolute;
  top: 48px;
  right: 46px;
  font-size: 22px;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.about-section {
  padding: 140px 0 130px;
  background: var(--paper-light);
}

.about-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
}

.about-intro h2 {
  margin-top: 32px;
  color: var(--navy);
  font-size: clamp(43px, 4vw, 64px);
  line-height: 1.08;
}

.about-copy {
  margin: 0 0 5px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.65;
}

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

.principle {
  padding: 37px 45px 0 0;
}

.principle + .principle {
  padding-left: 45px;
  border-left: 1px solid var(--line);
}

.principle > span {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.principle h3 {
  margin: 42px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 400;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.process-section {
  padding: 126px 0;
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 10vw;
}

.process-copy h2 {
  max-width: 580px;
  margin-top: 30px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.06;
}

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

.process-steps li {
  min-height: 142px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.process-steps h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.process-steps p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: var(--navy);
  color: var(--paper);
}

.contact-orbit {
  position: absolute;
  top: 50%;
  right: -10vw;
  width: min(54vw, 820px);
  aspect-ratio: 1;
  border: 1px solid var(--light-line);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--light-line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-orbit::before {
  width: 68%;
  height: 68%;
}

.contact-orbit::after {
  width: 38%;
  height: 38%;
  border-color: rgba(143, 195, 189, 0.45);
}

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

.section-kicker.light {
  color: var(--teal-light);
}

.contact-inner h2 {
  max-width: 940px;
  margin-top: 36px;
  font-size: clamp(49px, 5.5vw, 84px);
  line-height: 1.02;
}

.contact-inner > p:not(.section-kicker) {
  max-width: 540px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.7;
}

.contact-button {
  min-width: 330px;
  margin-top: 46px;
  background: var(--paper);
  color: var(--navy);
}

.contact-button:hover {
  background: var(--teal-light);
}

.contact-button > span:last-child {
  color: var(--teal);
}

.site-footer {
  background: #071b27;
  color: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer-inner > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.footer-brand {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 42%;
  }

  .hero-copy {
    padding-inline: 5vw;
  }

  .support-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .about-intro,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .process-grid {
    gap: 64px;
  }
}

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

  .header-inner {
    min-height: 92px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark::before,
  .brand-mark::after {
    left: 10px;
    width: 15px;
  }

  .brand-mark::before {
    top: 12px;
  }

  .brand-mark::after {
    top: 23px;
  }

  .brand-name {
    font-size: 16px;
  }

  .main-nav > a:not(.nav-arrow) {
    display: none;
  }

  .nav-arrow {
    width: 44px;
    height: 44px;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 600px;
    padding: 84px 22px 76px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .support-row {
    margin-top: 42px;
  }

  .primary-cta {
    width: 100%;
  }

  .hero-panel {
    min-height: 470px;
  }

  .orbit-one {
    width: 108vw;
  }

  .orbit-two {
    width: 76vw;
  }

  .orbit-three {
    width: 42vw;
  }

  .panel-note {
    bottom: 40px;
    left: 22px;
  }

  .services-section,
  .about-section,
  .process-section,
  .contact-section {
    padding-block: 92px;
  }

  .section-heading {
    gap: 30px;
    padding-bottom: 52px;
  }

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

  .service-card,
  .service-card:nth-child(n) {
    min-height: 300px;
    padding: 42px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .service-arrow {
    top: 38px;
    right: 24px;
    opacity: 1;
  }

  .principles {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .principle,
  .principle + .principle {
    padding: 34px 0 38px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .principle h3 {
    margin-top: 28px;
  }

  .process-steps li {
    grid-template-columns: 48px 1fr;
  }

  .contact-orbit {
    right: -58vw;
    width: 150vw;
  }

  .contact-button {
    width: 100%;
    min-width: 0;
    font-size: 11px;
  }

  .footer-inner {
    padding-block: 34px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner > div {
    flex-direction: column;
    gap: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
