@font-face {
  font-family: DeraSerif;
  src: url("../assets/fonts/PlayfairDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DeraSans;
  src: url("../assets/fonts/Jost-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --paper: #f5f3ef;
  --ink: #171715;
  --muted: #6f6c66;
  --line: #cbc7c0;
  --red: #7f1715;
  --brown: #30251f;
  --blue: #142a3d;
  --green: #707218;
  --purple: #3d2f43;
  --pink: #b47d83;
  --serif: DeraSerif, Georgia, serif;
  --sans: DeraSans, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
::selection {
  background: var(--red);
  color: #fff;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: #fff;
  padding: 0.8rem 1rem;
  z-index: 200;
}
.skip:focus {
  top: 1rem;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #c6473e;
  outline-offset: 3px;
}
.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(245, 243, 239, 0.96);
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  text-decoration: none;
  letter-spacing: -0.08em;
}
.brand sup {
  font-family: var(--sans);
  font-size: 0.35em;
  letter-spacing: 0;
  margin-left: 0.25em;
}
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  padding: 0.8rem 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover,
.nav a[aria-current="page"] {
  border-color: currentColor;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  padding: 0.7rem;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.3rem);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  margin: 0 0 1rem;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.45;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.6rem;
  border: 1px solid currentColor;
  background: transparent;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  background: var(--ink);
  color: #fff;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
}
.hero {
  min-height: calc(100vh - 78px);
  max-height: 900px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #111;
  color: #fff;
}
.hero-copy {
  padding: clamp(3rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .display {
  font-size: clamp(3rem, 6.5vw, 7rem);
}
.hero p {
  max-width: 42rem;
}
.hero-art {
  background: url("../assets/images/hero-face.webp") center/cover no-repeat;
  min-height: 520px;
  position: relative;
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #111 0%, transparent 35%);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero .btn {
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-copy {
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-image {
  min-height: 520px;
  background: center/cover no-repeat;
}
.section {
  padding: clamp(4rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-head p {
  max-width: 34rem;
}
.quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.1;
  max-width: 17ch;
  margin: 0;
}
.rule {
  width: 54px;
  border-top: 1px solid;
  margin: 1.5rem 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  padding: 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0.3rem 0;
}
.feature p {
  font-size: 0.9rem;
  color: var(--muted);
}
.os-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7rem;
}
.os-card {
  color: #fff;
  min-height: 400px;
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s;
}
.os-card:hover {
  transform: translateY(-6px);
}
.os-card svg {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.os-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}
.os-card span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.brown {
  background: var(--brown);
}
.red {
  background: var(--red);
}
.blue {
  background: var(--blue);
}
.green {
  background: var(--green);
}
.purple {
  background: var(--purple);
}
.pink {
  background: var(--pink);
}
.band {
  background: var(--red);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 1.7rem clamp(1.25rem, 6vw, 6rem);
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}
.band strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  font-weight: 400;
}
.page-hero {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6rem);
  min-height: 62vh;
  max-height: 720px;
  display: flex;
  align-items: end;
}
.page-hero p {
  max-width: 37rem;
}
.about-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 78px);
  max-height: 900px;
}
.about-copy {
  padding: clamp(3rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-image {
  background: url("../assets/images/founder-portrait.webp") center 18% / cover
    no-repeat;
  min-height: 600px;
}
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
}
.credentials {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.clinical {
  background: #171715;
  color: #fff;
}
.clinical .split-image {
  background-image: url("../assets/images/apothecary-room.webp");
}
.os-intro {
  text-align: center;
}
.os-intro .display {
  font-size: clamp(2.8rem, 6vw, 6rem);
}
.os-detail {
  margin-top: 5rem;
}
.os-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.1fr;
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  gap: 2rem;
  align-items: start;
}
.os-swatch {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 2rem;
}
.os-row h2 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  font-size: 2rem;
}
.os-row p {
  margin: 0;
  color: var(--muted);
}
.partner-hero {
  background:
    linear-gradient(
      90deg,
      rgba(245, 243, 239, 0.95) 0 43%,
      rgba(245, 243, 239, 0.08) 70%
    ),
    url("../assets/images/partner-editorial.webp") center/cover no-repeat;
}
.partner-hero .display {
  max-width: 8ch;
}
.service-columns {
  background: #171715;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-column {
  padding: clamp(3rem, 7vw, 7rem);
  border-right: 1px solid #555;
}
.service-column h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.6rem;
}
.service-column li {
  margin: 0.8rem 0;
}
.partner-mark {
  text-align: center;
  padding: 3rem;
}
.partner-mark strong {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-weight: 400;
}
.disclosure {
  max-width: 55rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.book-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: calc(100vh - 78px);
  max-height: 900px;
}
.book-image {
  background: url("../assets/images/book-face.webp") center/cover no-repeat;
  min-height: 620px;
}
.book-panel {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.4rem 0;
}
.service-card {
  border: 1px solid var(--line);
  padding: 1.6rem;
  min-height: 190px;
  display: flex;
  flex-direction: column;
}
.service-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
}
.service-card span {
  margin-top: auto;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}
.inquiry {
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field-full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.field input,
.field select,
.field textarea {
  border: 1px solid #aaa;
  background: #fff;
  padding: 0.85rem;
  width: 100%;
  border-radius: 0;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.form-note,
.status {
  font-size: 0.76rem;
  color: var(--muted);
}
.summary {
  white-space: pre-wrap;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
  font-size: 0.82rem;
  margin-top: 1rem;
}
.hidden {
  display: none !important;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem clamp(1.25rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.08em;
  line-height: 1;
}
.footer h2 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer a {
  display: block;
  margin: 0.55rem 0;
  text-decoration: none;
  font-size: 0.8rem;
}
.footer a:hover {
  text-decoration: underline;
}
.fine {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.68rem;
  color: var(--muted);
}
.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.not-found .display {
  font-size: clamp(6rem, 20vw, 15rem);
  color: var(--red);
}
@media (max-width: 1050px) {
  .os-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .os-card {
    min-height: 330px;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .book-layout {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .book-image {
    min-height: 52vh;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-hero {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    inset: 68px 0 auto;
    background: var(--paper);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 1rem;
  }
  .hero,
  .split,
  .about-hero {
    grid-template-columns: 1fr;
  }
  .hero,
  .about-hero {
    max-height: none;
  }
  .hero-copy {
    order: 2;
  }
  .hero-art {
    min-height: 52vh;
  }
  .split-image {
    min-height: 48vh;
  }
  .os-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .os-card {
    min-height: 270px;
  }
  .section-head {
    display: block;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .os-row {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
  }
  .os-row p {
    grid-column: 1/-1;
  }
  .service-columns {
    grid-template-columns: 1fr;
  }
  .service-column {
    border-right: 0;
    border-bottom: 1px solid #555;
  }
  .form-grid,
  .footer {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: auto;
  }
  .fine {
    grid-column: auto;
  }
  .band {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-image {
    min-height: 55vh;
    order: -1;
  }
  .partner-hero {
    background:
      linear-gradient(rgba(245, 243, 239, 0.82), rgba(245, 243, 239, 0.9)),
      url("../assets/images/partner-editorial.webp") center/cover no-repeat;
  }
  .page-hero {
    min-height: 55vh;
  }
  .book-panel {
    padding: 3rem 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
