/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a050;
  --gold-light: #e0ba72;
  --dark: #1a1a1a;
  --dark-mid: #2b2b2b;
  --light: #f8f5f0;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --radius: 8px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn-primary, .btn-secondary, .btn-nav {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover, .btn-secondary:hover, .btn-nav:hover {
  opacity: 0.88;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary { background: var(--gold); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-nav { background: var(--gold); color: var(--white); padding: 10px 22px; font-size: 0.9rem; }

/* ── Header ── */
header {
  background: rgba(20,12,4,0.98);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,160,80,0.18);
}

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

.logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(201,160,80,0.35));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.logo-link:hover .logo {
  filter: drop-shadow(0 2px 16px rgba(201,160,80,0.6));
  transform: scale(1.03);
}

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

nav a {
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
nav a:hover { color: var(--gold); text-decoration: none; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: url('images/aroma-therapy.jpg');
  background-size: cover;
  background-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,12,4,0.82) 0%, rgba(30,18,6,0.72) 100%);
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-overlay .container {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 40px;
}

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

/* ── Sections ── */
.section-light { background: var(--light); padding: 88px 0; }
.section-dark  { background: var(--dark); color: var(--white); padding: 88px 0; }

.section-dark h2 { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,0.8); }

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.text-center { text-align: center; }

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.col-text p { margin-bottom: 18px; }
.col-text p:last-child { margin-bottom: 0; }
.col-image img { border-radius: var(--radius); box-shadow: 0 12px 40px rgba(0,0,0,0.18); }
.col-map iframe { border-radius: var(--radius); }

/* ── Benefits Grid ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,160,80,0.3);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: border-color 0.2s, transform 0.2s;
}

.benefit-card:hover {
  border-color: rgba(201,160,80,0.7);
  transform: translateY(-3px);
}

.benefit-card h3 { color: var(--gold); }

.cta-center { text-align: center; }

/* ── Testimonials rotator ── */
.section-testimonials h2 { color: var(--dark); }

.reviews-sub {
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 4px;
}

.testimonial-rotator {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.rotator-track {
  flex: 1;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.rotator-slide {
  display: none;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
  border-top: 3px solid var(--gold);
  animation: rotFadeIn 0.55s ease;
}

.rotator-slide.active { display: block; }

@keyframes rotFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rotator-slide .stars {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.rotator-slide p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 18px;
}

.rotator-slide p::before { content: '\201C'; }
.rotator-slide p::after  { content: '\201D'; }

.rotator-slide cite {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.rotator-prev,
.rotator-next {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.rotator-prev:hover,
.rotator-next:hover {
  background: var(--gold);
  color: var(--white);
}

.rotator-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.rotator-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.rotator-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ── Contact ctas ── */
.contact-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.section-dark a:not(.btn-primary):not(.btn-secondary):not(.btn-nav) {
  color: var(--gold-light);
}

/* ── Footer ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 36px 0;
  text-align: center;
  font-size: 0.88rem;
}
footer p { margin-bottom: 6px; }
footer a { color: rgba(255,255,255,0.65); }
footer a:hover { color: var(--gold); text-decoration: none; }

/* ── Hero carousel ── */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* ── Page hero (Services / Contact) ── */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-image: url('images/hero-2.png');
  background-size: cover;
  background-position: center;
}
.page-hero--contact {
  background-image: url('images/hero-4.png');
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,12,4,0.80) 0%, rgba(30,18,6,0.68) 100%);
  display: flex;
  align-items: center;
  width: 100%;
}
.page-hero-overlay .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}

/* ── CTA band ── */
.cta-band {
  background: var(--dark-mid);
  padding: 80px 0;
  color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── Nav active state ── */
nav a.nav-active { color: var(--gold); }

/* ── Star ratings ── */
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* ── Treatment blocks (services page) ── */
.treatment-block { padding: 48px 0; }

.treatment-with-image {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}

.treatment-img-link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.treatment-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.treatment-img-link:hover .treatment-img { transform: scale(1.05); }

.treatment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.treatment-header h2 { margin-bottom: 0; }
.treatment-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.treatment-desc {
  color: var(--text);
  margin-bottom: 28px;
  max-width: 720px;
  font-size: 1.05rem;
}
.price-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(201,160,80,0.35);
  border-radius: var(--radius);
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 110px;
}
.price-card .duration {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.treatment-divider {
  height: 1px;
  background: rgba(201,160,80,0.18);
}

.treatment-header h2 a {
  color: inherit;
  text-decoration: none;
}
.treatment-header h2 a:hover { color: var(--gold); }

a.price-card {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
a.price-card:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,160,80,0.3);
}
a.price-card:hover .duration { color: rgba(255,255,255,0.8); }
a.price-card:hover .price { color: var(--white); }

/* ── Contact page grid ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block { margin-bottom: 32px; }
.contact-info-block h3 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.contact-info-block p { color: var(--text); line-height: 1.8; }
.contact-info-block a { color: var(--gold); }
.contact-map iframe { border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

.hours-table { border-collapse: collapse; width: 100%; max-width: 280px; }
.hours-table td { padding: 5px 0; font-size: 0.95rem; color: var(--text); }
.hours-table td:first-child { font-weight: 500; min-width: 110px; }
.hours-table .closed { color: var(--text-light); }

.btn-secondary-dark {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-secondary-dark:hover { opacity: 0.75; transform: translateY(-2px); text-decoration: none; }

@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-grid { gap: 12px; }
  .treatment-block { padding: 36px 0; }
  .treatment-with-image { grid-template-columns: 1fr; gap: 24px; }
  .treatment-img { aspect-ratio: 16 / 9; }
  .page-hero { min-height: 220px; }
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(201,160,80,0.3);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text);
  margin: 0;
}

/* ── Scroll-reveal ── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  nav.nav-open { display: flex; }

  nav a {
    padding: 12px 24px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  nav a.btn-nav {
    margin: 12px 24px 0;
    width: auto;
    display: inline-block;
    border-bottom: none;
  }

  header { position: relative; }
  .logo { height: 60px; }

  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonial-rotator { gap: 10px; }
  .rotator-prev, .rotator-next { width: 36px; height: 36px; font-size: 1.2rem; }
  .rotator-slide { padding: 28px 24px; }
  .section-light, .section-dark { padding: 64px 0; }

  .hero { min-height: 480px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}
