@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-display-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f6f3ed;
  --white: #ffffff;
  --ink: #29363a;
  --muted-ink: #5c6666;
  --clay: #8b3026;
  --clay-dark: #6f241d;
  --blue-gray: #e6eced;
  --line: #d5d6cf;
  --max: 1400px;
  --section-max: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

ul {
  padding: 0;
}

.page-shell {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.section-shell {
  width: min(calc(100% - 64px), var(--section-max));
  margin-inline: auto;
  padding-block: clamp(88px, 10vw, 156px);
}

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

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

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

.concept-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.concept-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 34px;
}

.concept-bar__inner p,
.concept-bar__inner a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.concept-bar__inner a {
  color: var(--clay);
  font-weight: 600;
}

.concept-bar__mark {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--clay);
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 106px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(184px, 18vw, 236px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 38px);
}

.site-nav a,
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted-ink);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--clay);
}

.site-nav__contact {
  padding-inline: 18px;
  border: 1px solid var(--clay);
  color: var(--clay) !important;
}

.site-nav__contact:hover,
.site-nav__contact:focus-visible {
  background: var(--clay);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 88px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: grid;
  gap: 4px;
  width: 17px;
}

.menu-toggle__icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  padding-block: clamp(54px, 7vw, 102px) clamp(78px, 9vw, 132px);
}

.hero__frame {
  position: relative;
  min-height: 630px;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
}

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

.hero__photo figcaption,
.partners__photo figcaption,
.closing__photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted-ink);
  font-size: 0.65rem;
  letter-spacing: 0.025em;
}

.hero__letter {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 32px;
  bottom: 32px;
  width: 450px;
  padding: 36px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-index {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__letter h1 {
  max-width: none;
  margin-top: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero__letter h1 em {
  color: var(--clay);
  font-weight: 400;
}

.hero__lead {
  max-width: 360px;
  margin-top: 26px;
  color: var(--muted-ink);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero__actions,
.closing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 19px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

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

.button--outline {
  border-color: var(--clay);
  color: var(--clay);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--clay);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--clay);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.text-link span,
.phone-link {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.phone-link:hover,
.phone-link:focus-visible {
  transform: translateX(4px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 150px);
  border-top: 1px solid var(--line);
}

.intro__label {
  padding-top: 8px;
}

.intro__label .eyebrow {
  max-width: 120px;
  margin-top: 13px;
  line-height: 1.8;
}

.intro__body {
  max-width: 850px;
}

.intro h2,
.section-heading h2,
.about h2,
.partners h2,
.closing h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.55rem, 4.9vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro h2 {
  max-width: 800px;
}

.intro__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 760px;
  margin-top: 42px;
  color: var(--muted-ink);
}

.intro__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 24px;
}

.services {
  padding-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 150px);
  align-items: end;
  padding-bottom: 42px;
}

.section-heading h2 {
  max-width: 780px;
}

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

.service-row {
  border-bottom: 1px solid var(--line);
}

.service-row summary {
  display: grid;
  grid-template-columns: 64px minmax(200px, 1fr) minmax(230px, 0.72fr) 44px;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding-block: 22px;
  cursor: pointer;
  list-style: none;
}

.service-row summary::-webkit-details-marker {
  display: none;
}

.service-row summary:focus-visible {
  outline-offset: -5px;
}

.service-row__number {
  align-self: start;
  padding-top: 5px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service-row__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-row__short {
  max-width: 360px;
  color: var(--muted-ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-row__toggle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--clay);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-row[open] .service-row__toggle {
  background: var(--clay);
  color: var(--white);
  font-size: 0;
  transform: none;
}

.service-row[open] .service-row__toggle::before {
  content: "−";
  font-size: 1.35rem;
}

.service-row__body {
  display: grid;
  grid-template-columns: 64px minmax(220px, 0.9fr) minmax(220px, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 0 68px 34px 64px;
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.service-row__body > p {
  grid-column: 2;
  max-width: 300px;
}

.service-row__body ul {
  grid-column: 3;
  padding-left: 20px;
}

.service-row__body li + li {
  margin-top: 8px;
}

.service-row__body .text-link {
  grid-column: 4;
  align-self: start;
  white-space: nowrap;
}

.about {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  background: var(--blue-gray);
}

.about__portrait figure {
  max-width: 390px;
}

.about__portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about__portrait figcaption {
  margin-top: 12px;
  color: var(--muted-ink);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__copy {
  max-width: 600px;
}

.about__copy h2,
.partners h2,
.closing h2 {
  margin-top: 17px;
}

.about__role {
  margin-top: 30px;
  color: var(--clay);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

.about__copy > p:not(.section-index):not(.eyebrow):not(.about__role) {
  margin-top: 28px;
  color: var(--muted-ink);
}

.about__copy .text-link {
  margin-top: 20px;
}

.partners {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.partners__photo {
  position: relative;
}

.partners__photo img {
  width: 100%;
}

.partners__copy {
  max-width: 510px;
}

.partners__copy > p:not(.section-index):not(.eyebrow):not(.partners__boundary) {
  margin-top: 30px;
  color: var(--muted-ink);
}

.partners__boundary {
  margin-top: 20px;
  padding: 18px 0 18px 20px;
  border-left: 2px solid var(--clay);
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.partners__boundary strong {
  color: var(--ink);
}

.partners__copy .button {
  margin-top: 25px;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
  background: var(--blue-gray);
}

.closing__copy {
  max-width: 590px;
}

.closing__copy > p:not(.section-index):not(.eyebrow) {
  max-width: 480px;
  margin-top: 30px;
  color: var(--muted-ink);
}

.closing__photo {
  position: relative;
}

.closing__photo img {
  width: 100%;
}

.phone-link {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  min-height: 44px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
}

.phone-link__label {
  color: var(--muted-ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 65px 26px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1fr) minmax(230px, 0.9fr);
  gap: 44px;
  align-items: start;
  padding-bottom: 54px;
}

.footer-brand img {
  width: clamp(180px, 19vw, 236px);
  height: auto;
}

.footer-note,
.footer-contact {
  color: var(--muted-ink);
  font-size: 0.74rem;
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  gap: 5px;
  justify-self: end;
  max-width: 260px;
}

.footer-contact a {
  color: var(--clay);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 25px;
}

.footer-nav a {
  min-height: 36px;
  font-size: 0.67rem;
}

.site-footer__bottom > p {
  color: var(--muted-ink);
  font-size: 0.65rem;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  .hero__letter {
    width: min(410px, 43%);
  }

  .hero__letter h1 {
    font-size: clamp(3.2rem, 5.7vw, 5rem);
  }

  .service-row summary {
    grid-template-columns: 52px minmax(170px, 1fr) minmax(180px, 0.7fr) 44px;
    gap: 18px;
  }

  .service-row__body {
    padding-left: 52px;
  }
}

@media (max-width: 900px) {
  .page-shell,
  .section-shell {
    width: min(calc(100% - 40px), var(--max));
  }

  .section-shell {
    padding-block: 86px;
  }

  .site-header__inner {
    min-height: 88px;
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(41, 54, 58, 0.11);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 48px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav__contact {
    justify-content: space-between;
    margin-top: 8px;
    border: 1px solid var(--clay) !important;
  }

  .hero__frame {
    min-height: 0;
  }

  .hero__letter {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    z-index: 1;
    width: min(640px, 100%);
    padding: 0 0 42px;
    transform: none;
  }

  .hero__photo {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }

  .hero__photo img {
    height: auto;
    aspect-ratio: 2000 / 1219;
  }

  .hero__photo figcaption,
  .partners__photo figcaption,
  .closing__photo figcaption {
    position: static;
    padding: 10px 0 0;
    background: transparent;
  }

  .section-heading,
  .intro {
    grid-template-columns: minmax(120px, 0.25fr) minmax(0, 1fr);
    gap: 38px;
  }

  .service-row summary {
    grid-template-columns: 45px minmax(0, 1fr) 44px;
  }

  .service-row__short {
    display: none;
  }

  .service-row__body {
    grid-template-columns: 45px minmax(0, 1fr) minmax(0, 1fr);
    padding-left: 45px;
    padding-right: 0;
  }

  .service-row__body > p {
    grid-column: 2 / -1;
  }

  .service-row__body ul {
    grid-column: 2;
  }

  .service-row__body .text-link {
    grid-column: 3;
  }

  .about,
  .partners,
  .closing {
    gap: 48px;
  }

  .about {
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
  }

  .partners,
  .closing {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  }

  .site-footer__top {
    grid-template-columns: minmax(150px, 0.7fr) minmax(200px, 1fr);
  }

  .footer-contact {
    justify-self: start;
  }

  .footer-note {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom > p {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .concept-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-block: 5px;
  }

  .concept-bar__inner p,
  .concept-bar__inner a {
    min-height: 26px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 74px;
  }

  .hero__letter h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero__lead {
    max-width: 470px;
    font-size: 0.92rem;
  }

  .intro,
  .section-heading,
  .about,
  .partners,
  .closing {
    display: block;
  }

  .intro__body,
  .section-heading h2,
  .about__copy,
  .partners__copy,
  .closing__copy {
    margin-top: 24px;
  }

  .intro__copy {
    display: block;
    margin-top: 30px;
  }

  .intro__copy p + p {
    margin-top: 18px;
  }

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

  .service-row summary {
    grid-template-columns: 35px minmax(0, 1fr) 38px;
    gap: 12px;
    min-height: 92px;
    padding-block: 18px;
  }

  .service-row__title {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .service-row__body {
    display: block;
    padding: 0 0 30px 47px;
  }

  .service-row__body ul {
    margin: 17px 0 6px;
  }

  .service-row__body .text-link {
    margin-top: 12px;
  }

  .about__portrait figure {
    max-width: 300px;
  }

  .partners__photo,
  .closing__photo {
    margin-top: 34px;
  }

  .partners__photo img {
    aspect-ratio: auto;
  }

  .closing__photo img {
    aspect-ratio: auto;
  }

  .site-footer__top {
    display: block;
  }

  .footer-note,
  .footer-contact {
    max-width: 440px;
    margin-top: 27px;
  }
}

@media (max-width: 420px) {
  .page-shell,
  .section-shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header__inner {
    gap: 15px;
  }

  .brand img {
    width: 190px;
  }

  .hero__letter h1 {
    font-size: clamp(2.7rem, 13.2vw, 4rem);
  }

  .hero__actions,
  .closing__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .phone-link {
    margin-top: 6px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
