:root {
  color-scheme: light;
  --ink: #0a1624;
  --navy: #102a43;
  --slate: #526779;
  --line: #cbd6de;
  --mist: #eaf0f4;
  --paper: #f7f9fa;
  --white: #ffffff;
  --warm: #c86632;
  --warm-ink: #a4471f;
  --warm-soft: #f0d8ca;
  --focus: #0a6fc2;
  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(5rem, 10vw, 9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.2em;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.75rem;
  font-size: clamp(3rem, 6.6vw, 6.25rem);
  font-weight: 650;
}

h1 span {
  display: block;
  color: var(--slate);
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  font-weight: 620;
}

h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  font-weight: 650;
}

.shell {
  width: min(100% - (2 * var(--gutter)), var(--shell));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--white);
  border-radius: 0.5rem;
  transform: translateY(-200%);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.header-cta,
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  font-weight: 650;
}

.header-cta {
  text-decoration-color: var(--warm);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: auto -18vw -28vw auto;
  width: 50vw;
  height: 50vw;
  background: var(--mist);
  border-radius: 50%;
  content: "";
  opacity: 0.75;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: min(810px, calc(100svh - 72px));
  align-items: center;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

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

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--warm-ink);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  padding-inline: 0.32rem;
  color: var(--slate);
}

.hero-intro {
  max-width: 63ch;
  margin-bottom: 2rem;
  color: var(--slate);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

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

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
}

.monogram-frame {
  position: relative;
  display: grid;
  width: clamp(260px, 30vw, 390px);
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 44% 44% 1.5rem 1.5rem;
  box-shadow: 0 24px 50px rgb(10 22 36 / 0.14);
}

.monogram-frame::before {
  position: absolute;
  inset: 10% 12%;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 50%;
  content: "";
}

.monogram {
  position: relative;
  z-index: 2;
  font-size: clamp(5.5rem, 10vw, 8.75rem);
  font-weight: 680;
  letter-spacing: -0.09em;
  line-height: 1;
}

.monogram-line {
  position: absolute;
  z-index: 1;
  display: block;
  width: 145%;
  height: 38%;
  border: 3px solid var(--warm);
  border-color: var(--warm) transparent transparent transparent;
  border-radius: 50%;
}

.line-one {
  top: 57%;
  left: -22%;
  transform: rotate(-7deg);
}

.line-two {
  top: 67%;
  left: -21%;
  border-width: 1px;
  border-color: rgb(255 255 255 / 0.35) transparent transparent transparent;
  transform: rotate(13deg);
}

.monogram-dot {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  background: var(--warm);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--warm);
}

.dot-one {
  top: 47%;
  left: 17%;
}

.dot-two {
  right: 16%;
  bottom: 27%;
}

.hero-visual > p {
  margin: 1.15rem 0 0;
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.hero-visual > p span {
  margin-inline: 0.3rem;
  color: var(--warm);
}

.alignment {
  padding-block: clamp(3.5rem, 7vw, 5rem);
  background: var(--white);
}

.alignment-inner > p {
  margin: 1.6rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
  text-align: center;
}

.alignment-path {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.alignment-path::before {
  position: absolute;
  top: 16px;
  right: 16.5%;
  left: 16.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--line), var(--warm), var(--line));
  content: "";
}

.alignment-node {
  position: relative;
  padding-top: 2.75rem;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  text-align: center;
}

.alignment-node::before {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: calc(50% - 9px);
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 50%;
  content: "";
}

.alignment-node-accent::before {
  border-color: var(--warm);
}

.section {
  padding-block: var(--section-space);
}

.section-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr);
  column-gap: clamp(2rem, 8vw, 7rem);
}

.section-intro .eyebrow,
.section-intro h2 {
  grid-column: 1;
}

.section-intro > p:last-child {
  max-width: 55ch;
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--slate);
  font-size: 1.08rem;
}

.value-grid {
  display: grid;
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  padding: clamp(2rem, 4vw, 3rem);
}

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

.card-number {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--warm-ink);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.value-card p,
.principles p,
.about-copy p {
  color: var(--slate);
}

.perspective {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.perspective::before {
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 50%;
  content: "";
}

.perspective .shell {
  position: relative;
}

.eyebrow-inverse {
  color: #eea57d;
}

.perspective-heading h2 {
  max-width: 16ch;
}

.principles {
  display: grid;
  margin-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid rgb(255 255 255 / 0.2);
  grid-template-columns: repeat(3, 1fr);
}

.principles article {
  position: relative;
  padding: 2.5rem clamp(1.5rem, 3vw, 2.5rem) 2rem 0;
}

.principles article + article {
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid rgb(255 255 255 / 0.2);
}

.principles p {
  color: #c9d6df;
}

.perspective blockquote {
  max-width: 900px;
  margin: clamp(4rem, 9vw, 7rem) 0 0;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  border-left: 4px solid var(--warm);
}

.perspective blockquote p {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

.perspective blockquote footer {
  color: #aebdca;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.about-copy {
  align-self: end;
  max-width: 62ch;
  font-size: 1.06rem;
}

.about-copy p + p {
  margin-top: 1.5rem;
}

.ai-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.ai-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.ai-artwork {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 24px 50px rgb(10 22 36 / 0.12);
}

.ai-artwork img {
  display: block;
  width: 100%;
  height: auto;
}

.ai-copy {
  max-width: 58ch;
}

.ai-copy > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.06rem;
}

.ai-copy > p:not(.eyebrow) + p {
  margin-top: 1.5rem;
}

.closing {
  color: var(--white);
  background: var(--navy);
}

.closing .eyebrow {
  color: #eea57d;
}

.closing-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(3rem, 8vw, 7rem);
}

.closing-copy > p:not(.eyebrow) {
  max-width: 55ch;
  color: #d9e4eb;
  font-size: 1.12rem;
}

.closing-actions {
  margin-top: 2rem;
}

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

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

.text-link-light {
  color: var(--white);
  text-decoration-color: #eea57d;
}

.closing-mark {
  position: relative;
  display: grid;
  width: clamp(180px, 20vw, 270px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 50%;
}

.closing-mark::before,
.closing-mark::after {
  position: absolute;
  width: 120%;
  height: 34%;
  border: 2px solid var(--warm);
  border-color: var(--warm) transparent transparent transparent;
  border-radius: 50%;
  content: "";
}

.closing-mark::after {
  width: 105%;
  border-width: 1px;
  border-color: rgb(255 255 255 / 0.3) transparent transparent transparent;
  transform: rotate(18deg);
}

.closing-mark span {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 680;
  letter-spacing: -0.09em;
}

.site-footer {
  color: #d4dee6;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  min-height: 170px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-inner p {
  margin-bottom: 0.15rem;
}

.footer-inner > p {
  color: #9eafbd;
  text-align: center;
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
}

.footer-inner a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-visual {
    justify-self: center;
  }

  .monogram-frame {
    width: min(72vw, 360px);
    aspect-ratio: 5 / 4;
    border-radius: 50% 50% 1.5rem 1.5rem;
  }

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

  .section-intro > p:last-child {
    margin-top: 0.5rem;
    grid-column: 1;
    grid-row: auto;
  }

  .value-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .value-card + .value-card,
  .principles article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles article + article {
    padding-left: 0;
    border-color: rgb(255 255 255 / 0.2);
  }

  .card-number {
    margin-bottom: 1.75rem;
  }

  .closing-mark {
    width: 190px;
  }

  .footer-inner {
    padding-block: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 1.25rem;
    --section-space: 4.75rem;
  }

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

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

  .header-cta {
    font-size: 0.88rem;
  }

  .hero-grid {
    padding-block: 3.5rem 4.25rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .eyebrow {
    font-size: 0.72rem;
  }

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

  .button,
  .hero-actions .text-link,
  .closing-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .monogram-frame {
    width: 100%;
    max-width: 330px;
  }

  .alignment-path {
    grid-template-columns: 1fr;
  }

  .alignment-path::before {
    top: 16px;
    bottom: 16px;
    left: 16px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--line), var(--warm), var(--line));
  }

  .alignment-node {
    min-height: 58px;
    padding: 0 0 1.35rem 3.5rem;
    text-align: left;
  }

  .alignment-node:last-child {
    padding-bottom: 0;
  }

  .alignment-node::before {
    top: 8px;
    left: 8px;
  }

  .alignment-inner > p {
    margin-top: 1.25rem;
    text-align: left;
  }

  .value-card {
    padding-inline: 0;
  }

  .closing-inner {
    grid-template-columns: 1fr;
  }

  .closing-mark {
    justify-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-inner > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

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

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

@media (forced-colors: active) {
  .brand-mark,
  .button,
  .monogram-frame,
  .closing-mark {
    border: 2px solid ButtonText;
  }

  .monogram-line,
  .closing-mark::before,
  .closing-mark::after,
  .alignment-path::before {
    forced-color-adjust: none;
  }
}
