/* Kings Barbershop Huayacán — Premium Dark Theme */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #080808;
  --bg2:        #0f0f0f;
  --surface:    #141414;
  --surface2:   #1c1c1c;
  --border:     rgba(255,255,255,0.08);
  --gold:       #C9A227;
  --gold-light: #E4B84A;
  --gold-glow:  rgba(201,162,39,0.18);
  --text:       #F0EDE8;
  --muted:      #7a7a7a;
  --dim:        #3a3a3a;
  --font:       'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:          0.4s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; }

/* === TYPOGRAPHY === */
h1, h2, h3 { font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; }
h1 { font-size: clamp(3.2rem, 9vw, 8rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(201,162,39,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 100%;
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* === PRELOADER === */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pl-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.pl-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.pl-crown {
  font-size: 3.5rem;
  animation: pl-pulse 1s ease-in-out infinite alternate;
}
.pl-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.pl-name em {
  font-style: normal;
  color: var(--gold);
}
@keyframes pl-pulse {
  from { transform: scale(0.95) translateY(2px); opacity: 0.7; }
  to   { transform: scale(1.05) translateY(-2px); opacity: 1; }
}
.pl-bar {
  width: 220px;
  height: 2px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}
.pl-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  animation: pl-fill 1.4s var(--ease) forwards;
}
@keyframes pl-fill {
  to { width: 100%; }
}

/* === HEADER === */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.5rem;
  transition: background var(--t), padding var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.1rem 2.5rem;
  border-color: var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.brand-crown { font-size: 1.6rem; line-height: 1; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand-text em {
  font-size: 0.65rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#header nav { display: flex; align-items: center; }
#header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 1.1rem;
  transition: color 0.3s;
  position: relative;
}
#header nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
#header nav a:hover { color: var(--gold); }
#header nav a:hover::after { transform: scaleX(1); }

.header-cta {
  background: var(--gold);
  color: #000;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--t);
  text-decoration: none;
}
.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-zoom 10s var(--ease) forwards;
  filter: brightness(0.6);
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* === VAPOR ANIMATION === */
.hero-vapor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.vapor-puff {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  mix-blend-mode: screen;
  animation: puff-rise var(--dur, 9s) ease-in-out var(--dly, 0s) infinite;
}
.vapor-puff:nth-child(1) {
  width: 320px; height: 480px;
  background: radial-gradient(ellipse, rgba(200,220,255,0.22) 0%, transparent 70%);
  bottom: 10%; left: 8%;
  --dur: 9s; --dly: 0s;
}
.vapor-puff:nth-child(2) {
  width: 260px; height: 380px;
  background: radial-gradient(ellipse, rgba(210,230,255,0.16) 0%, transparent 70%);
  bottom: 20%; left: 25%;
  --dur: 12s; --dly: -3s;
}
.vapor-puff:nth-child(3) {
  width: 200px; height: 320px;
  background: radial-gradient(ellipse, rgba(230,240,255,0.14) 0%, transparent 70%);
  bottom: 30%; left: 45%;
  --dur: 10s; --dly: -6s;
}
.vapor-puff:nth-child(4) {
  width: 350px; height: 250px;
  background: radial-gradient(ellipse, rgba(200,215,255,0.10) 0%, transparent 70%);
  bottom: 5%; left: 15%;
  --dur: 14s; --dly: -2s;
}
@keyframes puff-rise {
  0%   { transform: translateY(0) translateX(0) scale(1);   opacity: 0; }
  15%  { opacity: 1; }
  60%  { opacity: 0.6; }
  100% { transform: translateY(-120px) translateX(30px) scale(1.4); opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.6) 55%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 740px;
}

.hero-eyebrow {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 0.9s var(--ease) 0.4s forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
  line-height: 1;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slide-up 0.9s var(--ease) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.6s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.85s; }
.hero-title-gold { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(240,237,232,0.7);
  line-height: 1.65;
  margin-bottom: 2.75rem;
  max-width: 440px;
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 0.9s var(--ease) 1.1s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 0.9s var(--ease) 1.35s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 2s forwards;
}
.hero-scroll-hint span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 55px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: pulse-line 2.5s ease-in-out infinite;
}
@keyframes pulse-line {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

@keyframes fade-up  { to { opacity: 1; transform: translateY(0); } }
@keyframes slide-up { to { opacity: 1; transform: translateY(0); } }

/* === MARQUEE === */
.marquee-wrapper {
  overflow: hidden;
  background: var(--gold);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
}
.marquee-track span { padding: 0 0.6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === STATS === */
.stats-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.35s, transform 0.35s;
}
.stat-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.stat-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { color: var(--gold); font-size: 2rem; font-weight: 800; }
.stat-stars  { font-size: 1.35rem !important; color: var(--gold); }
.stat-label  { display: block; margin-top: 0.6rem; color: var(--muted); font-size: 0.875rem; }

/* === EXPERIENCE === */
.experience-section { padding: 8rem 0; }
.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.experience-text { max-width: 450px; }
.experience-text h2 { margin-bottom: 1.5rem; }
.experience-text h2 em { color: var(--gold); font-style: italic; }
.experience-text p { color: var(--muted); line-height: 1.75; font-size: 1.05rem; }

.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.perk-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.perk-item:hover { border-color: var(--gold); transform: translateY(-5px); }
.perk-icon  { font-size: 2rem; margin-bottom: 1rem; display: block; }
.perk-item strong { display: block; font-size: 1rem; margin-bottom: 0.4rem; }
.perk-item p { color: var(--muted); font-size: 0.82rem; line-height: 1.55; }

/* === SERVICES === */
.services-section { padding: 7rem 0; background: var(--bg2); }
.section-header { margin-bottom: 4rem; }

.services-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.package-list { display: flex; flex-direction: column; }
.package-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
  cursor: default;
}
.package-item:hover { padding-left: 0.75rem; }
.package-item:last-child { border-bottom: none; }
.package-name { display: block; font-weight: 700; font-size: 1rem; }
.package-desc { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; line-height: 1.4; }
.package-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.singles-col { display: flex; flex-direction: column; gap: 1.25rem; }
.singles-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.singles-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.singles-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.singles-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.singles-card li span { color: var(--muted); }
.singles-card li strong { color: var(--gold); font-size: 1.05rem; }

.promo-card {
  background: linear-gradient(135deg, #16110a, #221900);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.promo-days {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.promo-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.promo-price { font-size: 2.75rem; font-weight: 800; color: var(--gold); display: block; }

/* === GALLERY === */
.gallery-section { padding: 7rem 0; }
.gallery-section .container { margin-bottom: 3rem; }

/* Uniform grid: 3 cols × 2 rows, all 6 photos same size */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 12px;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

/* Cinematic retouch filter on all photos */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: contrast(1.08) saturate(1.1) brightness(0.92);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: contrast(1.12) saturate(1.2) brightness(1.0);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  padding: 2.5rem 1.25rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* === TEAM === */
.team-section { padding: 7rem 0; background: var(--bg2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  padding: 2.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.35s, transform 0.35s;
}
.team-card:hover { border-color: var(--gold); transform: translateY(-7px); }
.team-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a6a10, var(--gold));
  color: #000;
  font-size: 2.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.2);
}
.team-card strong { display: block; font-size: 1.15rem; margin-bottom: 0.3rem; }
.team-card span {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === TESTIMONIALS === */
.testimonials-section { padding: 7rem 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  transition: border-color 0.35s, transform 0.35s;
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 1.1rem; }
.testimonial-card p { color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; font-size: 0.975rem; }
.testimonial-card cite { font-style: normal; font-size: 0.82rem; font-weight: 700; color: var(--gold); }

/* === BOOKING === */
.booking-section {
  padding: 8rem 0;
  background: var(--bg2);
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -250px; right: -250px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,0.06), transparent 70%);
  pointer-events: none;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.booking-text h2 { margin-bottom: 1.5rem; }
.booking-text p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-size: 1.025rem; }
.booking-include {
  color: var(--muted);
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  line-height: 1.6;
  margin-top: 1rem;
}

.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.booking-form select,
.booking-form input[type="date"],
.booking-form input[type="text"],
.booking-form input[type="tel"] {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
}
.booking-form select:focus,
.booking-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.booking-form select option { background: #1c1c1c; }

.slot-label { font-size: 0.78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.slot-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.slot-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.slot-btn:hover, .slot-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 700;
}

.booking-msg {
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  white-space: pre-line;
}
.booking-msg--success { background: rgba(16,185,129,0.1); color: #34d399; }
.booking-msg--error   { background: rgba(239,68,68,0.1);   color: #f87171; }

/* === LOCATION === */
.location-section { padding: 7rem 0; }
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.location-info h2 { margin-bottom: 2rem; }
.location-info address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.location-info address strong { color: var(--text); font-size: 1.05rem; }
.location-info address em { font-style: italic; }

.hours { margin-bottom: 2rem; }
.hours p {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours p:last-child { border-bottom: none; }
.hours p span { color: var(--muted); min-width: 110px; }
.hours p strong { color: var(--text); }

.map-container {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-container iframe { display: block; }

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-crown { font-size: 1.4rem; }
.footer-brand strong { display: block; font-size: 0.95rem; }
.footer-brand small { color: var(--muted); font-size: 0.78rem; display: block; }
.footer-nav { display: flex; gap: 2rem; justify-content: center; }
.footer-nav a { color: var(--muted); font-size: 0.85rem; transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; }
.footer-copy { color: var(--dim); font-size: 0.78rem; text-align: right; }
.footer-admin { color: var(--dim); font-size: 0.7rem; }
.footer-admin:hover { color: var(--muted); }

/* === WA FLOAT === */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 50;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 24px rgba(201,162,39,0.4);
  animation: float-bob 3s ease-in-out infinite;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}
.wa-float:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201,162,39,0.55);
  animation: none;
  transform: translateY(-3px);
}
.wa-float svg { width: 18px; height: 18px; flex-shrink: 0; }
@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* === REVEAL ANIMATIONS === */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* === RESPONSIVE === */

/* Touch devices: gallery captions always visible (no hover) */
@media (hover: none) {
  .gallery-caption { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .experience-layout { grid-template-columns: 1fr; gap: 3rem; }
  .experience-text   { max-width: 100%; }
  .services-layout   { grid-template-columns: 1fr; }
  .booking-layout    { grid-template-columns: 1fr; gap: 3rem; }
  .location-layout   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; }
  .footer-right      { align-items: flex-start; }
  .footer-copy       { text-align: left; }
}

@media (max-width: 768px) {
  /* Header */
  #header            { padding: 1rem 1.5rem; }
  #header nav, .header-cta { display: none; }
  .menu-toggle       { display: flex; padding: 10px; }

  /* Buttons — 44px min touch target */
  .btn               { min-height: 44px; }

  /* Hero */
  h1                 { font-size: clamp(2.6rem, 12vw, 5rem); }
  .hero-content      { padding: 0 1.75rem; }
  .hero-scroll-hint  { left: 1.75rem; display: none; }
  .hero-sub          { font-size: 1rem; }

  /* Section spacing */
  .section-header    { margin-bottom: 2.5rem; }
  .stats-section     { padding: 3.5rem 0; }
  .experience-section { padding: 5rem 0; }
  .services-section  { padding: 5rem 0; }
  .gallery-section   { padding: 5rem 0; }
  .team-section      { padding: 5rem 0; }
  .testimonials-section { padding: 5rem 0; }
  .booking-section   { padding: 5rem 0; }
  .location-section  { padding: 5rem 0; }

  /* Stats */
  .stat-num          { font-size: 2.6rem; }
  .stat-suffix       { font-size: 1.5rem; }

  /* Team */
  .team-grid         { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
    gap: 10px;
  }

  /* Map */
  .map-container     { height: 280px; }

  /* Booking form — font-size 1rem (16px) prevents iOS auto-zoom on focus */
  .booking-form select,
  .booking-form input[type="date"],
  .booking-form input[type="text"],
  .booking-form input[type="tel"] {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }

  /* Slot buttons — 44px min touch target */
  .slot-btn {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  /* Footer */
  .footer-nav        { flex-wrap: wrap; gap: 1rem 1.5rem; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-content      { padding: 0 1.25rem; }
  .hero-sub          { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-actions      { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* Section spacing */
  .section-header    { margin-bottom: 2rem; }
  .experience-section { padding: 4rem 0; }
  .services-section  { padding: 4rem 0; }
  .booking-section   { padding: 4rem 0; }
  .gallery-section   { padding: 4rem 0; }

  /* Stats */
  .stats-grid        { grid-template-columns: 1fr 1fr; }
  .stat-num          { font-size: 2.1rem; }
  .stat-suffix       { font-size: 1.2rem; }
  .stat-item         { padding: 1.5rem 1rem; }

  /* Perks & Team */
  .perks-grid        { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    padding: 0 1rem;
  }
  .gallery-grid .gallery-item { grid-column: 1 !important; grid-row: auto !important; }

  /* Map */
  .map-container     { height: 240px; }

  /* Booking form */
  .booking-form      { padding: 1.5rem; gap: 1rem; }

  /* Footer */
  .footer-nav        { gap: 0.75rem 1.25rem; }
  .footer-inner      { gap: 1.5rem; }

  /* WA float — icon-only pill on small screens */
  .wa-float          { padding: 0.875rem 1.1rem; font-size: 0.8rem; }
}
