:root {
  color-scheme: light dark;
  --paper: #f1f2ef;
  --surface: #ffffff;
  --ink: #242126;
  --muted: #656067;
  --line: #cbc9c9;
  --accent: #a52b63;
  --accent-ink: #ffffff;
  --deep: #1d1a1e;
  --deep-ink: #f6f2f4;
  --container: 1360px;
  --header-height: 76px;
  --pad: clamp(20px, 3.2vw, 52px);
  --section-space: clamp(88px, 10vw, 164px);
  --ease: cubic-bezier(.22, .72, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

button,
a {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .94;
}

h2 {
  font-size: clamp(46px, 5.2vw, 82px);
}

h3 {
  font-size: clamp(27px, 2.2vw, 36px);
}

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

.sr-only {
  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;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 11px 16px;
  background: var(--accent);
  color: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.container,
.header-inner,
.hero-inner {
  width: min(calc(100% - (var(--pad) * 2)), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid #ddd9db;
  background: rgba(255, 255, 255, .97);
  color: #272328;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 52px;
  text-decoration: none;
}

.brand-crop {
  position: relative;
  display: block;
  width: 260px;
  height: 54px;
  overflow: hidden;
  background: #fff;
}

.brand-crop img {
  position: absolute;
  top: -107px;
  left: 0;
  width: 260px;
  max-width: none;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .01em;
}

.nav-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

.nav-panel > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

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

.nav-cta {
  padding: 0 21px;
  background: var(--accent);
  color: #fff;
}

.menu-toggle {
  display: none;
  min-width: 72px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #bab6b8;
  border-radius: 0;
  background: #fff;
  color: #272328;
  cursor: pointer;
}

.menu-toggle svg,
.button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  min-height: 84svh;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(420px, .87fr);
  align-items: stretch;
  min-height: 84svh;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(64px, 8vh, 96px) clamp(40px, 6vw, 104px) clamp(64px, 8vh, 96px) 0;
}

.kicker,
.section-index {
  margin-bottom: clamp(30px, 5vh, 60px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--accent);
}

h1 {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: clamp(67px, 7.2vw, 116px);
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 20px 13px 24px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

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

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

.button-primary:hover {
  background: #84204e;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #b0aa9e;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255,255,255,.36);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 18px 22px;
  background: rgba(25, 23, 25, .78);
  color: #fff;
  font-size: 12px;
  letter-spacing: .05em;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, .33fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
  margin-bottom: clamp(72px, 9vw, 136px);
}

.section-heading h2 {
  max-width: 980px;
  margin-bottom: 28px;
}

.section-heading > div > p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: stretch;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(30px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  margin: 6px 0 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-item h3 {
  margin-bottom: 17px;
}

.service-item p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-media {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

.office-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d4d1ca;
}

.office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.media-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about {
  padding-block: var(--section-space);
  background: var(--accent);
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(380px, .76fr) minmax(0, 1.24fr);
  gap: clamp(54px, 9vw, 148px);
  align-items: center;
}

.about-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8c7bd;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.about-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: #fff;
  color: #292429;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-index-light {
  color: rgba(255,255,255,.72);
}

.about-copy h2 {
  max-width: 790px;
  margin-bottom: 36px;
  font-size: clamp(56px, 6.6vw, 104px);
}

.about-copy > p:not(.section-index) {
  max-width: 720px;
  margin-bottom: 44px;
  color: rgba(255,255,255,.84);
  font-size: clamp(19px, 1.55vw, 23px);
}

.request-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  max-width: 680px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.38);
}

.request-note p {
  margin: 0;
  font-weight: 650;
}

.request-symbol {
  font-size: 25px;
  line-height: 1;
}

.contact {
  background: var(--deep);
  color: var(--deep-ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, .88fr);
  gap: clamp(64px, 10vw, 164px);
  align-items: start;
}

.contact .section-index {
  color: #bcb5bd;
}

.contact-intro h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(60px, 6.6vw, 106px);
}

.contact-intro > p:not(.section-index) {
  max-width: 580px;
  margin-bottom: 38px;
  color: #c5bec6;
  font-size: 19px;
}

.contact-details {
  margin: 0;
  border-top: 1px solid #504951;
  font-style: normal;
}

.detail-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #504951;
}

.detail-row > span {
  color: #aaa2ab;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.detail-row a {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
}

.detail-row a:hover {
  color: #f08ab5;
}

.detail-row small {
  display: block;
  margin-top: 12px;
  color: #bdb5be;
  font-size: 13px;
  font-weight: 500;
}

.site-footer {
  padding: 64px 0 28px;
  background: #fff;
  color: #292429;
}

.footer-main {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: clamp(40px, 7vw, 112px);
  align-items: start;
}

.footer-brand img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.footer-brand p {
  margin: 12px 0 0;
  color: #716b72;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding-top: 22px;
}

.footer-links a,
.back-top {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 650;
}

.back-top {
  margin-top: 22px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid #d8d5d6;
  color: #716b72;
  font-size: 12px;
}

.footer-meta p {
  margin-bottom: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #171519;
    --surface: #211e22;
    --ink: #f2eef1;
    --muted: #b7b0b7;
    --line: #413c42;
    --accent: #d85b91;
    --accent-ink: #171217;
    --deep: #0e0d0f;
    --deep-ink: #f6f2f4;
  }

  .button-primary:hover {
    background: #ef7cac;
  }

  .about {
    background: #8f2456;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .brand-crop {
    width: 210px;
    height: 44px;
  }

  .brand-crop img {
    top: -86px;
    width: 210px;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    position: relative;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 10;
    display: grid;
    gap: 0;
    padding: 12px var(--pad) 22px;
    border-bottom: 1px solid #d9d5d7;
    background: #fff;
    color: #272328;
  }

  .nav-panel a {
    min-height: 50px;
    border-bottom: 1px solid #e4e1e2;
  }

  .nav-panel .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
  }

  .js .nav-panel:not(.is-open) {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
  }

  .hero-copy {
    padding-right: 42px;
  }

  h1 {
    font-size: clamp(58px, 8.4vw, 82px);
  }

  .hero-media {
    min-height: 680px;
  }

  .section-heading {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 42px;
  }

  .service-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 42px;
  }

  .about-grid {
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 52px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 18px;
    --section-space: 84px;
  }

  body {
    font-size: 16px;
  }

  .hero-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: calc(80svh - var(--header-height));
    padding: 68px var(--pad) 58px;
  }

  .kicker {
    margin-bottom: 34px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 25px;
    font-size: clamp(49px, 14.6vw, 64px);
  }

  .hero-lede {
    max-width: 370px;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 4.7;
  }

  .section-heading,
  .service-layout,
  .about-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 0;
    margin-bottom: 64px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: clamp(45px, 13.5vw, 59px);
  }

  .section-index {
    margin-bottom: 28px;
  }

  .section-heading > div > p,
  .contact-intro > p:not(.section-index),
  .about-copy > p:not(.section-index) {
    font-size: 17px;
  }

  .service-layout {
    gap: 52px;
  }

  .service-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding: 32px 0;
  }

  .service-item h3 {
    font-size: 29px;
  }

  .service-media {
    position: static;
  }

  .office-photo {
    aspect-ratio: 4 / 4.35;
  }

  .about-grid {
    gap: 58px;
  }

  .about-media {
    width: min(88%, 430px);
    aspect-ratio: 4 / 4.9;
  }

  .about-copy {
    padding-bottom: 8px;
  }

  .about-copy h2,
  .contact-intro h2 {
    margin-bottom: 26px;
  }

  .request-note {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-grid {
    gap: 66px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-brand img {
    width: 130px;
    height: 130px;
  }

  .footer-links {
    padding-top: 0;
  }

  .back-top {
    margin-top: 0;
  }

  .footer-meta {
    display: block;
    margin-top: 36px;
  }

  .footer-meta p + p {
    margin-top: 10px;
  }
}

@media (max-width: 390px) {
  .brand-crop {
    width: 190px;
    height: 42px;
  }

  .brand-crop img {
    top: -78px;
    width: 190px;
  }

  .menu-toggle {
    min-width: 64px;
    padding-inline: 9px;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 58px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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