:root {
  --bg: #f5efe7;
  --bg-soft: #fffaf3;
  --bg-muted: #eadfce;

  --text: #1f1a16;
  --muted: #6b5d50;

  --dark: #0f0c0a;
  --dark-soft: #1d1915;

  --gold: #d4a857;
  --gold-dark: #b47a36;
  --gold-deep: #8f5e26;
  --gold-soft: #ead4b2;

  --border: rgba(31, 26, 22, 0.13);
  --border-light: rgba(255, 255, 255, 0.16);

  --shadow: 0 28px 80px rgba(31, 26, 22, 0.16);
  --shadow-soft: 0 18px 48px rgba(31, 26, 22, 0.09);

  --radius: 28px;
  --container: 1180px;
}

/* Base */

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-main {
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 12, 10, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 168, 87, 0.1);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-image {
  width: 220px;
  height: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 16px 38px rgba(31, 26, 22, 0.18);
  transition: transform 0.22s ease, background 0.22s ease;
}

.header-button:hover {
  transform: translateY(-1px);
  background: #e2b763;
}

/* Typography */

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 16px 38px rgba(180, 122, 54, 0.25);
}

.btn-primary:hover {
  background: var(--gold-deep);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.04) saturate(0.95);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.84) 0%, rgba(15, 12, 10, 0.6) 46%, rgba(15, 12, 10, 0.28) 100%),
    linear-gradient(0deg, rgba(15, 12, 10, 0.62), rgba(15, 12, 10, 0.08) 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 126px 0 78px;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-trust span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  font-weight: 700;
}

/* Layout */

.section {
  padding: 104px 0;
}

.intro-grid,
.prices-grid,
.about-grid,
.shop-grid,
.body-scrub-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.intro-grid > p {
  max-width: 620px;
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 650px;
}

/* Section backgrounds */

.intro-section,
.about-section,
.contact-section {
  background: var(--bg-soft);
}

.treatments-section {
  background: linear-gradient(180deg, var(--bg) 0%, #f1e7da 100%);
}

.prices-section,
.body-scrub-section {
  background: var(--bg-muted);
}

.shop-section {
  background: var(--bg);
}

.gallery-strip-section,
.reviews-section {
  background: var(--dark);
}

/* Gallery strip */

.gallery-strip-section {
  padding: 38px 0;
}

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

.gallery-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.treatment-card,
.price-card,
.contact-card,
.shop-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 250, 243, 0.88);
  box-shadow: var(--shadow-soft);
}

.treatment-card {
  min-height: 230px;
  padding: 30px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.treatment-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.treatment-card p {
  margin-bottom: 0;
}

.price-card,
.contact-card,
.shop-card {
  padding: 36px;
}

/* Prices */

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(31, 26, 22, 0.12);
}

.price-row:first-child {
  padding-top: 0;
}

.price-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-row span {
  color: var(--text);
  font-weight: 750;
}

.price-row strong {
  color: var(--gold-deep);
  font-weight: 950;
}

/* Images */

.about-image,
.body-scrub-image {
  height: 520px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  background: var(--bg-muted);
  box-shadow: var(--shadow);
}

.about-image img,
.body-scrub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shop */

.shop-front-card {
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.shop-front-card > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.shop-front-card .shop-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.shop-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-deep);
  font-weight: 950;
}

/* Reviews */

.reviews-section {
  color: #fff;
}

.reviews-section h2 {
  color: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-grid blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.65;
}

.contact-actions {
  margin-top: 28px;
}

/* Footer */

.site-footer {
  padding: 100px 0 80px;
  background: var(--dark);
  color: #fff;
  border-top: 1px solid rgba(212, 168, 87, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 260px;
  height: auto;
  margin-bottom: 28px;
}

.footer-copy {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p,
.footer-contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}

.footer-contact a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact a:hover {
  color: var(--gold);
}

/* Mobile call bar */

.mobile-call-bar {
  display: none;
}

/* Responsive */

@media (max-width: 1000px) {
  .intro-grid,
  .prices-grid,
  .about-grid,
  .shop-grid,
  .body-scrub-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .card-grid,
  .review-grid,
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 110px 0 78px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 22px 0;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .site-logo-image {
    width: 200px;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
  }

  .site-nav {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .site-nav a::after {
    display: none;
  }

  .header-button {
    min-height: 42px;
    padding: 0 22px;
  }

  .footer-logo {
    width: 220px;
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .section {
    padding: 76px 0;
  }

  .card-grid,
  .review-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .about-image,
  .body-scrub-image {
    height: 380px;
  }

  .gallery-strip img {
    height: 260px;
  }

  .mobile-call-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: var(--gold-dark);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 18px 44px rgba(31, 26, 22, 0.28);
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .hero-inner {
    padding: 88px 0 62px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-trust span {
    width: 100%;
    text-align: center;
  }

  .treatment-card,
  .price-card,
  .contact-card,
  .shop-card {
    padding: 26px;
  }

  .shop-front-card > img {
    height: 240px;
  }

  .site-footer {
    padding: 58px 0 88px;
  }
}