@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ========================================
   CalCo Card – Core Styles
   Americana + Warm Small-Town Aesthetic
   ======================================== */

:root {
  --header-h: 160px;
  /* CalCo logo-inspired: forest green + gold */
  --navy: #1A3A2A;          /* deep forest */
  --navy-dark: #0F2419;     /* near-black green */
  --red: #C4A35A;           /* gold as primary accent */
  --red-dark: #A8863F;
  --red-bright: #D4B56A;    /* CTA gold */
  
  /* Warm neutrals */
  --cream: #F4F1EA;
  --cream-dark: #E8E2D6;
  --white: #FFFdf8;
  --warm-gray: #5C635A;
  --soft-gray: #DCD6CA;
  
  /* Accents */
  --gold: #C9A84C;
  --star: #E8D5A3;
  
  /* Typography — warm editorial */
  --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  
  /* Softer geometry */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 6px 24px rgba(15, 36, 25, 0.08);
  --shadow-hover: 0 12px 36px rgba(15, 36, 25, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.28;
  color: var(--navy);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p {
  color: var(--warm-gray);
}

/* Container */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== HEADER ========== */
.header {
  background: #0A0A0A;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.logo img {
  height: 132px;
  width: auto;
  display: block;
  border-radius: 0;
}

/* When logo image is used alone (no text next to it) */
.logo-img-only img {
  height: 144px;
  max-width: min(420px, 70vw);
  width: auto;
  object-fit: contain;
}



.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
  line-height: 1.2;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(180deg, #D4B56A 0%, #C4A35A 100%);
  color: #0F2419;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #E0C478 0%, #C4A35A 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
  color: #0F2419;
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--soft-gray);
  box-shadow: var(--shadow);
}
.btn-secondary:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold);
}
.header .nav .btn-outline-gold {
  color: var(--gold);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(201, 168, 76, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 90%, rgba(26, 58, 42, 0.5), transparent 50%),
    linear-gradient(150deg, #1F4A35 0%, var(--navy) 45%, var(--navy-dark) 100%);
  color: white;
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(193,122,92,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: white;
  margin-bottom: 1.1rem;
}

.hero-text .lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.8rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--navy);
  box-shadow: var(--shadow-hover);
  max-width: 340px;
  margin-left: auto;
}

.hero-card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
}

.hero-card-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero-card-price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-gray);
}

.hero-card-list {
  margin: 1.2rem 0 1.5rem;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.hero-card-list li::before {
  content: '★';
  color: var(--red);
  font-size: 0.85rem;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.1rem;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  position: relative;
  height: 2.75rem;
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5.5rem;
  height: 1px;
  transform: translate(-50%, -50%);
  background: rgba(15, 36, 25, 0.28);
}

@media (max-width: 768px) {
  .section-divider {
    height: 2.25rem;
  }
  .section-divider::before {
    width: 4rem;
  }
}

/* ========== VALUE PROPS ========== */
.values {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 221, 210, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.4rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  text-align: center;
}
.value-card p {
  text-align: center;
}

/* ========== HOW IT WORKS ========== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(229, 221, 210, 0.75);
  box-shadow: var(--shadow);
}

.how-number {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.1rem;
}

.how-step h3 {
  margin-bottom: 0.5rem;
}

/* ========== FEATURED DEALS PREVIEW ========== */
.deals-preview {
  background: var(--cream-dark);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.deal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 221, 210, 0.85);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.deal-card-img {
  overflow: hidden;
  height: 180px;
  min-height: 180px;
  max-height: 180px;
  flex-shrink: 0;
  background: var(--navy);
}

.deal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.deal-card-body {
  padding: 1.2rem;
}

.deal-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.deal-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.deal-card p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.deal-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.deal-discount {
  background: rgba(193, 122, 92, 0.1);
  color: var(--red);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}


/* ========== PRICING COMPARE ========== */
.pricing-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-compare-3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 980px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(229, 221, 210, 0.9);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.plan-featured {
  border-color: rgba(193, 122, 92, 0.45);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(180deg, #fff 0%, #faf6f0 100%);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.plan-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--warm-gray);
  margin-bottom: 0.35rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--warm-gray);
}

.plan-desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}

.plan-features {
  list-style: none;
  margin: 0 0 1.5rem;
  flex: 1;
}

.plan-features li {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--soft-gray);
  color: var(--navy-dark);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li.muted {
  color: var(--warm-gray);
  opacity: 0.7;
}

.plan-features li.muted::before {
  content: "– ";
}

.plan-features li:not(.muted)::before {
  content: "✓ ";
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 900px) {
  .pricing-compare-3 {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 700px) {
  .pricing-compare {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}


/* ========== GIVEAWAYS ========== */
.giveaway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.giveaway-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 2px solid transparent;
}

.giveaway-featured {
  background: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-hover);
}

.giveaway-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.giveaway-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.giveaway-card p {
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .giveaway-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== CITIES BAR ========== */
.cities-bar {
  background: linear-gradient(90deg, var(--navy-dark), #1A3A2A, var(--navy-dark));
  color: rgba(255,255,255,0.88);
  padding: 0.95rem 0;
  font-size: 0.9rem;
  text-align: center;
}
.cities-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.cities-bar span {
  opacity: 0.7;
  margin-right: 0.25rem;
}
.cities-bar strong {
  color: white;
  font-weight: 600;
}
.cities-bar a {
  color: inherit;
  text-decoration: none;
}
.cities-bar a:hover strong,
.cities-bar a:focus strong {
  color: var(--gold);
}

/* ========== SPOTS LEFT ========== */
.spots-left {
  margin: 0.85rem 0 0;
  padding: 0.5rem 0.75rem;
  background: rgba(193,122,92,0.1);
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* ========== MINI FAQ ========== */
.mini-faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.mini-faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.mini-faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.mini-faq-item p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ========== BIZ CTA ========== */
.biz-cta {
  background: var(--navy);
  color: white;
  padding: 2.5rem 0;
}
.biz-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.biz-cta h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.biz-cta p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 480px;
}

@media (max-width: 800px) {
  .mini-faq {
    grid-template-columns: 1fr;
  }
  .biz-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .biz-cta p {
    max-width: 100%;
  }
  .cities-bar .container {
    gap: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }
}


/* Business pricing */
.pricing-compare-biz {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 980px;
}
.launch-offer {
  text-align: center;
  background: rgba(193, 122, 92, 0.08);
  border: 1px solid rgba(193, 122, 92, 0.25);
  color: var(--navy);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  margin: 0 auto 1.5rem;
  max-width: 980px;
  font-size: 0.95rem;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .pricing-compare-biz {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--navy);
  color: white;
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  padding: 3.5rem 0 1.75rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: white;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  max-width: 260px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ========== RESPONSIVE / MOBILE-FIRST ========== */

/* Tablet and below */
@media (max-width: 900px) {
  .hero {
    padding: 3.25rem 0 3rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-text .lead {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-card {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .values-grid,
  .how-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  
  .section {
    padding: 3.25rem 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .container {
    padding: 0 1.1rem;
  }
  
  .header-inner {
    height: 64px;
  }
  
  .header-inner {
    height: auto;
    min-height: 96px;
    padding: 0.65rem 0;
  }
  .logo img {
    height: 72px;
  }
  .logo-img-only img {
    height: 80px;
    max-width: 55vw;
  }
  
  
  
  /* Mobile navigation */
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    gap: 0.25rem;
    border-bottom: 1px solid var(--soft-gray);
    z-index: 200;
  }
  
  .nav.open {
    display: flex;
  }
  
  .nav a {
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--soft-gray);
  }
  
  .nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }
  
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
  }
  
  /* Typography scale down slightly */
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  
  .hero {
    padding: 2.5rem 0 2.25rem;
  }
  
  .hero-text .lead {
    font-size: 1.05rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
  }
  
  .hero-card {
    padding: 1.4rem;
  }
  
  .hero-card-price {
    font-size: 2.2rem;
  }
  
  .btn {
    padding: 0.8rem 1.3rem;
    font-size: 1rem;
    min-height: 48px; /* better touch target */
  }
  
  .section {
    padding: 2.75rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .value-card,
  .how-step {
    padding: 1.4rem;
  }
  
  .deals-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  
  .deal-card-img {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }

  .deal-card {
    position: relative;
  }

  .deal-card .deal-discount {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    background: rgba(15, 36, 25, 0.88);
    color: #fff;
  }
  
  .cta-band {
    padding: 2.5rem 0;
  }
  
  .cta-band .btn {
    width: 100%;
    max-width: 320px;
  }
  
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero-card-price {
    font-size: 1.9rem;
  }
  
  .logo img {
    height: 36px;
  }
  
  
}


/* ========== SOFT AMERICANA EXTRAS ========== */
.page-hero {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(201,168,76,0.14), transparent 45%),
    linear-gradient(145deg, #1F4A35 0%, var(--navy-dark) 100%) !important;
  padding: 3rem 0 2.5rem !important;
}
.page-hero h1 { letter-spacing: -0.02em; }
.benefit-card,
.mini-faq-item,
.giveaway-card,
.portal-panel {
  border-radius: var(--radius) !important;
}
.filter-btn {
  border-radius: var(--radius-pill) !important;
  transition: transform 0.15s ease, background 0.15s ease;
}
.filter-btn:hover {
  transform: translateY(-1px);
}
.launch-offer {
  border-radius: var(--radius) !important;
}
.hero-badge {
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}


/* Footer keeps a modest logo */
.footer .logo img,
.footer .logo-img-only img {
  height: 56px !important;
  max-width: 220px !important;
}


/* Black header nav */
.header .nav a {
  color: rgba(255, 255, 255, 0.88);
}
.header .nav a:hover {
  color: var(--gold);
}
.header .menu-toggle {
  color: #fff;
}
.header .btn-primary {
  /* keep gold CTA visible on black */
}


/* Savings claim near CTAs */
.savings-claim {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.savings-claim-hero {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.savings-claim-on-dark {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.section-header .savings-claim {
  margin-top: 0.75rem;
}
.upgrade-band .savings-claim {
  margin: 0.35rem 0 1rem;
  color: var(--navy);
}


/* Member-forward primary path */
.member-primary {
  max-width: 720px;
  margin: 0 auto;
}
.member-primary-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-hover);
  border: 1.5px solid rgba(201, 168, 76, 0.35);
}
.member-primary-prices {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
}
.member-primary-divider {
  width: 1px;
  background: var(--soft-gray);
  align-self: stretch;
}
.member-primary-features {
  border-top: 1px solid var(--soft-gray);
  padding-top: 1rem;
  margin: 0;
}
.compare-toggle-wrap {
  text-align: center;
  margin-top: 1.25rem;
}
.compare-toggle {
  background: none;
  border: none;
  color: var(--navy);
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.5rem;
}
.compare-matrix {
  margin-top: 1.25rem;
}

/* Tier matrix tables */
.tier-matrix {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}
.tier-matrix th,
.tier-matrix td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--soft-gray);
}
.tier-matrix th:first-child,
.tier-matrix td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}
.tier-matrix thead th {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  vertical-align: bottom;
}
.matrix-price {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.25rem;
}
.matrix-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red-dark);
  background: rgba(201, 168, 76, 0.2);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-top: 0.35rem;
}
.matrix-highlight {
  background: rgba(201, 168, 76, 0.08);
}
.biz-matrix-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 700px) {
  .member-primary-prices {
    grid-template-columns: 1fr;
  }
  .member-primary-divider {
    width: 100%;
    height: 1px;
  }
  .tier-matrix th,
  .tier-matrix td {
    padding: 0.65rem 0.5rem;
    font-size: 0.85rem;
  }
}

/* Pre-recruit mobile polish */
@media (max-width: 640px) {
  .header-inner {
    height: auto !important;
    min-height: 64px;
    padding: 0.5rem 0 !important;
  }
  .logo-img-only img {
    height: 52px !important;
    max-width: 48vw !important;
  }
  .logo img {
    height: 48px !important;
  }
  .nav .btn {
    width: 100%;
    text-align: center;
  }
  .pricing-compare,
  .pricing-compare-3,
  .pricing-compare-biz {
    grid-template-columns: 1fr !important;
  }
  .filter-bar, .filters, .city-filters {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.65rem;
  }
  .biz-matrix-wrap,
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .stats-row-6 {
    grid-template-columns: 1fr 1fr !important;
  }
  .btn, button.btn {
    min-height: 44px;
  }
  input, select, textarea {
    font-size: 16px !important; /* reduce iOS zoom */
  }
}

/* Must-fix: mobile dropdown is white-on-white because .header .nav a is white */
@media (max-width: 640px) {
  .header .nav {
    background: var(--white);
  }
  .header .nav a {
    color: var(--navy);
  }
  .header .nav a:hover {
    color: var(--red-dark);
  }
  .header .nav .btn-primary {
    color: #0F2419;
  }
  .header .nav .btn-outline-gold {
    color: var(--navy);
    border-color: var(--gold);
  }
}


/* ========== REVIEW EDITS: mobile header — centered, larger logo ========== */
@media (max-width: 768px) {
  :root {
    --header-h: 100px;
  }

  .header-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto !important;
    min-height: var(--header-h) !important;
    padding: 0.5rem 3.25rem !important;
  }

  .header .logo,
  .header .logo-img-only {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    justify-content: center;
  }

  .header .logo img,
  .header .logo-img-only img {
    height: 84px !important;
    max-width: min(300px, 64vw) !important;
    width: auto;
    object-fit: contain;
  }

  .header .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  body.is-member .header-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    color: #fff;
    border: none;
    background: none;
    text-decoration: none;
  }
  body.is-member .header-profile-btn svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    color: #fff;
  }
  .header-profile-btn[hidden] { display: none !important; }

  .header .nav,
  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    gap: 0.25rem;
    border-bottom: 1px solid var(--soft-gray);
    z-index: 200;
  }

  .header .nav.open,
  .nav.open {
    display: flex;
  }

  .header .nav a,
  .nav a {
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--soft-gray);
    color: var(--navy);
  }

  .header .nav a:hover,
  .nav a:hover {
    color: var(--red-dark);
  }

  .header .nav a:last-child,
  .nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }

  .header .nav .btn,
  .nav .btn {
    width: 100%;
    text-align: center;
  }

  .header .nav .btn-primary {
    color: #0F2419;
  }

  body.is-member .header .nav,
  body.is-member .nav {
    gap: 0.65rem;
    padding: 1rem 1.15rem 1.25rem;
    background: var(--cream);
  }
  body.is-member .header .nav a,
  body.is-member .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.85rem 1rem;
    min-height: 48px;
    text-align: center;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--navy);
    background: var(--white);
    border: 1.5px solid var(--navy);
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 0 rgba(15, 36, 25, 0.08);
  }
  body.is-member .header .nav a:hover,
  body.is-member .nav a:hover {
    color: var(--navy);
    background: var(--cream-dark);
  }
  body.is-member .header .nav a#header-profile,
  body.is-member .nav a#header-profile,
  body.is-member .header .nav a.btn-primary,
  body.is-member .nav a.btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: #0F2419;
  }
  body.is-member .header .nav a.btn-outline-gold,
  body.is-member .nav a.btn-outline-gold {
    background: var(--white);
    border-color: var(--navy);
    color: var(--navy);
    margin-top: 0.35rem;
  }
  body.is-member .header .nav a[hidden],
  body.is-member .nav a[hidden] {
    display: none !important;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 96px;
  }

  .header .logo img,
  .header .logo-img-only img {
    height: 80px !important;
    max-width: min(280px, 66vw) !important;
  }
}

@media (max-width: 380px) {
  :root {
    --header-h: 88px;
  }

  .header .logo img,
  .header .logo-img-only img {
    height: 68px !important;
    max-width: 62vw !important;
  }
}

/* Footer logo stays modest and left-aligned */
.footer .logo,
.footer .logo-img-only {
  position: static !important;
  transform: none !important;
}
.footer .logo img,
.footer .logo-img-only img {
  height: 56px !important;
  max-width: 220px !important;
}

/* Must-fix v2: dropdown text is navy whenever the menu is open, any width */
.header .nav.open,
.header nav.open {
  background: #FFFdf8 !important;
}
.header .nav.open a,
.header .nav.open a:visited,
.header nav.open a,
.header nav.open a:visited {
  color: #1A3A2A !important;
}
.header .nav.open a:hover,
.header nav.open a:hover {
  color: #A8863F !important;
}
.header .nav.open .btn-primary,
.header .nav.open .btn-primary:visited {
  color: #0F2419 !important;
}
@media (max-width: 900px) {
  .header .nav a,
  .header .nav a:visited {
    color: #1A3A2A !important;
  }
  .header .nav a:hover {
    color: #A8863F !important;
  }
  .header .nav .btn-primary {
    color: #0F2419 !important;
  }
}

/* Shiny gold: header Become a Member + hero Browse Deals only */
.header .nav .btn-primary,
.hero-actions .btn-primary {
  background:
    linear-gradient(180deg,
      #F8E7A8 0%,
      #E8C96A 22%,
      #D4B56A 48%,
      #C4A35A 78%,
      #A8863F 100%);
  color: #0F2419;
  border: 1px solid rgba(168, 134, 63, 0.65);
  box-shadow:
    0 4px 14px rgba(201, 168, 76, 0.38),
    inset 0 1px 0 rgba(255, 253, 232, 0.75),
    inset 0 -1px 0 rgba(128, 96, 32, 0.18);
  text-shadow: 0 1px 0 rgba(255, 248, 220, 0.35);
}
.header .nav .btn-primary:hover,
.hero-actions .btn-primary:hover {
  background:
    linear-gradient(180deg,
      #FFF1B8 0%,
      #F0D78A 28%,
      #D4B56A 60%,
      #C4A35A 100%);
  color: #0F2419;
  box-shadow:
    0 6px 18px rgba(201, 168, 76, 0.45),
    inset 0 1px 0 rgba(255, 253, 232, 0.85);
}

/* Password show/hide wrap */
.pw-field {
  position: relative;
  width: 100%;
}
.pw-field-control {
  position: relative;
  display: block;
  width: 100%;
}
.pw-field-control input {
  width: 100%;
  padding-right: 4.5rem;
}
.pw-toggle {
  position: absolute;
  top: 50%;
  right: 0.1rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.7rem;
  border: none;
  background: transparent;
  color: var(--navy);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
.pw-toggle:hover,
.pw-toggle:focus-visible {
  color: var(--gold);
  outline: none;
}
.pw-hint {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.35;
}

/* Signed-in: hide page-chrome Become a Member CTAs */
body.is-member .js-join-cta,
body.is-member .nav a.btn-primary[href*="join"] {
  display: none !important;
}


.header-profile-btn { display: none; }

.calco-saved-toast {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 400;
  max-width: 420px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.9rem 1.05rem;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.calco-saved-toast.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.calco-saved-toast a {
  color: var(--gold);
  font-weight: 700;
}
