:root {
  --ink: #161616;
  --text: #4b4b4b;
  --muted: #756f67;
  --line: #ece4dc;
  --soft: #fff6ea;
  --accent: #f6a23a;
  --accent-dark: #be6d10;
  --white: #fff;
  --shadow: 0 24px 62px rgba(117, 82, 21, .16);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 159, 0, .14), transparent 28%),
    linear-gradient(180deg, #f8f4ee 0%, #f3eee7 58%, #ebe5dc 100%);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(1200px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  width: 170px;
  min-height: 48px;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.btn,
.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  border: 1px solid rgba(255, 159, 0, .32);
  background: var(--accent);
  color: #1d160f;
  box-shadow: 0 14px 26px rgba(255, 159, 0, .16);
}

.nav-pill,
.btn-light {
  border: 1px solid rgba(255, 159, 0, .32);
  background: rgba(255, 246, 234, .9);
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(34px, 6vw, 76px) 0 34px;
}

.hero-copy,
.hero-media,
.panel,
.service,
.booking {
  border: 1px solid rgba(236, 228, 220, .8);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .44) 34%, transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 247, 231, .72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(140%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 32px;
  padding: clamp(28px, 5vw, 52px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 520px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 246, 234, .18), rgba(255, 246, 234, .88)),
    url("hero_medspa_reception_photo.png") center / cover no-repeat;
}

.portrait-card {
  margin: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 42px rgba(58, 42, 21, .14);
}

.portrait-mark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, .96), transparent 38%),
    linear-gradient(145deg, rgba(255, 159, 0, .92), rgba(190, 109, 16, .72));
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.portrait-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.08;
}

.portrait-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.panel {
  border-radius: 24px;
  padding: 20px;
}

.panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.panel span {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 24px;
  align-items: start;
  padding: 0 0 72px;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service {
  border-radius: 24px;
  padding: 20px;
}

.service h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.service p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.booking {
  position: sticky;
  top: 96px;
  border-radius: 28px;
  padding: 22px;
}

.booking h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.booking p,
.booking li {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.booking ul {
  margin: 0 0 18px;
  padding-left: 18px;
}

.sample-note {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .hero,
  .info-row,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .booking {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand {
    width: 145px;
  }

  .nav-pill,
  .btn {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-media,
  .panel,
  .service,
  .booking {
    border-radius: 22px;
  }
}
