/* ============================================================
   Aiyala Thai Massage — Stylesheet
   Palette: Navy + Gold (matching brand logo)
   ============================================================ */

:root {
  --primary: #1B2A4A;
  --primary-dark: #0D1525;
  --primary-light: #2A3F6A;
  --gold: #C8A55C;
  --gold-light: #D9BC7A;
  --gold-dark: #A08040;
  --cream: #FDFAF5;
  --bg-light: #F3EFE8;
  --bg-warm: #E8E2D6;
  --text: #1A1A2E;
  --text-light: #5A6070;
  --white: #FFFFFF;
}

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

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

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

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;
}

.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);
}
.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);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 21, 37, 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(13, 21, 37, 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-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  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 */
.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;
  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: url('../images/hero-bg.jpg') center/cover 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.14), transparent 72%);
  animation: heroGlow 11s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 21, 37, 0.75) 0%,
    rgba(27, 42, 74, 0.65) 50%,
    rgba(13, 21, 37, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 700px;
}
.hero-logo {
  width: 200px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 8px;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about h2 {
  font-size: 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(27, 42, 74, 0.15);
  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: 2.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

/* Pricing banner */
.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(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 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(27, 42, 74, 0.18), 0 0 0 1px rgba(200, 165, 92, 0.35);
}
.service-card:hover::before { opacity: 1; }
.service-card h3 { transition: color 0.3s ease; }
.service-card:hover h3 { color: var(--gold-dark); }

.service-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}
.service-price {
  display: block;
  font-size: 0.8rem;
  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: 2.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 16px rgba(27, 42, 74, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.2);
}

.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(13, 21, 37, 0.8));
  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(13, 21, 37, 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 / FIND US
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact h2 {
  text-align: center;
  font-size: 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: box-shadow 0.3s;
}
.contact-card:hover {
  box-shadow: 0 4px 16px rgba(27, 42, 74, 0.1);
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
.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(27, 42, 74, 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 {
  width: 48px;
  height: 48px;
  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);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
/* Floating WhatsApp button (bottom-left, opposite the scroll-top) */
.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 & MOTION
   ============================================================ */

/* ---- Keyframes ---- */
@keyframes kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.16) translateY(-1.6%); }
}
@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 entrance (staggered on load) ---- */
.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.25s; }
.hero-content > *:nth-child(2) { animation-delay: 0.42s; }
.hero-content > *:nth-child(3) { animation-delay: 0.56s; }
.hero-content > *:nth-child(4) { animation-delay: 0.70s; }
.hero-content > *:nth-child(5) { animation-delay: 0.86s; }

/* ---- Hero scroll cue ---- */
.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;
}

/* ---- Scroll reveal ---- */
.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);
}

/* Cards have hover motion too — give them their own transition,
   and make the hover selector outspecify .reveal.is-visible */
.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); }

/* ---- Animated section-title underline ---- */
.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 (count-up) ---- */
.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(27, 42, 74, 0.13);
}
.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);
}

/* ---- Button micro-interactions ---- */
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 165, 92, 0.4);
}
.btn-outline:hover { transform: translateY(-2px); }

/* ---- Contact card hover lift ---- */
.contact-card {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}
.contact-card:hover { transform: translateY(-4px); }

/* ---- Reduced-motion: disable all of the above ---- */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .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; }
}

@media (max-width: 480px) {
  .stat-num { font-size: 2rem; }
  .stat-suffix { font-size: 1.4rem; }
  .about-stats { gap: 10px; }
  .stat { padding: 18px 8px; min-width: 90px; }
}

/* ============================================================
   CHAPTER INTERLUDES — full-bleed parallax photo bands
   ============================================================ */
.chapter {
  position: relative;
  min-height: 78vh;
  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--1 .chapter-bg { background-image: url('../images/services-bg.jpg'); }
.chapter--2 .chapter-bg { background-image: url('../images/booking-bg.jpg'); }
.chapter-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 21, 37, 0.84) 0%,
    rgba(13, 21, 37, 0.58) 50%,
    rgba(13, 21, 37, 0.84) 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;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .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(13, 21, 37, 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: 320px;
    padding: 20px 24px;
    border-top: 1px solid rgba(200, 165, 92, 0.2);
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-logo { width: 150px; }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .about h2,
  .services h2,
  .gallery h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .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;
  }
}


/* --- Aiyala brand override (black + gold, matching the shopfront signage) --- */
:root {
  --primary: #1c1c1e;
  --primary-dark: #0c0c0d;
  --primary-light: #2c2c30;
  --gold: #c8a55c;
  --gold-light: #d9bc7a;
  --gold-dark: #a8843e;
}
.hero-logo { color: var(--gold); width: 84px; height: 84px; margin: 0 auto 18px; display: block; }
.footer-logo { color: var(--gold); }
