/* ============================================================
   HOLIDAY LIGHTS LANDING PAGE — page-specific styles
   Linked only from holiday-lights.html. Reuses tokens, .container,
   .btn, .card, .section-header, .fade-in-section, and .balanced-text
   from style.css.
   ============================================================ */

:root {
  /* Single new accent for this campaign: warm string-light gold.
     Site brand colors (--red for CTAs, --teal as secondary accent)
     are reused as-is; this is the only new color introduced. */
  --hl-gold: #c9973f;
  --hl-gold-light: #f2c078;
}

.hl-section {
  padding: 5rem 0;
}

.hl-section--alt {
  background: var(--white);
}

/* === HERO === */
.hl-hero {
  background: linear-gradient(160deg, #060e1a 0%, #16273a 55%, #0e1f2e 100%);
  position: relative;
  overflow: hidden;
}

.hl-hero .hero__content {
  position: relative;
  z-index: 1;
}

.hl-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-stara);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hl-gold-light);
  margin-bottom: 1.25rem;
}

.hl-hero__trust {
  margin-top: 1.5rem;
  font-family: var(--font-stara);
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(249, 246, 232, 0.6);
  letter-spacing: 0.01em;
}

/* === NARRATIVE (Why All Inclusive) === */
.hl-narrative {
  background: var(--cream);
}

.hl-narrative__inner {
  max-width: 760px;
  margin: 0 auto;
}

.hl-narrative__inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-align: center;
}

.hl-narrative__inner p {
  font-family: var(--font-stara);
  font-weight: 400;
  color: #4a4a44;
  font-size: 1.1rem;
  line-height: 1.85;
}

/* === HOW IT WORKS === */
.hl-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding-left: 0;
}

.hl-step {
  text-align: center;
}

.hl-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--hl-gold);
  color: var(--hl-gold);
  font-family: var(--font-stara);
  font-weight: 700;
  font-size: 1.25rem;
}

.hl-step h3 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.hl-step p {
  font-family: var(--font-stara);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* === WHAT'S INCLUDED === */
.hl-included {
  background: linear-gradient(to bottom, #060e1a 0%, #152d42 100%);
  color: var(--white);
}

.hl-included .section-header h2 { color: var(--cream); }
.hl-included .section-header p { color: rgba(249, 246, 232, 0.6); }

.hl-included__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hl-included__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-stara);
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(249, 246, 232, 0.85);
  line-height: 1.6;
  border-bottom: 1px solid rgba(249, 246, 232, 0.1);
  padding-bottom: 1.1rem;
}

.hl-included__list li:last-child {
  border-bottom: none;
}

.hl-included__list li::before {
  content: '✦';
  color: var(--hl-gold-light);
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

/* === CHOOSE YOUR STYLE === */
.hl-styles {
  background: var(--cream);
}

.hl-style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.hl-style-card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(14, 31, 46, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hl-style-card__image {
  height: 200px;
  flex-shrink: 0;
}

.hl-style-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hl-style-card__body {
  padding: 1.75rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hl-style-card__badge {
  align-self: flex-start;
  font-family: var(--font-stara);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hl-gold);
  border: 1px solid var(--hl-gold);
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 1rem;
}

.hl-style-card h3 {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.65rem;
}

.hl-style-card p {
  font-family: var(--font-stara);
  font-weight: 400;
  color: #4a4a44;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hl-swatches {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
}

.hl-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-stara);
  padding: 0;
}

.hl-swatch__chip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(14, 31, 46, 0.12);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.hl-swatch--warm .hl-swatch__chip { background: #f2c078; }
.hl-swatch--multi .hl-swatch__chip {
  background: conic-gradient(#b23125, #257188, #f2c078, #b23125);
}
.hl-swatch--cool .hl-swatch__chip { background: #dfeaf2; }

.hl-swatch span:last-child {
  font-size: 0.7rem;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
}

.hl-swatch:hover .hl-swatch__chip,
.hl-swatch:focus-visible .hl-swatch__chip {
  transform: scale(1.08);
}

.hl-swatch.is-selected .hl-swatch__chip {
  border-color: var(--dark);
}

.hl-swatch.is-selected span:last-child {
  color: var(--dark);
  font-weight: 700;
}

/* === GALLERY === */
.hl-gallery {
  background: var(--white);
}

.hl-gallery__item {
  max-width: 720px;
  margin: 0 auto;
}

.hl-gallery__frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(14, 31, 46, 0.08);
}

.hl-gallery__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hl-gallery__caption {
  font-family: var(--font-stara);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 0.85rem;
  font-style: italic;
}

/* === PRICING === */
.hl-pricing {
  background: linear-gradient(to bottom, #060e1a 0%, #152d42 100%);
  color: var(--white);
}

.hl-pricing .section-header h2 { color: var(--cream); }

.hl-pricing__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hl-pricing__figure {
  font-family: var(--font-stara);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--hl-gold-light);
  margin-bottom: 0.5rem;
}

.hl-pricing__figure span {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(249, 246, 232, 0.6);
  display: block;
  margin-top: 0.35rem;
}

.hl-pricing__inner p {
  font-family: var(--font-stara);
  font-weight: 400;
  color: rgba(249, 246, 232, 0.75);
  line-height: 1.8;
  font-size: 1.02rem;
  margin: 1.5rem 0;
}

/* === WHY CES === */
.hl-why {
  background: var(--cream);
}

.hl-why__list {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
}

.hl-why__list li {
  font-family: var(--font-stara);
  font-weight: 400;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.6;
  padding-left: 1.6rem;
  position: relative;
}

.hl-why__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--hl-gold);
  font-weight: 700;
}

/* === FAQ ACCORDION === */
.hl-faq {
  background: var(--white);
}

.hl-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.hl-faq__item {
  border-bottom: 1px solid var(--gray-light);
}

.hl-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--font-stara);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
}

.hl-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.hl-faq__icon::before,
.hl-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--hl-gold);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hl-faq__icon::before { width: 14px; height: 2px; }
.hl-faq__icon::after { width: 2px; height: 14px; }

.hl-faq__item.is-open .hl-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.hl-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease-out);
}

.hl-faq__answer p {
  font-family: var(--font-stara);
  font-weight: 400;
  font-size: 0.95rem;
  color: #4a4a44;
  line-height: 1.75;
  padding-bottom: 1.35rem;
  max-width: 640px;
}

.hl-faq__item.is-open .hl-faq__answer {
  max-height: 240px;
}

/* === FINAL CTA + QUOTE FORM === */
.hl-quote {
  background: linear-gradient(160deg, #060e1a 0%, #16273a 55%, #0e1f2e 100%);
  color: var(--white);
  text-align: center;
}

.hl-quote__spots {
  font-family: var(--font-stara);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hl-gold-light);
  margin-bottom: 1rem;
}

.hl-quote h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.hl-quote__sub {
  font-family: var(--font-stara);
  font-weight: 400;
  color: rgba(249, 246, 232, 0.65);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hl-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  background: rgba(249, 246, 232, 0.04);
  border: 1px solid rgba(249, 246, 232, 0.1);
  border-radius: 18px;
  padding: 2.25rem;
}

.hl-form__row {
  margin-bottom: 1.25rem;
}

.hl-form__row label {
  display: block;
  font-family: var(--font-stara);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(249, 246, 232, 0.7);
  margin-bottom: 0.5rem;
}

.hl-form__hint {
  display: block;
  font-family: var(--font-stara);
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(249, 246, 232, 0.45);
  margin-top: 0.35rem;
}

.hl-form__row input[type="text"],
.hl-form__row input[type="tel"],
.hl-form__row input[type="email"],
.hl-form__row select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-stara);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s ease;
}

.hl-form__row input:focus,
.hl-form__row select:focus {
  outline: none;
  border-color: var(--hl-gold);
}

.hl-form__row input[type="file"] {
  width: 100%;
  font-family: var(--font-stara);
  font-size: 0.85rem;
  color: rgba(249, 246, 232, 0.75);
}

/* Honeypot field: hidden from real visitors, catches basic form spam bots */
.hl-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hl-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.hl-form__status {
  margin-top: 1rem;
  font-family: var(--font-stara);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.3em;
}

.hl-form__status--success { color: #8fd19e; }
.hl-form__status--error { color: #e8968c; }

/* === RESPONSIVE: TABLET === */
@media (max-width: 1023px) {
  .hl-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }

  .hl-why__list {
    grid-template-columns: 1fr;
  }
}

/* === RESPONSIVE: MOBILE === */
@media (max-width: 767px) {
  .hl-section { padding: 3.5rem 0; }

  .hl-steps {
    grid-template-columns: 1fr 1fr;
  }

  .hl-style-grid {
    grid-template-columns: 1fr;
  }

  .hl-form {
    padding: 1.75rem 1.5rem;
  }
}

/* === REDUCE MOTION === */
@media (prefers-reduced-motion: reduce) {
  .hl-faq__answer { transition: none; }
}
