/* ============================================
   UNWIND SANUR SPA — Premium Redesign
   Aesthetic: Bali Luxury Editorial
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* === VARIABLES === */
:root {
  --deep-teal: #0a3d40;
  --teal: #009999;
  --teal-light: #03cccc;
  --sand: #f5ede0;
  --sand-dark: #e8d9c4;
  --cream: #fdfcfa;
  --dark: #0d0d0d;
  --charcoal: #1c1c1c;
  --text-muted: #7a7a6e;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Jost', sans-serif;
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-padding {
  padding: 7rem 0;
}

/* === GRAIN OVERLAY === */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* === TYPOGRAPHY UTILITIES === */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  color: var(--deep-teal);
}

.section-title em {
  font-style: italic;
  color: #00b6b6;
}

p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--deep-teal);
  color: var(--sand);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--deep-teal);
  cursor: pointer;
  transition: var(--transition);
}


.btn-primary:hover {
  background: var(--sand);
  color: var(--deep-teal);
  border-color: var(--sand);
}

.btn-primary svg,
.btn-primary .wa-icon,
.btn-primary .wa-icon svg {
  display: inline-flex;
  align-items: center;
  align-self: center;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  top: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--deep-teal);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--deep-teal);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1.2rem;
}

.btn-outline:hover {
  background: var(--deep-teal);
  color: var(--sand);
}

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: var(--transition);
  mix-blend-mode: normal;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: var(--transition);
}

nav.scrolled {
  padding: 1rem 0;
  background: var(--cream);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(15, 139, 149, 0.12);
}

nav.scrolled .logo-img {
  content: url('images/logo-unwind-dark-turquoise.png');
}

nav.scrolled .nav-links a {
  color: var(--charcoal);
}

nav.scrolled .hamburger span {
  background: var(--deep-teal);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo-img {
  height: 38px;
  width: auto;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--white);
}

nav.scrolled .nav-links a {
  color: var(--text-muted);
}

nav.scrolled .nav-links a:hover {
  color: var(--deep-teal);
}

nav.scrolled .nav-links a.active {
  color: var(--deep-teal);
  font-weight: 500;
}

nav.scrolled .btn-primary {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  padding: 0.75rem 1.5rem;
  gap: 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 2px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

nav.scrolled .btn-primary:hover {
  background: #128c3e;
  border-color: #128c3e;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation: none;
}

nav.scrolled .btn-primary .wa-icon {
  display: inline-flex;
  flex-shrink: 0;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  60%       { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--deep-teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.mobile-nav a:hover::after {
  width: 100%;
}

.mobile-nav .mobile-book {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--sand);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 2.5rem;
  margin-top: 1rem;
  border-radius: 0;
}

.mobile-nav .mobile-book::after {
  display: none;
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: var(--deep-teal);
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  will-change: transform;
}

.layer-bg {
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
}

.hero-video.active {
  opacity: 1;
  z-index: 1;
}

.hero-video.fade-in {
  opacity: 1;
  z-index: 2;
  transition: opacity 1.5s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(10, 61, 64, 0.55) 0%,
      rgba(10, 61, 64, 0.3) 50%,
      rgba(10, 61, 64, 0.7) 100%);
  z-index: 4;
}

/* Decorative corner lines */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  padding: 0 2rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6), 0 2px 5px rgba(0, 0, 0, 0.4);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-light);
  opacity: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.8rem;
  color: var(--white);
  animation: fadeUp 1s ease 0.5s both;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgb(255, 255, 255);
  letter-spacing: 1.5px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-cta {
  animation: fadeUp 1s ease 0.9s both;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUpCenter 1.2s ease 1.2s both;
}

.scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-right: -3px;
  /* Kompensasi untuk letter-spacing agar benar-benar di tengah */
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* === ABOUT SECTION === */
.about {
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 139, 149, 0.06), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about-text {
  padding: 5rem 5rem 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.6;
  padding: 1.5rem 2rem; /* Padding full agar background rapi */
  background: #ffffff;  /* ✅ Background putih */
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04); /* Soft shadow untuk kesan luxury */
  border-radius: 2px;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1.5rem;
  background: var(--deep-teal);
  color: var(--sand);
  padding: 1.5rem 2rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  max-width: 220px;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.stat-item {}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--deep-teal);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* === TREATMENTS SECTION === */
.treatments {
  background: var(--deep-teal);
  position: relative;
  overflow: hidden;
}

.treatments::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(15, 139, 149, 0.3), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.1), transparent 50%);
  pointer-events: none;
}

.treatments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.treatments-image {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.treatments-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.treatments-image:hover img {
  transform: scale(1.03);
  filter: brightness(0.9) saturate(1.1);
}

.treatments-text {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treatments-text .section-label {
  color: var(--gold);
}

.treatments-text .section-label::before {
  background: var(--gold);
}

.treatments-text .section-title {
  color: var(--sand);
}

.treatments-text p {
  color: rgba(245, 237, 224, 0.7);
  text-align: justify;
}

.treatment-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

.treatment-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.feature-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.7);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.treatments-text .btn-outline {
  color: var(--sand);
  border-color: rgba(245, 237, 224, 0.4);
  width: fit-content;
  margin-top: 0;
}

.treatments-text .btn-outline:hover {
  background: var(--sand);
  color: var(--deep-teal);
  border-color: var(--sand);
}

/* === TREATMENT MENU === */
.menu-section {
  background: var(--deep-teal);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient light — same language as Treatments & Contact sections */
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(15, 139, 149, 0.28), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(201, 169, 110, 0.10), transparent 50%);
  pointer-events: none;
}

.menu-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

/* Tier 3 — smallest, gold, spaced caps */
.menu-header-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.menu-header-eyebrow::before,
.menu-header-eyebrow::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

/* Tier 1 — largest, sand/white, serif */
.menu-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

/* Tier 4 — muted sand, body copy */
.menu-header p {
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.7);
  max-width: 480px;
  margin: 0 auto;
}

.menu-wrapper {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.menu-category-block {
  margin-bottom: 3.5rem;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Dividers — gold tinted on dark background */
.menu-category-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.35));
}

.menu-category-divider:first-child {
  background: linear-gradient(to left, transparent, rgba(201, 169, 110, 0.35));
}

/* Tier 2 — category label: gold italic serif */
.menu-category {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 2px;
  white-space: nowrap;
  margin: 0;
}

.menu-combo-note {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.7);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.menu-list {
  display: flex;
  flex-direction: column;
}

/* Clean 2-column layout: name/desc left · pricing right */
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(245, 237, 224, 0.1);
  position: relative;
}

/* Gold underline on hover */
.menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-item:hover::before {
  width: 100%;
}

.menu-item-top {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-item:hover .menu-item-top {
  transform: translateX(0.6rem);
}

/* Tier 2a — treatment name: bright sand, medium weight */
.menu-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Intensity tag — soft teal italic, subordinate to name */
.menu-intensity {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--teal-light);
  font-weight: 500;
}

/* Tier 4 — description: muted, smallest readable */
.menu-desc {
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.7);
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

.menu-desc em {
  font-style: italic;
  color: rgb(199 180 130);
}

/* Pricing: right-aligned stacked rows */
.menu-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
  min-width: 170px;
  padding-top: 2px;
}

.menu-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  justify-content: flex-end;
}

/* Duration label — teal-light, subtle caps */
.menu-dur {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 400;
  white-space: nowrap;
  opacity: 0.8;
}

/* Price — gold, serif, most prominent in pricing column */
.menu-combo-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1.2;
}

.menu-strike {
  text-decoration: line-through;
  color: rgba(245, 237, 224, 0.25);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  font-weight: 300;
  white-space: nowrap;
}

.menu-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 237, 224, 0.1);
}

.menu-footer p {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 300;
  margin: 0;
}

/* === CONTACT SECTION === */
.contact {
  background: var(--deep-teal);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(15, 139, 149, 0.4), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(201, 169, 110, 0.15), transparent 50%);
  pointer-events: none;
}

.contact-header {
  text-align: center;
  padding-top: 5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.contact-header .section-label {
  justify-content: center;
  color: var(--gold-light);
}

.contact-header .section-label::before {
  background: var(--gold-light);
}

.contact-header .section-title {
  color: var(--sand);
}

.contact-header p {
  color: rgba(245, 237, 224, 0.6);
  max-width: 480px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  margin-bottom: 5rem;
}

.contact-info {
  padding: 3.5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  border-right: 1px solid rgba(10, 61, 64, 0.06);
}

.contact-item h3 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-item h3 svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.contact-item p {
  font-size: 0.92rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.7;
  font-weight: 300;
}

.social-section h3 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 61, 64, 0.15);
  color: var(--text-muted);
  background: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--sand);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 61, 64, 0.2);
}

.social-icons a svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-info .btn-primary {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  width: fit-content;
  font-size: 0.65rem;
  gap: 0.6rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  animation: wa-pulse-contact 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.contact-info .btn-primary:hover {
  background: #128c3e;
  border-color: #128c3e;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  animation: none;
}

.contact-info .btn-primary .wa-icon {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
}

.contact-info .btn-primary svg {
  display: block;
  align-self: center;
  flex-shrink: 0;
}

@keyframes wa-pulse-contact {
  0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35); }
  60%       { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35), 0 0 0 7px rgba(37, 211, 102, 0); }
}

.contact-map {
  position: relative;
  min-height: 480px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  color: var(--text-muted);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 1px;
  margin: 0 0 0.25rem 0;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

.footer-copy a {
  color: #42FDFE;
  opacity: 0.8;
}

.footer-copy a:hover {
  opacity: 1;
}

.footer-crafted {
  font-size: 0.68rem;
  letter-spacing: 1px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
}

.footer-crafted a {
  color: #42FDFE;
  opacity: 0.8;
  text-decoration: none;
}

.footer-crafted a:hover {
  opacity: 1;
}

/* === SCROLL TO TOP === */
.scroll-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  background: var(--deep-teal);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(15, 139, 149, 0.3);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpCenter {
  from {
    opacity: 0;
    transform: translate(-50%, 25px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-text {
    padding: 4rem 3rem 4rem 0;
  }

  .treatments-text {
    padding: 4rem;
  }

  .contact-header {
    padding-top: 4rem;
  }

  .contact-wrapper {
    margin-bottom: 4rem;
  }
}

@media (max-width: 900px) {

  .about-grid,
  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding: 3rem;
    order: 2;
  }

  .about-image {
    min-height: 420px;
    order: 1;
  }

  .about-image-badge {
    left: 1rem;
    bottom: 1.5rem;
  }

  .about-stats {
    gap: 2rem;
  }

  .treatments-image {
    min-height: 400px;
    order: 1;
  }

  .treatments-text {
    padding: 3rem;
    order: 2;
  }

  .contact-header {
    padding-top: 3rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .contact-info {
    border-right: none;
    border-bottom: 1px solid rgba(10, 61, 64, 0.06);
    padding: 2.5rem;
  }

  .contact-map {
    min-height: 350px;
  }

  .contact-map iframe {
    min-height: 350px;
  }

  nav.scrolled .btn-primary {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-inner {
    justify-content: center;
  }

  .footer-logo-img {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.5rem;
  }

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

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item-right {
    text-align: left;
    grid-column: 1;
    margin-top: 0.6rem;
  }

  .menu-combo-row {
    justify-content: flex-start;
    gap: 1rem;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}