:root {
  --ivory: #f7f4ed;
  --ivory-soft: #efebe1;
  --ink: #14130f;
  --ink-soft: #45433d;
  --sage: #4a5b4e;
  --sage-soft: #6f7f73;
  --blush: #b06d5c;
  --rule: rgba(20, 19, 15, 0.10);
  --rule-strong: rgba(20, 19, 15, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--ivory); color: var(--ink); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: "Jakarta", system-ui, sans-serif;
  font-weight: 380;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}
img { display: block; width: 100%; height: auto; }

a { color: var(--ink); text-decoration: none; }

em { color: var(--blush); font-style: italic; font-weight: 500; }

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}

/* TOP */
.top {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; }
.brand .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
}
.brand-name { font-size: 16px; letter-spacing: -0.01em; font-weight: 500; }
.top nav { display: flex; gap: 26px; }
.top nav a {
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  transition: color 200ms;
}
.top nav a:hover { color: var(--blush); }
@media (max-width: 640px) {
  .top nav { display: none; }
}

/* LINKS */
.link {
  display: inline-block;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}
.link:hover { color: var(--blush); border-color: var(--blush); }

.link-strong {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}
.link-strong:hover { color: var(--blush); border-color: var(--blush); }
.arr { transition: transform 200ms; display: inline-block; }
.link-strong:hover .arr { transform: translateX(3px); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 32px 100px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .hero { grid-template-columns: 5fr 7fr; gap: 80px; padding: 100px 56px 140px; align-items: center; }
}
.hero-text .meta {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}
.hero h1 {
  font-family: "Jakarta", sans-serif;
  font-weight: 320;
  font-size: clamp(38px, 6.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  color: var(--ink);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: baseline; }
.hero-img img { aspect-ratio: 16 / 9; object-fit: cover; border-radius: 2px; }
@media (min-width: 960px) {
  .hero-img img { aspect-ratio: auto; height: 540px; }
}

/* LEDGER */
.ledger {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.ledger dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .ledger dl { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.ledger > dl > div { display: flex; flex-direction: column; gap: 6px; }
.ledger dt {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ledger dd {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 36ch;
}

/* TREATMENTS */
.treatments {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.t-head { max-width: 64ch; margin-bottom: 80px; }
.t-head h2 {
  font-family: "Jakarta", sans-serif;
  font-weight: 350;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.t-list { list-style: none; display: flex; flex-direction: column; gap: 80px; }
.t-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px) {
  .t-list li { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .t-list li:nth-child(even) { direction: rtl; }
  .t-list li:nth-child(even) > * { direction: ltr; }
}
.t-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.t-row h3 {
  font-family: "Jakarta", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}
.t-body { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 22px; max-width: 50ch; }
.t-price {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--blush);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--blush);
  padding-bottom: 3px;
}
.t-img img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; }

/* APPROACH */
.approach {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--ink);
  color: var(--ivory);
}
@media (min-width: 900px) {
  .approach { grid-template-columns: 1fr 1fr; }
}
.ap-img img { aspect-ratio: 21 / 9; object-fit: cover; height: 100%; }
.ap-text {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ap-text .kicker { color: var(--blush); margin-bottom: 32px; }
.ap-quote {
  font-family: "Jakarta", sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 32px;
  max-width: 28ch;
}
.ap-quote em { color: var(--blush); font-weight: 500; font-style: italic; }
.ap-attr {
  font-size: 14px;
  color: var(--ivory-soft);
  letter-spacing: 0.04em;
}

/* PRINCIPLES */
.principles {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.principles h2 { margin-bottom: 60px; }
.principles ol {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 720px) { .principles ol { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.pr-no {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--blush);
  margin-bottom: 14px;
}
.principles h3 {
  font-family: "Jakarta", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.principles li p:last-child {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* VISIT */
.visit {
  background: var(--ivory-soft);
  padding: 120px 32px;
}
.visit > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.visit h2 {
  font-family: "Jakarta", sans-serif;
  font-weight: 350;
  font-size: clamp(24px, 3.2vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 64px;
  max-width: 22ch;
}
.v-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 720px) { .v-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
@media (min-width: 1100px) { .v-grid { grid-template-columns: repeat(4, 1fr); } }
.v-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.v-grid p:not(.v-label):not(.v-sub) { font-size: 17px; line-height: 1.5; }
.v-sub { font-size: 14px; color: var(--ink-soft); margin-top: 8px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--rule);
  padding: 32px 32px 40px;
}
.ft-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .ft-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }
}
.ft-meta { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.02em; }
.ft-meta em { color: var(--sage); font-style: italic; font-weight: 500; }

::selection { background: var(--blush); color: var(--ivory); }
