:root {
  --bg: #f8f3ef;
  --bg-soft: #fdfaf8;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.88);
  --text: #3f3a38;
  --text-soft: #6c6460;
  --accent: #b88c8c;
  --accent-deep: #9e7474;
  --accent-soft: #ead8d3;
  --line: rgba(122, 102, 96, 0.14);
  --shadow: 0 18px 45px rgba(92, 71, 66, 0.12);
  --shadow-soft: 0 10px 30px rgba(92, 71, 66, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(234, 216, 211, 0.8), transparent 38%),
    radial-gradient(circle at 85% 20%, rgba(239, 226, 221, 0.7), transparent 30%),
    linear-gradient(180deg, #f9f4f1 0%, #f7f1ec 40%, #fbf7f4 100%);
  overflow-x: hidden;
}

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

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

p {
  line-height: 1.8;
  margin: 0 0 1rem;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

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

.narrow {
  width: min(calc(100% - 2rem), 900px);
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.55;
  z-index: -1;
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-one {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -100px;
  background: rgba(234, 209, 205, 0.55);
}

.ambient-two {
  width: 260px;
  height: 260px;
  top: 48%;
  right: -80px;
  background: rgba(231, 216, 225, 0.45);
  animation-duration: 16s;
}

.ambient-three {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: 20%;
  background: rgba(239, 226, 221, 0.55);
  animation-duration: 18s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(250, 245, 241, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,0.7);
  padding: 0.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-text em {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.main-nav a {
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:hover {
  color: var(--text);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 10px 20px rgba(94, 71, 68, 0.08);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 28px rgba(94, 71, 68, 0.14);
}

.btn-primary {
  background: linear-gradient(135deg, #b88c8c, #caa09d);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a87c7c, #bc928f);
}

.btn-secondary,
.btn-outline {
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border-color: rgba(184, 140, 140, 0.22);
}

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

.hero-section {
  padding: 3.5rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 110px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 12ch;
}

.hero-text {
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.highlight-number {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--accent-deep);
}

.highlight-label {
  display: block;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 680px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.5));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.45);
  overflow: hidden;
}

.visual-frame img {
  width: 100%;
  height: 648px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
}

.visual-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  top: -40px;
  right: -60px;
  background: radial-gradient(circle, rgba(227, 202, 198, 0.85), transparent 70%);
  animation: pulseSoft 6s ease-in-out infinite;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  z-index: 5;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  min-width: 210px;
  max-width: 240px;
  animation: floatBadge 5s ease-in-out infinite;
}

.floating-badge span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.floating-badge strong {
  font-size: 1rem;
  color: var(--text);
}

.badge-top {
  top: 32px;
  left: 24px;
}

.badge-bottom {
  right: 24px;
  bottom: 32px;
  animation-delay: 1.2s;
}

.image-banner-section,
.about-section,
.treatments-section,
.benefits-section,
.reviews-section,
.cta-section {
  padding: 5.5rem 0;
}

.image-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.5));
  border-radius: var(--radius-xl);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.52);
  overflow: hidden;
}

.banner-copy {
  padding: 2rem;
}

.banner-copy p:not(.eyebrow) {
  color: var(--text-soft);
}

.banner-image-wrap {
  position: relative;
  background: linear-gradient(135deg, #efe2dd, #f7efeb);
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}

.banner-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  display: block;
  animation: imageDrift 10s ease-in-out infinite alternate;
}

.about-section {
  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(8px);
}

.lead-text {
  font-size: 1.12rem;
  color: var(--text);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--text-soft);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.treatment-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.58));
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 140, 140, 0.28);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #eddad4, #e3c8c1);
  color: #875f5f;
  font-size: 1.15rem;
}

.treatment-card p {
  color: var(--text-soft);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.card-link:hover {
  text-decoration: underline;
}

.benefits-panel,
.cta-panel {
  background: linear-gradient(140deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.56);
}

.benefits-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.benefits-columns p {
  color: var(--text-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.review-card {
  background: rgba(255,255,255,0.76);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.56);
}

.review-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.3rem;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-meta strong {
  font-size: 0.98rem;
}

.review-meta span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.section-cta,
.center-actions {
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}

.site-footer {
  padding: 4rem 0 1.4rem;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.34);
  backdrop-filter: blur(8px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.9rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--text-soft);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.24s;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(20px, -14px, 0) scale(1.08); }
}

@keyframes pulseSoft {
  0%, 100% { transform: scale(1); opacity: 0.68; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes imageDrift {
  0% { transform: scale(1.03) translateX(0); }
  100% { transform: scale(1.07) translateX(-10px); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .image-banner,
  .benefits-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    max-width: none;
  }

  .visual-frame {
    max-width: 100%;
    min-height: auto;
  }

  .visual-frame img {
    height: 560px;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .desktop-book {
    display: none;
  }

  .hero-highlights,
  .treatment-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .visual-frame img {
    height: 460px;
  }

  .floating-badge {
    position: absolute;
    min-width: 180px;
    max-width: 200px;
    padding: 0.75rem 0.9rem;
  }

  .badge-top {
    top: 20px;
    left: 20px;
  }

  .badge-bottom {
    right: 20px;
    bottom: 20px;
  }

  .banner-copy {
    padding: 1.4rem;
  }

  .benefits-panel,
  .cta-panel {
    padding: 1.4rem;
  }
}

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

  .brand-logo {
    width: 46px;
    height: 46px;
  }

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

  .btn {
    width: 100%;
  }

  .visual-frame img {
    height: 360px;
  }

  .floating-badge {
    min-width: 150px;
    max-width: 170px;
    padding: 0.65rem 0.8rem;
  }

  .floating-badge span {
    font-size: 0.65rem;
  }

  .floating-badge strong {
    font-size: 0.85rem;
  }

  .badge-top {
    top: 14px;
    left: 14px;
  }

  .badge-bottom {
    right: 14px;
    bottom: 14px;
  }
}

/* =========================================
   EXTRA POLISH FOR CONTACT + BOOKING PAGES
   Layout preserved, only improved styling
========================================= */

.inner-hero {
  padding: 6rem 0 3rem;
}

.inner-hero-panel {
  background: linear-gradient(140deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  border-radius: var(--radius-xl);
  padding: 2.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.56);
  text-align: center;
}

.inner-hero-panel p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-soft);
}

.page-section {
  padding: 0 0 5.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.info-card {
  background: rgba(255,255,255,0.78);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.56);
}

.info-card p,
.info-card li {
  color: var(--text-soft);
}

.info-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.form-shell {
  background: linear-gradient(140deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.56);
  margin-top: 2rem;
}

.booking-form,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 1.6rem;
}

.booking-form .full,
.contact-form .full {
  grid-column: 1 / -1;
}

.booking-form div,
.contact-form div {
  display: flex;
  flex-direction: column;
}

.booking-form label,
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(184, 140, 140, 0.25);
  border-radius: 16px;
  padding: 1rem 1rem;
  font: inherit;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  transition: all 0.25s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c6a96b;
  box-shadow: 0 0 0 3px rgba(198,169,107,0.18);
  transform: translateY(-1px);
}

.booking-form textarea,
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.65;
}

.policy-list {
  display: grid;
  gap: 1rem;
}

.policy-item {
  background: rgba(255,255,255,0.78);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.56);
}

.music-player {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow-soft);
  border-radius: 20px;
  padding: 0.8rem 1rem;
  backdrop-filter: blur(12px);
}

.music-player span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.45rem;
}

.music-player audio {
  width: 240px;
  height: 36px;
}

@media (max-width: 860px) {
  .info-grid,
  .booking-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .music-player {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .music-player audio {
    width: 100%;
  }
}