:root {
  --gold: #C9A84C;
  --gold-light: #e2c170;
  --navy: #2C3E63;
  --navy-dark: #1a2640;
  --cream: #FAF6EE;
  --cream-dark: #F0E8D8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--cream);
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  right: -300px;
  top: 150px;
  width: min(86vw, 1320px);
  height: min(116vh, 1540px);
  background: url("Images/%E2%80%94Pngtree%E2%80%94lotus_4365057.png") no-repeat center / contain;
  opacity: 0.08;
  transform: rotate(-26deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 2;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 48px;
  height: 80px;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

nav.scrolled {
  background: rgba(26, 38, 64, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3);
}

nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
  color: var(--gold-light);
}

.nav-logo {
  position: absolute;
  left: 48px;
  top: 50%;
  height: 52px;
  opacity: var(--nav-logo-opacity, 0);
  transform: translateY(calc(-50% + var(--nav-logo-shift, 12px))) scale(var(--nav-logo-scale, 0.82));
  transform-origin: left center;
  transition: opacity 0.3s ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
  position: relative;
  z-index: 1;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 38, 64, 0.95);
  text-decoration: none;
  position: relative;
  padding: 12px 0 10px;
  transition: color 0.3s;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-cta {
  margin-left: 36px;
  position: relative;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

nav.scrolled .nav-cta {
  opacity: 1;
  pointer-events: auto;
}

.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 10px 22px;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-cta a:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.nav-cta a svg {
  opacity: 0.8;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.nav-cta a:hover svg {
  opacity: 1;
}

/* HERO */
.hero {
  height: 100vh;
  background-color: #F8F2E8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 52%, rgba(201, 168, 76, 0.08) 0%, transparent 62%),
    radial-gradient(ellipse 130% 130% at 50% 50%, transparent 48%, rgba(100, 90, 75, 0.04) 100%);
  pointer-events: none;
}

.hero-logo-wrap {
  opacity: 0;
  transform: translateY(20px);
  text-align: center;
  animation: fadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-brand {
  opacity: var(--hero-brand-opacity, 1);
  transform: translateY(var(--hero-brand-shift, 0px)) scale(var(--hero-brand-scale, 1));
  transform-origin: center top;
  will-change: transform, opacity;
}

.hero-logo {
  width: min(640px, 88vw);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.15));
}

.hero-tagline {
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 1.95vw, 24px);
  color: rgba(44, 62, 99, 0.82);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1.4s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards, bobble 2s 2.4s ease-in-out infinite;
}

.scroll-hint span {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(44, 62, 99, 0.72);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.75), transparent);
}

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

@keyframes bobble {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* TRANSITION */
.transition-band {
  height: 0;
}

/* SHARED */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.3vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 26px;
}

/* ABOUT */
#about {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 400;
  line-height: 1.95;
  color: #444;
  margin-bottom: 20px;
}

.about-placeholder {
  min-height: 420px;
  border-radius: 4px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: url("Images/massagephoto1.avif") center / cover no-repeat;
  border: 1px solid rgba(44, 62, 99, 0.08);
  box-shadow: 0 18px 42px rgba(26, 38, 64, 0.18);
}

.about-placeholder::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

/* VALUES */
.values {
  background: var(--navy-dark);
  padding: 80px 0;
}

.values-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.value-item {
  background: rgba(26, 38, 64, 0.96);
  padding: 50px 40px;
  text-align: center;
  transition: background 0.3s;
}

.value-item:hover {
  background: rgba(30, 46, 77, 0.99);
}

.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: block;
  object-fit: contain;
  opacity: 0.9;
  mix-blend-mode: lighten;
}

.value-item h3 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.value-item p {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.9;
}

/* SERVICES */
#services {
  padding: 96px 0;
  background: var(--cream);
}

.services-intro {
  max-width: 580px;
  margin-bottom: 56px;
  position: relative;
  z-index: 3;
}

.services-intro p {
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  color: #555;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}

.service-card {
  position: relative;
  z-index: 3;
  background: white;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 56px rgba(44, 62, 99, 0.11);
}

.service-card-img {
  height: 150px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-body {
  padding: 28px 24px;
}

.service-card-body h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.09em;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.service-card-body span {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.service-card-body p {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #666;
}

/* LOCATION */
#location {
  background: var(--navy-dark);
  padding: 96px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-info .section-title {
  color: white;
}

.info-block {
  margin-bottom: 30px;
}

.info-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.info-label svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.info-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.95;
}

.info-text a {
  color: var(--gold-light);
  text-decoration: none;
}

.info-muted {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.34);
}

.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.map-caption {
  margin-top: 13px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  text-transform: uppercase;
}

/* FOOTER */
footer {
  background: #111318;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: 40px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

footer p {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.24);
}

footer address {
  font-style: normal;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.85;
  text-align: right;
}

footer address a {
  color: var(--gold);
  text-decoration: none;
}

/* HERO CTA */
.hero-cta {
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 1.4s 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-dark);
  text-decoration: none;
  border: 1px solid rgba(44, 62, 99, 0.55);
  padding: 15px 40px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-cta a:hover {
  background: var(--navy-dark);
  color: var(--gold-light);
  border-color: var(--navy-dark);
}

.hero-cta a svg {
  opacity: 0.65;
  transition: opacity 0.3s;
}

.hero-cta a:hover svg {
  opacity: 1;
}

/* MOBILE STICKY CTA */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--gold);
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0a0a0a;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .mobile-cta-bar.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-cta-bar svg {
    flex-shrink: 0;
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* MOBILE */
@media (max-width: 768px) {
  body::after {
    right: -180px;
    top: 210px;
    width: min(102vw, 620px);
    height: 82vh;
    opacity: 0.06;
  }

  nav {
    padding: 10px 16px;
    min-height: 0;
    height: 60px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

  nav.scrolled {
    padding: 64px 16px 12px;
    min-height: 0;
    height: auto;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    margin-left: 0;
    padding-left: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  nav:not(.scrolled) .nav-links {
    margin-top: 8px;
  }

  .nav-links a {
    font-size: 17px;
    letter-spacing: 0.06em;
    padding: 13px 0 8px;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    top: 12px;
    height: 40px;
    transform: translateX(-50%) translateY(var(--nav-logo-shift, 12px)) scale(var(--nav-logo-scale, 0.82));
    transform-origin: center center;
  }

  .nav-cta {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .values-inner,
  .service-cards {
    grid-template-columns: 1fr;
  }

  #about,
  #services,
  #location {
    padding: 68px 0;
  }

  .hero-logo {
    width: min(700px, 92vw);
  }

  .hero-tagline {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .about-text p,
  .value-item p,
  .services-intro p,
  .service-card-body p,
  .info-text {
    font-size: 16px;
    line-height: 1.9;
  }

  .service-card-body h4 {
    font-size: 14px;
  }

  .service-card-body span,
  .map-caption,
  footer p {
    font-size: 12px;
  }

  .info-label {
    font-size: 11px;
  }

  .footer-logo {
    height: 42px;
  }

  footer address {
    font-size: 13px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding-bottom: 72px;
  }

  footer address {
    text-align: center;
  }
}
