/* ═══════════════════════════════════════════
   THT Nail Salon — styles.css
   ═══════════════════════════════════════════ */

:root {
  --cream: #FAF5EA;
  --blush: #EFE3C8;
  --mauve: #9C8D77;
  --deep-rose: #8C6B47;
  --espresso: #2A2521;
  --gold: #C9A055;
  --gold-light: #E3C687;
  --white: #FFFFFF;
  --soft-shadow: 0 4px 30px rgba(38, 34, 32, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 125%;
}

body {
  font-family: 'Libre Franklin', sans-serif;
  background: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

/* ═══════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(245, 240, 235, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: var(--soft-shadow);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--espresso);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span { color: var(--gold); }

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--deep-rose); }

/* ═══════════════════════════════════════════
   Language Toggle Switch
   ═══════════════════════════════════════════ */
.language-switch {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 24px;
  background: rgba(201, 169, 110, 0.08);
}

.lang-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--espresso);
  white-space: nowrap;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.lang-label-en {
  opacity: 1;
  color: var(--espresso);
}

.lang-label-es {
  opacity: 0.45;
  color: var(--espresso);
}

.language-switch.spanish .lang-label-en {
  opacity: 0.45;
}

.language-switch.spanish .lang-label-es {
  opacity: 1;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--gold);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.toggle-switch:hover {
  background: var(--gold-light);
}

.toggle-switch:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.25);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch.spanish {
  background: var(--deep-rose);
}

.toggle-switch.spanish:hover {
  background: #6f5638;
}

.toggle-switch.spanish .toggle-slider {
  left: 23px;
}

/* Mobile menu hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--espresso);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ═══════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(226, 209, 163, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200, 166, 154, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 40%),
    var(--cream);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%; right: -5%;
  width: 500px; height: 500px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 5%; left: -8%;
  width: 600px; height: 600px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -15px) rotate(3deg); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 0.65rem 2.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  animation: badgeGlow 3.5s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(201, 160, 85, 0); }
  50% { box-shadow: 0 0 18px rgba(201, 160, 85, 0.28); }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(90deg, var(--deep-rose) 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--deep-rose) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: -250% center; }
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mauve);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--espresso);
  color: var(--cream);
  text-decoration: none;
  padding: 1rem 2.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--deep-rose);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}

.hero-cta:hover::before { transform: translateX(0); }
.hero-cta span { position: relative; z-index: 1; }
.hero-cta svg {
  position: relative; z-index: 1;
  transition: transform 0.3s;
}

.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--mauve);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
  cursor: pointer;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════
   Section defaults
   ═══════════════════════════════════════════ */
section { padding: 5rem 3rem; }

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mauve);
  max-width: 520px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   Gallery Carousel
   ═══════════════════════════════════════════ */
#gallery {
  background: var(--cream);
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header .section-desc { margin: 0 auto; }

.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.2rem 1rem;
  flex: 1;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 auto;
  width: calc(50% - 0.6rem);
  aspect-ratio: 3 / 4;
  max-height: 520px;
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blush);
  position: relative;
  box-shadow: var(--soft-shadow);
}

.gallery-slide:only-child { width: 100%; aspect-ratio: 4 / 5; }

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-slide:hover img {
  transform: scale(1.06);
}

.gallery-slide.img-error img {
  display: none;
}

.gallery-slide.img-error {
  background: linear-gradient(135deg, var(--blush) 0%, var(--mauve) 100%);
}

.gallery-slide.img-error::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='9' cy='11' r='2'/%3E%3Cpath d='M21 15l-4.5-4.5L9 18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px;
  opacity: 0.55;
}

.gallery-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: var(--white);
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.06);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blush);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   Services
   ═══════════════════════════════════════════ */
#services {
  background: var(--white);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-desc { margin: 0 auto; }

.service-category {
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.category-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--espresso);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.8rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  background: var(--white);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.service-card:hover::before { transform: scaleX(1); }

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: rgba(201, 169, 110, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(38, 34, 32, 0.09);
  }
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--espresso);
}

.service-desc {
  font-size: 0.8rem;
  color: var(--mauve);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-addon {
  font-size: 0.7rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.services-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mauve);
  font-style: italic;
  max-width: 600px;
  margin: 3rem auto 1.5rem;
  line-height: 1.6;
}

.pdf-links {
  text-align: center;
  font-size: 0.85rem;
  color: var(--espresso);
  margin-top: 1rem;
  font-weight: 400;
}

.pdf-link {
  color: var(--deep-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(155, 107, 94, 0.4);
  transition: all 0.3s ease;
  font-weight: 500;
}

.pdf-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.pdf-separator {
  color: var(--mauve);
  margin: 0 0.5rem;
}

/* ═══════════════════════════════════════════
   About
   ═══════════════════════════════════════════ */
#about {
  display: flex;
  justify-content: center;
  background: var(--cream);
  padding-top: 3.5rem;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.about-text {
  max-width: 680px;
  width: 100%;
  padding: 0;
}

.about-text .section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-text .section-title {
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text .section-desc {
  max-width: 100%;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mauve);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.about-feature-icon {
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--mauve);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

.about-feature strong {
  color: var(--espresso);
  font-weight: 500;
  display: inline;
}

/* ═══════════════════════════════════════════
   Booking
   ═══════════════════════════════════════════ */
#booking {
  background: linear-gradient(135deg, var(--espresso) 0%, rgba(58, 37, 32, 0.95) 100%);
  padding: 7rem 3rem;
  color: var(--cream);
  text-align: center;
}

#booking .section-label { color: var(--gold-light); }
#booking .section-title { color: var(--cream); }
#booking .section-desc { color: rgba(245, 240, 235, 0.7); margin: 0 auto; }

#booking > .reveal { margin-bottom: 3rem; }

.booking-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
}

.booking-card {
  background: rgba(245, 240, 235, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
}

.booking-card:hover {
  background: rgba(245, 240, 235, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
}

.booking-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.booking-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.booking-card p {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.55);
  line-height: 1.65;
  font-weight: 300;
}

.booking-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: var(--espresso);
  text-decoration: none;
  padding: 1.1rem 3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.booking-main-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.booking-note {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.35);
  margin-top: 1.2rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   Policies
   ═══════════════════════════════════════════ */
#policies {
  max-width: 800px;
  margin: 0 auto;
  padding: 7rem 3rem;
  background: var(--white);
}

.policies-header { text-align: center; margin-bottom: 3rem; }
.policies-header .section-desc { margin: 0 auto; }

.policy-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  background: var(--white);
}

.policy-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-rose);
}

.policy-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.policy-item p {
  font-size: 0.82rem;
  color: var(--mauve);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   Location
   ═══════════════════════════════════════════ */
#location {
  background: var(--white);
  padding: 5rem 3rem;
}

.location-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--gold);
  margin-top: 2px;
}

.location-item .label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.location-item .value {
  font-size: 0.85rem;
  color: var(--mauve);
  font-weight: 300;
}

.location-item a.value {
  color: var(--deep-rose);
  font-weight: 400;
  text-decoration: none;
}

.location-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem;
  transition: color 0.3s;
}

.location-map {
  background: var(--blush);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.location-map iframe {
  border: 0;
}

/* ═══════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════ */
footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 4rem 3rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.footer-brand .nav-logo {
  color: var(--cream);
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1.7;
  font-weight: 300;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: 'Libre Franklin', sans-serif;
}

.footer-col a {
  display: block;
  color: rgba(245, 240, 235, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(245, 240, 235, 0.3);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   Scroll animations
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entrance for cards within a revealed group */
.services-grid .service-card,
.booking-cards .booking-card {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.revealed .services-grid .service-card,
.reveal.revealed .booking-cards .booking-card,
.booking-cards.reveal.revealed .booking-card {
  animation: cardFadeUp 0.65s ease forwards;
}

.reveal.revealed .services-grid .service-card:nth-child(1),
.reveal.revealed .booking-cards .booking-card:nth-child(1),
.booking-cards.reveal.revealed .booking-card:nth-child(1) { animation-delay: 0.05s; }
.reveal.revealed .services-grid .service-card:nth-child(2),
.reveal.revealed .booking-cards .booking-card:nth-child(2),
.booking-cards.reveal.revealed .booking-card:nth-child(2) { animation-delay: 0.14s; }
.reveal.revealed .services-grid .service-card:nth-child(3) { animation-delay: 0.23s; }
.reveal.revealed .services-grid .service-card:nth-child(4) { animation-delay: 0.32s; }
.reveal.revealed .services-grid .service-card:nth-child(5) { animation-delay: 0.41s; }
.reveal.revealed .services-grid .service-card:nth-child(6) { animation-delay: 0.50s; }

@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Staggered entrance for individually-revealed items */
.policy-item:nth-child(1) { transition-delay: 0s; }
.policy-item:nth-child(2) { transition-delay: 0.12s; }
.policy-item:nth-child(3) { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-logo { order: 1; }

  .nav-center {
    order: 3;
    flex-basis: 100%;
    margin-top: 1rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.active { display: flex; }
  .nav-right { order: 2; }
  .hamburger { display: flex; }

  section { padding: 4rem 1.5rem; }

  #about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 250px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .booking-cards { grid-template-columns: 1fr; }

  #policies { padding: 4rem 1.5rem; }
}

@media (max-width: 750px) {
  section { padding: 4rem 1.5rem; }
  #policies { padding: 4rem 1.5rem; }

  .gallery-slide { width: 100%; aspect-ratio: 4 / 5; max-height: 560px; }
}

@media (max-width: 600px) {
  /* ═══════ NAVIGATION ═══════ */
  nav {
    padding: 0.6rem 0.8rem;
    position: relative;
  }

  nav.scrolled {
    padding: 0.5rem 0.8rem;
  }

  .nav-logo {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .nav-logo span { font-size: 1rem; }

  .nav-right {
    gap: 0.6rem;
    flex-shrink: 0;
  }

  .language-switch {
    padding: 0.3rem 0.5rem;
    gap: 0.3rem;
    border-radius: 18px;
    min-height: 24px;
  }

  .lang-label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    white-space: nowrap;
  }

  .toggle-switch {
    width: 36px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .toggle-slider {
    width: 14px;
    height: 14px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
  }

  .toggle-switch.spanish .toggle-slider {
    left: 19px;
  }

  .hamburger {
    padding: 2px;
  }

  .hamburger span {
    width: 20px;
    height: 1.25px;
  }

  /* ═══════ HERO ═══════ */
  .hero {
    padding-top: 60px;
    min-height: 80vh;
  }

  .hero-bg::before {
    width: 280px;
    height: 280px;
    top: 8%;
    right: -12%;
  }

  .hero-bg::after {
    width: 320px;
    height: 320px;
    bottom: -8%;
    left: -18%;
  }

  .hero-content {
    padding: 0 1rem;
    z-index: 2;
  }

  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    padding: 0.45rem 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gold-light);
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    font-weight: 300;
  }

  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 1.2rem;
    color: var(--mauve);
  }

  .hero-cta {
    padding: 0.8rem 1.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    gap: 0.6rem;
  }

  .hero-cta svg {
    width: 12px;
    height: 12px;
  }

  .hero-scroll {
    bottom: 1.2rem;
    font-size: 0.5rem;
    gap: 0.4rem;
  }

  .hero-scroll svg {
    width: 10px;
    height: 16px;
  }

  /* ═══════ SECTIONS ═══════ */
  section {
    padding: 3rem 1rem;
  }

  #policies {
    padding: 3rem 1rem;
  }

  .section-label {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    margin-bottom: 0.4rem;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    font-weight: 400;
  }

  .section-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 100%;
  }

  /* ═══════ GALLERY ═══════ */
  .gallery-header { margin-bottom: 1.8rem; }

  .gallery-carousel { gap: 0.5rem; }

  .gallery-slide { width: 100%; aspect-ratio: 4 / 5; }

  .gallery-arrow {
    width: 34px;
    height: 34px;
  }

  .gallery-dots { margin-top: 1rem; }

  /* ═══════ SERVICES ═══════ */
  .services-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .service-category {
    margin-bottom: 2rem;
  }

  .category-title {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    width: 100%;
  }

  .service-card {
    padding: 0.8rem;
    border-radius: 6px;
    background: rgba(196, 166, 154, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .service-card:active {
    background: rgba(196, 166, 154, 0.12);
  }

  .service-card::after {
    content: '+';
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    font-size: 1.2rem;
    color: var(--deep-rose);
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
  }

  .service-card.expanded {
    grid-column: 1 / -1;
  }

  .service-card.expanded::after {
    transform: rotate(45deg);
  }

  .service-card h4 {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    font-family: 'Cormorant Garamond', serif;
    padding-right: 1.2rem;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: var(--mauve);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .service-card.expanded .service-desc {
    max-height: 200px;
    margin-bottom: 0.6rem;
  }

  .service-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .service-card.expanded .service-price {
    max-height: 50px;
    margin-bottom: 0.3rem;
  }

  .service-addon {
    font-size: 0.68rem;
    color: var(--mauve);
    font-style: italic;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .service-card.expanded .service-addon {
    max-height: 50px;
    margin-bottom: 0.6rem;
  }

  .pdf-links {
    font-size: 0.7rem;
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .service-card.expanded .pdf-links {
    max-height: none;
  }

  .pdf-links a {
    color: var(--deep-rose);
    text-decoration: none;
    display: inline;
  }

  .pdf-separator {
    display: inline;
    margin: 0 0.3rem;
    color: rgba(58, 37, 32, 0.3);
  }

  /* ═══════ ABOUT ═══════ */
  .about-text .section-label {
    font-size: 0.55rem;
    margin-bottom: 0.3rem;
  }

  .about-text .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .about-text .section-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .about-features {
    gap: 1.2rem;
    margin-top: 1.2rem;
  }

  .about-feature { gap: 0.8rem; }

  .about-feature-icon {
    font-size: 1rem;
    min-width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .about-feature p { font-size: 0.78rem; line-height: 1.5; }
  .about-feature strong { display: inline; }

  /* ═══════ BOOKING ═══════ */
  .booking-section h2 {
    font-size: 1.6rem;
  }

  .booking-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .booking-card {
    padding: 1rem 0.8rem;
    border-radius: 6px;
  }

  .booking-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .booking-card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .booking-main-btn {
    padding: 0.7rem 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    width: 100%;
    justify-content: center;
    margin-top: 0.6rem;
  }

  /* ═══════ POLICIES ═══════ */
  #policies {
    max-width: 100%;
  }

  .policies-header {
    margin-bottom: 2rem;
  }

  .policy-items {
    gap: 1rem;
  }

  .policy-item {
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 6px;
  }

  .policy-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    stroke-width: 1.5;
    flex-shrink: 0;
  }

  .policy-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
  }

  .policy-item p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  /* ═══════ LOCATION ═══════ */
  #location {
    padding: 3rem 1rem;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-item {
    gap: 0.8rem;
  }

  .location-item svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .location-item .label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
  }

  .location-item .value {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .location-details {
    gap: 0.8rem;
    margin-top: 0.8rem;
  }

  .location-directions {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    margin-top: 1rem;
  }

  .location-map {
    height: 220px;
    margin-top: 1rem;
  }

  /* ═══════ FOOTER ═══════ */
  footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .nav-logo {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .footer-brand p {
    font-size: 0.75rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    font-size: 0.55rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.2em;
  }

  .footer-col a {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   INTRO LOADER
   The acrylic nail swipes across the wordmark at 45°, entering
   from just past the left edge of the text and exiting just past
   the right edge. Animation is driven by JS (main.js) so the
   swipe range is measured from the actual rendered font width.
   ═══════════════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso);
  overflow: hidden;
  animation: preloaderExit 0.9s cubic-bezier(0.76, 0, 0.24, 1) 1.8s forwards;
}

html.is-loading,
html.is-loading body { overflow: hidden; }

.preloader-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4em;
}

/* Star container */
.preloader-square {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: transparent;
  z-index: 1;
  opacity: 0;
  overflow: visible;
  transform: translate(0, 0);
}

/* Gold star SVG */
.preloader-bottle {
  width: 100%;
  height: 100%;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(201, 169, 110, 0.9))
    drop-shadow(0 0 22px rgba(201, 169, 110, 0.45));
}

/* Gloss shine sweeps across the star */
.preloader-shine {
  position: absolute;
  top: -10%;
  left: -70%;
  width: 60%;
  height: 120%;
  background: linear-gradient(108deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  transform: rotate(12deg);
  opacity: 0;
  pointer-events: none;
}

/* Wordmark — visual styles only; JS drives the rise animation */
.preloader-word {
  position: relative;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 6vw, 4rem);
  letter-spacing: 0.15em;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(16px);
}

.preloader-word span { color: var(--gold-light); }

@keyframes preloaderExit {
  to { transform: translateY(-100%); visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  #preloader { display: none; }
}