/* ═══════════════════════════════════════════════════════════════════
   MY BODYTIME — STYLE.CSS
   Soft, feminine, beauty-studio aesthetic.
   Warm blush + cream palette. Script accent font. Real imagery.
   ═══════════════════════════════════════════════════════════════════ */

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

/* ── TOKENS ───────────────────────────────────────────────────────── */
:root {
  --c-cream:    #FDFAF6;
  --c-blush:   #F9EDEB;
  --c-blush-2: #F3DCD8;
  --c-rose:    #D49A8E;
  --c-rose-d:  #B47568;
  --c-mauve:   #8B6F6A;
  --c-mocha:   #5C4A42;
  --c-ink:     #3A2E2A;
  --c-mute:    #9A8B85;
  --c-line:    rgba(140, 110, 100, 0.12);
  --c-gold:    #C4A87A;
  --c-white:   #FFFFFF;

  --font-script:  'Dancing Script', cursive;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --fs-base: 16px;
  --fs-lg:   20px;
  --fs-xl:   28px;
  --fs-2xl:  40px;
  --fs-3xl:  56px;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px;
  --space-4: 16px; --space-5: 20px; --space-6: 24px;
  --space-7: 32px; --space-8: 48px; --space-9: 64px; --space-10: 96px;

  --r-sm: 6px;  --r-md: 12px;  --r-lg: 20px;  --r-xl: 28px;
  --shadow:    0 4px 20px rgba(140, 110, 100, 0.08);
  --shadow-lg: 0 12px 40px rgba(140, 110, 100, 0.12);
  --maxw: 1200px;
}

/* ── RESET ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--fs-base); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--c-cream);
  color: var(--c-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: var(--c-mocha); }
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { max-width: 65ch; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-10) 0; }
.label { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-rose); }
.script { font-family: var(--font-script); font-weight: 600; }

/* ── HEADER ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.site-header.scrolled { border-bottom-color: var(--c-line); background: rgba(253, 250, 246, 0.98); }
.header-inner {
  max-width: var(--maxw); margin: 0 auto; height: 72px; padding: 0 var(--space-6);
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo { font-family: var(--font-script); font-size: 28px; font-weight: 700; color: var(--c-rose-d); letter-spacing: -0.02em; }
.header-nav { display: flex; align-items: center; gap: var(--space-6); }
.header-nav a { font-size: var(--fs-base); font-weight: 400; color: var(--c-mocha); transition: color 0.2s; }
.header-nav a:hover, .header-nav a.active { color: var(--c-rose-d); }
.mobile-toggle { display: none; }

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--fs-base); font-weight: 500;
  padding: var(--space-3) var(--space-6);
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--c-rose-d); color: var(--c-white); }
.btn-primary:hover { background: var(--c-rose); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--c-mocha); border: 1px solid var(--c-line); }
.btn-outline:hover { border-color: var(--c-rose); color: var(--c-rose-d); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1eb858; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--c-blush) 0%, var(--c-cream) 100%);
  padding: var(--space-10) 0 var(--space-9);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-8); align-items: center;
}
.hero-text { max-width: 520px; }
.hero-script { font-family: var(--font-script); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; color: var(--c-rose-d); line-height: 1; }
.hero-subtitle { font-family: var(--font-serif); font-size: var(--fs-xl); font-weight: 500; color: var(--c-mocha); margin-top: var(--space-3); font-style: italic; }
.hero-desc { font-size: var(--fs-lg); color: var(--c-mauve); line-height: 1.7; margin-top: var(--space-5); }
.hero-cta { display: flex; gap: var(--space-3); margin-top: var(--space-6); flex-wrap: wrap; }

.hero-image-wrap {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(180, 117, 104, 0.15) 100%);
}

/* Hero info badges */
.hero-badges {
  display: flex; gap: var(--space-4); margin-top: var(--space-6); flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: var(--space-2);
  background: var(--c-white); padding: var(--space-2) var(--space-4);
  border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--c-mocha);
  box-shadow: var(--shadow);
}
.hero-badge-icon { font-size: 18px; }

/* ── SECTION HEADER ───────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--space-8); }
.section-header .label { display: block; margin-bottom: var(--space-2); }
.section-header h2 { font-size: var(--fs-2xl); }
.section-header .script-title { font-family: var(--font-script); font-size: var(--fs-3xl); font-weight: 700; color: var(--c-rose-d); }
.section-header .sub { font-size: var(--fs-lg); color: var(--c-mauve); margin-top: var(--space-3); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── TREATMENTS ───────────────────────────────────────────────────── */
.treatments { background: var(--c-white); }
.treatment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
}
.treatment-card {
  background: var(--c-cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.treatment-img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
}
.treatment-body { padding: var(--space-5) var(--space-6) var(--space-6); }
.treatment-name { font-family: var(--font-serif); font-size: var(--fs-lg); font-weight: 600; color: var(--c-mocha); margin-bottom: var(--space-2); }
.treatment-desc { font-size: 14px; color: var(--c-mauve); line-height: 1.6; margin-bottom: var(--space-4); }
.treatment-prices { list-style: none; }
.treatment-prices li {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-2) 0; font-size: 14px;
  border-bottom: 1px solid var(--c-line);
}
.treatment-prices li:last-child { border-bottom: none; }
.treatment-prices .price { font-weight: 600; color: var(--c-rose-d); font-size: 14px; }

/* Booking card */
.booking-card {
  background: linear-gradient(135deg, var(--c-blush), var(--c-blush-2));
  border-radius: var(--r-lg); padding: var(--space-7);
  text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-4);
}
.booking-card h3 { font-family: var(--font-script); font-size: var(--fs-xl); color: var(--c-rose-d); }
.booking-card p { font-size: 14px; color: var(--c-mauve); text-align: center; }

/* ── ABOUT ────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--space-8); align-items: start; }
.about-img-wrap { position: relative; aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(180, 117, 104, 0.1) 100%); }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-top: var(--space-6); }
.about-stat { text-align: center; }
.about-stat-num { font-family: var(--font-serif); font-size: var(--fs-2xl); font-weight: 700; color: var(--c-rose-d); }
.about-stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute); margin-top: var(--space-1); }
.about-qual-list { list-style: none; margin-top: var(--space-4); }
.about-qual-list li { padding: var(--space-3) 0; border-bottom: 1px solid var(--c-line); display: flex; align-items: flex-start; gap: var(--space-4); font-size: var(--fs-base); color: var(--c-mocha); }
.about-qual-list li:last-child { border-bottom: none; }
.about-qual-date { font-size: 13px; color: var(--c-rose-d); font-weight: 500; white-space: nowrap; flex-shrink: 0; min-width: 100px; }

/* ── REVIEWS ───────────────────────────────────────────────────────── */
.reviews { background: var(--c-blush); }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: var(--space-4); margin-bottom: var(--space-7); }
.reviews-score { font-family: var(--font-serif); font-size: var(--fs-2xl); font-weight: 700; color: var(--c-rose-d); }
.reviews-stars { font-size: var(--fs-lg); color: var(--c-gold); }
.reviews-count { font-size: 14px; color: var(--c-mauve); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.review-card {
  background: var(--c-white); border-radius: var(--r-md);
  padding: var(--space-6); box-shadow: var(--shadow);
}
.review-stars { color: var(--c-gold); font-size: 15px; margin-bottom: var(--space-2); }
.review-text { font-family: var(--font-serif); font-size: var(--fs-lg); font-style: italic; color: var(--c-mocha); line-height: 1.6; margin-bottom: var(--space-3); }
.review-author { font-size: 13px; color: var(--c-mute); }

/* ── CONTACT ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--space-8); align-items: start; }
.contact-info {
  background: var(--c-blush); border-radius: var(--r-lg); padding: var(--space-7);
}
.contact-row { display: flex; align-items: flex-start; gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px solid var(--c-line); }
.contact-row:last-child { border-bottom: none; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute); min-width: 80px; flex-shrink: 0; }
.contact-value { font-size: var(--fs-base); color: var(--c-mocha); }
.contact-value a { color: var(--c-rose-d); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: var(--space-4); }
.hours-table td { padding: var(--space-2) 0; font-size: 14px; border-bottom: 1px solid var(--c-line); }
.hours-table td:first-child { font-weight: 500; color: var(--c-mocha); }
.hours-table td:last-child { text-align: right; color: var(--c-mauve); }
.hours-table .closed { opacity: 0.4; }

.contact-form {
  background: var(--c-white); border-radius: var(--r-lg); padding: var(--space-7);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: var(--space-4); }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-mute); margin-bottom: var(--space-2); display: block; }
.form-input, .form-textarea {
  width: 100%; padding: var(--space-3) var(--space-4);
  border: 1px solid var(--c-line); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: var(--fs-base);
  background: var(--c-cream); color: var(--c-ink);
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--c-rose); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-status { margin-top: var(--space-4); font-size: 14px; padding: var(--space-3) var(--space-4); border-radius: var(--r-sm); display: none; }
.form-status.success { display: block; background: rgba(90, 128, 80, 0.08); color: var(--c-green); border: 1px solid rgba(90, 128, 80, 0.15); }
.form-status.error { display: block; background: rgba(184, 74, 74, 0.08); color: #B84A4A; border: 1px solid rgba(184, 74, 74, 0.15); }

/* ── FOOTER ───────────────────────────────────────────────────────── */
.site-footer { background: var(--c-mocha); color: var(--c-cream); padding: var(--space-8) 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-6); display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: var(--space-6); }
.footer-logo { font-family: var(--font-script); font-size: 28px; font-weight: 700; color: var(--c-blush); margin-bottom: var(--space-2); }
.footer-tagline { font-size: 13px; color: rgba(253, 250, 246, 0.5); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links a { font-size: 14px; color: rgba(253, 250, 246, 0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--c-rose); }
.footer-built { font-size: 11px; color: rgba(253, 250, 246, 0.3); letter-spacing: 0.04em; }

/* ── REVEAL ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { max-width: 400px; margin: 0 auto; aspect-ratio: 4/4; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-toggle {
    display: flex; align-items: center; justify-content: center;
    background: none; border: 1px solid var(--c-line); border-radius: var(--r-sm); padding: 8px; color: var(--c-mocha);
  }
  .mobile-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
  .header-nav.mobile-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--c-cream);
    border-bottom: 1px solid var(--c-line); padding: var(--space-4) var(--space-6); gap: var(--space-4);
  }
  .section { padding: var(--space-8) 0; }
  .treatment-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}