/*
 * seasonal.css
 * Phoenix Family — Shared styles for all seasonal landing pages
 * Link this from every seasonal page HTML file.
 *
 * LANDING MODE:
 *   When the URL contains ?mode=landing, JavaScript adds
 *   the class "landing-mode" to <body>. Rules prefixed with
 *   body.landing-mode override the default site-page styles.
 */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* --- Reds — kept in sync with --pf-red in pf-shell.css ── */
  --phoenix-red:       #bb1654;   /* = --pf-red         */
  --phoenix-red-dark:  #8f1040;
  --phoenix-red-light: #F6D7E1;   /* = --pf-red-light   */

  /* --- Neutrals — kept in sync with pf-shell.css --------- */
  --warm-white:        #ffffff;   /* = --pf-bg          */
  --cream:             #f6f6f6;   /* = --pf-soft        */
  --charcoal:          #333333;   /* = --pf-dark        */
  --mid-gray:          #333333;   /* = --pf-text        */
  --light-gray:        #e5e5e5;   /* = --pf-border      */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* --- SITE HEADER (default: visible) ----------------------- */

.pf-site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(187,22,84,0.1);
  transition: box-shadow 0.3s;
}
.pf-site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.pf-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 80px;
}

.pf-site-header__brand img { height: 44px; width: auto; display: block; }

/* --- LANDING MODE: hide nav + hamburger, keep logo + CTA -------- */
body.landing-mode .pf-site-header__nav-wrap { display: none; }
body.landing-mode .pf-site-header__toggle   { display: none; }


/* --- SITE FOOTER (default: full) ----------------------- */
.site-footer {
  background: var(--charcoal);
  padding: 64px 48px 40px;
}
.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .footer-brand img {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(10);
  opacity: 0.9;
}
.site-footer .footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.site-footer .footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.site-footer .footer-col a,
.site-footer .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 300;
  transition: color 0.2s;
}
.site-footer .footer-col a:hover { color: #fff; }
.site-footer .footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* Minimal footer (landing mode) — hidden by default */
.landing-footer {
  display: none;
  background: var(--charcoal);
  padding: 32px 48px;
  text-align: center;
}
.landing-footer img {
  height: 28px;
  filter: brightness(10);
  opacity: 0.7;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.landing-footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.landing-footer a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  margin: 0 8px;
  transition: color 0.2s;
}
.landing-footer a:hover { color: rgba(255,255,255,0.7); }

/* --- LANDING MODE: swap footers ----------------------- */
body.landing-mode .site-footer  { display: none; }
body.landing-mode .landing-footer { display: block; }

/* --- LANDING MODE: urgency banner ----------------------- */
/* * .urgency-bar is hidden by default. In landing mode it appears beneath the nav as a slim colored strip with a deadline or short message.*/
.urgency-bar {
  display: none;
  background: var(--phoenix-red);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  position: fixed;
  top: 80px; /* sits just below the pf-site-header */
  left: 0; right: 0;
  z-index: 99;
}
.urgency-bar a { color: #fff; text-decoration: underline; }

body.landing-mode .urgency-bar { display: block; }

/* When urgency bar is visible, push page content down an extra 40px */
body.landing-mode .page-content { padding-top: calc(80px + 40px); }


/* --- SHARED CONTENT STYLES ----------------------- */

/* Nav spacer — accounts for fixed pf-site-header height */
.page-content { padding-top: 80px; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--phoenix-red);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,32,47,0.28);
}
.btn-primary:hover {
  background: var(--phoenix-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,32,47,0.36);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1.5px solid var(--light-gray);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--charcoal); transform: translateY(-2px); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--phoenix-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  margin: 6px 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.5);
  margin: 6px 8px;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline-white:hover { border-color: #fff; transform: translateY(-2px); }

/* Typography helpers */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--phoenix-red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.centered::before,
.section-eyebrow.centered::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--phoenix-red);
  opacity: 0.4;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

/* Fade-up animation — .fade-up → pf-base.css */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-image-panel {
  position: relative;
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--warm-white) 100%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 80px 56px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--phoenix-red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--phoenix-red);
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.12;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--phoenix-red); }
.hero-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--mid-gray);
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- WHY STRIP ---- */
.why-strip { background: var(--charcoal); padding: 80px 0; }
.why-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.why-strip-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--phoenix-red-light);
  margin-bottom: 16px;
}
.why-strip-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
}
.why-strip-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.65); font-weight: 300; }
.why-strip-body p + p { margin-top: 16px; }
.why-strip-highlight { color: rgba(255,255,255,0.9); font-style: italic; font-size: 1.1rem; }

/* ---- STEPS ---- */
.steps-section { padding: 100px 48px; max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}
.step-card {
  background: var(--warm-white);
  padding: 52px 40px;
  position: relative;
  transition: background 0.25s;
}
.step-card:hover { background: var(--cream); }
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  font-weight: 400;
  color: var(--phoenix-red);
  opacity: 0.12;
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
  user-select: none;
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--phoenix-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-icon svg { width: 22px; height: 22px; fill: #fff; }
.step-title { font-family: 'DM Serif Display', serif; font-size: 1.25rem; font-weight: 400; margin-bottom: 12px; }
.step-body { font-size: 0.95rem; line-height: 1.7; color: var(--mid-gray); font-weight: 300; }

/* ---- DETAILS BAND ---- */
.details-band { background: var(--cream); padding: 100px 48px; }
.details-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.details-image { position: relative; border-radius: 4px; overflow: hidden; }
.details-image img { width: 100%; height: 440px; object-fit: cover; display: block; border-radius: 4px; }
.details-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 400; margin-bottom: 28px; line-height: 1.2; }
.detail-list { list-style: none; margin-bottom: 36px; }
.detail-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem; line-height: 1.6; color: var(--mid-gray);
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li strong { color: var(--charcoal); }
.detail-list li a { color: var(--phoenix-red); text-decoration: underline; }
.detail-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--phoenix-red); margin-top: 7px; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--phoenix-red); padding: 100px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.cta-banner-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.cta-banner-title { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.cta-banner-body { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 44px; font-weight: 300; }

/* ---- FAQ ---- */
.faq-section { padding: 100px 48px; max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; cursor: pointer; font-weight: 500; font-size: 1rem;
  transition: color 0.2s; user-select: none;
}
.faq-question:hover { color: var(--phoenix-red); }
.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1.2rem; color: var(--mid-gray); line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--phoenix-red); border-color: var(--phoenix-red); color: #fff; }
.faq-answer {
  font-size: 0.95rem; line-height: 1.75; color: var(--mid-gray);
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 24px; }

/* ---- EARLY SIGNUP NOTICE ---- */
.form-notice-card {
  background: #F6D7E1;
  border-radius: 6px;
  max-width: 780px;
  margin: 32px auto 0;
  padding: 40px 48px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.form-notice-card-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.form-notice-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #bb1654;
  margin-bottom: 10px;
  line-height: 1.2;
}
.form-notice-card-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333333;
  font-weight: 400;
}

/* --- RESPONSIVE ----------------------- */
@media (max-width: 900px) {
  .pf-site-header__inner { padding: 0 20px; height: 64px; }

  /* On mobile the site's own JS handles the toggle — we just
     make sure landing mode still hides the nav wrap correctly */
  body.landing-mode .pf-site-header__nav-wrap { display: none !important; }
  body.landing-mode .pf-site-header__toggle   { display: none !important; }

  .site-footer .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .site-footer .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .site-footer { padding: 48px 24px 32px; }

  .urgency-bar { top: 64px; font-size: 0.75rem; }
  .page-content { padding-top: 64px; }
  body.landing-mode .page-content { padding-top: calc(64px + 36px); }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-panel { height: 55vw; max-height: 420px; }
  .hero-image-panel::after { background: linear-gradient(to bottom, transparent 50%, var(--warm-white) 100%); }
  .hero-content { padding: 48px 32px 64px; }

  /* Layout sections */
  .why-strip-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .details-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-section, .details-band, .faq-section { padding: 72px 24px; }

  /* Early signup notice */
  .form-notice-card { padding: 28px 24px; gap: 16px; margin: 20px 16px 0; }
  .form-notice-card-icon { font-size: 1.6rem; }
}
