/* ============================================================
   Yin Mak Mak Thai Massage — style.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #B8975A;
  --gold-light: #D4B07A;
  --gold-pale:  #F2E8D5;
  --dark:       #1a1a18;
  --dark2:      #2e2c28;
  --cream:      #faf9f6;
  --muted:      #888880;
  --border:     #e8e5de;
  --bg-alt:     #f4f2ee;
  --bg-warm:    #EDE0C8;
  --bg-deep:    #2A2319;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.site { max-width: 100%; }
.inner { max-width: 960px; margin: 0 auto; }

/* ── NAV UTILITIES ── */
.nav-back {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.5);
  text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s;
}
.nav-back:hover { color: var(--gold-light); }
.nav-back i { font-size: 14px; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
}
.logo span { color: var(--gold-light); }

.lang-toggle {
  display: flex;
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.lang-btn {
  padding: 5px 14px;
  font-size: 12px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.lang-btn.active { background: var(--gold); color: var(--dark); }

/* ── HERO ── */
.hero {
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,151,90,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 14px;
  color: rgba(250,249,246,0.65);
  letter-spacing: 0.04em;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  padding: 12px 28px;
  background: transparent;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.1em;
  border: 0.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── GALLERY ── */
.gallery-section {
  padding: 4rem 2rem;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg-alt);
}
.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  background: var(--bg-warm);
  overflow: hidden;
}
.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.slide.active { display: flex; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}
.slide-placeholder {
  width: 56px;
  height: 56px;
  border: 0.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.slide-placeholder i { font-size: 24px; color: var(--muted); }

.slide-num {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}
.slide-hint {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s;
}
.slide-arrow:hover { opacity: 0.8; }
.slide-arrow i { font-size: 18px; color: var(--cream); }
.slide-arrow.prev { left: 16px; }
.slide-arrow.next { right: 16px; }

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--gold); }

.slide-caption {
  margin-top: 0.5rem;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.06em;
}

/* ── SERVICES ── */
.section {
  padding: 4rem 2rem;
  border-bottom: 0.5px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 0.5px solid var(--border);
}
.service-card {
  background: var(--cream);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: opacity 0.2s;
  position: relative;
  border-right: 0.5px solid var(--border);
}
.service-card:last-child { border-right: none; }
.service-card:nth-child(even) { background: var(--dark2); }
.service-card:nth-child(even) .service-duration { color: var(--cream); }
.service-card:nth-child(even) .service-unit { color: rgba(255,255,255,0.4); }
.service-card:nth-child(even) .service-price-sub { color: rgba(255,255,255,0.4); }
.service-card:hover { opacity: 0.9; }
.service-duration {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}
.service-unit {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
  margin-bottom: 1.2rem;
}
.service-price { font-size: 20px; font-weight: 400; color: var(--gold); }
.service-price-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  letter-spacing: 0.15em;
  background: var(--gold);
  color: var(--dark);
  padding: 3px 8px;
  font-weight: 400;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about-left {
  background: var(--gold-pale);
  padding: 4rem 2.5rem;
}
.about-right {
  background: var(--dark);
  padding: 4rem 2.5rem;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark2);
}
.about-body { font-size: 14px; color: rgba(42,35,25,0.7); line-height: 1.9; }

.features { display: flex; flex-direction: column; gap: 1.5rem; }
.feature  { display: flex; gap: 1rem; align-items: flex-start; }
.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.feature-text { font-size: 13px; color: rgba(250,249,246,0.6); line-height: 1.7; }
.feature-text strong { color: var(--cream); font-weight: 400; }

/* ── CONTACT ── */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.info-block { padding: 1.5rem 0; border-top: 0.5px solid var(--border); }
.info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.info-value { font-size: 14px; color: var(--dark); line-height: 1.8; }

.contact-icons { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.contact-link i { font-size: 16px; color: var(--gold); }

.map-btn {
  margin-top: 2.5rem;
  width: 100%;
  height: 200px;
  border: 0.5px solid var(--border);
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.map-btn:hover { opacity: 0.85; }
.map-inner { text-align: center; }
.map-inner i { font-size: 28px; color: var(--gold); display: block; margin-bottom: 8px; }
.map-inner span { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }

/* ── SEO SECTION ── */
.seo-section {
  padding: 4rem 2rem;
  background: var(--dark);
  border-bottom: 0.5px solid #333;
}
.seo-section .section-label { color: var(--gold-light); }
.seo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--cream);
}
.seo-body { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 2; max-width: 700px; }
.keywords { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.keyword {
  padding: 4px 12px;
  border: 0.5px solid rgba(255,255,255,0.15);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

/* ── FOOTER ── */
footer { padding: 2.5rem 2rem; text-align: center; background: var(--dark2); }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span { color: var(--gold-light); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold-light); }
.footer-text { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; line-height: 2; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .section, .gallery-section, .seo-section { padding: 3rem 1.25rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 3rem 1.25rem; }
  footer { padding: 2rem 1.25rem; }
}