/* ============================================================
   Sooner Scoopers — Site Stylesheet
   Palette:
     Primary   #B22234 (Crimson Red)  — headlines, buttons, CTAs
     Secondary #FDB913 (Gold/Yellow)  — accents, highlights
     Background#F5F5F5 (Light Gray)   — page backgrounds
     Text      #1A1A1A (Dark Charcoal)— body text
     Accent    #FFFFFF (White)        — cards, forms, contrast
   ============================================================ */

:root {
  --crimson: #B22234;
  --crimson-dark: #8e1b29;
  --gold: #FDB913;
  --gold-dark: #d99c00;
  --bg: #F5F5F5;
  --text: #1A1A1A;
  --text-muted: #4a4a4a;
  --white: #FFFFFF;
  --border: #e3e3e3;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 8px 24px rgba(26, 26, 26, 0.12);
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--crimson);
}

a:hover {
  color: var(--crimson-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Accessibility ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--crimson);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons (min 44px tall for tap targets) ---------- */

.btn {
  display: inline-block;
  min-height: 44px;
  padding: 0.75rem 1.75rem;
  border: 0;
  border-radius: 999px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--crimson-dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--text);
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-dark);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn-lg {
  font-size: 1.2rem;
  padding: 0.95rem 2.25rem;
}

/* ---------- Sticky Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--crimson);
  text-decoration: none;
  white-space: nowrap;
}

.brand .paw {
  font-size: 1.5rem;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
}

.brand:hover {
  color: var(--crimson-dark);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--crimson);
}

.main-nav a[aria-current="page"] {
  color: var(--crimson);
  border-bottom-color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-phone {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--crimson);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.6rem;
  min-height: 44px;
  min-width: 44px;
}

.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 1.25rem 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid rgba(255, 255, 255, 0.25);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero .accent {
  color: var(--gold);
}

.hero p.lead {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  max-width: 44rem;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.hero-grid p.lead {
  margin-left: 0;
}

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

.hero-grid .hero-actions {
  justify-content: flex-start;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-grid .hero-badges {
  justify-content: flex-start;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

/* ---------- Sections ---------- */

.section {
  padding: 4rem 0;
}

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

.section-crimson {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: var(--white);
  text-align: center;
}

.section-crimson h2 {
  color: var(--white);
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--crimson);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section .section-sub {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-crimson .section-sub {
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Card Grids ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
}

.card .icon {
  font-size: 2.6rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.85rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.card-accent {
  border-top: 5px solid var(--gold);
}

/* ---------- How It Works ---------- */

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  text-align: center;
  padding-top: 2.4rem;
}

.step .step-num {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text);
  font-weight: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

/* ---------- Tables ---------- */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

caption {
  text-align: left;
  padding: 1rem 1.25rem 0.25rem;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.95rem;
}

th, td {
  padding: 0.95rem 1.25rem;
  text-align: left;
}

thead th {
  background: var(--crimson);
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tbody tr:nth-child(even) {
  background: var(--bg);
}

tbody td:first-child {
  font-weight: 700;
}

.price {
  color: var(--crimson);
  font-weight: 800;
  white-space: nowrap;
}

.price-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
}

.price-note strong {
  color: var(--crimson);
  font-style: normal;
}

.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.18rem 0.65rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  white-space: nowrap;
}

tr.plan-featured {
  background: #fff7e0 !important;
  box-shadow: inset 4px 0 0 var(--gold);
}

.table-note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Add-On Cards ---------- */

.addon-price {
  display: block;
  color: var(--crimson);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0.35rem 0 0.6rem;
}

.addon-price small {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- "The Sooner Scoopers Difference" ---------- */

.diff-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.diff-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.diff-list {
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.diff-list li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.diff-list .diff-icon {
  font-size: 1.7rem;
  line-height: 1.2;
}

.diff-list h3 {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.diff-list p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.badge-first {
  display: inline-block;
  background: var(--crimson);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  margin-left: 0.45rem;
  vertical-align: middle;
  white-space: nowrap;
}

/* ---------- Content Images ---------- */

.card-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.img-rounded {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---------- Testimonials ---------- */

.testimonial {
  background: var(--white);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.testimonial blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial .stars {
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--crimson);
}

/* ---------- Service Areas ---------- */

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  list-style: none;
}

.area-links a {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  min-height: 44px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.area-links a:hover,
.area-links a:focus {
  border-color: var(--crimson);
  color: var(--crimson);
}

.area-links .area-more {
  display: inline-block;
  padding: 0.6rem 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1.1rem 1.4rem;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  min-height: 44px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--crimson);
  font-size: 1.5rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item .faq-answer {
  padding: 0 1.4rem 1.25rem;
  color: var(--text-muted);
}

/* ---------- Content Pages ---------- */

.page-hero {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem 1.25rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.page-hero p {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1.15rem;
  opacity: 0.95;
}

.breadcrumbs {
  font-size: 0.9rem;
  padding: 1rem 0 0;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.breadcrumbs li + li::before {
  content: "\203A";
  margin-right: 0.35rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs [aria-current="page"] {
  color: var(--crimson);
  font-weight: 600;
}

.prose {
  max-width: 46rem;
  margin: 0 auto;
}

.prose h2 {
  text-align: left;
  margin-top: 2.5rem;
}

.prose p {
  margin-bottom: 1.15rem;
}

.prose ul {
  margin: 0 0 1.15rem 1.4rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.checklist {
  list-style: none;
  margin-left: 0 !important;
}

.checklist li {
  padding-left: 2rem;
  position: relative;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--crimson);
  font-weight: 800;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  max-width: 40rem;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 0.7rem 0.9rem;
  min-height: 44px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--crimson);
}

.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

.form-actions .btn {
  width: 100%;
}

/* ---------- Contact Info ---------- */

.contact-info {
  list-style: none;
  display: grid;
  gap: 1rem;
  font-size: 1.1rem;
}

.contact-info li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.4rem;
}

.contact-info a {
  font-weight: 700;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--text);
  color: #d9d9d9;
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
  font-size: 0.98rem;
}

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

.site-footer h2,
.site-footer h3 {
  color: var(--gold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}

.site-footer .footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: #d9d9d9;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: #a8a8a8;
}

/* ---------- CTA Banner ---------- */

.cta-banner {
  text-align: center;
  padding: 4rem 1.25rem;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

/* ---------- Utility ---------- */

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

.mt-2 {
  margin-top: 2rem;
}

.highlight {
  background: linear-gradient(transparent 60%, rgba(253, 185, 19, 0.45) 60%);
  padding: 0 0.15em;
}

/* ---------- Legal & Consent ---------- */

.footer-legal {
  margin-top: 0.5rem;
}

.footer-legal a {
  text-decoration: underline;
}

.form-consent {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   Responsive — stacked columns on mobile
   ============================================================ */

@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.25rem;
  }

  .hero-grid .hero-actions,
  .hero-grid .hero-badges {
    justify-content: center;
  }

  .hero-grid p.lead {
    margin-left: auto;
  }

  .hero-media {
    max-width: 26rem;
    margin: 0 auto;
    width: 100%;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .diff-media {
    max-width: 22rem;
    margin: 0 auto;
    width: 100%;
  }

  .brand-logo {
    height: 40px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    display: none;
    padding: 0.5rem 0 1rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
  }

  .header-phone .phone-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.75rem 0;
  }

  .hero {
    padding: 3.25rem 1.25rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .header-cta .btn {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }
}
