/* ============================================================
   Branch's Soft Serve Ice Cream Truck — Redesign
   Inspired by The Scoop N Scootery aesthetic
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:      #FFF0D6;
  --navy-dark: #FFF8EE;
  --gold:      #C8860A;
  --gold-light:#E8A020;
  --red:       #C8860A;
  --red-hover: #A06A08;
  --white:     #ffffff;
  --off-white: #FFF8EE;
  --gray:      #8A6A40;
  --text:      #2C1A00;
  --dark-nav:  #2C1A00;
  --font-script: 'Dancing Script', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #FFF8EE;
  color: #2C1A00;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C1A00;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--red);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--red);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 26, 0, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,134,10, 0.15);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-logo {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

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

.main-nav a.active { color: var(--gold); }

.btn-order {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 2px solid var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.btn-order:hover {
  background: transparent;
  color: var(--red);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../images/brownie-sundae.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 26, 0, 0.82) 0%,
    rgba(44, 26, 0, 0.55) 50%,
    rgba(44, 26, 0, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1.0;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.btn-hero {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 40px;
  transition: background 0.25s, color 0.25s;
}

.btn-hero:hover {
  background: var(--white);
  color: var(--navy-dark);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TAGLINE BANNER
   ============================================================ */
.tagline-banner {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 20px;
}

.stars-row:last-child { margin-top: 20px; margin-bottom: 0; }

.tagline-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C8860A;
  line-height: 1.1;
  margin-bottom: 16px;
}

.tagline-accent { color: #ffffff; }

.tagline-sub {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   PHOTO GRID
   ============================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 340px;
}

.grid-item { overflow: hidden; position: relative; }

.grid-item img {
  transition: transform 0.5s ease;
}

.grid-item:hover img { transform: scale(1.05); }

.grid-text,
.grid-text-center {
  background: #2C1A00;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px;
}

.grid-text-center {
  align-items: center;
  text-align: center;
  background: #3D2400;
}

.grid-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.grid-text h3,
.grid-text-center h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.grid-sub {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  background: var(--navy-dark);
  padding: 100px 0;
}

.menu-section .container { text-align: center; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 48px 0;
  background: rgba(200,134,10,0.08);
}

.menu-card {
  background: var(--navy);
  overflow: hidden;
  transition: transform 0.3s;
}

.menu-card:hover { transform: translateY(-4px); }

.menu-img-wrap {
  height: 200px;
  overflow: hidden;
}

.menu-img-wrap img {
  transition: transform 0.5s;
}

.menu-card:hover .menu-img-wrap img { transform: scale(1.08); }

.menu-info {
  padding: 20px;
  text-align: left;
}

.menu-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C1A00 !important;
  margin-bottom: 6px;
}

.menu-info p {
  font-size: 0.8rem;
  color: #5A3800 !important;
  line-height: 1.4;
}

.menu-cta { margin-top: 16px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--navy);
  padding: 100px 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text strong { color: var(--gold); }

.about-img {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.about-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--navy-dark);
  padding: 100px 0;
}

.events-section .container { text-align: center; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.event-card {
  background: var(--navy);
  padding: 40px 24px;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s, border-color 0.3s;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}

.event-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.event-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2C1A00 !important;
  margin-bottom: 12px;
}

.event-card p {
  font-size: 0.85rem;
  color: #5A3800 !important;
  line-height: 1.6;
}

.referral-box {
  background: var(--navy);
  border: 1px solid rgba(200,134,10, 0.3);
  padding: 48px;
  margin-top: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.referral-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.referral-box p {
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.referral-box strong { color: var(--gold); }

/* ============================================================
   HOURS SECTION
   ============================================================ */
.hours-section {
  position: relative;
  background: url('../images/milkshakes.jpg') center center / cover no-repeat;
  padding: 100px 0;
  text-align: center;
}

.hours-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 0, 0.88);
}

.hours-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 48px 0;
  background: rgba(200,134,10,0.08);
}

.hours-block {
  background: rgba(61, 36, 0, 0.9);
  padding: 32px 16px;
}

.hours-block h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hours-block p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
}

.location-info { margin-top: 16px; }

.location-address {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 12px;
}

.location-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  transition: background 0.25s, color 0.25s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   FUNDRAISER SECTION
   ============================================================ */
.fundraiser-section {
  background: var(--navy);
  padding: 100px 0;
}

.fundraiser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fundraiser-text .section-title { margin-bottom: 20px; }

.fundraiser-text p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.fundraiser-text strong { color: var(--gold); }

.fundraiser-details {
  margin: 20px 0 28px;
}

.fundraiser-details li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(200,134,10,0.09);
}

.fundraiser-details li:last-child { border-bottom: none; }

.fundraiser-img {
  height: 460px;
  overflow: hidden;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--navy-dark);
  padding: 100px 0;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
  background: rgba(200,134,10,0.07);
}

.contact-card {
  background: var(--navy);
  padding: 48px 24px;
  transition: background 0.3s;
}

.contact-card:hover { background: rgba(61, 36, 0, 0.8); }

.contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

.contact-card a {
  color: var(--text);
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--gold); }

/* ============================================================
   NEWSLETTER BANNER
   ============================================================ */
.newsletter-banner {
  background: var(--red);
  padding: 60px 24px;
  text-align: center;
}

.newsletter-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-banner p {
  font-size: 1rem;
  color: rgba(44,26,0,0.85);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: rgba(200,134,10,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(44,26,0,0.6); }

.newsletter-form button {
  padding: 14px 28px;
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}

.newsletter-form button:hover { background: var(--navy); }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a0e14;
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200,134,10,0.09);
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

.footer-links h5,
.footer-contact h5,
.footer-hours h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p,
.footer-hours p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gray);
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding: 24px;
  font-size: 0.75rem;
  color: rgba(44,26,0,0.25);
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 360px; }
  .fundraiser-inner { grid-template-columns: 1fr; gap: 40px; }
  .fundraiser-img { height: 300px; }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(200,134,10,0.12);
  }

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

  .main-nav a {
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid rgba(200,134,10,0.08);
  }

  .hamburger { display: flex; }

  .btn-order { display: none; }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-grid .grid-item { height: 280px; }
  .photo-grid .grid-text,
  .photo-grid .grid-text-center { height: auto; padding: 40px 24px; }

  .menu-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3rem, 18vw, 5rem); }
  .tagline-text { font-size: clamp(1.6rem, 8vw, 2.5rem); }
}

/* =============================================
   HOME PAGE — REVIEWS SECTION
   ============================================= */

.home-reviews-section {
  background: #3D2400;
  padding: 90px 0;
}

/* ---- Rating stats bar ---- */
.home-reviews-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  background: #2C1A00;
  border: 1px solid rgba(200,134,10,0.15);
  border-radius: 4px;
  padding: 28px 36px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.home-reviews-score {
  text-align: center;
  flex-shrink: 0;
}

.home-reviews-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #C8860A;
  line-height: 1;
  margin-bottom: 6px;
}

.home-reviews-score .home-reviews-stars {
  color: #C8860A;
  font-size: 20px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}

.home-reviews-score p {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44,26,0,0.45);
  margin: 0;
}

.home-reviews-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.home-reviews-platform {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-name {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(44,26,0,0.6);
  width: 90px;
  flex-shrink: 0;
}

.platform-stars {
  color: #C8860A;
  font-size: 14px;
  letter-spacing: 2px;
  flex: 1;
}

.platform-score {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #C8860A;
  flex-shrink: 0;
}

/* ---- Review cards grid ---- */
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.home-review-card {
  background: #2C1A00;
  border: 1px solid rgba(200,134,10,0.1);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.home-review-card:hover {
  border-color: rgba(200,134,10,0.35);
  transform: translateY(-3px);
}

.home-review-card-featured {
  border-color: rgba(200,134,10,0.35);
  background: linear-gradient(160deg, #1e2d40 0%, #2C1A00 100%);
  grid-row: span 1;
}

.home-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8860A, #a07c1e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2C1A00;
  flex-shrink: 0;
}

.home-review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.home-review-meta strong {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

.home-review-platform {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start;
}

.home-review-platform.google {
  background: rgba(66,133,244,0.15);
  color: #4285f4;
  border: 1px solid rgba(66,133,244,0.25);
}

.home-review-platform.yelp {
  background: rgba(210,39,48,0.12);
  color: #d22730;
  border: 1px solid rgba(210,39,48,0.25);
}

.home-review-platform.tripadvisor {
  background: rgba(52,168,83,0.12);
  color: #34a853;
  border: 1px solid rgba(52,168,83,0.25);
}

.home-review-stars {
  color: #C8860A;
  font-size: 15px;
  letter-spacing: 2px;
}

.home-review-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.home-review-item {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8860A;
  background: rgba(200,134,10,0.08);
  border: 1px solid rgba(200,134,10,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
  margin-top: auto;
}

/* ---- CTA ---- */
.home-reviews-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .home-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-reviews-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .home-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   OPTION 1 COLOR SCHEME — DARK SECTION OVERRIDES
   Sections that intentionally stay dark (nav, footer, hero overlay,
   tagline banner, grid-text panels) need white text preserved.
   ============================================================ */

/* Navigation stays dark brown */
.site-header { background: rgba(44, 26, 0, 0.97) !important; }
.main-nav a { color: rgba(255,255,255,0.85) !important; }
.main-nav a:hover, .main-nav a.active { color: #C8860A !important; }
.brand-logo { color: #C8860A !important; }
.btn-order { background: #C8860A !important; color: #fff !important; border-color: #C8860A !important; }
.btn-order:hover { background: transparent !important; color: #C8860A !important; }
.hamburger span { background: #fff !important; }

/* Mobile nav overlay */
.mobile-nav-overlay { background: #2C1A00 !important; }
.mobile-nav-overlay a { color: rgba(255,255,255,0.85) !important; }
.mobile-nav-overlay a:hover { color: #C8860A !important; }

/* Hero — keep text white over dark overlay */
.hero-title { color: #ffffff !important; }
.hero-sub { color: #C8860A !important; }
.hero-eyebrow { color: #C8860A !important; }
.btn-hero { border-color: #ffffff !important; color: #ffffff !important; }
.btn-hero:hover { background: #ffffff !important; color: #2C1A00 !important; }

/* Tagline banner — keep on warm amber background with dark text */
.tagline-banner { background: #FFF0D6 !important; border-top: 3px solid #C8860A; border-bottom: 3px solid #C8860A; }
.tagline-text { color: #C8860A !important; }
.tagline-accent { color: #2C1A00 !important; }
.tagline-sub { color: #8A6A40 !important; }
.stars-row { color: #C8860A !important; }

/* Photo grid dark panels */
.grid-text { background: #2C1A00 !important; }
.grid-text-center { background: #3D2400 !important; }
.grid-text h3, .grid-text-center h3 { color: #ffffff !important; }
.grid-label { color: #C8860A !important; }
.grid-sub { color: rgba(255,255,255,0.6) !important; }
.grid-text p { color: rgba(255,255,255,0.75) !important; }

/* Marquee strip */
.marquee-strip { background: #C8860A !important; }
.marquee-strip span, .marquee-track { color: #ffffff !important; }

/* Menu section cards */
.menu-section { background: #FFF8EE !important; }
.menu-card { background: #ffffff !important; border: 1px solid #F0D9A8 !important; }
.menu-card:hover { border-color: #C8860A !important; }
.menu-card-title { color: #2C1A00 !important; }
.menu-card-desc { color: #6B4200 !important; }
.flavor-tag { background: #FFF0D6 !important; color: #C8860A !important; border-color: #F0D9A8 !important; }

/* About section */
.about-section { background: #FFF8EE !important; }
.about-text { color: #2C1A00 !important; }
.about-text strong { color: #C8860A !important; }

/* Events section */
.events-section { background: #FFF0D6 !important; }
.event-card { background: #ffffff !important; border: 1px solid #F0D9A8 !important; }
.event-card:hover { border-color: #C8860A !important; }
.event-card h3 { color: #2C1A00 !important; }
.event-card p { color: #6B4200 !important; }

/* Hours section */
.hours-section { background: #FFF8EE !important; }

/* Fundraiser section */
.fundraiser-section { background: #FFF0D6 !important; }
.fundraiser-card { background: #ffffff !important; border: 1px solid #F0D9A8 !important; }

/* Referral section */
.referral-section { background: #2C1A00 !important; }
.referral-section h2, .referral-section h3, .referral-section p { color: #ffffff !important; }
.referral-section .section-eyebrow { color: #C8860A !important; }
.referral-amount { color: #C8860A !important; }

/* Contact / newsletter sections */
.contact-section { background: #FFF8EE !important; }
.newsletter-section { background: #2C1A00 !important; }
.newsletter-section h2, .newsletter-section p { color: #ffffff !important; }
.newsletter-section .section-eyebrow { color: #C8860A !important; }

/* Footer */
.site-footer { background: #2C1A00 !important; }
.footer-logo { color: #C8860A !important; }
.site-footer h4 { color: #C8860A !important; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,0.65) !important; }
.site-footer a:hover { color: #C8860A !important; }
.footer-bottom { background: rgba(0,0,0,0.2) !important; color: rgba(255,255,255,0.4) !important; }
.footer-divider { border-color: rgba(200,134,10,0.2) !important; }

/* Section headings on light backgrounds */
.section-title { color: #2C1A00 !important; }
.section-eyebrow { color: #C8860A !important; }
.section-desc { color: #6B4200 !important; }

/* Stat cards */
.stat-card { background: #ffffff !important; border: 1px solid #F0D9A8 !important; }
.stat-number { color: #C8860A !important; }
.stat-label { color: #6B4200 !important; }

/* GoFundMe section */
.gofundme-section { background: #2C1A00 !important; }
.gofundme-section h2, .gofundme-section p { color: #ffffff !important; }
.gofundme-section .section-eyebrow { color: #C8860A !important; }

/* CTA strip */
.cta-strip { background: #C8860A !important; }
.cta-strip h2, .cta-strip p { color: #ffffff !important; }
.cta-strip .btn-primary { background: #2C1A00!important; border-color: #ffffff !important; color: #fff !important; }
.cta-strip .btn-primary:hover { background: transparent !important; color: #2C1A00 !important; }
.cta-strip .btn-outline { border-color: #ffffff !important; color: #ffffff !important; }
.cta-strip .btn-outline:hover { background: #ffffff !important; color: #C8860A !important; }


/* ============================================================
   CONTRAST FIX — generated by fix_contrast.py
   ============================================================ */
body { color: #2C1A00; }

.section-title, .section-eyebrow { color: #2C1A00; }
.section-eyebrow { color: #C8860A; }

/* Cards on light bg */
.menu-item-card h3, .menu-item-card p, .item-name, .item-desc,
.event-card h3, .event-card p,
.value-card h3, .value-card p,
.order-method-card h3, .order-method-card p,
.info-card h3, .info-card p,
.quick-contact-card h3, .quick-contact-card p,
.location-card h3, .location-card p,
.how-step h3, .how-step p,
.tracker-step h3, .tracker-step p,
.award-card h3, .award-card p,
.faq-question, .faq-answer,
.step-card h3, .step-card p,
.sundae-card h3, .sundae-card p,
.flavor-card h3, .flavor-card p,
.brownie-card h3, .brownie-card p,
.featured-secondary-card h3, .featured-secondary-card p,
.sidebar-tip h3, .sidebar-tip p,
.sidebar-recent-review h4, .sidebar-recent-review p,
.platform-card h3, .platform-card p,
.trusted-client-name, .trusted-client-type,
.upcoming-events h2, .upcoming-events p,
.booking-form-section h2, .booking-form-section p,
.timeline-content h3, .timeline-content p,
.story-text h2, .story-text h3, .story-text p,
.about-content h2, .about-content h3, .about-content p
{ color: #2C1A00!important; }

/* Muted / secondary text */
.rc-reviewer-location, .rc-review-date, .rc-tried-label,
.rating-bar-count, .sub-rating-label, .char-count,
.hours-note, .award-card p
{ color: #8A6A40!important; }

/* Accent labels */
.section-eyebrow, .value-icon, .how-step-number, .tracker-step-number,
.timeline-year, .hours-row.today td, .hours-table th,
.platform-link-card .platform-rating
{ color: #C8860A!important; }

/* Review cards */
.rc-reviewer-name, .review-card .reviewer-name { color: #2C1A00!important; font-weight:700; }
.rc-review-text, .review-card .review-text { color: #2C1A00!important; }
.rc-tried-value { color: #2C1A00!important; }

/* Stats */
.stat-number, .stat-label { color: #2C1A00!important; }

/* Flavor / highlight tags on light bg */
.flavor-tag, .item-chip, .highlight-tag, .hashtag-pill
{ color: #C8860A!important; background: #FFF0D6!important; }
.item-chip.selected, .highlight-tag.selected, .filter-btn.active, .tab-btn.active, .gallery-filter-btn.active
{ color: #ffffff!important; background: #C8860A!important; }

/* Ingredient callout */
.ingredient-callout { background: #FFF0D6!important; border-left-color: #C8860A!important; }
.ingredient-callout h4, .ingredient-callout li { color: #2C1A00!important; }

/* Form elements on light bg */
.form-group label, .form-label, .contact-form label, .booking-form label
{ color: #2C1A00!important; font-weight:600; }
.form-group input, .form-group textarea, .form-group select,
.form-input, .form-select, .form-textarea,
.contact-form input, .contact-form textarea, .contact-form select,
.booking-form input, .booking-form select, .booking-form textarea
{ color: #2C1A00!important; background: #ffffff!important; border-color: #C8860A!important; }

/* Preview card */
.preview-card .preview-reviewer, .preview-card .preview-text { color: #2C1A00!important; }
.preview-card .preview-item { color: #8A6A40!important; }

/* DARK SECTIONS — keep white text */
.site-header, .main-nav a, .brand-logo { color: #e8d5b0!important; }
.site-footer, .site-footer p, .site-footer h3, .site-footer a, .footer-bottom p { color: #e8d5b0!important; }
.cta-strip h2, .cta-strip p { color: #ffffff!important; }
.marquee-text, .marquee span { color: #2C1A00!important; }
.newsletter-section h2, .newsletter-section p { color: #ffffff!important; }
.referral-section h2, .referral-section p,
.fundraiser-section h2, .fundraiser-section p,
.gofundme-section h2, .gofundme-section p,
.community-section h2, .community-section p,
.community-stat-number, .community-stat-label,
.fundraiser-how-step h3, .fundraiser-how-step p,
.fundraiser-detail-card h3, .fundraiser-detail-card p,
.referral-card h3, .referral-card p,
.fundraiser-reg-form label
{ color: #ffffff!important; }
.king-milkshake-card h2, .king-milkshake-card p, .king-milkshake-card .king-number,
.king-card h2, .king-card h3, .king-card p
{ color: #ffffff!important; }
.featured-hero-card h2, .featured-hero-card p { color: #ffffff!important; }
.gallery-item-overlay h3 { color: #ffffff!important; }
.gallery-item-overlay p { color: #e8d5b0!important; }
.featured-quote-text { color: #ffffff!important; }
.featured-quote-author { color: #C8860A!important; }


/* ============================================================
   HOMEPAGE (style.css) — DEFINITIVE CONTRAST FIX
   ============================================================ */

/* Menu section — light bg */
.menu-section { background: #FFF8EE !important; }
.menu-section .section-eyebrow { color: #C8860A !important; }
.menu-section .section-title { color: #2C1A00 !important; }
.menu-section .section-intro { color: #5A3800 !important; }
.menu-info h4 { color: #2C1A00 !important; }
.menu-info p { color: #5A3800 !important; }
.menu-info .item-price { color: #C8860A !important; }

/* Photo grid text panels — dark bg */
.grid-text, .grid-text-center { background: rgba(44,26,0,0.92) !important; }
.grid-text h3, .grid-text-center h3 { color: #ffffff !important; }
.grid-text p, .grid-text-center p { color: rgba(255,255,255,0.82) !important; }
.grid-sub { color: #C8860A !important; }

/* Tagline banner — light bg */
.tagline-banner { background: #FFF0D6 !important; border-top: 3px solid #C8860A !important; border-bottom: 3px solid #C8860A !important; }
.tagline-main { color: #2C1A00 !important; }
.tagline-accent { color: #C8860A !important; }
.tagline-sub { color: #5A3800 !important; }
.star-row { color: #C8860A !important; }

/* About section — light bg */
.about-section { background: #FFF8EE !important; }
.about-section .section-eyebrow { color: #C8860A !important; }
.about-section h2 { color: #2C1A00 !important; }
.about-text p { color: #3D2400 !important; }

/* Events section — dark bg */
.events-section { background: #2C1A00 !important; }
.events-section .section-eyebrow { color: #C8860A !important; }
.events-section h2 { color: #ffffff !important; }
.events-section .section-intro { color: rgba(255,255,255,0.82) !important; }
.event-card { background: rgba(255,255,255,0.07) !important; border-color: rgba(200,134,10,0.25) !important; }
.event-card:hover { background: rgba(255,255,255,0.12) !important; }
.event-icon { color: #C8860A !important; }
.event-card h4 { color: #ffffff !important; }
.event-card p { color: rgba(255,255,255,0.82) !important; }
.event-card .flavor-tag { background: rgba(200,134,10,0.2) !important; color: #C8860A !important; }

/* Hours section — dark bg with photo */
.hours-section { background: #2C1A00 !important; }
.hours-section .section-eyebrow { color: #C8860A !important; }
.hours-section h2 { color: #ffffff !important; }
.hours-block { background: rgba(61,36,0,0.92) !important; border-color: rgba(200,134,10,0.3) !important; }
.hours-block h4 { color: #C8860A !important; }
.hours-block p { color: #ffffff !important; }
.location-address { color: #ffffff !important; }
.location-note { color: rgba(255,255,255,0.75) !important; }

/* Fundraiser section — light bg */
.fundraiser-section { background: #FFF0D6 !important; }
.fundraiser-section .section-eyebrow { color: #C8860A !important; }
.fundraiser-section h2 { color: #2C1A00 !important; }
.fundraiser-section p, .fundraiser-text { color: #5A3800 !important; }
.fundraiser-card { background: #ffffff !important; border-color: #F0D9A8 !important; }
.fundraiser-card h4 { color: #2C1A00 !important; }
.fundraiser-card p { color: #5A3800 !important; }
.fundraiser-card .card-icon { color: #C8860A !important; }

/* Referral section — dark bg */
.referral-section { background: #2C1A00 !important; }
.referral-section .section-eyebrow { color: #C8860A !important; }
.referral-section h2 { color: #ffffff !important; }
.referral-section p { color: rgba(255,255,255,0.82) !important; }
.referral-box { background: rgba(200,134,10,0.15) !important; border-color: rgba(200,134,10,0.3) !important; }
.referral-box strong { color: #C8860A !important; }
.referral-box p { color: rgba(255,255,255,0.82) !important; }

/* Contact section — light bg */
.contact-section { background: #FFF8EE !important; }
.contact-section .section-eyebrow { color: #C8860A !important; }
.contact-section h2 { color: #2C1A00 !important; }
.contact-section p { color: #5A3800 !important; }
.contact-section a { color: #C8860A !important; }

/* Home reviews section — light bg */
.home-reviews { background: #FFF8EE !important; }
.home-reviews .section-eyebrow { color: #C8860A !important; }
.home-reviews h2 { color: #2C1A00 !important; }
.home-reviews .section-intro { color: #5A3800 !important; }
.home-reviews .stat-number { color: #2C1A00 !important; }
.home-reviews .stat-label { color: #5A3800 !important; }
.home-reviews .stat-sub { color: #8A6A40 !important; }
