/* =============================================
   RED LID HOME TRANSITIONS — Shared Stylesheet
   Palette: Black #111111, Red #C8102E, White #FFFFFF, Off-white #F5F5F5, Mid-gray #444
   Type: Oswald (display/headings), Inter (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --red:    #C8102E;
  --black:  #111111;
  --white:  #FFFFFF;
  --offwhite: #F5F5F5;
  --gray:   #444444;
  --lightgray: #E8E8E8;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  background: var(--black);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 3px solid var(--red);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--red); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  opacity: 1 !important;
}

/* ── HERO BAND ── */
.hero-band {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero-band h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 700px;
}

.hero-band h1 span { color: var(--red); }

.hero-band p.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: #a50d26; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--white); color: var(--white); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}

.btn-dark:hover { background: #2a2a2a; }

/* ── SECTION WRAPPER ── */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-full {
  padding: 4rem 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.section-title span { color: var(--red); }

.section-lead {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.rule-red {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.25rem;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  border: 1.5px solid var(--lightgray);
  padding: 2rem 1.75rem;
  background: var(--white);
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(200,16,46,0.08);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  fill: var(--red);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.price-card {
  border: 2px solid var(--lightgray);
  padding: 1.75rem 1.5rem;
  position: relative;
  background: var(--white);
  transition: border-color 0.2s;
}

.price-card.featured {
  border-color: var(--red);
  background: var(--black);
  color: var(--white);
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.price-card .price-desc {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.price-card.featured .price-desc { color: rgba(255,255,255,0.6); }

.price-card .totes-count {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.price-card .totes-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.price-card.featured .totes-label { color: rgba(255,255,255,0.5); }

.price-card .price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.price-card.featured .price-amount { color: var(--white); }

.price-card .price-amount sup { font-size: 1rem; vertical-align: top; margin-top: 4px; }
.price-card .price-tax { font-size: 0.75rem; color: var(--gray); }
.price-card.featured .price-tax { color: rgba(255,255,255,0.5); }

.price-card .price-duration {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 0.35rem;
}

.price-card.featured .price-duration { color: rgba(255,255,255,0.6); }

.price-card .price-includes {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-card.featured .price-includes { color: rgba(255,255,255,0.65); }

.price-card .price-includes span::before {
  content: '✓ ';
  color: var(--red);
  font-weight: 600;
}

.add-on-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.add-on {
  border: 1.5px solid var(--lightgray);
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 180px;
}

.add-on h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.add-on .add-on-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
}

.add-on p { font-size: 0.8rem; color: var(--gray); }

/* ── HOW IT WORKS ── */
.steps {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-60%);
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 700;
}

.step:last-child::after { display: none; }

.step-num {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.step h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.step p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

/* ── DARK BAND ── */
.dark-band {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 2rem;
  position: relative;
}

.dark-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--red);
  color: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-strip a { color: var(--white); text-decoration: none; }
.contact-strip a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  border-top: 3px solid var(--red);
}

footer a { color: rgba(255,255,255,0.65); text-decoration: none; }

/* ── WHY LIST ── */
.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1rem;
  border-left: 3px solid var(--red);
  background: var(--offwhite);
}

.why-list li .wi {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-list li .wi svg { fill: white; width: 20px; height: 20px; }

.why-list li .wt h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.why-list li .wt p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

/* ── TAGLINE BAR ── */
.tagline-bar {
  background: var(--offwhite);
  border-top: 1px solid var(--lightgray);
  border-bottom: 1px solid var(--lightgray);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.tagline-bar .tb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  font-weight: 600;
}

.tagline-bar .tb-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}

/* ── SPECIAL PROMO BOX ── */
.promo-box {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-left: 5px solid var(--red);
  margin: 2.5rem 0;
}

.promo-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.promo-box p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1rem; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero-band { padding: 3rem 1.25rem 2.5rem; }
  .hero-band h1 { font-size: 2.4rem; }
  .section { padding: 3rem 1.25rem; }
  .section-full { padding: 3rem 1.25rem; }
  .steps { gap: 1rem; }
  .step::after { display: none; }
  .contact-strip { gap: 1.25rem; font-size: 0.8rem; }
}
