/* ============================================================
   Thai Mint Spa & Massage — adapted from the Aiyala template
   Palette matches the real Thai Mint logo (purple/magenta leaf mark).
   ============================================================ */

:root {
  --primary: #5c1e54;
  --primary-dark: #3a1233;
  --primary-light: #794170;
  --gold: #8c3b81;
  --gold-light: #a85c9d;
  --gold-dark: #6e2d64;
  --cream: #FDFAF9;
  --bg-light: #F5EEF3;
  --bg-warm: #EAD9E4;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

a { color: var(--gold-dark); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.about .eyebrow { text-align: left; }

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 0.3rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200, 165, 92, 0.4); }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1ebe5b; border-color: #1ebe5b; color: #fff; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(200, 165, 92, 0.6); }
.btn-outline:hover { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); transform: translateY(-2px); }

/* ============================================================ NAVBAR */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(12, 12, 13, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
#navbar.scrolled { background: rgba(12, 12, 13, 0.97); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
#navbar.nav-hidden { transform: translateY(-100%); }

.nav-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { height: 28px; width: auto; }
.nav-brand-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; letter-spacing: 0.04em; color: var(--gold); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; font-weight: 400; letter-spacing: 0.02em; transition: color 0.3s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--gold); border-radius: 1px; }
.nav-cta { background: var(--gold) !important; color: var(--primary-dark) !important; padding: 10px 22px; border-radius: 6px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--primary-dark); overflow: hidden; }
.hero-bg { position: absolute; top: -42.5%; left: 0; right: 0; height: 185%; z-index: 0; background-position: center; background-size: cover; background-repeat: no-repeat; will-change: transform; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse 65% 55% at 50% 38%, rgba(200, 165, 92, 0.16), transparent 72%); animation: heroGlow 11s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,12,13,0.82) 0%, rgba(28,28,30,0.62) 50%, rgba(12,12,13,0.88) 100%); }
.hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 720px; }
.hero-logo { height: 90px; width: auto; margin: 0 auto 16px; display: block; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)); }
.hero-kicker { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.32em; color: var(--gold); margin-bottom: 14px; }
.hero h1 { font-size: clamp(1.8rem, 6vw, 3.6rem); color: var(--white); margin-bottom: 14px; letter-spacing: 0.02em; }
.hero-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255, 255, 255, 0.85); margin-bottom: 14px; }
.hero-rating { font-size: 0.95rem; color: var(--gold-light); letter-spacing: 0.02em; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ ABOUT */
.about { padding: 100px 0; background: var(--white); }
.about h2 { font-size: clamp(1.7rem, 5.5vw, 2.2rem); color: var(--primary); margin-bottom: 24px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { margin-bottom: 18px; color: var(--text); font-size: 1.05rem; }
.about-image { position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 8px 30px rgba(12,12,13,0.2); aspect-ratio: 4 / 5; }
.about-image img { width: 100%; height: 155%; position: relative; top: -27.5%; object-fit: cover; will-change: transform; }

/* ============================================================ SERVICES */
.services { padding: 100px 0; background: var(--bg-light); }
.services h2 { text-align: center; font-size: clamp(1.7rem, 5.5vw, 2.2rem); color: var(--primary); margin-bottom: 8px; }

.pricing-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.pricing-group { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%); border-radius: 14px; padding: 28px 24px; text-align: center; border: 1px solid rgba(200, 165, 92, 0.25); }
.pricing-group h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 4px; }
.pricing-services { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 16px; }
.pricing-tiers { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pricing-tier { display: flex; flex-direction: column; align-items: center; padding: 10px 18px; border: 1px solid rgba(200, 165, 92, 0.35); border-radius: 10px; text-decoration: none; transition: background 0.2s, border-color 0.2s; min-width: 80px; }
.pricing-tier:hover { background: rgba(200, 165, 92, 0.15); border-color: var(--gold); }
.pricing-dur { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2px; }
.pricing-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.service-card { position: relative; overflow: hidden; background: var(--white); border-radius: 12px; padding: 36px 24px; text-align: center; box-shadow: 0 4px 20px rgba(12,12,13,0.08); transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease; border-top: 4px solid var(--gold); }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(200, 165, 92, 0.1), transparent 58%); opacity: 0; transition: opacity 0.45s ease; pointer-events: none; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(12,12,13,0.2), 0 0 0 1px rgba(200, 165, 92, 0.35); }
.service-card:hover::before { opacity: 1; }
.service-card h3 { transition: color 0.3s ease; font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; }
.service-card:hover h3 { color: var(--gold-dark); }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 12px; }
.service-price { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gold-dark); padding-top: 10px; border-top: 1px solid var(--bg-warm); }
.services-cta { text-align: center; }
.services-cta p { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; }

/* ============================================================ GALLERY */
.gallery { padding: 100px 0; background: var(--bg-light); }
.gallery h2 { text-align: center; font-size: clamp(1.7rem, 5.5vw, 2.2rem); color: var(--primary); margin-bottom: 8px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 4 / 3; box-shadow: 0 4px 16px rgba(12,12,13,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(12,12,13,0.25); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(transparent, rgba(12,12,13,0.85)); color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em; opacity: 0; transform: translateY(4px); transition: opacity 0.3s, transform 0.3s; }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(12,12,13,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5); object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: none; border: none; color: var(--white); cursor: pointer; transition: color 0.2s, transform 0.2s; font-family: sans-serif; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); transform: scale(1.15); }
.lightbox-close { top: 24px; right: 28px; font-size: 2.5rem; line-height: 1; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; line-height: 1; }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.15); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; line-height: 1; }
.lightbox-next:hover { transform: translateY(-50%) scale(1.15); }

/* ============================================================ CONTACT */
.contact { padding: 100px 0; background: var(--white); }
.contact h2 { text-align: center; font-size: clamp(1.7rem, 5.5vw, 2.2rem); color: var(--primary); margin-bottom: 8px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card { background: var(--bg-light); border-radius: 10px; padding: 24px; transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease; }
.contact-card:hover { box-shadow: 0 4px 16px rgba(12,12,13,0.1); transform: translateY(-4px); }
.contact-card-icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 12px; }
.contact-card h3 { font-family: 'Lato', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; color: var(--primary); margin-bottom: 8px; }
.contact-card p { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.contact-card a { color: var(--gold-dark); }
.contact-card a:hover { color: var(--gold); }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(12,12,13,0.1); }
.contact-map iframe { display: block; }
.btn-directions { display: block; text-align: center; border-radius: 0 0 12px 12px; }

/* ============================================================ FOOTER */
#footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.8); padding: 60px 0 0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(200, 165, 92, 0.2); }
.footer-logo { height: 40px; width: auto; margin-bottom: 12px; }
.footer-brand h3 { font-size: 1.3rem; color: var(--gold); margin-bottom: 8px; }
.footer-brand p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); }
.footer-links h4, .footer-contact h4 { font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 6px; color: rgba(255, 255, 255, 0.7); }
.footer-contact a { color: rgba(255, 255, 255, 0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

/* Floating WhatsApp */
.floating-wa { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28); z-index: 900; transition: transform 0.25s ease, box-shadow 0.25s ease; animation: wa-pulse 2.6s ease-in-out infinite; }
.floating-wa:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35); color: #fff; }
.floating-wa svg { width: 32px; height: 32px; }
@keyframes wa-pulse { 0% { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.45); } 70% { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .floating-wa { animation: none; } }

.scroll-top { position: fixed; bottom: 96px; right: 28px; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); border: 2px solid var(--gold); color: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s; z-index: 900; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--primary-dark); }
.scroll-top svg { width: 20px; height: 20px; }

/* ============================================================ ANIMATIONS */
@keyframes heroGlow { from { opacity: 0.5; } to { opacity: 1; } }
@keyframes heroRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mouseBob { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 70% { opacity: 0; transform: translateY(13px); } 100% { opacity: 0; transform: translateY(13px); } }

.hero-content > * { opacity: 0; animation: heroRise 1s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.34s; }
.hero-content > *:nth-child(3) { animation-delay: 0.48s; }
.hero-content > *:nth-child(4) { animation-delay: 0.62s; }
.hero-content > *:nth-child(5) { animation-delay: 0.76s; }
.hero-content > *:nth-child(6) { animation-delay: 0.9s; }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0; padding: 6px; animation: heroRise 1s cubic-bezier(0.2, 0.7, 0.2, 1) 1.15s both; }
.hero-mouse { display: block; width: 26px; height: 42px; border: 2px solid rgba(200, 165, 92, 0.75); border-radius: 14px; }
.hero-mouse-dot { display: block; width: 4px; height: 8px; margin: 7px auto 0; background: var(--gold); border-radius: 2px; animation: mouseBob 1.9s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal--left { transform: translateX(-46px); }
.reveal--right { transform: translateX(46px); }
.reveal--scale { transform: scale(0.92); }
.reveal.is-visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

.service-card.reveal, .gallery-item.reveal, .contact-card.reveal { transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease; }
.service-card.reveal:hover { transform: translateY(-8px); }
.gallery-item.reveal:hover { transform: translateY(-4px); }
.contact-card.reveal:hover { transform: translateY(-4px); }

.sec-title { position: relative; padding-bottom: 22px; }
.about h2.sec-title { margin-bottom: 14px; }
.sec-title::after { content: ''; position: absolute; bottom: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 2px; transition: width 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s; }
.sec-title--center::after { left: 50%; transform: translateX(-50%); }
.sec-title.is-visible::after { width: 66px; }

.about-stats { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.stat { flex: 1 1 0; min-width: 110px; background: var(--bg-light); border-radius: 12px; padding: 22px 14px; text-align: center; border-bottom: 3px solid var(--gold); transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease; }
.stat:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(12,12,13,0.15); }
.stat-num, .stat-suffix { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1; }
.stat-num { font-size: 2.5rem; color: var(--primary); }
.stat-suffix { font-size: 1.7rem; color: var(--gold); }
.stat-label { display: block; margin-top: 8px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); }

@media (prefers-reduced-motion: reduce) {
  .hero::after, .hero-mouse-dot { animation: none !important; }
  .hero-content > *, .hero-scroll { opacity: 1 !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sec-title::after { transition: none !important; }
}

/* ============================================================ CHAPTER INTERLUDES */
.chapter { position: relative; min-height: 78vh; min-height: 78svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: var(--primary-dark); }
.chapter-bg { position: absolute; top: -47.5%; left: 0; right: 0; height: 195%; z-index: 0; background-position: center; background-size: cover; background-repeat: no-repeat; will-change: transform; }
.chapter-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,12,13,0.86) 0%, rgba(12,12,13,0.55) 50%, rgba(12,12,13,0.86) 100%); }
.chapter-content { position: relative; z-index: 2; max-width: 760px; padding: 70px 28px; }
.chapter-kicker { font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 20px; }
.chapter-quote { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.32; color: var(--white); }
.chapter-quote::after { content: ''; display: block; width: 56px; height: 2px; background: var(--gold); margin: 28px auto 0; }

@media (max-width: 768px) { .chapter { min-height: 62vh; } .chapter-content { padding: 56px 24px; } }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; aspect-ratio: 16 / 10; }
  .pricing-banner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; background: rgba(12,12,13,0.97); flex-direction: column; padding: 20px 24px; gap: 16px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
  .nav-links.open { max-height: 420px; padding: 20px 24px; border-top: 1px solid rgba(200, 165, 92, 0.2); }
  .nav-links a { display: block; padding: 10px 0; font-size: 1.05rem; }
  .contact-info { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }

  /* Sections felt padding-heavy on a phone screen — too much empty
     space to scroll through between content. Desktop keeps 100px. */
  .about, .services, .gallery, .contact { padding: 60px 0; }
  .chapter-content { padding: 56px 24px; }

  /* The oversized parallax layers (185%/195% height) are tuned for
     desktop scroll distances; on tall narrow phone screens the same
     zoom crops too aggressively and can cut off the subject. */
  .hero-bg, .chapter-bg { top: -20%; height: 140%; }
  .about-image img { height: 120%; top: -10%; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-rating { margin-bottom: 24px; }

  /* Google Maps embed at a fixed 400px is very tall relative to a
     narrow phone screen width. */
  .contact-map iframe { height: 260px; }

  /* Three stat boxes at min-width:110px are tight on narrow phones —
     let them wrap to 2+1 instead of squeezing. */
  .about-stats { justify-content: center; }
  .stat { min-width: 96px; }
}

@media (max-width: 480px) {
  .hero-logo { height: 68px; width: auto; }
  .hero-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; max-width: 340px; margin: 0 auto; }
  .hero-buttons .btn { width: 100%; padding: 13px 10px; text-align: center; font-size: 0.9rem; }
  .service-card { padding: 28px 20px; }
  .contact-card { padding: 18px; }
  .scroll-top { bottom: 80px; right: 16px; width: 40px; height: 40px; }
  .floating-wa { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .floating-wa svg { width: 29px; height: 29px; }
}
