/* ===========================
   ELITE HEAD SPA — Stylesheet
   Colors: Navy #0A1628 | Gold #C9A227 | White #FFFFFF
   =========================== */

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

:root {
  --navy:      #0A1628;
  --navy-mid:  #0F2040;
  --navy-light:#152847;
  --gold:      #C9A227;
  --gold-light:#E2C04A;
  --white:     #FFFFFF;
  --off-white: #F8F6F2;
  --gray:      #888888;
  --gray-light:#CCCCCC;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  font-size: 16px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.center { text-align: center; }
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }
.section-title em { color: var(--gold); font-style: italic; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-elite {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.logo-headspa {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.05) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(15,32,64,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 40px 24px;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-location {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* Gold divider line accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.about-text .btn { margin-top: 12px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.feature-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  padding: 100px 0;
  background: var(--navy);
}
.services .section-title { color: var(--white); margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(201,162,39,0.15);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card.featured {
  border-color: var(--gold);
  background: var(--navy-mid);
}
.service-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.service-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,162,39,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-duration {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: 100px 0;
  background: var(--off-white);
}
.pricing-table {
  max-width: 780px;
  margin: 0 auto 32px;
  border: 1px solid rgba(201,162,39,0.2);
  background: var(--white);
  box-shadow: var(--shadow);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 120px 100px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: center;
  transition: background var(--transition);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.header {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-row:not(.header):not(.addon):hover { background: rgba(201,162,39,0.05); }
.pricing-row.highlight { background: rgba(201,162,39,0.06); }
.pricing-row.addon {
  background: rgba(0,0,0,0.02);
  font-size: 0.92rem;
  color: var(--gray);
}
.pricing-row.membership {
  background: var(--navy);
  color: var(--white);
}
.pricing-row.membership .price { color: var(--gold); }
.price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}
.price small { font-size: 0.7rem; font-weight: 400; }
.popular-tag {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: middle;
}
.pricing-divider { height: 1px; background: var(--gold); opacity: 0.2; }
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 32px;
}
.pricing-cta { text-align: center; }

/* ===========================
   BOOKING SECTION
   =========================== */
.booking-section {
  position: relative;
  padding: 100px 0;
  background: var(--navy-mid);
  overflow: hidden;
}
.booking-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.05) 0%, transparent 60%);
}
.booking-section .container { position: relative; z-index: 2; }
.booking-sub {
  text-align: center;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 60px;
  font-size: 1.02rem;
}
.booking-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.booking-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}
.booking-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
}
.booking-icon { font-size: 2rem; margin-bottom: 16px; }
.booking-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.booking-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 2px;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===========================
   LOCATION
   =========================== */
.location {
  padding: 100px 0;
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.info-block { margin-bottom: 28px; }
.info-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.info-block p, .info-block a {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}
.info-block a:hover { color: var(--gold); }
.hours-table { border-collapse: collapse; }
.hours-table td { padding: 3px 20px 3px 0; color: #555; font-size: 0.95rem; }
.hours-table td:first-child { font-weight: 600; color: var(--navy); min-width: 160px; }
.location-map iframe {
  width: 100%;
  height: 440px;
  border: none;
  box-shadow: var(--shadow);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #050D1A;
  padding: 70px 0 0;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.88rem; line-height: 1.8; max-width: 300px; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  transition: var(--transition);
  border-radius: 2px;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { background: rgba(10,22,40,0.95); }
  .services-grid { grid-template-columns: 1fr; }
  .booking-options { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-row { grid-template-columns: 1fr 90px 80px; padding: 14px 16px; font-size: 0.88rem; }
  .hero-title { font-size: 3rem; }
  .hero-scroll { display: none; }
}
