:root {
  --ink: #17263a;
  --ink-soft: #314054;
  --paper: #f4f1e9;
  --paper-deep: #e9e3d7;
  --white: #fffdf8;
  --accent: #c85635;
  --accent-dark: #a73f24;
  --sage: #9dab9b;
  --line: rgba(23, 38, 58, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1160px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(21, 33, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  color: var(--white);
  background: var(--accent);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 241, 233, 0.92);
  box-shadow: 0 8px 30px rgba(21, 33, 50, 0.05);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -0.06em;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand-name em {
  margin-top: 4px;
  color: var(--accent);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

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

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--ink);
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 800px;
  padding-top: 190px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 31vw;
  min-width: 360px;
  height: 100%;
  background: rgba(233, 227, 215, 0.55);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: 7vw;
  align-items: center;
}

.eyebrow {
  display: flex;
  margin: 0 0 25px;
  align-items: center;
  gap: 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #e6ae9d;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 750px;
  margin-bottom: 28px;
  font-size: clamp(68px, 7.3vw, 110px);
  line-height: 0.89;
}

h1 span,
h2 em {
  color: var(--accent);
  font-style: italic;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: #f1e6dc;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 750;
  transition: color 180ms ease;
}

.text-link span {
  color: var(--accent);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-dark);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, 3px);
}

.hero-visual {
  position: relative;
  min-height: 450px;
}

.hero-visual::before {
  position: absolute;
  top: 5%;
  right: -10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
  opacity: 0.44;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 38, 58, 0.28);
  border-radius: 50%;
}

.orbit-one {
  top: 0;
  right: -4%;
  width: 390px;
  height: 390px;
}

.orbit-two {
  top: 61px;
  right: 9%;
  width: 260px;
  height: 260px;
  border-color: var(--accent);
}

.visual-axis {
  position: absolute;
  top: -13%;
  right: 46%;
  width: 1px;
  height: 128%;
  background: rgba(23, 38, 58, 0.17);
  transform: rotate(31deg);
}

.visual-card {
  position: absolute;
  top: 90px;
  right: 9%;
  width: 286px;
  padding: 28px 30px 22px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.visual-label {
  display: block;
  margin-bottom: 27px;
  color: #b7c1cd;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.visual-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visual-card li {
  display: flex;
  padding: 11px 0;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: 24px;
}

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

.visual-card li span {
  color: #e6ae9d;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
}

.visual-note {
  position: absolute;
  right: 2%;
  bottom: 14px;
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.hero-footer {
  position: relative;
  display: flex;
  margin-top: 87px;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.hero-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.focus-list {
  display: flex;
  gap: 43px;
}

.focus-list span {
  display: flex;
  align-items: center;
  gap: 43px;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.focus-list span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.section {
  padding: 135px 0;
}

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

.section-heading {
  display: grid;
  margin-bottom: 65px;
  grid-template-columns: 1.15fr 0.55fr;
  gap: 10vw;
  align-items: end;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.03;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 480px;
  padding: 36px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.service-card::after {
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 170px;
  height: 170px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transition: opacity 240ms ease, transform 350ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::after {
  opacity: 0.75;
  transform: scale(1.2);
}

.service-card.featured {
  background: #f8f4ed;
}

.card-number {
  margin-bottom: 100px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
}

.service-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  margin: 7px 0;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
}

.service-card li::before {
  width: 12px;
  height: 1px;
  background: var(--accent);
  content: "";
}

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

.approach::after {
  position: absolute;
  right: -150px;
  bottom: -270px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 11vw;
}

.approach-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
}

.approach-intro > p:last-child {
  max-width: 470px;
  color: #bfc7d1;
  font-size: 18px;
}

.process-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 35px 0;
  grid-template-columns: 55px 1fr;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list > li > span {
  padding-top: 5px;
  color: #e6ae9d;
  font-size: 10px;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: #bfc7d1;
  font-size: 15px;
}

.about {
  background: var(--paper-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 11vw;
  align-items: center;
}

.about-monogram {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 38, 58, 0.32);
  font-family: var(--serif);
  font-size: clamp(120px, 15vw, 220px);
  letter-spacing: -0.17em;
  line-height: 1;
}

.about-monogram::before,
.about-monogram::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.about-monogram::before {
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--accent);
}

.about-monogram::after {
  right: -8px;
  bottom: -8px;
  width: 55px;
  height: 55px;
  background: var(--sage);
}

.about-monogram span:last-child {
  color: var(--accent);
}

.about h2 {
  margin-bottom: 32px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}

.about-copy .text-link {
  margin-top: 14px;
}

.contact {
  padding: 125px 0;
  color: var(--white);
  background: var(--accent-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 10vw;
}

.contact h2 {
  max-width: 580px;
  margin-bottom: 28px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: #f1d6ce;
  font-size: 17px;
}

.contact-email {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 15px;
  font-weight: 700;
}

.contact-form {
  padding-top: 38px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 28px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: #f1d6ce;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: border-color 180ms ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--white);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-footer p {
  margin: 0;
  color: #e6beb3;
  font-size: 11px;
}

.site-footer {
  padding: 40px 0;
  color: #bfc7d1;
  background: #101d2e;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand .brand-mark {
  border-color: #7c8796;
  color: var(--white);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-inner p,
.footer-inner > a {
  margin: 0;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 940px) {
  :root {
    --container: min(100% - 40px, 760px);
  }

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

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    padding: 130px 10vw 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--serif);
    font-size: 34px;
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .nav-cta {
    margin-top: 16px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .hero {
    min-height: 0;
    padding-top: 145px;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 50%;
    min-width: 0;
    height: 48%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual {
    width: min(100%, 470px);
    min-height: 390px;
    margin-left: auto;
  }

  .hero-footer {
    margin-top: 50px;
  }

  .section {
    padding: 95px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 560px;
  }

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

  .service-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 65px;
  }

  .approach-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .about-monogram {
    max-width: 360px;
  }

  .contact-form {
    padding-top: 0;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 32px);
  }

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

  .hero {
    padding-top: 125px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 56px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual::before {
    top: 7%;
    right: 0;
    width: 260px;
    height: 260px;
  }

  .orbit-one {
    right: -2%;
    width: 300px;
    height: 300px;
  }

  .orbit-two {
    top: 48px;
    right: 11%;
    width: 200px;
    height: 200px;
  }

  .visual-card {
    top: 63px;
    right: 8%;
    width: min(260px, 82%);
    padding: 24px;
  }

  .visual-note {
    bottom: -4px;
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .focus-list {
    width: 100%;
    gap: 14px;
    justify-content: space-between;
  }

  .focus-list span {
    gap: 14px;
    font-size: 13px;
  }

  .section-heading h2,
  .about h2,
  .contact h2,
  .approach-intro h2 {
    font-size: 45px;
  }

  .service-card {
    padding: 30px 26px 34px;
  }

  .card-number {
    margin-bottom: 42px;
  }

  .about-monogram {
    width: calc(100% - 24px);
    font-size: 39vw;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
