@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Sora:wght@400;500;600;700&display=swap");

:root {
  --bg: #faf6f1;
  --bg-soft: #f0e8e1;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #fffdfa;
  --surface-muted: #f6f0ea;
  --line: rgba(96, 80, 74, 0.12);
  --text: #241e1c;
  --muted: #6e625d;
  --brand: #8f7266;
  --brand-strong: #5f4a42;
  --accent: #d4c0b2;
  --accent-strong: #8e6e64;
  --champagne: #ccb28f;
  --shadow: 0 30px 80px rgba(96, 80, 74, 0.12);
  --shadow-soft: 0 18px 48px rgba(96, 80, 74, 0.09);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 114, 102, 0.16), transparent 32%),
    radial-gradient(circle at right center, rgba(212, 194, 182, 0.18), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 42%, #f4ece5 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

iframe {
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.section {
  padding: 4.75rem 0;
}

.section-top-tight {
  padding-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.9rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

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

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

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

.lead {
  font-size: 1.06rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.92rem 1.45rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(95, 74, 66, 0.18);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(95, 74, 66, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-strong);
  border: 1px solid rgba(95, 74, 66, 0.12);
  box-shadow: var(--shadow-soft);
}

.button-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(95, 74, 66, 0.12);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(96, 80, 74, 0.07);
  backdrop-filter: blur(18px);
  background: rgba(250, 246, 241, 0.82);
}

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

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

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(96, 80, 74, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.desktop-nav a {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  transition: 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--brand-strong);
  background: rgba(143, 114, 102, 0.09);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-book svg,
.text-link svg,
.button svg {
  width: 0.95rem;
  height: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(96, 80, 74, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-strong);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(96, 80, 74, 0.08);
  background: rgba(250, 246, 241, 0.97);
}

.mobile-nav[hidden] {
  display: none !important;
}

[data-nav-shell][data-open="true"] .mobile-nav {
  display: block;
}

.mobile-nav-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.mobile-nav-panel a:not(.button) {
  padding: 0.3rem 0.1rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-shell,
.split-feature,
.about-grid,
.booking-layout,
.contact-grid,
.treatment-detail {
  display: grid;
  gap: 1.4rem;
}

.hero-shell {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy,
.page-hero-card,
.split-copy,
.about-copy,
.booking-copy,
.detail-copy {
  display: grid;
  gap: 1.25rem;
}

.service-badges,
.info-badges,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-badges span,
.info-badges span,
.chip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(96, 80, 74, 0.08);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.chip-link:hover {
  color: var(--brand-strong);
  border-color: rgba(95, 74, 66, 0.18);
}

.hero-visual,
.split-visual,
.about-visual {
  position: relative;
  min-height: 460px;
}

.hero-main-image,
.hero-side-image,
.editorial-card,
.detail-image,
.treatment-card-media,
.gallery-card,
.map-section,
.page-hero-card,
.info-card,
.value-card,
.contact-card,
.practical-panel,
.privacy-card,
.category-block,
.note-card,
.detail-panel,
.booking-frame,
.footer-card,
.instagram-banner {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-main-image,
.editorial-card.large,
.detail-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-main-image {
  height: 100%;
  min-height: 420px;
}

.hero-main-image img,
.hero-side-image img,
.editorial-card img,
.detail-image img,
.treatment-card-media img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-image {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 44%;
  height: 42%;
}

.hero-side-image.top {
  top: -1rem;
  right: -0.6rem;
}

.hero-side-image.bottom {
  bottom: -1rem;
  left: -0.8rem;
}

.hero-floating-card {
  position: absolute;
  left: 10%;
  bottom: 8%;
  width: min(250px, 72%);
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(96, 80, 74, 0.08);
}

.hero-floating-card span {
  display: inline-flex;
  color: var(--brand-strong);
  margin-bottom: 0.45rem;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.section-intro {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.info-grid,
.value-grid,
.treatment-grid,
.gallery-grid,
.footer-grid,
.practical-columns {
  display: grid;
  gap: 1.25rem;
}

.info-grid,
.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.value-card,
.contact-card,
.footer-card,
.category-block,
.privacy-card,
.page-hero-card,
.practical-panel,
.instagram-banner {
  border-radius: var(--radius-xl);
}

.info-card,
.value-card,
.contact-card,
.footer-card {
  padding: 1.5rem;
}

.card-kicker {
  margin-bottom: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.treatment-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.treatment-card-media {
  height: 280px;
  overflow: hidden;
}

.treatment-card-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
}

.meta-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.meta-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(143, 114, 102, 0.08);
  color: var(--brand-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

.split-feature,
.about-grid {
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 2rem;
}

.split-copy p + p,
.about-copy p + p {
  margin-top: 1rem;
}

.editorial-card {
  position: absolute;
  overflow: hidden;
}

.editorial-card.large {
  inset: 0 20% 0 0;
}

.editorial-card.small {
  right: 0;
  bottom: 8%;
  width: 42%;
  height: 48%;
  border-radius: var(--radius-lg);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.instagram-banner,
.map-section,
.practical-panel {
  padding: 1.75rem;
}

.instagram-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.map-section {
  display: grid;
  gap: 1.35rem;
}

.address-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.1rem 0;
}

.address-inline strong {
  display: block;
  margin-bottom: 0.3rem;
}

.map-frame {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  min-height: 360px;
  border: 1px solid rgba(96, 80, 74, 0.08);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.page-hero-card {
  padding: 2rem;
  max-width: 860px;
}

.stacked-sections {
  display: grid;
  gap: 1.5rem;
}

.category-block {
  padding: 1.6rem;
}

.category-heading {
  margin-bottom: 1.35rem;
}

.treatment-detail {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.detail-image {
  min-height: 540px;
}

.detail-copy {
  gap: 1rem;
}

.detail-panel,
.note-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
}

.detail-panel {
  display: grid;
  gap: 0.8rem;
}

.detail-list,
.footer-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li,
.footer-list li {
  position: relative;
  padding-left: 1.2rem;
}

.detail-list li::before,
.footer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-strong);
}

.detail-buttons {
  margin-top: 0.2rem;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.practical-panel {
  display: grid;
  gap: 1.4rem;
}

.practical-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.practical-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(96, 80, 74, 0.08);
}

.practical-card strong {
  display: block;
  margin-bottom: 0.75rem;
}

.booking-layout {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.booking-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.booking-frame iframe {
  width: 100%;
  min-height: 920px;
  background: #fff;
}

.booking-fallback {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(96, 80, 74, 0.08);
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-card img {
  height: 320px;
}

.gallery-card figcaption {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1rem 1.1rem;
}

.privacy-card {
  padding: 1.8rem;
}

.privacy-section + .privacy-section {
  margin-top: 2rem;
}

.privacy-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.privacy-section p + p {
  margin-top: 1rem;
}

.site-footer {
  padding: 0 0 7.5rem;
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
}

.footer-bottom strong {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-credit {
  color: rgba(112, 91, 88, 0.9);
  font-size: 0.75rem;
}

.sticky-book {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 1rem 1.35rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px rgba(95, 74, 66, 0.24);
}

.hide-mobile {
  display: inline-flex;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  [data-nav-shell][data-open="true"] .mobile-nav {
    display: block;
  }

  .desktop-nav,
  .hide-mobile {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-shell,
  .split-feature,
  .about-grid,
  .booking-layout,
  .treatment-detail,
  .contact-grid,
  .info-grid,
  .value-grid,
  .gallery-grid,
  .gallery-grid-compact,
  .footer-grid,
  .practical-columns {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .split-visual,
  .about-visual {
    min-height: 420px;
  }

  .booking-frame iframe {
    min-height: 840px;
  }

  .footer-bottom,
  .address-inline,
  .instagram-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.8rem 0;
  }

  h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-copy small {
    display: none;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-main-image {
    min-height: 340px;
  }

  .hero-side-image {
    width: 46%;
    height: 38%;
  }

  .hero-side-image.top {
    right: -0.2rem;
  }

  .hero-side-image.bottom {
    left: -0.2rem;
  }

  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    width: calc(100% - 2rem);
  }

  .page-hero-card,
  .instagram-banner,
  .practical-panel,
  .category-block,
  .privacy-card {
    padding: 1.4rem;
  }

  .detail-image {
    min-height: 360px;
  }

  .gallery-card img {
    height: 280px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 260px;
  }

  .sticky-book {
    left: 50%;
    right: auto;
    bottom: 0.85rem;
    min-width: 168px;
    padding: 0.82rem 1.15rem;
    font-size: 0.92rem;
    transform: translateX(-50%);
    box-shadow: 0 14px 28px rgba(95, 74, 66, 0.2);
  }

  .site-footer {
    padding-bottom: 6.8rem;
  }
}

/* glowstudiodk polish layer start */
:root {
  --glow-polish-brand: #89706d;
  --glow-polish-accent: #cbb18b;
  --glow-polish-bg: #fbf6f1;
  --glow-polish-line: rgba(73, 53, 49, 0.12);
  --glow-polish-text: #302524;
  --glow-polish-muted: #74615d;
}

body {
  color: var(--glow-polish-text);
  background:
    linear-gradient(180deg, #fffdfb 0%, var(--glow-polish-bg) 48%, #f4ebe4 100%) !important;
}

.site-header {
  border-bottom: 1px solid var(--glow-polish-line) !important;
  background: rgba(255, 251, 247, 0.82) !important;
  backdrop-filter: blur(18px);
  box-shadow: none !important;
}

.header-inner {
  min-height: 86px;
}

.brand-mark {
  border-radius: 50% !important;
  box-shadow: 0 14px 34px rgba(68, 45, 42, 0.13) !important;
}

.desktop-nav a:not(.button),
.desktop-nav a:not(.button):visited {
  border-radius: 999px !important;
  color: rgba(55, 43, 41, 0.82);
}

.desktop-nav a:not(.button):hover,
.desktop-nav a:not(.button).is-active {
  background: rgba(255, 255, 255, 0.86) !important;
  color: var(--brand, var(--glow-polish-brand)) !important;
}

.button,
.button-primary,
.button-nav,
.floating-book,
.sticky-book,
.booking-button {
  border-radius: 999px !important;
  letter-spacing: 0 !important;
  box-shadow: 0 18px 40px rgba(76, 50, 48, 0.16) !important;
}

.button-primary,
.button-nav,
.floating-book,
.sticky-book {
  background: linear-gradient(135deg, var(--brand, var(--glow-polish-brand)), var(--brand-dark, var(--glow-polish-brand))) !important;
  color: #fff !important;
}

.hero-section.glow-polished-hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--glow-hero-image, url("./assets/images/glow-polish-hero.jpg")) !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 0 !important;
}

.hero-section.glow-polished-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(47, 33, 31, 0.66) 0%, rgba(47, 33, 31, 0.42) 48%, rgba(255, 248, 242, 0.18) 100%),
    linear-gradient(0deg, rgba(251, 246, 241, 0.98) 0%, rgba(251, 246, 241, 0) 24%);
  pointer-events: none;
}

.hero-section.glow-polished-hero .hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: inherit;
  display: flex !important;
  align-items: center;
  grid-template-columns: none !important;
}

.hero-section.glow-polished-hero .hero-copy {
  max-width: 790px !important;
  padding: clamp(4rem, 8vw, 7.25rem) 0 clamp(7rem, 10vw, 10rem) !important;
  color: #fff !important;
}

.hero-section.glow-polished-hero .eyebrow,
.hero-section.glow-polished-hero .section-kicker {
  color: rgba(255, 255, 255, 0.92) !important;
  letter-spacing: 0.18em !important;
}

.hero-section.glow-polished-hero .hero-copy h1 {
  max-width: 830px;
  color: #fff !important;
  font-family: "Cormorant Garamond", Fraunces, Georgia, serif !important;
  font-size: clamp(3.3rem, 7vw, 7rem) !important;
  line-height: 0.92 !important;
  letter-spacing: 0 !important;
  margin-bottom: 1.15rem !important;
}

.hero-section.glow-polished-hero .hero-lead,
.hero-section.glow-polished-hero .hero-note,
.hero-section.glow-polished-hero .hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.93) !important;
  font-size: clamp(1rem, 1.5vw, 1.28rem) !important;
  line-height: 1.75 !important;
}

.hero-section.glow-polished-hero .hero-visual,
.hero-section.glow-polished-hero .hero-media,
.hero-section.glow-polished-hero .hero-image,
.hero-section.glow-polished-hero .hero-main-image,
.hero-section.glow-polished-hero .hero-image-frame {
  display: none !important;
}

.hero-section.glow-polished-hero .hero-actions {
  margin-top: 1.65rem !important;
}

.stats-section,
.intro-strip-section {
  margin-top: -4.2rem;
  position: relative;
  z-index: 3;
}

.stats-grid,
.intro-strip,
.proof-grid {
  border-radius: 30px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(73, 53, 49, 0.1) !important;
  box-shadow: 0 26px 78px rgba(64, 42, 38, 0.11) !important;
  backdrop-filter: blur(12px);
}

.section {
  padding-top: clamp(4.5rem, 7vw, 6.4rem) !important;
  padding-bottom: clamp(4.5rem, 7vw, 6.4rem) !important;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(239, 224, 214, 0.48)) !important;
}

.section-heading {
  max-width: 780px !important;
}

.section-heading h2,
.page-hero h1,
.split-copy h2,
.booking-card h2,
.contact-card h2 {
  font-family: "Cormorant Garamond", Fraunces, Georgia, serif !important;
  letter-spacing: 0 !important;
  line-height: 0.98 !important;
}

.section-heading p,
.split-copy p,
.category-card p,
.treatment-card p,
.review-card p,
.booking-card p,
.contact-card p,
.value-card p,
.privacy-card p {
  color: var(--glow-polish-muted) !important;
  line-height: 1.75 !important;
}

.treatment-card,
.category-card,
.review-card,
.booking-card,
.privacy-card,
.contact-card,
.value-card,
.sidebar-card,
.image-card,
.gallery-card,
.stat-card,
.info-card,
.policy-card,
.spotlight-card,
.proof-card {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(73, 53, 49, 0.1) !important;
  box-shadow: 0 18px 50px rgba(64, 42, 38, 0.08) !important;
}

.category-image,
.gallery-card img,
.image-card img,
.treatment-thumb img,
.split-panel img,
.split-media img {
  filter: saturate(0.92) contrast(0.98);
}

.glow-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms ease var(--glow-reveal-delay, 0ms), transform 760ms ease var(--glow-reveal-delay, 0ms);
}

.glow-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-section.glow-polished-hero {
    min-height: 690px;
  }

  .hero-section.glow-polished-hero .hero-copy {
    padding-top: 4.4rem !important;
  }
}

@media (max-width: 640px) {
  .hero-section.glow-polished-hero {
    min-height: 630px;
    background-position: center !important;
  }

  .hero-section.glow-polished-hero::before {
    background:
      linear-gradient(180deg, rgba(47, 33, 31, 0.76) 0%, rgba(47, 33, 31, 0.55) 60%, rgba(251, 246, 241, 0.98) 100%);
  }

  .hero-section.glow-polished-hero .hero-grid {
    width: min(100% - 1.1rem, 1180px);
  }

  .hero-section.glow-polished-hero .hero-copy h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: balance;
    font-size: clamp(2.55rem, 10.6vw, 3.35rem) !important;
    line-height: 0.98 !important;
  }

  .hero-section.glow-polished-hero .hero-lead,
  .hero-section.glow-polished-hero .hero-note,
  .hero-section.glow-polished-hero .hero-copy p {
    font-size: 1rem !important;
  }

  .hero-section.glow-polished-hero .hero-actions {
    display: none !important;
  }

  .stats-section,
  .intro-strip-section {
    margin-top: -3.1rem;
  }

  .floating-book,
  .sticky-book {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 0.8rem !important;
    min-height: 48px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* glowstudiodk polish layer end */
