:root {
  color-scheme: light;
  --ink: #24191a;
  --wine: #551f2c;
  --wine-deep: #35141c;
  --rose: #9a5963;
  --sand: #d9c4a7;
  --paper: #f7f1e8;
  --ivory: #fffaf3;
  --line: rgba(60, 35, 32, 0.16);
  --shadow: 0 26px 70px rgba(53, 20, 28, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 255, 255, 0.82), transparent 30rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: min(100% - 5rem, 1440px);
  min-height: 96px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 250, 243, 0.45);
}

.wordmark {
  width: fit-content;
  color: var(--wine-deep);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a,
.header-cta {
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.header-cta:hover {
  opacity: 0.64;
}

.header-cta {
  justify-self: end;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0 46% 0 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.58), transparent 58%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(85, 31, 44, 0.035) 25%);
  content:"";
}

.hero-copy {
  align-self: center;
  width: min(90%, 760px);
  margin-inline: auto;
  padding: 10rem 2.5rem 7rem;
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 6.4vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.067em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-lede {
  max-width: 43rem;
  margin: 2.2rem 0 0;
  color: rgba(36, 25, 26, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.3rem;
}

.button {
  display: inline-grid;
  min-height: 54px;
  align-items: center;
  place-items: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--wine);
  color: var(--ivory);
  box-shadow: 0 16px 36px rgba(85, 31, 44, 0.18);
}

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

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.button-quiet:hover {
  background: var(--ivory);
}

.hero-note {
  position: relative;
  max-width: 35rem;
  margin: 2rem 0 0;
  padding-left: 2.25rem;
  color: rgba(36, 25, 26, 0.62);
  font-size: 0.82rem;
}

.hero-note::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 1.4rem;
  height: 1px;
  background: var(--rose);
  content:"";
}

.hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #cda98b;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(53, 20, 28, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(53, 20, 28, 0.12), transparent 25%, rgba(53, 20, 28, 0.16));
  content:"";
}

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

.visual-ring {
  position: absolute;
  z-index: 2;
  right: -15vw;
  bottom: -21vw;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 243, 0.48);
  border-radius: 50%;
}

.hero-signature {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 250, 243, 0.48);
  color: var(--ivory);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 5rem, 1440px);
  margin: 0 auto;
  padding: 2.7rem 0;
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: grid;
  gap: 0.25rem;
  padding: 0 2rem;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-item span {
  color: rgba(36, 25, 26, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  width: min(100% - 5rem, 1440px);
  margin-inline: auto;
  padding-block: clamp(6rem, 10vw, 10rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: start;
  gap: 3rem;
}

.section-heading h2,
.editorial-copy h2,
.visit h2 {
  max-width: 17ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.057em;
  line-height: 0.98;
  text-wrap: balance;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 3rem;
  margin-top: 6rem;
}

.experience-intro {
  max-width: 29rem;
  margin: 0;
  color: rgba(36, 25, 26, 0.68);
  font-size: 1.05rem;
}

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

.principle {
  min-height: 280px;
  padding: 1.5rem 1.8rem 1.8rem;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle-index,
.card-number {
  display: block;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.principle h3 {
  margin: 4.8rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.principle p {
  margin: 0;
  color: rgba(36, 25, 26, 0.62);
  font-size: 0.9rem;
}

.treatments {
  width: 100%;
  max-width: none;
  padding-inline: max(2.5rem, calc((100vw - 1440px) / 2));
  background: var(--wine-deep);
  color: var(--ivory);
}

.treatments-heading .eyebrow {
  color: #d7aeb2;
}

.treatments-heading h2 {
  max-width: 18ch;
}

.treatment-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 1px;
  margin-top: 5rem;
  background: rgba(255, 250, 243, 0.18);
  border: 1px solid rgba(255, 250, 243, 0.18);
}

.treatment-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(1.8rem, 3vw, 3.2rem);
  background: var(--wine-deep);
}

.treatment-card > div {
  margin-top: auto;
}

.treatment-card-featured {
  background:
    radial-gradient(circle at 100% 0, rgba(218, 181, 172, 0.22), transparent 22rem),
    var(--wine);
}

.treatment-card .card-number {
  color: #d7aeb2;
}

.card-kicker {
  margin: 0 0 0.75rem;
  color: #d7aeb2;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.treatment-card h3 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.treatment-card p:not(.card-kicker) {
  max-width: 33rem;
  margin: 1.3rem 0 0;
  color: rgba(255, 250, 243, 0.66);
  font-size: 0.92rem;
}

.treatment-card a,
.text-link {
  width: fit-content;
  margin-top: 2rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.editorial-mark {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.74), transparent 12rem),
    linear-gradient(145deg, #ddc9ad, #ad7275);
  box-shadow: var(--shadow);
}

.editorial-mark::before,
.editorial-mark::after,
.editorial-mark span {
  position: absolute;
  border: 1px solid rgba(255, 250, 243, 0.68);
  border-radius: 50%;
  content:"";
}

.editorial-mark::before {
  width: 72%;
  aspect-ratio: 1;
}

.editorial-mark::after {
  width: 42%;
  aspect-ratio: 1;
}

.editorial-mark span:nth-child(1) {
  width: 16%;
  aspect-ratio: 1;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 16px 50px rgba(83, 31, 44, 0.17);
}

.editorial-mark span:nth-child(2) {
  top: 10%;
  left: 9%;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--wine);
}

.editorial-mark span:nth-child(3) {
  right: 9%;
  bottom: 12%;
  width: 4rem;
  aspect-ratio: 1;
  border-color: var(--wine);
}

.editorial-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 2rem 0;
  color: rgba(36, 25, 26, 0.66);
}

.text-link {
  color: var(--wine);
}

.visit {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(3rem, 8vw, 9rem);
  width: 100%;
  max-width: none;
  padding-inline: max(2.5rem, calc((100vw - 1440px) / 2));
  background: var(--wine);
  color: var(--ivory);
}

.visit .eyebrow {
  color: #e0bac0;
}

.visit h2 {
  max-width: 14ch;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 2rem 0;
  color: rgba(255, 250, 243, 0.72);
}

.button-light {
  background: var(--ivory);
  color: var(--wine);
}

.button-light:hover {
  background: #eadfd2;
}

.visit-card {
  align-self: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 250, 243, 0.3);
  background: rgba(53, 20, 28, 0.25);
}

.visit-card-label {
  margin: 0 0 2rem;
  color: #e0bac0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-card address {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-style: normal;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.visit-divider {
  height: 1px;
  margin: 2.2rem 0;
  background: rgba(255, 250, 243, 0.28);
}

.visit-card p:not(.visit-card-label) {
  margin: 0.35rem 0;
  color: rgba(255, 250, 243, 0.72);
  font-size: 0.9rem;
}

.visit-card a {
  display: block;
  width: fit-content;
  margin-top: 1.6rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 1.1rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem max(2.5rem, calc((100vw - 1440px) / 2));
  background: var(--wine-deep);
  color: rgba(255, 250, 243, 0.62);
  font-size: 0.72rem;
}

.wordmark-footer {
  color: var(--ivory);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.82fr;
  }

  .hero-copy {
    padding-inline: 2.5rem;
  }

  .section-heading,
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experience-grid {
    margin-top: 4rem;
  }

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

  .treatment-card:last-child {
    grid-column: 1 / -1;
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 2.25rem, 1440px);
    min-height: 76px;
  }

  .header-cta {
    color: var(--wine);
    font-size: 0.67rem;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero::before {
    inset: 0;
  }

  .hero-copy {
    width: 100%;
    padding: 8.5rem 1.2rem 4rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .hero-lede {
    margin-top: 1.6rem;
  }

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

  .button {
    width: 100%;
  }

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

  .hero-signature {
    right: 1rem;
    bottom: 1rem;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    width: min(100% - 2.4rem, 1440px);
  }

  .proof-item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-bottom: 0;
  }

  .proof-item:nth-child(3) {
    padding-left: 0;
  }

  .section {
    width: min(100% - 2.4rem, 1440px);
    padding-block: 5.5rem;
  }

  .section-heading h2,
  .editorial-copy h2,
  .visit h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

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

  .principle {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    margin-top: 3rem;
  }

  .treatments,
  .visit {
    width: 100%;
    padding-inline: 1.2rem;
  }

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

  .treatment-card,
  .treatment-card:last-child {
    grid-column: auto;
    min-height: 420px;
  }

  .editorial-band {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .editorial-mark {
    min-height: 470px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
