:root {
  --bg: #f7f9fb;
  --white: #ffffff;
  --ink: #1b2a32;
  --muted: #6f7d85;
  --line: #dbe3e8;
  --blue: #8fb7c9;
  --blue-dark: #496b7a;
  --ice: #eef5f8;
  --mint: #dfeee9;
  --slate: #304752;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 34px;
  background: rgba(247,249,251,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
}

.header-cta {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid var(--blue-dark);
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--blue-dark);
}

.eyebrow-light { color: #c6d5dc; }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 740px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.hero-copy {
  padding: 96px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1,
.section h2,
.treatments-section h2,
.page-hero h1,
.treatment-detail-hero h1,
.consultation-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(62px, 7vw, 104px);
}

.hero-copy > p {
  margin: 28px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--slate);
  color: white;
  border: 1px solid var(--slate);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.button-light {
  background: white;
  color: var(--slate);
  border-color: white;
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 700;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-row span {
  padding: 8px 10px;
  background: var(--ice);
  border: 1px solid #d8e8ef;
  border-radius: 999px;
  font-size: 10px;
  color: #536671;
}

.hero-visual {
  position: relative;
  padding: 22px;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 696px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.hero-note {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 44px;
  background: rgba(255,255,255,.94);
  border-left: 4px solid var(--blue);
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.hero-note span {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--blue-dark);
}

.hero-note strong {
  padding-top: 5px;
  font-size: 13px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px 56px;
}

.overview-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 9vw;
}

.overview-section h2 {
  margin-top: 16px;
  font-size: clamp(48px, 5.5vw, 78px);
}

.overview-section > div:last-child {
  align-self: end;
}

.overview-section p {
  color: var(--muted);
  font-size: 17px;
}

.treatments-section {
  background: var(--slate);
  color: white;
  padding: 106px 6vw;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 44px;
}

.section-heading h2 {
  margin-top: 14px;
  max-width: 820px;
  font-size: clamp(46px, 5.5vw, 76px);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.treatment-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.treatment-card {
  background: white;
  color: var(--ink);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
}

.treatment-index {
  display: block;
  font-size: 10px;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.treatment-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 22px;
}

.treatment-card h3 {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  margin: 8px 0 12px;
}

.treatment-card p {
  color: var(--muted);
}

.treatment-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.consult-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--white);
}

.consult-section img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.consult-section > div {
  padding: 90px 7vw;
  align-self: center;
}

.consult-section h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  margin: 16px 0 24px;
}

.consult-section p {
  color: var(--muted);
}

.compare-table {
  border-top: 1px solid var(--line);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr .7fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.compare-head {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.compare-row strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.compare-row span {
  color: var(--muted);
  font-size: 14px;
}

.process-section {
  background: #22343d;
  color: white;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  padding: 94px 7vw;
}

.process-section > div:first-child h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  margin: 16px 0 0;
}

.process-list {
  border-top: 1px solid rgba(255,255,255,.15);
}

.process-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.process-list article > span {
  color: #9ec9dc;
  font-size: 10px;
}

.process-list h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: #aab9c0;
}

.studio-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--ice);
}

.studio-section > div {
  padding: 90px 7vw;
  align-self: center;
}

.studio-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
  margin: 16px 0 24px;
}

.studio-section p {
  color: var(--muted);
}

.studio-section img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.testimonial-section {
  background: var(--mint);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

blockquote {
  margin: 0;
  padding: 76px 7vw;
  border-right: 1px solid rgba(0,0,0,.12);
}

blockquote:last-child { border-right: 0; }

blockquote p {
  font-family: Georgia, serif;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.15;
}

blockquote footer {
  margin-top: 22px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.journal-grid,
.journal-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journal-grid article,
.journal-page-grid article {
  border-top: 2px solid var(--slate);
  padding-top: 18px;
}

.article-index {
  display: block;
  font-family: Georgia, serif;
  font-size: 34px;
  color: #9aaab2;
  margin-bottom: 28px;
}

.journal-grid h3,
.journal-page-grid h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}

.journal-grid h3 { font-size: 29px; }
.journal-page-grid h2 { font-size: 35px; }

.journal-grid p,
.journal-page-grid p {
  color: var(--muted);
}

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

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: Georgia, serif;
  font-size: 24px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list p {
  max-width: 760px;
  color: var(--muted);
}

.consultation-cta {
  background: var(--blue-dark);
  color: white;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: end;
  padding: 90px 7vw;
}

.consultation-cta h2 {
  margin-top: 16px;
  font-size: clamp(52px, 6vw, 86px);
}

.consultation-cta p {
  color: rgba(255,255,255,.76);
  margin-bottom: 28px;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px 56px 84px;
}

.page-hero h1 {
  margin-top: 16px;
  max-width: 1000px;
  font-size: clamp(58px, 7vw, 102px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  margin-top: 26px;
}

.treatment-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.treatment-page-card {
  background: white;
  border: 1px solid var(--line);
  padding: 20px;
}

.treatment-page-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin: 18px 0 22px;
}

.treatment-page-card h2 {
  margin: 10px 0 14px;
  font-size: 44px;
}

.treatment-page-card p {
  color: var(--muted);
}

.treatment-page-card > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 22px;
  font-size: 11px;
}

.treatment-detail-hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  min-height: 660px;
}

.treatment-detail-hero > div {
  padding: 88px 58px;
  align-self: center;
}

.treatment-detail-hero h1 {
  margin-top: 16px;
  font-size: clamp(58px, 7vw, 98px);
}

.treatment-detail-hero p {
  color: var(--muted);
  font-size: 18px;
  margin: 26px 0;
}

.detail-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 12px;
}

.treatment-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.treatment-detail-content h2 {
  margin-top: 14px;
  font-size: 52px;
}

.treatment-detail-content p {
  color: var(--muted);
}

.article-detail {
  max-width: 960px;
  margin: 0 auto;
  padding: 108px 40px 120px;
}

.article-detail h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 20px 0 28px;
}

.article-detail .lead {
  color: var(--muted);
  font-size: 21px;
}

.article-body {
  max-width: 740px;
  margin-top: 68px;
}

.article-body p {
  font-size: 18px;
  margin-bottom: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.about-grid h2 {
  margin-top: 14px;
  font-size: 54px;
}

.about-grid p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
}

.contact-grid h2 {
  margin-top: 14px;
  font-size: 58px;
}

.contact-info {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}

.contact-info > div {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-info p {
  color: var(--muted);
}

.footer {
  background: #22343d;
  color: white;
  padding: 70px 6vw 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  font-family: Georgia, serif;
  font-size: 40px;
}

.footer p {
  color: #a9b7be;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  color: #c3cdd2;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #72838b;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

  .desktop-nav { display: none; }

  .hero,
  .overview-section,
  .consult-section,
  .process-section,
  .studio-section,
  .consultation-cta,
  .treatment-detail-hero,
  .treatment-detail-content,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .journal-grid,
  .journal-page-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-section {
    grid-template-columns: 1fr;
  }

  blockquote {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.12);
  }
}

@media (max-width: 680px) {
  .brand span { display: none; }
  .header-cta { font-size: 9px; }

  .hero-copy { padding: 74px 24px 56px; }
  .hero h1 { font-size: clamp(56px, 18vw, 80px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .hero-visual { padding: 12px; }
  .hero-visual > img { min-height: 500px; }
  .hero-note { left: 26px; right: 26px; bottom: 26px; }

  .section,
  .page-hero {
    padding: 80px 24px;
  }

  .treatments-section,
  .consult-section > div,
  .process-section,
  .studio-section > div,
  .consultation-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split-heading {
    display: block;
  }

  .split-heading .text-link {
    margin-top: 22px;
  }

  .compare-head,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-head { display: none; }

  .treatment-detail-hero > div {
    padding: 80px 24px;
  }

  .article-detail {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-info {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 36px 0 0;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
