/* ============================================
   LEILANI'S CLASSY CLEANING — STYLESHEET
   Brand: Burgundy #8B1A3A | Gold #C9A84C | Cream #FAF3E0
   ============================================ */

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

:root {
  --burgundy: #8B1A3A;
  --burgundy-dark: #5C0F26;
  --burgundy-light: #A8244A;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --cream: #FAF3E0;
  --cream-dark: #F0E6CC;
  --white: #FFFFFF;
  --text-dark: #1A0A10;
  --text-mid: #4A2030;
  --text-light: #8A6070;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 243, 224, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0 24px;
  height: 64px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.02em;
}
.nav-logo em {
  font-style: italic;
  color: var(--gold);
  margin-left: 6px;
}
.nav-cta {
  background: var(--burgundy);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--burgundy-light); }

/* ---- HERO ---- */
.hero {
  min-height: 100svh;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--burgundy-dark);
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(139,26,58,0.4) 0%, transparent 60%),
    linear-gradient(160deg, #3D0818 0%, #5C0F26 40%, #8B1A3A 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250,243,224,0.7);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(250,243,224,0.4);
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero-logo {
  width: min(280px, 60vw);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

/* ---- SECTIONS ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--burgundy-dark);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-sub {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.package-card {
  background: var(--white);
  border: 1px solid rgba(139,26,58,0.12);
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139,26,58,0.12);
}
.package-card.featured {
  background: var(--burgundy-dark);
  border-color: var(--gold);
  color: var(--cream);
}
.package-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--burgundy-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.package-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}
.package-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}
.package-card.featured .package-name { color: var(--cream); }
.package-sub {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.package-card.featured .package-sub { color: rgba(250,243,224,0.6); }
.package-price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139,26,58,0.12);
}
.package-card.featured .package-price {
  color: var(--gold);
  border-color: rgba(201,168,76,0.3);
}
.package-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.package-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.package-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 8px;
  top: 9px;
}
.package-card.featured .package-features li { color: rgba(250,243,224,0.8); }
.package-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.package-btn:hover { background: var(--burgundy); color: var(--cream); }
.package-card.featured .package-btn {
  border-color: var(--gold);
  color: var(--gold);
}
.package-card.featured .package-btn:hover {
  background: var(--gold);
  color: var(--burgundy-dark);
}

/* ADD ONS */
.addons {
  background: var(--cream-dark);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 40px;
}
.addons-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--burgundy-dark);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.addon-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(139,26,58,0.08);
}
.addon-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.addon-price {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--burgundy);
}

/* ---- BOOKING ---- */
.booking {
  padding: 100px 0;
  background: var(--burgundy-dark);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.booking .section-eyebrow { color: var(--gold); }
.booking .section-title { color: var(--cream); }
.booking .section-title em { color: var(--gold); }
.booking .section-sub { color: rgba(250,243,224,0.6); }

.booking-form {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { margin-bottom: 20px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(250,243,224,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,243,224,0.3); }
.form-group select option { background: var(--burgundy-dark); color: var(--cream); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(250,243,224,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-consent {
  font-size: 11px;
  color: rgba(250,243,224,0.4);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}
.btn-submit {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--burgundy-dark);
  border: none;
  border-radius: 2px;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  text-align: center;
  margin-top: 20px;
  padding: 16px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 2px;
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text-dark);
  padding: 60px 0 40px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-logo em { font-style: italic; color: var(--gold); }
.footer-tagline {
  font-size: 13px;
  color: rgba(250,243,224,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.footer-contact {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-trust {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(250,243,224,0.3);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(250,243,224,0.2);
}
.footer-copy a { color: rgba(201,168,76,0.5); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(1.4); opacity: 0; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.8; transform: scale(1.3) rotate(180deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.15); }
}

@keyframes drift {
  0%   { transform: translateX(0) translateY(0) rotate(0deg); }
  33%  { transform: translateX(18px) translateY(-12px) rotate(120deg); }
  66%  { transform: translateX(-12px) translateY(8px) rotate(240deg); }
  100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Particle canvas layer */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  bottom: -20px;
  display: block;
  border-radius: 50%;
  animation: floatUp linear infinite;
}

/* Gold sparkle dots */
.hero-particles span:nth-child(1)  { left: 5%;  width: 4px;  height: 4px;  background: var(--gold);    animation-duration: 8s;  animation-delay: 0s;   opacity: 0.7; }
.hero-particles span:nth-child(2)  { left: 12%; width: 6px;  height: 6px;  background: var(--gold-light); animation-duration: 11s; animation-delay: 1.5s; opacity: 0.5; }
.hero-particles span:nth-child(3)  { left: 22%; width: 3px;  height: 3px;  background: var(--gold);    animation-duration: 7s;  animation-delay: 3s;   opacity: 0.8; }
.hero-particles span:nth-child(4)  { left: 32%; width: 5px;  height: 5px;  background: rgba(201,168,76,0.6); animation-duration: 13s; animation-delay: 0.5s; }
.hero-particles span:nth-child(5)  { left: 42%; width: 4px;  height: 4px;  background: var(--gold);    animation-duration: 9s;  animation-delay: 2s;   opacity: 0.6; }
.hero-particles span:nth-child(6)  { left: 55%; width: 7px;  height: 7px;  background: var(--gold-light); animation-duration: 14s; animation-delay: 4s;   opacity: 0.4; }
.hero-particles span:nth-child(7)  { left: 63%; width: 3px;  height: 3px;  background: var(--gold);    animation-duration: 6s;  animation-delay: 1s;   opacity: 0.9; }
.hero-particles span:nth-child(8)  { left: 72%; width: 5px;  height: 5px;  background: rgba(201,168,76,0.5); animation-duration: 10s; animation-delay: 3.5s; }
.hero-particles span:nth-child(9)  { left: 82%; width: 4px;  height: 4px;  background: var(--gold);    animation-duration: 8s;  animation-delay: 0.8s; opacity: 0.7; }
.hero-particles span:nth-child(10) { left: 91%; width: 6px;  height: 6px;  background: var(--gold-light); animation-duration: 12s; animation-delay: 2.5s; opacity: 0.5; }
.hero-particles span:nth-child(11) { left: 18%; width: 3px;  height: 3px;  background: var(--gold);    animation-duration: 9s;  animation-delay: 5s;   opacity: 0.6; }
.hero-particles span:nth-child(12) { left: 48%; width: 4px;  height: 4px;  background: rgba(201,168,76,0.7); animation-duration: 11s; animation-delay: 6s; }
.hero-particles span:nth-child(13) { left: 78%; width: 3px;  height: 3px;  background: var(--gold);    animation-duration: 7s;  animation-delay: 4.5s; opacity: 0.8; }
.hero-particles span:nth-child(14) { left: 35%; width: 5px;  height: 5px;  background: var(--gold-light); animation-duration: 15s; animation-delay: 7s;   opacity: 0.4; }
.hero-particles span:nth-child(15) { left: 88%; width: 3px;  height: 3px;  background: var(--gold);    animation-duration: 8s;  animation-delay: 1.2s; opacity: 0.7; }

/* Drifting glows */
.hero-glow-1 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: 20%; left: 10%;
  z-index: 1;
  animation: drift 18s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,26,58,0.25) 0%, transparent 70%);
  bottom: 30%; right: 15%;
  z-index: 1;
  animation: drift 22s ease-in-out infinite reverse;
  pointer-events: none;
}
.hero-glow-3 {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  top: 60%; left: 50%;
  z-index: 1;
  animation: drift 14s ease-in-out infinite 3s;
  pointer-events: none;
}

/* Animated gradient bg */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(139,26,58,0.4) 0%, transparent 60%),
    linear-gradient(160deg, #3D0818, #5C0F26, #8B1A3A, #5C0F26, #3D0818) !important;
  background-size: 400% 400% !important;
  animation: gradientShift 12s ease infinite !important;
}

/* ---- MOBILE ---- */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .addons { padding: 28px 20px; }
  .hero { padding: 100px 20px 60px; }
  .nav { padding: 0 16px; }
  .services, .booking { padding: 72px 0; }
}
