/* ============================================================
   index.css – page-specific styles for Home (index.html)
   ============================================================ */

:root {
  --bg: #ece7e4;
  --section-bg: #f5f0eb;
}

/* Override nav box-shadow for home page (lighter border) */
nav {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(168,129,91,0.12);
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh; /* mobile address-bar safe */
    min-height: 620px;
    background: url('../images/home_banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Warm golden overlay matching the design (light at top, warm tan at bottom) */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(72,50,30,0.10) 0%,
    rgba(98,68,40,0.28) 55%,
    rgba(140,100,60,0.52) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 clamp(20px,5vw,60px); max-width: 900px; }
.hero-quote { font-family: var(--font-serif); font-size: clamp(34px,6vw,82px); font-weight: 400; color: #fff; line-height: 1.08; margin-bottom: clamp(14px,2.5vh,24px); }
.hero-quote em { font-style: italic; color: #e7d2b0; } /* cream-gold italic line, per design */
.hero-sub { font-family: var(--font-sans); font-size: clamp(10px,1.1vw,13px); font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: clamp(26px,4vh,46px); }
.hero-locations { display: flex; flex-direction: column; gap: clamp(10px,1.6vh,14px); align-items: center; }
/* Pill-shaped serif buttons, width hugging the text – per design */
.hero-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px clamp(26px, 3vw, 40px) 10px;
  max-width: 100%;
  text-decoration: none;
  text-align: center;
  background: rgba(255,255,255,0.02);
  transition: all 0.25s;
}
.hero-btn:hover { background: rgba(255,255,255,0.18); border-color: #fff; }

/* ── TREATMENTS ── */
.treatments { background: var(--section-bg); padding: clamp(70px,9vw,130px) clamp(20px,5vw,80px); }
.treatments-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: start; }
.treatments-title { font-family: var(--font-serif); font-size: clamp(36px,4.5vw,62px); font-weight: 500; color: var(--gold); line-height: 1.08; margin-bottom: clamp(28px,4vw,48px); }
.treatment-item { border-top: 1px solid rgba(160,122,86,0.22); padding: clamp(18px,2.5vw,28px) 0; }
.treatment-item:last-of-type { border-bottom: 1px solid rgba(160,122,86,0.22); }
.treatment-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.treatment-name { font-family: var(--font-serif); font-size: clamp(16px,1.8vw,22px); font-weight: 500; color: var(--gold); text-transform: lowercase; }
.treatment-price { font-family: var(--font-serif); font-size: clamp(16px,1.8vw,22px); font-weight: 500; color: var(--gold); }
.treatment-desc { font-family: var(--font-sans); font-size: 12px; color: #666; line-height: 1.65; max-width: 340px; }
.explore-btn { display: inline-block; margin-top: clamp(24px,3vw,40px); background: var(--gold); color: #fff; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding: 13px 32px; text-decoration: none; transition: background 0.2s; }
.explore-btn:hover { background: #8a6442; }
.treatments-right img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }

/* ── SOCIAL / GALLERY ── */
.social-section { background: var(--bg); padding: clamp(70px,9vw,120px) clamp(20px,5vw,80px); }
.social-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: start; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.gallery-cell { aspect-ratio: 1; overflow: hidden; background: var(--gold-light); }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-cell:hover img { transform: scale(1.07); }
.gallery-handle { margin-top: 10px; font-family: var(--font-sans); font-size: 12px; color: var(--text); }
.follow-title { font-family: var(--font-serif); font-size: clamp(30px,4vw,54px); font-weight: 500; color: var(--gold); line-height: 1.1; margin-bottom: clamp(26px,3.5vw,42px); }
.follow-label { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.follow-name { font-family: var(--font-serif); font-size: clamp(18px,2vw,26px); font-weight: 600; color: var(--text); margin-bottom: 20px; }
.follow-divider { width: 80px; height: 1px; background: rgba(160,122,86,0.3); margin: 22px 0; }
.hours-title { font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hours-text { font-family: var(--font-sans); font-size: 12px; color: var(--text); line-height: 2.1; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── REVIEWS ── */
.reviews { background: var(--section-bg); padding: clamp(70px,9vw,110px) clamp(20px,5vw,80px); text-align: center; }
.stars { display: flex; justify-content: center; gap: 10px; margin-bottom: clamp(22px,3vw,34px); }
.star { font-size: clamp(28px,4vw,48px); color: var(--gold); }
.review-text { font-family: var(--font-serif); font-style: italic; font-size: clamp(20px,2.6vw,32px); font-weight: 500; color: var(--text); max-width: 680px; margin: 0 auto clamp(18px,2.5vw,28px); line-height: 1.4; }
.reviewer-name { font-family: var(--font-serif); font-size: clamp(16px,1.8vw,24px); font-weight: 600; color: var(--text); margin-bottom: 4px; }
.review-date { font-family: var(--font-sans); font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.review-dots { display: flex; justify-content: center; gap: 8px; align-items: center; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #d9d9d9; cursor: pointer; }
.dot.active { width: 11px; height: 11px; background: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .treatments-inner { grid-template-columns: 1fr; }
  .treatments-right { order: -1; }
  .treatments-right img { aspect-ratio: 16/9; }
  .social-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 560px; }
  .hero-btn { font-size: 13px; letter-spacing: 0.12em; padding: 8px 22px 9px; }
  .hero-sub { max-width: 300px; margin-left: auto; margin-right: auto; }
}
