:root {
  --cream: #f4f0e5;
  --cream-deep: #e9e1cf;
  --olive: #727343;
  --olive-dark: #4a4b2d;
  --charcoal: #20211b;
  --ink: #282920;
  --gold: #ddcb78;
  --white: #fffdf7;
  --line: rgba(40, 41, 32, 0.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1200px;
  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(76px, 9vw, 126px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 6vw, 78px);
  letter-spacing: -0.045em;
}

h3 {
  line-height: 1.08;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(244, 240, 229, 0.96);
  border-bottom: 1px solid rgba(40, 41, 32, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 2 * var(--gutter)), 1360px);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  color: #3a3b31;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav > a:not(.button) {
  padding-block: 12px;
  border-bottom: 1px solid transparent;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 23px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--olive-dark);
  border: 1px solid var(--olive-dark);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(32, 33, 27, 0.12);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.button-small {
  min-height: 48px;
  padding-inline: 22px;
}

.button-cream {
  color: var(--charcoal);
  background: var(--cream);
  border-color: var(--cream);
}

.button-cream:hover,
.button-cream:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 6px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform 160ms ease;
}

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

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

.section,
.hero,
.testimonials,
.site-footer {
  padding-inline: var(--gutter);
}

.section {
  padding-top: var(--section);
  padding-bottom: var(--section);
}

.section-cream {
  background: var(--cream);
}

.section-olive {
  color: var(--white);
  background: var(--olive);
}

.section-dark {
  color: var(--white);
  background: var(--charcoal);
}

.eyebrow {
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--olive-dark);
}

.hero {
  min-height: calc(100vh - 86px);
  padding-top: clamp(74px, 8vw, 120px);
  padding-bottom: clamp(66px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(450px, 1.14fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
}

.hero-copy {
  max-width: 670px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: clamp(70px, 8.4vw, 136px);
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 38px;
  color: rgba(255, 253, 247, 0.85);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
}

.hero-lede strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 620;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: #454435;
}

.media-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-landscape {
  aspect-ratio: 4 / 3;
  border-radius: 120px 4px 4px 4px;
  box-shadow: 0 30px 60px rgba(31, 31, 22, 0.22);
}

.video-control {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 74px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(20, 20, 16, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.section-heading {
  width: min(100%, var(--content));
  margin-inline: auto;
  margin-bottom: clamp(52px, 6vw, 86px);
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
}

.heading-split > p {
  max-width: 520px;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.7;
}

.heading-light > p {
  color: rgba(255, 253, 247, 0.75);
}

.approach-grid {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: stretch;
}

.approach-media {
  min-height: 0;
  height: 100%;
  max-height: 650px;
  border-radius: 4px 110px 4px 4px;
}

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

.value-item {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.value-item > span {
  padding-top: 4px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value-item h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.35;
}

.value-item p {
  margin-bottom: 0;
  color: #5b5b4f;
  font-size: 15px;
  line-height: 1.65;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.62fr);
  gap: clamp(54px, 10vw, 150px);
  align-items: center;
}

.about-copy {
  justify-self: end;
  width: min(100%, 710px);
}

.about h2 {
  max-width: 780px;
  margin-bottom: 34px;
}

.about-intro {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.45;
}

.about-copy > p:not(.eyebrow):not(.about-intro) {
  max-width: 660px;
  color: rgba(255, 253, 247, 0.74);
  font-size: 17px;
}

.about-points {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-points > div {
  min-height: 126px;
  padding: 23px 24px;
  background: rgba(255, 253, 247, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.about-points span {
  color: rgba(255, 253, 247, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.about-media-wrap {
  width: min(100%, 470px);
}

.about-media {
  aspect-ratio: 3 / 4;
  border-radius: 180px 180px 3px 3px;
}

.media-note {
  max-width: 390px;
  margin: 21px 0 0;
  color: rgba(255, 253, 247, 0.7);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.treatment-grid {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.treatment-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(40, 41, 32, 0.13);
  box-shadow: 0 18px 44px rgba(46, 44, 32, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.treatment-card:hover,
.treatment-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(46, 44, 32, 0.13);
}

.treatment-card > img {
  width: calc(100% - 56px);
  height: clamp(140px, 11vw, 180px);
  margin: 0 28px 28px;
  object-fit: cover;
  border-radius: 12px;
}

.treatment-content {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.treatment-number {
  margin-bottom: 20px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.treatment-content h3 {
  min-height: 76px;
  margin-bottom: 23px;
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.035em;
}

.treatment-content > p:not(.treatment-number) {
  margin-bottom: 28px;
  color: #555548;
  font-size: 15px;
}

.treatment-features {
  width: 100%;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.treatment-features li {
  position: relative;
  padding: 9px 0 9px 18px;
  color: var(--olive-dark);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.treatment-features li:last-child {
  border-bottom: 1px solid var(--line);
}

.treatment-features li::before {
  position: absolute;
  top: 15px;
  left: 1px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.treatment-content dl {
  width: 100%;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
}

.treatment-content dl > div {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.treatment-content dt {
  margin-bottom: 3px;
  color: var(--olive-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-content dd {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.5;
}

.treatment-book-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.treatment-book-link::after {
  position: absolute;
  inset: 0;
  content: "";
}

.treatment-book-link:hover,
.treatment-book-link:focus-visible {
  color: var(--olive);
}

.section-cta {
  width: min(100%, var(--content));
  margin: 30px auto 0;
  display: flex;
  justify-content: flex-end;
}

.section-cta-left {
  width: auto;
  margin-top: 28px;
  justify-content: flex-start;
}

.price-layout {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.price-panel {
  padding: clamp(27px, 3vw, 42px);
  color: var(--ink);
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.price-panel h3 {
  margin-bottom: 34px;
  font-size: 35px;
}

.price-row {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  border-top: 1px solid var(--line);
  flex: 1;
  align-items: center;
}

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

.price-row > div:first-child strong,
.price-row > div:first-child span,
.price-row > div:last-child span,
.price-row > div:last-child strong {
  display: block;
}

.price-row > div:first-child strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.price-row > div:first-child span {
  color: #68675a;
  font-size: 13px;
}

.price-row > div:last-child {
  min-width: 90px;
  text-align: right;
}

.price-row > div:last-child span {
  color: #6e6d5f;
  font-size: 11px;
  text-transform: uppercase;
}

.price-row > div:last-child strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.packages {
  background: var(--charcoal);
  color: var(--white);
}

.package-card {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.package-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.package-card > span {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card h4 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

.package-card p {
  margin-bottom: 14px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 12px;
}

.package-card > strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.package-card small {
  margin-left: 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-grid {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.package-offer {
  min-height: 330px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
}

.package-offer > span {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-offer h3 {
  min-height: 82px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(29px, 2.5vw, 39px);
  line-height: 1.08;
}

.package-offer p {
  color: rgba(255, 253, 247, 0.68);
  font-size: 14px;
}

.package-offer > strong {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.package-offer small {
  margin-left: 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-cta {
  width: min(100%, var(--content));
  margin: 28px auto 0;
  display: flex;
  justify-content: flex-end;
}

.pricing-cta .button {
  min-width: 150px;
}

.roseel {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: center;
  background: #e7ddc7;
  border-top: 1px solid rgba(40, 41, 32, 0.1);
  border-bottom: 1px solid rgba(40, 41, 32, 0.1);
}

.portrait-column {
  width: min(100%, 520px);
  justify-self: end;
}

.portrait-frame {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(155deg, #dfd6bf 0%, #f0e8d8 48%, #d8ceb8 100%);
  border: 1px solid rgba(40, 41, 32, 0.16);
  border-radius: 250px 250px 3px 3px;
}

.portrait-mark {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 72px;
  left: 50%;
  border: 1px solid rgba(114, 115, 67, 0.28);
  border-radius: 50%;
  transform: translateX(-50%);
}

.portrait-mark::before,
.portrait-mark::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(114, 115, 67, 0.17);
  border-radius: 50%;
}

.portrait-mark::after {
  inset: 53px;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  background: linear-gradient(to top, rgba(40, 41, 32, 0.12), transparent);
  pointer-events: none;
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 92%;
  max-height: 610px;
  object-fit: contain;
  object-position: bottom center;
  filter: saturate(0.9) contrast(0.98);
}

.portrait-caption {
  margin: 16px 0 0;
  color: #626153;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.roseel-copy {
  max-width: 720px;
}

.roseel-copy h2 {
  max-width: 760px;
  margin-bottom: 36px;
}

.roseel-copy blockquote {
  margin-bottom: 26px;
  padding-left: 26px;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.43;
  border-left: 2px solid var(--gold);
}

.roseel-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #5d5c50;
}

.credential-list {
  margin: 31px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
}

.credential-list li {
  position: relative;
  padding: 16px 18px 16px 21px;
  color: var(--olive-dark);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.credential-list li::before {
  position: absolute;
  top: 21px;
  left: 1px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--olive);
  border-radius: 50%;
}

.testimonials {
  padding-top: clamp(56px, 6vw, 82px);
  padding-bottom: clamp(56px, 6vw, 82px);
  display: block;
  color: var(--white);
  background:
    linear-gradient(rgba(31, 32, 26, 0.88), rgba(31, 32, 26, 0.88)),
    url("assets/images/treatment-room.jpg") center / cover;
}

.testimonial-heading h2 {
  max-width: 680px;
  margin-bottom: clamp(30px, 3vw, 42px);
  font-size: clamp(44px, 5vw, 68px);
}

.testimonial-grid {
  width: min(100%, var(--content));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.testimonial-grid figure {
  min-width: 0;
  min-height: 210px;
  margin-bottom: 0;
  padding: clamp(24px, 2.3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 253, 247, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
}

.testimonial-grid figure + figure {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.testimonial-grid blockquote {
  overflow-wrap: normal;
  word-break: normal;
  font-family: var(--serif);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.48;
}

.testimonial-grid figcaption {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: start;
}

.booking-intro {
  max-width: 560px;
}

.booking-intro h2 {
  margin-bottom: 30px;
}

.booking-intro > p:not(.eyebrow) {
  color: #565649;
  font-size: 17px;
}

.booking-steps {
  margin: 38px 0 34px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.booking-steps li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.booking-steps li > span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--olive);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.booking-steps strong,
.booking-steps p {
  display: block;
}

.booking-steps strong {
  font-size: 14px;
}

.booking-steps p {
  margin: 2px 0 0;
  color: #676659;
  font-size: 12px;
}

.booking-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.booking-contact span {
  margin-bottom: 4px;
  color: #777669;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-contact a {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
}

.booking-contact a:hover,
.booking-contact a:focus-visible {
  color: var(--olive);
}

.booking-module {
  min-height: 680px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(40, 41, 32, 0.16);
  box-shadow: 0 22px 54px rgba(46, 44, 32, 0.1);
}

.booking-module-wrap {
  min-width: 0;
}

.booking-module-toolbar {
  min-height: 48px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 14px 14px 0 0;
}

.booking-module-toolbar span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-module-toolbar button {
  padding: 7px 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.booking-module-toolbar button:hover,
.booking-module-toolbar button:focus-visible {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}

.booking-module-toolbar button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.cal-inline {
  width: 100%;
  min-height: 680px;
  display: none;
}

.cal-inline.is-active {
  display: block;
}

.booking-fallback {
  min-height: 680px;
  padding: clamp(34px, 5vw, 70px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 78% 16%, rgba(221, 203, 120, 0.28), transparent 28%),
    linear-gradient(145deg, #fffdf7 0%, #eee6d4 100%);
}

.booking-fallback[hidden] {
  display: none;
}

.booking-fallback img {
  width: 84px;
  height: 84px;
  margin-bottom: 38px;
}

.booking-fallback h3 {
  max-width: 540px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.04em;
}

.booking-fallback > p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 30px;
  color: #5f5e51;
}

.booking-fallback code {
  padding: 2px 5px;
  background: rgba(114, 115, 67, 0.12);
  font-size: 0.92em;
}

.site-footer {
  padding-top: 68px;
  padding-bottom: 26px;
  color: var(--white);
  background: var(--charcoal);
}

.footer-brand,
.footer-details,
.footer-bottom {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.footer-brand {
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand img {
  width: 82px;
  height: 82px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.footer-brand span {
  color: rgba(255, 253, 247, 0.6);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-details {
  padding: 46px 0 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.footer-details > div > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-details p {
  margin-bottom: 0;
  color: rgba(255, 253, 247, 0.72);
}

.footer-details a:hover,
.footer-details a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 253, 247, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

@media (max-width: 1120px) {
  .header-inner {
    width: min(calc(100% - 40px), 1360px);
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    padding: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(32, 33, 27, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  html:not(.js) .site-nav {
    display: flex;
  }

  .site-nav > a {
    width: 100%;
  }

  .site-nav > a:not(.button) {
    padding: 12px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(68px, 9vw, 104px);
  }

  .treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-offer:last-child {
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: clamp(20px, 5vw, 42px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    width: 100%;
    max-height: 620px;
  }

  .heading-split,
  .approach-grid,
  .about,
  .price-layout,
  .roseel,
  .testimonials,
  .booking {
    grid-template-columns: 1fr;
  }

  .heading-split {
    gap: 26px;
  }

  .approach-grid,
  .about,
  .roseel,
  .booking {
    gap: 56px;
  }

  .approach-media {
    min-height: 520px;
  }

  .value-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .value-item {
    padding: 22px;
    border-right: 1px solid var(--line);
  }

  .about-copy {
    justify-self: start;
  }

  .about-media-wrap {
    width: min(80%, 470px);
    justify-self: center;
  }

  .portrait-column {
    width: min(82%, 520px);
    justify-self: center;
  }

  .roseel-copy {
    justify-self: center;
  }

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

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

  .package-offer,
  .package-offer:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .booking-intro {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
    font-size: 21px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  h2 {
    font-size: clamp(43px, 14vw, 60px);
  }

  .hero {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(64px, 20vw, 90px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .media-landscape {
    border-radius: 75px 3px 3px 3px;
  }

  .approach-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 3px 75px 3px 3px;
  }

  .value-list,
  .about-points,
  .treatment-grid,
  .testimonial-grid,
  .footer-details {
    grid-template-columns: 1fr;
  }

  .value-item {
    padding: 22px 16px;
  }

  .about-points > div {
    min-height: auto;
  }

  .about-media-wrap,
  .portrait-column {
    width: 100%;
  }

  .about-media {
    max-height: 610px;
  }

  .treatment-content h3 {
    min-height: auto;
  }

  .price-row {
    gap: 14px;
  }

  .price-row > div:last-child {
    min-width: 72px;
  }

  .portrait-frame {
    min-height: 540px;
  }

  .portrait-frame img {
    max-height: 520px;
  }

  .portrait-mark {
    width: 290px;
    height: 290px;
  }

  .testimonial-grid figure {
    min-height: 220px;
  }

  .testimonial-grid figure + figure {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.38);
  }

  .booking-module,
  .cal-inline,
  .booking-fallback {
    min-height: 590px;
  }

  .booking-fallback {
    padding: 30px;
  }

  .footer-details {
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
