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

:root {
  --teal:       #4e8080;
  --teal-dark:  #3a6262;
  --cream:      #fdf8f2;
  --warm-white: #faf6ef;
  --gold:       #c9955a;
  --gold-light: #e8c49a;
  --text:       #2c2c2c;
  --text-light: #6b6b6b;
  --border:     #e8e0d5;
  --section-bg: #f4ede4;

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

  --container: 1160px;
  --radius: 4px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.center { text-align: center; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-outline,
.btn-outline-light,
.btn-nav {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-primary.large,
.btn-outline-light.large {
  padding: 17px 40px;
  font-size: 0.85rem;
}

.btn-nav {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
  padding: 10px 24px;
  font-size: 0.78rem;
}
.btn-nav:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* ===========================
   HEADER
   =========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 20px 0;
}

#header.scrolled {
  background: rgba(253, 248, 242, 0.97);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  transition: color var(--transition);
}

.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

#header.scrolled .logo-name { color: var(--text); }
#header.scrolled .logo-sub  { color: var(--text-light); }

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a:not(.btn-nav) {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}

nav a:not(.btn-nav):hover { color: #fff; }

#header.scrolled nav a:not(.btn-nav) { color: var(--text-light); }
#header.scrolled nav a:not(.btn-nav):hover { color: var(--teal); }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

#header.scrolled .hamburger span { background: var(--text); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--teal); }

.btn-mobile-book {
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  background: var(--teal);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: var(--radius);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #3a6262;
  background-image:
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.6' opacity='0.08'%3E%3Cellipse cx='60' cy='20' rx='6' ry='3' transform='rotate(-20 60 20)'/%3E%3Cellipse cx='40' cy='35' rx='5' ry='2.5' transform='rotate(15 40 35)'/%3E%3Cellipse cx='80' cy='35' rx='5' ry='2.5' transform='rotate(-15 80 35)'/%3E%3Cpath d='M60 12 C60 30 58 50 60 70' stroke-linecap='round'/%3E%3Cpath d='M60 35 C50 28 40 30 35 32' stroke-linecap='round'/%3E%3Cpath d='M60 35 C70 28 80 30 85 32' stroke-linecap='round'/%3E%3Ccircle cx='20' cy='80' r='2'/%3E%3Ccircle cx='100' cy='60' r='1.5'/%3E%3Ccircle cx='15' cy='40' r='1'/%3E%3Ccircle cx='105' cy='100' r='1'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(160deg, #3a6262 0%, #4e8080 45%, #5c8c7a 75%, #6b9e8a 100%);
  background-size: 120px 120px, cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 100px 24px 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 8px;
}

.hero-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-ctas .btn-primary:hover {
  background: #b8843e;
  border-color: #b8843e;
}

.hero-ctas .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

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

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

.about-text h2 {
  color: var(--text);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-text p strong { color: var(--text); font-weight: 500; }

.about-text .btn-primary { margin-top: 12px; }

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.about-img-wrap {
  position: relative;
  display: inline-block;
}

.about-photo {
  width: 340px;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 32px rgba(78, 128, 128, 0.4);
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1;
}

.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  max-width: 90px;
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--section-bg);
}

.services h2 {
  margin-bottom: 16px;
}

.services-intro {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform var(--transition);
}

.service-icon-wrap svg {
  width: 40px;
  height: 40px;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

/* Per-card gradient backgrounds */
.card-relaxation {
  background: linear-gradient(145deg, #ffffff 0%, #eef6f6 100%);
  border-color: #cde0e0;
}
.card-relaxation .service-icon-wrap { background: rgba(78,128,128,0.1); color: var(--teal); }

.card-cupping {
  background: linear-gradient(145deg, #ffffff 0%, #fdf3ea 100%);
  border-color: #f0dcc8;
}
.card-cupping .service-icon-wrap { background: rgba(201,149,90,0.12); color: var(--gold); }

.card-hotstone {
  background: linear-gradient(145deg, #ffffff 0%, #f5f0eb 100%);
  border-color: #e5d9cc;
}
.card-hotstone .service-icon-wrap { background: rgba(92,80,68,0.1); color: #7a6355; }

.card-lymphatic {
  background: linear-gradient(145deg, #ffffff 0%, #edf4f2 100%);
  border-color: #c8deda;
}
.card-lymphatic .service-icon-wrap { background: rgba(58,98,98,0.1); color: var(--teal-dark); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===========================
   WHY SECTION
   =========================== */
.why {
  background: var(--cream);
}

.why h2.center { margin-bottom: 56px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.why-item {
  border-top: 2px solid var(--border);
  padding-top: 28px;
}

.why-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}

.why-item h4 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===========================
   LOCATION
   =========================== */
.location {
  background: var(--section-bg);
}

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

.location-info h2 {
  margin-bottom: 16px;
}

.location-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.location-info p strong { color: var(--text); font-weight: 500; }

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.location-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text-light);
}

.loc-icon {
  color: var(--teal);
  font-size: 0.5rem;
  margin-top: 9px;
  flex-shrink: 0;
}

.location-list a {
  color: var(--teal);
  font-weight: 500;
}
.location-list a:hover { text-decoration: underline; }

.hours-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 28px;
}

.hours-block h4 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-sans);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #5c8c7a 100%);
  padding: 112px 0;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-buttons .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
}
.cta-buttons .btn-primary:hover {
  background: #b8843e;
  border-color: #b8843e;
}

.social-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.social-links a:hover { color: #fff; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #1e2c2c;
  padding: 40px 0;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}

.footer-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

.footer-address a {
  color: rgba(255,255,255,0.6);
}
.footer-address a:hover { color: #fff; }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { width: 120px; height: 120px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  nav { display: none; }

  .hamburger { display: flex; }

  .mobile-nav { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-wrap { height: 300px; }

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

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

  .social-links { flex-direction: column; align-items: center; gap: 20px; }

  .footer-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}
