:root {
  --color-cream: #fdf6eb;
  --color-olive: #a2ac87;
  --color-text: #404041;
  --color-muted: #878787;
  --color-line: #d9d9cf;
  --color-white: #ffffff;
  --container: 1285px;
  --font-sans: Arial, Helvetica, "Noto Sans SC", sans-serif;
  --font-display: "Arial Black", Arial, "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  background: var(--color-cream);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
  top: 0;
  z-index: 20;
  min-height: 99px;
  display: grid;
  grid-template-columns: minmax(260px, 520px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  background: var(--color-cream);
  color: #000000;
  font-size: 13px;
}

.site-logo {
  display: block;
  max-width: 520px;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.4px;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: currentColor;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
}

.quick-contact {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 18;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.quick-contact a {
  display: grid;
  place-items: center;
  min-width: 138px;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-olive);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.quick-contact a:last-child {
  background: #404041;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #000000;
}

.hero {
  position: relative;
  width: min(var(--container), calc(100% - 140px));
  margin: 0 auto;
  background: #91a4a4;
}

.hero__image {
  width: 100%;
  height: 975px;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  color: var(--color-white);
}

.hero h1 {
  margin: 0 0 26px;
  font-family: Arial, Helvetica, "Noto Sans SC", sans-serif;
  font-size: clamp(42px, 5.3vw, 86px);
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: 2px;
}

.button,
.service-row a {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 7px 25px;
  font-size: 13px;
  border: 1px solid transparent;
}

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

.button--outline {
  border-color: var(--color-line);
  background: var(--color-white);
}

.review-badge {
  position: absolute;
  left: -50px;
  bottom: 205px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 142px;
  padding: 8px;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  font-size: 13px;
}

.review-badge__g {
  font-size: 24px;
  color: #4285f4;
}

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

.philosophy__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 190px;
  width: min(930px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 74px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 13px;
}

.philosophy h2 {
  margin: 0 0 44px;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 1px;
}

.philosophy img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
}

.philosophy__copy {
  display: grid;
  align-content: start;
  gap: 116px;
  padding-top: 57px;
  font-size: 15px;
}

.philosophy__copy p {
  margin: 0;
}

.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.philosophy__copy a {
  margin-top: -106px;
  font-size: 14px;
  font-weight: 700;
}

.service-row a {
  color: var(--color-white);
  background: var(--color-olive);
}

.treatments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 98px;
  background: var(--color-white);
}

.treatment-card {
  min-height: 405px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 44px 70px;
  text-align: center;
  border-color: var(--color-line);
}

.treatment-card:nth-child(odd) {
  border-right: 1px solid var(--color-line);
}

.treatment-card:nth-child(n + 3) {
  border-top: 1px solid var(--color-line);
}

.treatment-card h3 {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 300;
}

.treatment-card p {
  margin: 0 0 33px;
  max-width: 330px;
  font-size: 14px;
}

.booking {
  padding: 0 24px 56px;
  background: var(--color-white);
}

.booking h2 {
  margin: 0 0 48px;
  text-align: center;
  font-size: 45px;
  line-height: 1;
}

.service-list {
  width: min(820px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--color-line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 145px 135px;
  gap: 22px;
  align-items: center;
  min-height: 98px;
  border-bottom: 1px solid var(--color-line);
}

.service-row img {
  width: 72px;
  height: 54px;
  object-fit: cover;
}

.service-row h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
}

.service-row p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.service-row a {
  min-height: 31px;
  padding: 7px 14px;
  text-align: center;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 31px max(24px, calc((100% - 760px) / 2)) 37px;
  background: var(--color-olive);
}

.visit__info {
  color: var(--color-white);
}

.visit__info h2 {
  margin: 0 0 46px;
  font-size: 43px;
  font-weight: 300;
  line-height: 1;
}

.visit__info p {
  margin: 0 0 21px;
}

.visit__info a {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 26px 30px 21px;
  background: var(--color-white);
  color: #000000;
}

.contact-form h2 {
  margin: 0;
  font-size: 19px;
}

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

.contact-form label {
  display: grid;
  gap: 5px;
  font-size: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #000000;
  padding: 7px 0;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  min-width: 84px;
  min-height: 23px;
  border: 0;
  border-radius: 999px;
  color: var(--color-white);
  background: #000000;
  font-size: 13px;
}

.form-note {
  margin: 0;
  min-height: 1em;
  font-size: 12px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 26px;
  min-height: 0;
  padding: 64px 24px 38px;
  background: var(--color-cream);
  font-size: 15px;
  text-align: center;
}

.site-footer--tall {
  min-height: 0;
}

.footer-info {
  width: min(820px, 100%);
  display: grid;
  gap: 13px;
}

.footer-info h2 {
  margin: 0;
  color: var(--color-text);
  font-size: 30px;
  line-height: 1.2;
}

.footer-info p {
  margin: 0;
}

.footer-info a {
  font-weight: 700;
  text-decoration: underline;
}

.footer-copy {
  margin: 8px 0 0;
  font-size: 12px;
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  margin: 0;
  display: grid;
  align-items: start;
  overflow: hidden;
  background: var(--color-olive);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  display: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(528px, calc(100% - 48px));
  min-height: 370px;
  margin: 70px 0 0 max(24px, calc((100% - 980px) / 2));
  padding: 72px 56px;
  text-align: left;
  color: var(--color-white);
  background: rgba(162, 172, 135, 0.72);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 2px;
}

.section-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 2px;
}

.page-hero p {
  width: min(430px, 100%);
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.65;
}

.page-hero__content .hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
}

.page-hero__content .hero-phone::before {
  content: "☎";
  color: #ff5fa2;
  font-size: 16px;
}

.page-hero--appointment .page-hero__content {
  width: min(585px, calc(100% - 48px));
  min-height: 390px;
  padding: 52px 48px;
}

.page-hero--appointment .page-hero__content h1 {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.content-band {
  padding: 78px 24px;
  background: var(--color-white);
}

.content-band--cream {
  background: var(--color-cream);
}

.content-shell {
  width: min(var(--container), calc(100% - 140px));
  margin: 0 auto;
  padding: 72px 56px;
  background: var(--color-white);
}

.inner {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.section-title {
  margin-bottom: 42px;
  text-align: center;
  color: var(--color-text);
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.tabs a,
.chip,
.amount-option {
  padding: 12px 20px;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  font-size: 16px;
}

.tabs a:first-child,
.chip.is-active,
.amount-option.is-active {
  background: var(--color-olive);
  color: var(--color-white);
  border-color: var(--color-olive);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 58px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.appointment-card,
.plan-card,
.blog-card,
.gift-card-panel,
.empty-state {
  background: var(--color-white);
  border: 1px solid var(--color-line);
}

.appointment-card {
  display: grid;
  grid-template-columns: 430px 1fr;
  min-height: 0;
  border: 0;
  background: transparent;
}

.appointment-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 469 / 321;
  object-fit: cover;
}

.appointment-card__body {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 321px;
  padding: 36px 56px;
  background: var(--color-cream);
}

.appointment-card h3,
.plan-card h3,
.blog-card h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.appointment-card h3 {
  font-size: 24px;
}

.appointment-card p,
.plan-card p,
.blog-card p {
  margin: 0;
}

.appointment-card p {
  font-size: 16px;
  line-height: 1.55;
}

.appointment-card .muted {
  font-size: 16px;
}

.appointment-card .price {
  font-size: 18px;
  line-height: 1.45;
}

.appointment-card .button {
  justify-self: start;
  min-height: 36px;
  padding: 9px 18px;
  font-size: 14px;
}

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

.price {
  font-size: 20px;
  font-weight: 700;
}

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

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 520px;
  padding: 58px 30px 34px;
  text-align: center;
}

.plan-card.is-featured {
  background: #f0f1eb;
}

.plan-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 14px;
  color: var(--color-white);
  background: var(--color-olive);
  font-size: 13px;
}

.plan-card .price {
  font-size: 76px;
  font-weight: 300;
  line-height: 1;
}

.plan-card .price::first-letter {
  font-size: 20px;
}

.plans-heading {
  margin-bottom: 58px;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.set-menu-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto auto;
  gap: 16px;
  min-height: 590px;
  padding: 26px 20px 22px;
  border-color: #d9b56b;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 248, 226, 0.96) 0%, rgba(248, 234, 196, 0.96) 54%, rgba(44, 63, 31, 0.94) 54%, rgba(31, 46, 25, 0.96) 100%);
  color: #5a3d24;
  box-shadow: 0 10px 24px rgba(73, 48, 20, 0.12);
}

.set-menu-card::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  opacity: 0.34;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.set-menu-card--zen::after {
  background-image: url("../images/17-821abd_1dbb4a11aa69414188f2ad07009ff270-mv2.jpg");
}

.set-menu-card--radiance::after {
  background-image: url("../images/11-821abd_241cbc78ba834171aa00c70ad2f004dd-mv2.jpg");
}

.set-menu-card--lymphatic::after {
  background-image: url("../images/21-cda177_56ea050767e144cc9e64ab0149fe8839-mv2_d_5616_3137_s_4_2.jpg");
}

.set-menu-card--glow::after {
  background-image: url("../images/05-821abd_fb722c5c8bd0465ab25867fab59bb981-mv2.png");
}

.set-menu-card > * {
  position: relative;
  z-index: 1;
}

.set-menu-card__label {
  justify-self: center;
  min-width: 112px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-olive);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.set-menu-card h3 {
  min-height: 78px;
  display: grid;
  align-content: center;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.12;
  color: #604022;
}

.set-menu-card h3 span {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

.set-menu-card ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.set-menu-card li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  min-height: 58px;
  align-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(151, 112, 52, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: center;
}

.set-menu-card li strong {
  font-size: 13px;
}

.set-menu-card__duration {
  justify-self: center;
  align-self: end;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-olive);
  font-size: 13px;
}

.set-menu-card__special {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 5px;
  margin: 0;
  padding: 12px;
  color: #f7d886;
  border: 1px solid rgba(247, 216, 134, 0.55);
  background: rgba(49, 65, 34, 0.88);
  font-size: 13px;
}

.set-menu-card__special strong {
  display: block;
  font-size: 40px;
  line-height: 1;
}

.set-menu-card .button {
  align-self: end;
  width: 100%;
  min-height: 38px;
  padding: 10px 16px;
}

.gift-layout {
  display: grid;
  grid-template-columns: 484px 1fr;
  gap: 48px;
  align-items: start;
  width: min(980px, 100%);
  padding: 26px 25px 46px;
  background: var(--color-white);
}

.gift-page {
  padding: 0 24px 48px;
}

.gift-card-panel {
  padding: 0;
  border: 0;
}

.gift-card-panel img {
  width: 100%;
  border: 1px solid var(--color-line);
}

.gift-form {
  display: grid;
  gap: 20px;
}

.gift-form h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 300;
}

.amount-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.field-stack {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.field-stack input,
.field-stack textarea,
.field-stack select {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid #6f6f6f;
  background: var(--color-white);
}

.field-stack--quantity {
  width: 106px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gift-form .button {
  width: 100%;
  min-height: 46px;
  font-size: 16px;
}

.button--dark {
  color: var(--color-white);
  background: #404041;
}

.choice-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-list {
  display: grid;
  gap: 36px;
  width: 100%;
  margin: 0 auto;
}

.blog-card {
  display: grid;
  grid-template-columns: 454px 1fr;
}

.blog-card > img {
  width: 100%;
  height: 341px;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 36px 40px 28px;
}

.blog-shell {
  width: min(980px, calc(100% - 48px));
  min-height: 1260px;
}

.blog-page {
  padding-top: 0;
}

.blog-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 92px;
  color: var(--color-olive);
}

.blog-shell .section-title {
  margin-bottom: 88px;
  text-align: left;
  font-size: 42px;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 13px;
}

.author-row img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.empty-state {
  width: min(980px, calc(100% - 48px));
  min-height: 166px;
  margin: 0 auto 42px;
  display: grid;
  place-items: center;
  padding: 48px;
  text-align: center;
}

.empty-state h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 300;
}

.loyalty-main {
  padding: 0 24px 0;
  background: var(--color-cream);
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .site-actions {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px 0;
  }

  .site-header.is-open .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .quick-contact {
    right: 12px;
    bottom: 12px;
    top: auto;
    grid-template-columns: 1fr 1fr;
    transform: none;
  }

  .quick-contact a {
    min-width: 0;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero,
  .hero__image {
    height: 660px;
  }

  .review-badge {
    left: 12px;
    bottom: 24px;
  }

  .philosophy__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .philosophy__copy {
    gap: 24px;
    padding-top: 0;
  }

  .philosophy__copy a {
    margin-top: -12px;
  }

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

  .appointment-grid,
  .plans-grid,
  .gift-layout,
  .blog-card {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    grid-template-columns: 1fr;
  }

  .appointment-card img,
  .blog-card > img {
    height: auto;
  }

  .appointment-card__body {
    min-height: 0;
  }

  .treatment-card:nth-child(odd) {
    border-right: 0;
  }

  .treatment-card:nth-child(n + 2) {
    border-top: 1px solid var(--color-line);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 18px;
  }

  .hero__image {
    height: 560px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .philosophy h2,
  .booking h2,
  .visit__info h2 {
    font-size: 34px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    min-height: 300px;
    padding: 36px 24px;
  }

  .service-row {
    grid-template-columns: 68px 1fr;
    gap: 12px 16px;
    padding: 18px 0;
  }

  .service-row img {
    grid-row: span 2;
    width: 62px;
    height: 62px;
  }

  .service-row a {
    grid-column: 2;
    justify-self: start;
  }

  .content-band {
    padding: 52px 18px;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero__content {
    margin: 42px auto 0;
    padding: 44px 30px;
    min-height: 280px;
  }

  .content-shell {
    width: 100%;
    padding: 48px 18px;
  }

  .gift-form h1 {
    font-size: 36px;
  }

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