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

:root {
  --gold: #d4920a;
  --gold-btn: #e6a820;
  --gold-hover: #f0b830;
  --dark-nav: rgba(15, 22, 35, 0.72);
  --white: #ffffff;
  --off-white: rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.55);
  --font-ui: 'Inter', sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
}

html, body {
  height: 100%;
  font-family: var(--font-ui);
  background: #0f1623;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────
   STICKY NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--dark-nav);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 76px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

.slide-1 { background-image: url('../../assets/hero-slide-1.jpeg'); }
.slide-2 { background-image: url('../../assets/hero-slide-2.jpeg'); }
.slide-3 { background-image: url('../../assets/hero-slide-3.jpeg'); }
.slide-4 { background-image: url('../../assets/hero-slide-4.jpeg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 14, 26, 0.55) 0%,
      rgba(8, 14, 26, 0.65) 100%
    );
}

.slide-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ─────────────────────────────────────────
   HERO INNER — centered column layout
───────────────────────────────────────── */
.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────
   LEAD CAPTURE FORM CARD
───────────────────────────────────────── */
.lc-form-card {
  width: 100%;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  border-radius: 16px;
  padding: 44px 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 48px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.45);
  margin-top: 8px;
}

.lc-form-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lc-address-input {
  width: 100%;
  padding: 18px 20px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 17px;
  font-family: var(--font-ui);
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lc-address-input::placeholder { color: #9ca3af; }
.lc-address-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 146, 10, 0.14);
}

.lc-submit-btn {
  width: 100%;
  padding: 20px 20px;
  background: var(--gold-btn);
  color: #0f1623;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.lc-submit-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}
.lc-submit-btn:active { transform: translateY(0); }

.lc-form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   PROGRESS INDICATOR
───────────────────────────────────────── */
.lc-progress {
  margin-bottom: 36px;
}
.lc-progress-track {
  position: relative;
}
.lc-progress-line {
  position: absolute;
  top: 20px;
  left: calc(20px + (100% - 40px) / 6);
  right: calc(20px + (100% - 40px) / 6);
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.lc-progress-line-fill {
  height: 100%;
  width: 0%;
  background: #2d6a4f;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.lc-step-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.lc-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.lc-step-dot span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  position: relative;
  z-index: 2;
}
.lc-step-dot.active span {
  background: var(--gold);
  color: #0f1623;
}
.lc-step-dot.completed span {
  background: #2d6a4f;
  color: #ffffff;
}
.lc-step-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  white-space: nowrap;
}
.lc-step-dot.active .lc-step-label  { color: var(--gold); }
.lc-step-dot.completed .lc-step-label { color: rgba(255,255,255,0.55); }
#pdot-5 .lc-step-label { color: var(--gold); }

.lc-active-label {
  display: none;
}

/* ─────────────────────────────────────────
   STEP HEADING
───────────────────────────────────────── */
.lc-step-heading {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────
   TILE GRIDS
───────────────────────────────────────── */
.lc-tile-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.lc-tile-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lc-tile-grid--2 { grid-template-columns: repeat(2, 1fr); }

.lc-tile {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: var(--font-ui);
  overflow: hidden;
}
.lc-tile:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(212,146,10,0.45);
  transform: translateY(-2px);
}
.lc-tile.selected {
  background: rgba(212,146,10,0.18);
  border-color: var(--gold);
}
.lc-tile-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  background: rgba(255,255,255,0.06);
}
.lc-tile-emoji {
  font-size: 36px;
  line-height: 1;
  padding-top: 18px;
}
.lc-tile-label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.01em;
  padding: 0 8px;
}
.lc-tile-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.4;
  padding: 0 10px;
}

/* ─────────────────────────────────────────
   SHARED INPUTS (step 4)
───────────────────────────────────────── */
.lc-input {
  width: 100%;
  padding: 18px 20px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 17px;
  font-family: var(--font-ui);
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lc-input::placeholder { color: #9ca3af; }
.lc-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 146, 10, 0.14);
}
.lc-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ─────────────────────────────────────────
   BACK BUTTON
───────────────────────────────────────── */
.lc-field-group { display: flex; flex-direction: column; }

.lc-field-error {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #e6a820;
  font-weight: 600;
  margin-top: 5px;
  display: none !important;
}
.lc-field-error.visible { display: block !important; }

.lc-input-error {
  border-color: #e6a820 !important;
  box-shadow: 0 0 0 3px rgba(230,168,32,0.18) !important;
}

/* ─────────────────────────────────────────
   COUPON
───────────────────────────────────────── */
.lc-coupon {
  display: flex;
  align-items: stretch;
  border: 2.5px dashed rgba(212,146,10,0.7);
  border-radius: 12px;
  background: rgba(212,146,10,0.08);
  overflow: hidden;
  position: relative;
  text-align: left;
}

.lc-coupon-scissors {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: rgba(212,146,10,0.8);
  background: transparent;
  line-height: 1;
}

.lc-coupon-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: rgba(212,146,10,0.12);
  min-width: 110px;
  flex-shrink: 0;
}
.lc-coupon-amount {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #e6a820;
  line-height: 1;
  letter-spacing: -0.03em;
}
.lc-coupon-off {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #e6a820;
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.lc-coupon-divider {
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(212,146,10,0.5) 0px,
    rgba(212,146,10,0.5) 6px,
    transparent 6px,
    transparent 12px
  );
  flex-shrink: 0;
}

.lc-coupon-right {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.lc-coupon-brand {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,146,10,0.7);
}
.lc-coupon-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.lc-coupon-detail {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-top: 4px;
}
.lc-coupon-expiry {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.lc-back-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 6px;
  transition: color 0.2s;
}
.lc-back-btn:hover { color: rgba(255,255,255,0.8); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
}
@media (max-width: 560px) {
  .nav-links { display: none; }
  .hero-headline { font-size: 32px; }
  .lc-form-card { padding: 32px 20px 26px; }
  .lc-tile-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .lc-name-row { grid-template-columns: 1fr; }
  .lc-step-label { display: none; }
  #pdot-5 .lc-step-label {
    display: block;
    color: var(--gold);
  }
}

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews-section {
  background: #f7f4ef;
  padding: 90px 20px;
}
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.reviews-heading {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: #1a1208;
  line-height: 1.2;
}
.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2ddd5;
  border-radius: 8px;
  padding: 10px 16px;
  flex-shrink: 0;
}
.reviews-google-g {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4285f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.reviews-google-text { font-family: 'Inter', sans-serif; }
.reviews-google-score { font-size: 15px; font-weight: 800; color: #1a1208; line-height: 1; }
.reviews-google-stars { display: flex; gap: 2px; margin-top: 2px; }
.reviews-google-stars span { color: #d4920a; font-size: 13px; }
.reviews-google-count { font-size: 11px; color: #9a9080; margin-top: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 24px 20px;
  border: 1px solid #e8e2d8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s;
}
.review-card.visible { opacity: 1; transform: translateY(0); }
.review-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.review-stars { display: flex; gap: 3px; }
.review-stars span { color: #d4920a; font-size: 15px; }
.review-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #2c2416;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f0ebe2;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.review-name { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: #1a1208; }
.review-source { font-family: 'Inter', sans-serif; font-size: 11px; color: #9a9080; margin-top: 1px; }
.review-card.spanish .review-text { font-style: italic; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: #080e1a;
  padding: 48px 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-logo-img { height: 96px; width: auto; margin-bottom: 16px; display: block; }
.footer-tagline { font-family: 'Inter', sans-serif; font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 260px; }
.footer-links-title,
.footer-social-title,
.footer-license-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(255,255,255,0.7); }
.footer-contact-list a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: #d4920a; }
.footer-social-links { display: flex; gap: 12px; }
.footer-social-link {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social-link:hover { background: rgba(212,146,10,0.15); border-color: rgba(212,146,10,0.3); }
.footer-license-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-license-list li { font-family: 'Inter', sans-serif; font-size: 15px; color: rgba(255,255,255,0.55); }
.footer-license-list li strong { color: rgba(255,255,255,0.8); font-weight: 600; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-locations { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.35); display: flex; gap: 8px; align-items: center; }
.footer-locations span { color: #d4920a; font-size: 8px; }
@media (max-width: 760px) {
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .why-grid-top { grid-template-columns: 1fr !important; }
  .why-grid-tiles { grid-template-columns: 1fr 1fr !important; }
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
@media (max-width: 768px) {
  .gallery-item { grid-column: 1 / -1 !important; grid-row: auto !important; }
}

/* ─────────────────────────────────────────
   WHY TILES
───────────────────────────────────────── */
.why-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px 22px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s, border-color 0.2s;
}
.why-tile.visible {
  opacity: 1;
  transform: translateX(0);
}
.why-tile:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,146,10,0.25);
}
.why-tile-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  width: 32px;
  text-align: center;
}
.why-tile-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.why-tile-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
}
