/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:           #F7F3EE;
  --white:        #FFFFFF;
  --text:         #2B2318;
  --text-mid:     #6B5D50;
  --text-light:   #A0917F;
  --accent:       #A8896A;
  --accent-dark:  #8B6E52;
  --sage:         #7D8C72;
  --border:       #E8E0D5;
  --dark:         #1E1812;

  --serif:  'Noto Serif Display', Georgia, serif;
  --sans:   'Roboto', system-ui, sans-serif;

  --max:    1240px;
  --nav-h:  72px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, blockquote p {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
em { font-style: italic; }
h1 em, h2 em, h3 em, blockquote em { color: var(--accent-dark); }
h1 { font-size: clamp(3.5rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 400; }
em { font-style: italic; }

.label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.label--light { color: rgba(255,255,255,0.65); }

.body-copy {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.8;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--light {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--bg);
  border-color: var(--bg);
}
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost-light:hover {
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.link-arrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.25s ease, color 0.25s ease;
}
.link-arrow:hover { gap: 0.65rem; color: var(--accent-dark); }

/* ─── Images ─────────────────────────────────────────────────── */
.intro__image, .why__image,
.about-story__image, .about-credentials__image,
.gift__image, .treatment-card__image {
  overflow: hidden;
}
.intro__image img, .why__image img,
.about-story__image img, .about-credentials__image img,
.gift__image img, .treatment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}
.nav.scrolled .nav__logo { color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}
.nav.scrolled .nav__links a:not(.btn) { color: var(--text-mid); }
.nav__links a:not(.btn):hover { color: var(--accent) !important; }

.nav .btn--outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.nav .btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
}
.nav.scrolled .btn--outline {
  border-color: var(--accent);
  color: var(--accent);
}
.nav.scrolled .btn--outline:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
}
.nav.scrolled .nav__burger span { background: var(--text); }
.nav__burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 2rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.nav__mobile a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.nav__mobile.open { display: flex; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?q=80&w=2340&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(201, 168, 130, 0.82) 0%, rgba(139, 96, 64, 0.78) 40%, rgba(58, 34, 21, 0.88) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 10, 4, 0.55) 0%, rgba(18, 10, 4, 0.1) 50%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.hero__headline {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.6); opacity: 0.8; }
}

/* ─── Animations ─────────────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 0.12s);
}
.reveal-stagger.visible { opacity: 1; transform: translateY(0); }

/* ─── Reviews ────────────────────────────────────────────────── */
.reviews {
  background: var(--white);
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.reviews__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.reviews__carousel {
  position: relative;
  padding-left: 9rem;
}
.reviews__quotemark {
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: var(--serif);
  font-size: 14rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}
.review-slide {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 12rem;
  animation: slide-fade 0.5s ease forwards;
}
.review-slide.active { display: flex; }
@keyframes slide-fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-slide__stars {
  color: #C8963A;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}
.review-slide__text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}
.reviews__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: flex-end;
}
.reviews__btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.25s ease;
  line-height: 1;
}
.reviews__btn:hover { color: var(--accent); }
.reviews__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.reviews__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.reviews__dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ─── Intro ──────────────────────────────────────────────────── */
.intro {
  padding: 8rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro__text h2 { margin-bottom: 1.5rem; }
.intro__text .body-copy { margin-bottom: 2.5rem; }
.intro__image-wrap {
  position: relative;
}
.intro__image {
  height: 520px;
  border-radius: 8px;
}
.intro__badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 40px rgba(43, 35, 24, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.intro__badge-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.intro__badge-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ─── Treatments ─────────────────────────────────────────────── */
.treatments {
  padding: 6rem 2rem 5rem;
  background: var(--white);
}
.treatments__header {
  max-width: var(--max);
  margin: 0 auto 4rem;
}
.treatments__header h2 { max-width: 500px; }

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

.treatment-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(43, 35, 24, 0.1);
}
.treatment-card__image {
  height: 220px;
  border-radius: 0;
}
.tc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-icon--sand { background-color: #EDE0D0; }
.tc-icon--mist { background-color: #DDE3D8; }
.tc-icon--rose { background-color: #E8D5CC; }
.tc-icon svg {
  color: #8B6E52;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.treatment-card:hover .tc-icon svg { transform: scale(1.1); }
.treatment-card__body {
  padding: 2rem;
}
.treatment-card__body h3 {
  margin-bottom: 0.75rem;
}
.treatment-card__body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.treatments__footer {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  text-align: center;
}

/* ─── Why Sa'ha ──────────────────────────────────────────────── */
.why {
  padding: 8rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why__image {
  height: 580px;
  border-radius: 8px;
}
.why__content h2 { margin-bottom: 2.5rem; }
.why__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why__list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
  align-items: start;
}
.why__icon {
  color: var(--accent);
  font-size: 0.7rem;
  margin-top: 0.35rem;
}
.why__list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.why__list p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Quote ──────────────────────────────────────────────────── */
.quote {
  background: var(--white);
  padding: 7rem 2rem;
  text-align: center;
}
.quote__inner {
  max-width: 760px;
  margin: 0 auto;
}
blockquote p {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
blockquote cite {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── CTA ────────────────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, #8B6040 0%, #5C3820 60%, #2E1A0D 100%);
  padding: 8rem 2rem;
  text-align: center;
}
.cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cta h2 em { color: var(--accent); }
.cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.footer__nav a:hover { color: var(--accent); }
.footer__social {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease;
}
.footer__social a:hover { color: var(--accent); }
.footer__bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  font-size: 0.78rem;
  text-align: center;
  color: rgba(255,255,255,0.3);
}

/* ─── Nav active link ────────────────────────────────────────── */
.nav__links a.active { color: var(--accent) !important; }

/* ─── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #C9A882 0%, #8B6040 40%, #3A2215 100%);
  z-index: 0;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,10,4,0.55) 0%, rgba(18,10,4,0.1) 100%);
}
.page-hero__bg--sage {
  background: linear-gradient(150deg, #B5C4A8 0%, #7D8C72 40%, #3E4E38 100%);
}
.page-hero__bg--dark {
  background: linear-gradient(150deg, #8B6040 0%, #4A2E18 40%, #1E0E06 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.page-hero__content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 600px;
}
.page-hero__content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 480px;
}

/* ─── Treatments page ────────────────────────────────────────── */
.tx-intro {
  padding: 4rem 2rem;
  background: var(--white);
}
.tx-intro__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.tx-intro__inner p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

.tx-section {
  padding: 6rem 2rem;
}
.tx-section--alt { background: var(--white); }
.tx-section__inner { max-width: var(--max); margin: 0 auto; }
.tx-section__header { margin-bottom: 3rem; }
.tx-section__header h2 { margin-bottom: 0.75rem; }
.tx-section__desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 0.75rem;
}

.tx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tx-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.tx-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tx-section--alt .tx-card { background: var(--bg); }
.tx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43,35,24,0.08);
}
.tx-card__body h3 { margin-bottom: 0.5rem; }
.tx-card__body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.tx-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.tx-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tx-price__dur {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.tx-price__amt {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text);
}
.tx-price--addon .tx-price__amt {
  font-size: 0.95rem;
  color: var(--accent);
}

.gift {
  padding: 6rem 2rem;
  background: var(--white);
}
.gift__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.gift__text h2 { margin-bottom: 1rem; }
.gift__text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2rem;
}
.gift__image { height: 380px; border-radius: 8px; }

/* ─── About page ─────────────────────────────────────────────── */
.about-story {
  padding: 7rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-story__image { height: 500px; border-radius: 8px; }
.about-story__text h2 { margin-bottom: 1.5rem; }

.about-philosophy {
  background: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}
.about-philosophy__inner {
  max-width: 700px;
  margin: 0 auto;
}
.about-philosophy__inner h2 { margin-bottom: 1.5rem; }
.about-philosophy__inner p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.about-values {
  padding: 6rem 2rem;
}
.about-values__inner { max-width: var(--max); margin: 0 auto; }
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.value-card__icon {
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.value-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.about-credentials {
  padding: 7rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.about-credentials__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-credentials__text h2 { margin-bottom: 1.5rem; }
.about-credentials__text .body-copy { margin-bottom: 2rem; }
.about-credentials__image { height: 460px; border-radius: 8px; }
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credentials-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.credentials-list li span { color: var(--accent); font-size: 0.65rem; }

/* ─── Contact page ───────────────────────────────────────────── */
.contact-body {
  padding: 6rem 2rem;
}
.contact-body__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 5.5rem;
}
.contact-info__block { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.contact-info__value {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  display: block;
  margin: 0.35rem 0;
  transition: color 0.25s ease;
}
.contact-info__value:hover { color: var(--accent); }
.contact-info__value--sm { font-size: 1.3rem; }
.contact-info__note {
  font-size: 0.8rem;
  color: var(--text-light);
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact-info__socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact-info__socials a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.25s ease;
}
.contact-info__socials a:hover { color: var(--accent); }

/* ─── Terms page ─────────────────────────────────────────────── */
.terms-body {
  padding: 6rem 2rem;
}
.terms-body__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.terms-section h2 {
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}
.terms-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.terms-section ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
}
.terms-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  top: 0.15rem;
}
.terms-section ul li strong { color: var(--text); font-weight: 500; }
.terms-contact {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.terms-contact a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .intro__inner,
  .why__inner,
  .about-story__inner,
  .about-credentials__inner,
  .gift__inner,
  .contact-body__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why__inner { direction: ltr; }
  .intro__badge { left: 1rem; bottom: 1rem; }
  .intro__image, .why__image,
  .about-story__image,
  .about-credentials__image { height: 360px; }
  .gift__image { height: 280px; }

  .treatments__grid,
  .tx-grid,
  .tx-grid--two { grid-template-columns: 1fr; }

  .about-values__grid { grid-template-columns: repeat(2, 1fr); }

  .contact-info { padding-top: 0; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {

  /* ── Typography ── */
  h2 { font-size: 2.2rem; }

  /* ── Nav ── */
  .nav__logo { font-size: 1.5rem; }

  /* ── Hero ── */
  .hero {
    min-height: 68vh;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero__scroll { display: none; }
  .hero__eyebrow { margin-bottom: 1rem; }
  .hero__sub { display: none; }
  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* ── Reviews ── */
  .reviews { padding: 3.5rem 1.5rem; }
  .reviews__carousel { padding-left: 0; padding-top: 4rem; }
  .reviews__quotemark {
    font-size: 7rem;
    top: -0.75rem;
    left: 0;
  }
  .review-slide__text { font-size: 1.1rem; }
  .reviews__nav { justify-content: flex-start; margin-top: 2rem; }

  /* ── Intro ── */
  .intro { padding: 4rem 1.5rem; }
  .intro__image { height: 280px; }
  .intro__badge { display: none; }

  /* ── Treatments (homepage) ── */
  .treatments { padding: 4rem 1.5rem 3rem; }
  .treatments__header { margin-bottom: 2rem; }
  .treatments__footer { margin-top: 2.5rem; }
  .treatment-card__image { height: 180px; }

  /* ── Why ── */
  .why { padding: 4rem 1.5rem; }
  .why__image { height: 260px; }
  .why__list { gap: 1.5rem; }

  /* ── Quote ── */
  .quote { padding: 4rem 1.5rem; }
  blockquote p { font-size: 1.6rem; }

  /* ── CTA ── */
  .cta { padding: 4.5rem 1.5rem; }
  .cta .btn { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer { padding: 3rem 1.5rem 2rem; }

  /* ── Page heroes ── */
  .page-hero {
    padding: calc(var(--nav-h) + 2.5rem) 1.5rem 3rem;
    min-height: 38vh;
  }

  /* ── Treatments page ── */
  .tx-intro { padding: 3rem 1.5rem; }
  .tx-intro__inner { flex-direction: column; align-items: flex-start; }
  .tx-intro__inner .btn { width: 100%; text-align: center; justify-content: center; }
  .tx-section { padding: 4rem 1.5rem; }
  .tx-card { padding: 1.5rem; }
  .gift { padding: 4rem 1.5rem; }
  .gift__image { height: 240px; }

  /* ── About page ── */
  .about-story { padding: 4rem 1.5rem; }
  .about-story__image { height: 280px; }
  .about-philosophy { padding: 4rem 1.5rem; }
  .about-values { padding: 4rem 1.5rem; }
  .about-values__grid { grid-template-columns: 1fr; }
  .value-card { padding: 1.75rem 1.5rem; }
  .about-credentials { padding: 4rem 1.5rem; }
  .about-credentials__image { height: 260px; }

  /* ── Contact page ── */
  .contact-body { padding: 4rem 1.5rem; }
  .contact-form .btn { width: 100%; justify-content: center; }
  .contact-info__value { font-size: 1.5rem; }

  /* ── Terms page ── */
  .terms-body { padding: 4rem 1.5rem; }
}
