/* =====================================================
   LAW & HARMONY MASSAGE — STYLES
   ===================================================== */

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

:root {
  --navy:       #030B22;
  --navy-mid:   #0D1F4A;
  --navy-light: #14355E;
  --purple:     #9476FF;
  --purple-dim: #6B52CC;
  --cyan:       #80DDFF;
  --cyan-light: #DFF1F9;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --text:       #1A1A2E;
  --text-light: #5A6480;
  --border:     rgba(148, 118, 255, 0.15);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(3, 11, 34, 0.12);
  --shadow-lg: 0 12px 48px rgba(3, 11, 34, 0.18);

  --nav-h: 72px;
  --section-pad: clamp(5rem, 10vw, 8rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; }

h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; }
h1 em { font-style: italic; color: var(--cyan); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- LAYOUT --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.section-eyebrow.light { color: var(--cyan); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-dim);
  border-color: var(--purple-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(148, 118, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-nav {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
}
.btn-nav:hover {
  background: var(--purple-dim);
  border-color: var(--purple-dim);
}

/* --- NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(3, 11, 34, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(148, 118, 255, 0.2);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn { margin: 1rem 1.5rem 1.5rem; }

.nav-mobile.open { display: flex; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(148, 118, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(128, 221, 255, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #1A0A3A 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(148,118,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* --- SERVICES --- */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(148, 118, 255, 0.4);
}

.service-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.service-card h3 { margin-bottom: 0; }

.service-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}

.service-prices span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  white-space: nowrap;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple);
  transition: color 0.2s;
}
.service-link:hover { color: var(--purple-dim); }

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- HEROES --- */
.heroes {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1A0A3A 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.heroes::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(148,118,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.heroes-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.heroes-text .section-eyebrow { color: var(--cyan); }
.heroes-text h2 { color: var(--white); margin-bottom: 1.25rem; }

.heroes-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
}

.heroes-text p { color: rgba(255,255,255,0.7); }
.heroes-text strong { color: var(--white); }

.heroes-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.heroes-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
}

.heroes-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.heroes-badge {
  flex-shrink: 0;
}

.badge-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(128, 221, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(148,118,255,0.2) 0%, transparent 70%);
  box-shadow:
    0 0 0 8px rgba(128,221,255,0.05),
    0 0 40px rgba(148,118,255,0.2);
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
}

.badge-free {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.badge-first {
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.badge-for {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- ABOUT --- */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-placeholder {
  aspect-ratio: 3/4;
  max-width: 360px;
  background: linear-gradient(145deg, var(--cyan-light), var(--off-white));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.about-image-placeholder span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy-light);
}

.about-text .section-eyebrow { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 0.25rem; }

.about-lead {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.about-text p { color: var(--text-light); line-height: 1.75; }

.about-text .btn { margin-top: 0.5rem; }

/* --- REVIEWS --- */
.reviews { background: var(--off-white); }

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

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-card-top .stars { margin-bottom: 0; }

.google-g {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.review-card:hover .google-g { opacity: 1; }

.review-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(148,118,255,0.12);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.stars {
  color: #F5B800;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
}

.reviewer {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- BOOKING --- */
.booking {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-text .section-eyebrow { color: var(--cyan); }
.booking-text h2 { color: var(--white); margin-bottom: 1rem; }
.booking-text p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

.booking-widget-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-widget-placeholder {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.booking-widget-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 0; }
.booking-widget-placeholder small { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* --- LOCATION --- */
.location { background: var(--white); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-info h2 { margin-bottom: 2rem; }

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-block p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.location-block a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.location-block a:hover { color: var(--purple-dim); }

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.footer-logo span { color: var(--cyan); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .heroes-inner { grid-template-columns: 1fr; gap: 3rem; }
  .heroes-badge { display: flex; justify-content: center; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-placeholder { max-width: 100%; aspect-ratio: 4/3; }
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-book { display: flex; justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
  .site-header { height: auto; position: sticky; background: var(--navy); }
  .site-header.scrolled { background: var(--navy); }
  .hero { min-height: calc(100svh - 56px); }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .badge-ring { width: 160px; height: 160px; }
  .badge-free { font-size: 2.5rem; }
}
