/* ============================================
   BÈL LANMOU LAUNDRY MAT — STYLESHEET
   Color Palette:
   - Gold Primary:   #C9A84C
   - Gold Dark:      #9A7A28
   - Gold Light:     #F0D98A
   - Near Black:     #1A1A1A
   - Dark Gray:      #333333
   - Mid Gray:       #666666
   - Light Gray:     #F5F5F5
   - White:          #FFFFFF
   - Coming Soon bg: #F9F5EC
============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-dark: #9A7A28;
  --gold-light: #F0D98A;
  --gold-faint: #FBF5E6;
  --black: #1A1A1A;
  --dark: #333333;
  --mid: #666666;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --border: #E5E0D5;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.gold-text { color: var(--gold); }
.section { padding: 96px 0; }
.section__tag {
  display: inline-block;
  background: var(--gold-faint);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto;
}
.section__header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 48px;
  position: relative;
  z-index: 100;
  letter-spacing: 0.02em;
}
.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--black);
  opacity: 0.7;
  padding: 4px 8px;
  transition: opacity var(--transition);
}
.announcement-close:hover { opacity: 1; }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 32px;
}
.nav__logo { flex-shrink: 0; }
.nav__logo-img { height: 80px; max-width: 240px; width: auto; object-fit: contain; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__link:hover { color: var(--gold); background: var(--gold-faint); }
.nav__link--active { color: var(--gold) !important; }
.nav__link--cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
}
.nav__link--cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: #1A1A1A;
  padding: 100px 24px;
  overflow: hidden;
}
.hero__bg-image {
  position: absolute;
  inset: -10%;
  background: url('../images/landing_page.webp') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
  transform: scale(1.12);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,26,0.65) 0%,
    rgba(45,36,8,0.55) 50%,
    rgba(26,26,26,0.65) 100%
  );
  z-index: 0;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(201,168,76,0.10) 0%, transparent 40%);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero__badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero__actions .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero__stat { text-align: center; }
.hero__stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.hero__stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: bounce 2s infinite;
}
.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content p {
  color: var(--mid);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about__lead {
  font-size: 1.15rem !important;
  color: var(--dark) !important;
  font-weight: 500;
}
.about__content .btn { margin-top: 16px; }
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: var(--gold-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.value-card__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services { background: var(--light); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.service-card--coming-soon { opacity: 0.85; }
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 16px;
  flex: 1;
}
.service-card__list {
  list-style: none;
  margin-bottom: 20px;
}
.service-card__list li {
  font-size: 0.85rem;
  color: var(--dark);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.service-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.service-card__badge--soon {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
}

/* ===== MACHINES & PRICING ===== */
.machines { background: var(--white); }
.machines__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--light);
  padding: 6px;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.machines__tab {
  padding: 12px 36px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mid);
  transition: all var(--transition);
}
.machines__tab--active {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.machines__content { display: block; }
.machines__content--hidden { display: none; }
.machines__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.machine-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition);
}
.machine-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.machine-card--popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.2);
}
.machine-card__popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.machine-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.machine-card__size {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
}
.machine-card__type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid);
  background: var(--light);
  padding: 3px 10px;
  border-radius: 100px;
}
.machine-card__load {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.machine-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}
.machine-card__desc {
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.5;
}
.machine-card__features {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.machine-card__features li {
  font-size: 0.8rem;
  color: var(--dark);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.machine-card__features li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  top: 4px;
}
.machines__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mid);
  margin-top: 32px;
  font-style: italic;
}

/* ===== AMENITIES ===== */
.amenities { background: var(--light); }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.amenity-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.amenity-item__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.amenity-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.amenity-item p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ===== IMPROVEMENTS ===== */
.improvements {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2408 100%);
  color: var(--white);
}
.improvements__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
}
.improvements .section__tag {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
}
.improvements .section__title { color: var(--white); }
.improvements > div > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.improvements__list { display: flex; flex-direction: column; gap: 20px; }
.improvements__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.improvements__list-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.improvements__list strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.improvements__list p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0 !important;
}
.improvements__visual {
  text-align: center;
  padding: 48px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  background: rgba(201,168,76,0.05);
}
.improvements__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.improvements__badge-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
.improvements__badge-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 8px 0;
}
.improvements__tagline {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.6;
}
.improvements__attribution {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.step__number {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}
.step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  flex-shrink: 0;
  margin-top: 32px;
  align-self: flex-start;
}

/* ===== HOURS ===== */
.hours { background: var(--light); }
.hours__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.hours__content > p {
  color: var(--mid);
  margin-bottom: 32px;
}
.hours__table {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.hours__row:last-child { border-bottom: none; }
.hours__row:hover { background: var(--gold-faint); }
.hours__row--weekend { background: var(--gold-faint); }
.hours__day { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.hours__time { color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; }
.hours__last-wash {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--dark);
}
.hours__last-wash span { font-size: 1.2rem; }
.hours__open-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 24px;
  justify-content: center;
}
.hours__open-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  position: relative;
}
.hours__open-dot.open {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse 2s infinite;
}
.hours__open-dot.closed { background: #ef4444; }
.hours__tips {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
}
.hours__tips h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hours__tips li {
  font-size: 0.875rem;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.hours__tips li:last-child { border-bottom: none; }

/* ===== LOCATION ===== */
.location { background: var(--white); }
.location__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: start;
}
.location__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.location__detail:last-of-type { border-bottom: none; }
.location__detail-icon { font-size: 1.5rem; flex-shrink: 0; }
.location__detail h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 4px;
}
.location__detail p, .location__detail a {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
}
.location__detail a:hover { color: var(--gold); }
.location__directions { margin-top: 24px; }
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 400px;
  background: var(--light);
}
.map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 400px;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-faint) 0%, #fff 100%);
}
.map__placeholder-icon { font-size: 4rem; }
.map__placeholder p { font-size: 1.2rem; font-weight: 700; color: var(--black); }
.map__placeholder span { font-size: 0.9rem; color: var(--mid); margin-bottom: 8px; }

/* ===== FAQ ===== */
.faq { background: var(--light); }
.faq__grid { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq__item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.faq__item:last-child { border-radius: 0 0 var(--radius) var(--radius); border-bottom: none; }
.faq__question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}
.faq__question:hover { color: var(--gold); background: var(--gold-faint); }
.faq__question[aria-expanded="true"] { color: var(--gold); }
.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 0 28px 22px;
}
.faq__answer.open { display: block; }
.faq__answer p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}
.faq__answer a { color: var(--gold); text-decoration: underline; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--gold);
  padding: 64px 0;
}
.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.newsletter__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.newsletter__text p { color: rgba(26,26,26,0.7); font-size: 1rem; }
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 480px;
}
.newsletter__input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border-radius: 100px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}
.newsletter__input:focus { border-color: var(--black); }
.newsletter__form .btn--primary {
  background: var(--black);
  color: var(--white);
}
.newsletter__form .btn--primary:hover { background: #333; }
.newsletter__privacy { font-size: 0.8rem; color: rgba(26,26,26,0.6); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form__group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark);
  font-family: inherit;
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__error {
  font-size: 0.8rem;
  color: #ef4444;
  display: none;
}
.form__error.visible { display: block; }
.form__success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
.form__success.visible { display: block; }
.contact__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 28px;
}
.contact__method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact__method-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact__method strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 4px;
}
.contact__method a, .contact__method span {
  font-size: 0.95rem;
  color: var(--dark);
}
.contact__method a:hover { color: var(--gold); }
.contact__social { padding-top: 28px; }
.contact__social h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 16px;
}
.social__links { display: flex; gap: 12px; margin-bottom: 12px; }
.social__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: all var(--transition);
}
.social__link svg { width: 20px; height: 20px; }
.social__link--facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.social__link--instagram:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.social__note { font-size: 0.8rem; color: var(--mid); font-style: italic; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 16px;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer__tagline {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.85rem !important;
}
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer__links ul, .footer__services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links li, .footer__services li { font-size: 0.875rem; }
.footer__links a:hover { color: var(--gold); }
.footer__contact p {
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 50;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0.1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .machines__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* --- NAV --- */
  .nav__hamburger {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
  }
  .nav { height: 70px; }
  .nav__logo-img { height: 60px; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 98;
  }
  .nav__menu.open { display: flex; }
  .nav__link { padding: 14px 16px; width: 100%; font-size: 1rem; }
  .nav__link--cta { text-align: center; margin-top: 8px; }

  /* --- HERO --- */
  .hero {
    padding: 100px 20px 100px;
    min-height: 100svh;
    min-height: 100vh; /* fallback */
  }
  .hero__bg-image { background-position: center 30%; }
  .hero__bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(26,26,26,0.72) 0%,
      rgba(45,36,8,0.62) 55%,
      rgba(26,26,26,0.72) 100%
    );
  }
  .hero__badge { white-space: normal; text-align: center; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: center; }
  .hero__stat-divider { display: none; }
  .hero__stat { min-width: 90px; }

  /* --- ABOUT --- */
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__cards { grid-template-columns: 1fr 1fr; }

  /* --- SERVICES --- */
  .services__grid { grid-template-columns: 1fr; }

  /* --- MACHINES --- */
  .machines__grid { grid-template-columns: 1fr 1fr; }
  .machines__tabs { width: 100%; }
  .machines__tab { flex: 1; text-align: center; }

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

  /* --- IMPROVEMENTS --- */
  .improvements__inner { grid-template-columns: 1fr; gap: 40px; }
  .improvements__visual { padding: 32px 24px; }

  /* --- HOW IT WORKS --- */
  .steps { flex-direction: column; align-items: center; }
  .step__connector { width: 2px; height: 32px; }
  .step { max-width: 320px; width: 100%; }

  /* --- HOURS --- */
  .hours__grid { grid-template-columns: 1fr; gap: 40px; }

  /* --- LOCATION --- */
  .location__grid { grid-template-columns: 1fr; }
  .location__map { min-height: 260px; }
  .map__placeholder { min-height: 260px; }

  /* --- FAQ --- */
  .faq__question { padding: 18px 20px; font-size: 0.95rem; }
  .faq__answer { padding: 0 20px 18px; }

  /* --- NEWSLETTER --- */
  .newsletter__form { flex-direction: column; align-items: stretch; width: 100%; max-width: 400px; }
  .newsletter__input { min-width: unset; text-align: center; }
  .newsletter__form .btn { width: 100%; justify-content: center; }

  /* --- CONTACT --- */
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  /* --- FOOTER --- */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .newsletter { padding: 48px 0; }

  /* --- NAV --- */
  .nav { height: 60px; }
  .nav__logo-img { height: 52px; }

  /* --- HERO --- */
  .hero {
    padding: 80px 16px 90px;
    min-height: 100svh;
    min-height: 100vh;
  }
  .hero__bg-image { background-position: center 20%; }
  .hero__badge { font-size: 0.68rem; padding: 6px 12px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__subtitle { font-size: 0.95rem; }
  .hero__stats { gap: 14px; }
  .hero__stat-number { font-size: 1.25rem; }
  .hero__stat-label { font-size: 0.7rem; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero__scroll-indicator { display: none; }

  /* --- MACHINES --- */
  .machines__grid { grid-template-columns: 1fr; }
  .machine-card__popular-label { font-size: 0.65rem; }

  /* --- AMENITIES / ABOUT CARDS --- */
  .amenities__grid { grid-template-columns: 1fr; }
  .about__cards { grid-template-columns: 1fr; }

  /* --- HOURS --- */
  .hours__row { padding: 12px 16px; }
  .hours__day { font-size: 0.875rem; }
  .hours__time { font-size: 0.8rem; }

  /* --- FAQ --- */
  .faq__question { padding: 16px; font-size: 0.9rem; }
  .faq__answer { padding: 0 16px 16px; }

  /* --- FOOTER --- */
  .footer { padding-top: 48px; }
  .footer__bottom { font-size: 0.75rem; }
}

/* ============================================
   ANIMATIONS & VISUAL ENHANCEMENTS
============================================ */

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: #1A1A1A;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__logo {
  height: 90px;
  width: auto;
  background: #fff;
  border-radius: 12px;
  padding: 10px 20px;
  animation: loaderBreath 1.6s ease-in-out infinite;
}
.page-loader__dots { display: flex; gap: 10px; }
.page-loader__dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotBounce 1.1s ease-in-out infinite;
}
.page-loader__dot:nth-child(2) { animation-delay: 0.18s; }
.page-loader__dot:nth-child(3) { animation-delay: 0.36s; }

@keyframes loaderBreath {
  0%, 100% { opacity: 0.65; transform: scale(0.96); }
  50%       { opacity: 1;    transform: scale(1.04); }
}
@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0);    opacity: 0.35; }
  40%           { transform: translateY(-14px); opacity: 1; }
}

/* ===== HERO SPARKLES ===== */
.sparkle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  color: var(--gold-light);
  animation: sparkleFly var(--dur, 5s) ease-in-out var(--delay, 0s) infinite;
  z-index: 1;
  line-height: 1;
}
@keyframes sparkleFly {
  0%   { opacity: 0;   transform: translateY(0)     rotate(0deg)   scale(0.4); }
  15%  { opacity: 0.9; }
  80%  { opacity: 0.3; }
  100% { opacity: 0;   transform: translateY(-160px) rotate(210deg) scale(1.4); }
}

/* ===== ANIMATED GOLD GRADIENT TEXT (hero title) ===== */
.hero__title .gold-text {
  background: linear-gradient(100deg, #C9A84C 0%, #F0D98A 30%, #9A7A28 60%, #C9A84C 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldFlow 5s linear infinite;
}
@keyframes goldFlow {
  0%   { background-position: 0%   center; }
  100% { background-position: 250% center; }
}

/* ===== SHIMMER SWEEP ON SECTION TAGS ===== */
.section__tag {
  position: relative;
  overflow: hidden;
}
.section__tag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.5) 50%, transparent 65%);
  animation: tagShimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tagShimmer {
  0%, 100% { transform: translateX(-160%); }
  55%       { transform: translateX(220%); }
}

/* ===== SECTION TITLE DRAW-IN UNDERLINE ===== */
.section__title {
  position: relative;
  padding-bottom: 2px;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.section__header .section__title::after {
  left: 50%;
  transform: translateX(-50%);
}
.section__title.title-revealed::after { width: 72px; }

/* ===== DIRECTIONAL REVEAL CLASSES ===== */
.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-left.revealed,
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale.revealed  { opacity: 1; transform: scale(1); }

/* ===== STEP NUMBER BOUNCE-IN ===== */
@keyframes stepBounce {
  0%   { opacity: 0; transform: scale(0) rotate(-180deg); }
  55%  { transform: scale(1.28) rotate(8deg); }
  100% { opacity: 1; transform: scale(1)    rotate(0deg); }
}
.step.revealed .step__number {
  animation: stepBounce 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.step:nth-child(3).revealed .step__number { animation-delay: 0.1s; }
.step:nth-child(5).revealed .step__number { animation-delay: 0.2s; }
.step:nth-child(7).revealed .step__number { animation-delay: 0.3s; }

/* ===== BUTTON SHINE ON HOVER ===== */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn--primary:hover::after { transform: translateX(160%); }

/* ===== FEATURED CARD GLOW PULSE ===== */
.service-card--featured { animation: cardGlow 3.2s ease-in-out infinite; }
.machine-card--popular  { animation: cardGlow 3.2s ease-in-out 0.6s infinite; }
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 0 1px var(--gold), 0 4px 16px rgba(201,168,76,0.1); }
  50%       { box-shadow: 0 0 0 2px var(--gold), 0 8px 36px rgba(201,168,76,0.35); }
}

/* ===== ENHANCED CARD HOVER GLOW ===== */
.service-card:hover,
.machine-card:hover,
.value-card:hover,
.amenity-item:hover {
  box-shadow: 0 14px 44px rgba(201,168,76,0.22), 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== HOURS ROWS STAGGER-IN ===== */
.hours__row {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hours__row.row-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ===== IMPROVEMENTS SECTION ANIMATED GRADIENT ===== */
.improvements {
  background-size: 300% 300%;
  animation: improveBg 10s ease infinite;
}
@keyframes improveBg {
  0%, 100% { background-position: 0%   50%; }
  50%       { background-position: 100% 50%; }
}

/* ===== RESPECT REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .page-loader { display: none; }
  .hero__title .gold-text {
    background: none;
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
  }
}
