/* ── VARIABLES ──────────────────────────────────────────────────────────────── */
:root {
  --cream:           #F5F0E8;
  --warm-white:      #FDFAF5;
  --terracotta:      #C4714A;
  --terracotta-dark: #A85A36;
  --terracotta-light:#E8B498;
  --sage:            #7A9E8C;
  --sage-dark:       #5C7A6A;
  --sage-light:      #B0C9BC;
  --stone:           #8C7B6B;
  --brown:           #4A2E1E;
  --dark:            #1E1008;
  --text:            #3D2B1F;
  --text-light:      #7A6858;
}

/* ── BASE ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--warm-white); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; }
img { max-width: 100%; }
a { text-decoration: none; }

/* ── STICKY MOBILE BOOK NOW ──────────────────────────────────────────────────── */
.sticky-book { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; padding: 0.75rem 1rem; background: rgba(30,16,8,0.97); backdrop-filter: blur(6px); border-top: 1px solid rgba(196,113,74,0.3); }
.sticky-book-btn { display: flex; align-items: center; justify-content: center; width: 100%; background: var(--terracotta); color: var(--cream) !important; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem; border-radius: 0; transition: background 0.3s; }
.sticky-book-btn:hover { background: var(--terracotta-dark); }

/* Add bottom padding on mobile so sticky bar doesn't cover content */
@media (max-width: 991px) { body { padding-bottom: 68px; } }

/* ── NAVIGATION ─────────────────────────────────────────────────────────────── */
#mainNav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.4rem 0; transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease; }
#mainNav.scrolled { background: #89898980; padding: 0.65rem 0; box-shadow: 0 2px 24px rgba(30,16,8,0.1); }

.nav-logo { height: 44px; transition: height 0.4s; }
#mainNav.scrolled .nav-logo { height: 36px; }
.navbar-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; font-weight: 400; color: var(--cream); letter-spacing: 0.02em; transition: color 0.4s; }
#mainNav.scrolled .navbar-brand-text { color: var(--dark); }

.nav-link { font-family: 'Nunito', sans-serif !important; font-size: 0.78rem !important; font-weight: 700 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; color: rgba(245,240,232,0.9) !important; padding: 0.4rem 0.9rem !important; transition: color 0.3s !important; }
#mainNav.scrolled .nav-link { color: var(--text) !important; }
.nav-link:hover { color: var(--terracotta) !important; }

.navbar-toggler { border: 1px solid rgba(245,240,232,0.4) !important; padding: 0.3rem 0.6rem; background: none !important; box-shadow: none !important; }
#mainNav.scrolled .navbar-toggler { border-color: var(--stone) !important; }
#mainNav .bi-list { color: var(--cream); }
#mainNav.scrolled .bi-list { color: #ffffff; }

@media (max-width: 991px) {
  .navbar-collapse { background: var(--cream); padding: 1rem 1.5rem; margin-top: 0.5rem; border-top: 2px solid var(--terracotta); }
  .navbar-collapse .nav-link { color: var(--text) !important; padding: 0.65rem 0 !important; border-bottom: 1px solid rgba(30,16,8,0.08) !important; display: block; }
  .navbar-collapse .nav-link:last-child { border-bottom: none !important; }
}

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(30,16,8,0.92) 0%, rgba(74,46,30,0.78) 45%, rgba(92,122,106,0.55) 100%),
    url('../images/hero-bg.jpg') center / cover no-repeat,
    #2C1A0E;
  display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px;
}
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to bottom, transparent, var(--warm-white)); pointer-events: none; }

.hero-botanical-right { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; pointer-events: none; opacity: 0.06; }
.hero-botanical-left  { position: absolute; left: 0; bottom: 0; width: 22%; pointer-events: none; opacity: 0.04; transform: scaleX(-1) rotate(15deg); transform-origin: bottom left; }

.hero-content { position: relative; z-index: 2; padding: 5rem 0 8rem; }
.hero-eyebrow { font-family: 'Nunito', sans-serif; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--terracotta-light); margin-bottom: 1.25rem; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 8vw, 5.5rem); font-weight: 300; line-height: 1.05; color: var(--cream); }
.hero-title em { font-style: italic; color: var(--sage-light); font-weight: 300; }
.hero-rule { width: 55px; height: 2px; background: var(--terracotta); margin: 1.75rem 0; }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.15rem, 2.5vw, 1.5rem); color: rgba(245,240,232,0.72); margin-bottom: 2.5rem; }

.hero-scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(245,240,232,0.4); font-size: 0.7rem; font-family: 'Nunito', sans-serif; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; animation: bounce 2.5s ease-in-out infinite; }
.hero-scroll-hint i { display: block; font-size: 1.1rem; margin-top: 0.4rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(7px);} }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn-terra { display: inline-block; background: var(--terracotta); color: var(--cream) !important; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 2.5rem; border: none; border-radius: 0; transition: background 0.3s, transform 0.2s; }
.btn-terra:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

.btn-outline-light-custom { display: inline-block; background: transparent; color: var(--cream) !important; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 2.5rem; border: 1px solid rgba(245,240,232,0.5); border-radius: 0; transition: all 0.3s; }
.btn-outline-light-custom:hover { border-color: var(--cream); background: rgba(245,240,232,0.08); transform: translateY(-2px); }

.btn-sage-sm { display: inline-block; background: var(--sage); color: var(--warm-white) !important; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.65rem 1.5rem; border-radius: 0; transition: background 0.3s; margin-top: 1rem; align-self: flex-start; }
.btn-sage-sm:hover { background: var(--sage-dark); }

.btn-submit { width: 100%; background: var(--terracotta); color: var(--cream); border: none; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 1.1rem; border-radius: 0; transition: background 0.3s, transform 0.2s; cursor: pointer; }
.btn-submit:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

/* ── SECTION GENERAL ─────────────────────────────────────────────────────────── */
.section-pad { padding: 6.5rem 0; }
.eyebrow { font-family: 'Nunito', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.75rem; display: block; }
.eyebrow-light { color: var(--terracotta-light); }
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 400; line-height: 1.15; color: var(--dark); }
.section-title-light { color: var(--cream); }
.section-rule { width: 48px; height: 2px; background: var(--terracotta); margin: 1.25rem 0 0; }
.section-rule-center { margin: 1.25rem auto 0; }
.text-muted-custom { max-width: 640px; line-height: 1.9; color: var(--text-light); }

/* ── SERVICES ────────────────────────────────────────────────────────────────── */
.services-bg { background: var(--cream); }
.service-card { background: var(--warm-white); padding: 2.5rem 2rem; border-bottom: 3px solid transparent; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 50px rgba(30,16,8,0.1); border-bottom-color: var(--terracotta); }
.svc-icon { width: 68px; height: 68px; background: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.svc-icon i { font-size: 1.7rem; color: var(--warm-white); }
.service-card h4 { font-size: 1.65rem; font-weight: 500; color: var(--dark); margin-bottom: 1rem; }
.service-card p { font-size: 0.94rem; line-height: 1.85; color: var(--text-light); }

/* ── HIGHLIGHT STRIP ─────────────────────────────────────────────────────────── */
.highlight-strip { background: var(--terracotta); padding: 2.5rem 0; }
.strip-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--cream); font-weight: 300; }
.strip-divider { color: rgba(245,240,232,0.4); margin: 0 1.5rem; font-size: 1.2rem; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────────── */
.testimonials-bg { background: var(--cream); }
.testimonial-card { background: var(--warm-white); padding: 2rem; border-left: 3px solid var(--sage); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(30,16,8,0.08); }
.testimonial-stars { color: var(--terracotta); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; line-height: 1.85; color: var(--text); margin-bottom: 1.25rem; flex-grow: 1; }
.testimonial-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }

/* ── SCHEDULE ─────────────────────────────────────────────────────────────────── */
.schedule-bg { background: var(--dark); position: relative; overflow: hidden; }
.schedule-bg::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(245,240,232,0.02) 0px, rgba(245,240,232,0.02) 1px, transparent 1px, transparent 50px); }
.schedule-header, .schedule-body { position: relative; z-index: 1; }
.schedule-sub { max-width: 540px; margin: 0 auto; line-height: 1.9; color: rgba(245,240,232,0.6); }
.schedule-frame { background: rgba(245,240,232,0.04); border: 1px solid rgba(245,240,232,0.1); padding: 2rem; min-height: 1000px; }

/* ── MASSAGEBOOK SKELETON ─────────────────────────────────────────────────────── */
.mb-skeleton { padding: 1rem; }
@keyframes skel-pulse { 0%,100%{opacity:0.4;} 50%{opacity:0.8;} }
.mb-skel-bar { background: rgba(245,240,232,0.12); border-radius: 3px; margin-bottom: 1rem; animation: skel-pulse 1.6s ease-in-out infinite; }
.mb-skel-title { height: 28px; width: 55%; }
.mb-skel-short { height: 16px; width: 35%; }
.mb-skel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1rem; }
.mb-skel-card { height: 120px; background: rgba(245,240,232,0.08); border-radius: 3px; animation: skel-pulse 1.6s ease-in-out infinite; }
.mb-skel-card:nth-child(2) { animation-delay: 0.2s; }
.mb-skel-card:nth-child(3) { animation-delay: 0.4s; }

/* ── PRODUCTS ─────────────────────────────────────────────────────────────────── */
.products-bg { background: var(--warm-white); }
.product-card { background: var(--cream); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(30,16,8,0.13); }
.product-img-wrap { background: var(--warm-white); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: center; height: 220px; }
.product-img-wrap img { max-height: 180px; object-fit: contain; }
.product-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-body h5 { font-size: 1.1rem; font-weight: 500; color: var(--dark); margin-bottom: 0.4rem; line-height: 1.4; }
.product-price { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--sage-dark); font-size: 1.05rem; margin-bottom: 0.75rem; }
.product-body p { font-size: 0.87rem; line-height: 1.75; color: var(--text-light); flex-grow: 1; }

.store-card { background: linear-gradient(135deg, var(--sage-dark) 0%, #3D5C4E 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 380px; padding: 2.5rem; }
.store-card i { font-size: 3rem; color: rgba(245,240,232,0.5); margin-bottom: 1.25rem; }
.store-card h5 { font-size: 1.5rem; color: var(--cream); font-weight: 400; margin-bottom: 0.75rem; }
.store-card p { color: rgba(245,240,232,0.65); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; }

/* ── MAP ──────────────────────────────────────────────────────────────────────── */
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; filter: sepia(25%) saturate(80%); }

/* ── CONTACT ─────────────────────────────────────────────────────────────────── */
.contact-bg { background: var(--brown); }
.contact-intro { color: rgba(245,240,232,0.68); line-height: 1.9; margin-bottom: 2rem; font-size: 0.95rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon-wrap { width: 48px; height: 48px; border-radius: 50%; background: rgba(196,113,74,0.18); border: 1px solid rgba(196,113,74,0.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-wrap i { color: var(--terracotta-light); font-size: 1rem; }
.contact-info-item span, .contact-info-item a { color: rgba(245,240,232,0.85); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--terracotta-light); }

.form-heading { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--cream); margin-bottom: 1.5rem; }
.captcha-label { display: block; font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 600; color: rgba(245,240,232,0.75); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.form-field { background: rgba(245,240,232,0.07) !important; border: 1px solid rgba(245,240,232,0.15) !important; color: var(--cream) !important; font-family: 'Nunito', sans-serif !important; padding: 0.85rem 1.2rem !important; border-radius: 0 !important; outline: none; transition: border-color 0.3s !important; font-size: 0.93rem !important; width: 100%; }
.form-field::placeholder { color: rgba(245,240,232,0.35) !important; }
.form-field:focus { border-color: var(--terracotta) !important; background: rgba(245,240,232,0.1) !important; box-shadow: none !important; }
textarea.form-field { min-height: 140px; resize: vertical; }

.form-response { padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-family: 'Nunito', sans-serif; font-size: 0.93rem; border-left: 3px solid; }
.form-response-success { background: rgba(122,158,140,0.15); border-color: var(--sage); color: var(--sage-light); }
.form-response-error   { background: rgba(196,113,74,0.15); border-color: var(--terracotta); color: var(--terracotta-light); }

/* ── FOOTER ───────────────────────────────────────────────────────────────────── */
footer { background: #100800; padding: 2rem 0; color: rgba(245,240,232,0.45); font-size: 0.82rem; }
footer a { color: var(--terracotta-light); }
footer a:hover { color: var(--terracotta); }
.foot-social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(245,240,232,0.15); background: rgba(245,240,232,0.05); display: inline-flex; align-items: center; justify-content: center; color: var(--cream); font-size: 0.9rem; transition: all 0.3s; }
.foot-social:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }

/* ── ANIMATIONS ───────────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-pad { padding: 4.5rem 0; }
  .hero { text-align: center; }
  .hero-rule { margin-left: auto; margin-right: auto; }
  .hero-content { padding: 4rem 0 7rem; }
  .strip-divider { display: none; }
  .strip-text { display: block; margin: 0.3rem 0; }
  .map-wrap iframe { height: 300px; }
  .mb-skel-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .btn-terra, .btn-outline-light-custom { width: 100%; text-align: center; }
}
