/* ===================================
   SOULFUL SWEETS — Design System
   Warm, homemade, neighborhood bakery
   =================================== */

/* --- Custom Properties --- */
:root {
  /* Warm palette */
  --cream:       #FDF6EC;
  --cream-dark:  #F5EDDF;
  --honey:       #D4A053;
  --honey-light: #E8C584;
  --honey-dark:  #B8863A;
  --brown:       #5C3D2E;
  --brown-light: #7A5A4A;
  --brown-dark:  #3D2518;
  --sage:        #8BAF7C;
  --sage-light:  #A7C99A;
  --sage-dark:   #6A8F5C;
  --white:       #FFFFFF;
  --text:        #3D2518;
  --text-light:  #7A5A4A;
  --text-muted:  #9C8575;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-script:  'Dancing Script', cursive;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Misc */
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(61,37,24,0.08);
  --shadow-lg: 0 8px 40px rgba(61,37,24,0.12);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: var(--honey-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--honey);
}

ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  display: block;
  font-family: var(--font-script);
  color: var(--honey);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--honey);
  color: var(--white);
  border-color: var(--honey);
}
.btn-primary:hover {
  background: var(--honey-dark);
  border-color: var(--honey-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,83,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,83,0.15);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(61,37,24,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  text-decoration: none;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--honey-dark);
  font-weight: 700;
}

.logo-serif {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown-dark);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: var(--brown-light);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--honey-dark);
  background: rgba(212,160,83,0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(212,160,83,0.2);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(61,37,24,0.1);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
  }
}

/* --- Hero (Home) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=1600&h=1000&fit=crop') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,37,24,0.72) 0%,
    rgba(61,37,24,0.55) 50%,
    rgba(61,37,24,0.68) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
  max-width: 700px;
}

.hero-tagline {
  font-family: var(--font-script);
  color: var(--honey-light);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 0.75rem;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.hero-script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--honey-light);
  display: block;
  font-size: 1.15em;
}

.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- Page Heroes (inner pages) --- */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,37,24,0.75), rgba(61,37,24,0.6));
}

.page-hero-content { position: relative; }
.page-hero-title { color: var(--white); margin-bottom: 0.5rem; }
.page-hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

.page-hero-menu    { background-image: url('https://images.unsplash.com/photo-1486427944544-d2c246c4df4e?w=1400&h=600&fit=crop'); }
.page-hero-order   { background-image: url('https://images.unsplash.com/photo-1517433670267-08bbd4be890f?w=1400&h=600&fit=crop'); }
.page-hero-about   { background-image: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1400&h=600&fit=crop'); }
.page-hero-contact { background-image: url('https://images.unsplash.com/photo-1555507036-ab1f4038024a?w=1400&h=600&fit=crop'); }

/* --- Sections --- */
.section {
  padding: var(--space-2xl) 0;
}

/* --- Featured (Home) --- */
.featured { background: var(--cream); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-card:hover .featured-img img {
  transform: scale(1.06);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--honey);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.featured-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.featured-info h3 {
  margin-bottom: 0.35rem;
}
.featured-info p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.featured-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--honey-dark);
}
.featured-price small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- How It Works --- */
.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 260px;
  padding: var(--space-md);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-light); font-size: 0.92rem; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--honey-light);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
}

/* --- Seasonal Banner --- */
.seasonal-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1488477181946-6428a0291777?w=1400&h=500&fit=crop') center/cover no-repeat;
}

.seasonal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,37,24,0.8), rgba(61,37,24,0.6));
}

.seasonal-content {
  position: relative;
  color: var(--white);
}
.seasonal-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.seasonal-content p {
  color: rgba(255,255,255,0.88);
  max-width: 500px;
  margin-top: 0.75rem;
}

.seasonal-label {
  font-family: var(--font-script);
  color: var(--honey-light);
  font-size: 1.2rem;
}

.seasonal-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honey-light);
}

/* --- Testimonials --- */
.community { background: var(--cream-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--honey);
}
.testimonial p {
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.testimonial cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* --- Location Teaser (Home) --- */
.location-teaser { background: var(--white); }

.location-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.location-teaser-text h2 { margin-bottom: 0.5rem; }
.location-teaser-text p { color: var(--text-light); font-size: 1.05rem; }
.location-hours { margin: 0.75rem 0 1.5rem; }

.location-teaser-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .location-teaser-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .location-teaser-img { order: -1; }
}

/* ============================
   MENU PAGE
   ============================ */
.menu-section { background: var(--cream); }

.menu-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border: 2px solid var(--brown);
  border-radius: 50px;
  background: transparent;
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--brown);
  color: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}
.menu-badge.bestseller { background: var(--honey); }
.menu-badge.popular    { background: var(--sage); }
.menu-badge.fresh      { background: #D97B5A; }
.menu-badge.seasonal   { background: #C45B7C; }
.menu-badge.custom     { background: var(--brown-light); }

.menu-card-body { padding: 1.25rem 1.5rem 1.5rem; }

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.menu-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--honey-dark);
  font-size: 1.15rem;
  white-space: nowrap;
}

.menu-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.menu-unit {
  display: inline-block;
  background: var(--cream);
  color: var(--text-muted);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

.menu-note {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.menu-note p { margin-bottom: 1.25rem; }

/* ============================
   ORDER PAGE
   ============================ */
.order-section { background: var(--cream); }

.order-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-items-grid {
  display: grid;
  gap: 0.75rem;
}

.order-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-item-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.order-item-card:hover {
  border-color: var(--honey-light);
  background: rgba(212,160,83,0.04);
}

.order-item input:checked + .order-item-card {
  border-color: var(--honey);
  background: rgba(212,160,83,0.08);
  box-shadow: 0 0 0 1px var(--honey);
}

.order-item-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
  min-width: 0;
}
.order-item-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown-dark);
}
.order-item-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.seasonal-highlight {
  border-color: #C45B7C !important;
}
.order-item input:checked + .seasonal-highlight {
  background: rgba(196,91,124,0.06);
  box-shadow: 0 0 0 1px #C45B7C;
}

.order-item-qty {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.order-item input:checked ~ .order-item-card .order-item-qty,
.order-item input:checked + .order-item-card .order-item-qty {
  opacity: 1;
  pointer-events: auto;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--white);
  color: var(--brown);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.qty-btn:hover {
  border-color: var(--honey);
  color: var(--honey-dark);
}

.qty-input {
  width: 36px;
  text-align: center;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-dark);
  background: transparent;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.qty-input { -moz-appearance: textfield; }

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--brown);
}
.form-group label small {
  font-weight: 400;
  color: var(--text-muted);
}
.form-group small {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--honey);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  text-align: center;
  padding: var(--space-md) 0;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

/* Order Summary */
.order-summary {
  border-left: 4px solid var(--honey);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}
.summary-line:last-child { border-bottom: none; }

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--honey);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown-dark);
}

/* Success */
.order-success {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  margin: 0 auto;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-story { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-image-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--honey-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-text .section-label { text-align: left; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-text em { color: var(--honey-dark); font-weight: 500; }

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-image-accent { display: none; }
  .about-text .section-label { text-align: center; }
}

/* Values */
.about-values { background: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--text-light); font-size: 0.92rem; }

/* About Space / Why Curbside */
.about-space { background: var(--cream); }

.about-space-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-space-text h2 { margin-bottom: 1rem; }
.about-space-text p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.about-space-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .about-space-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.about-cta {
  background: var(--honey);
  color: var(--white);
}
.about-cta h2 { color: var(--white); }
.about-cta p { color: rgba(255,255,255,0.88); }
.about-cta .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.about-cta .btn-outline:hover {
  background: var(--white);
  color: var(--honey-dark);
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.contact-card h3 {
  margin-bottom: 0.75rem;
}
.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--honey-dark);
  font-size: 0.92rem;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--cream-dark);
}
.hours-row:last-child { border-bottom: none; }
.hours-open span:last-child { color: var(--sage-dark); font-weight: 600; }
.hours-closed { color: var(--text-muted); }

.pickup-steps {
  list-style: decimal;
  padding-left: 1.25rem;
  color: var(--text-light);
  font-size: 0.92rem;
}
.pickup-steps li {
  margin-bottom: 0.5rem;
  list-style: decimal;
}
.pickup-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.88rem;
}

.contact-map {
  position: sticky;
  top: 90px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
  min-height: 400px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.map-caption {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
}
.map-caption p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-cta {
  background: var(--white);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }
}

.footer-brand { }
.footer-brand .nav-logo { margin-bottom: 0.75rem; display: inline-flex; }
.footer-brand .logo-script { color: var(--honey-light); }
.footer-brand .logo-serif  { color: rgba(255,255,255,0.9); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--honey-light); }

.footer-hours p { font-size: 0.9rem; }
.footer-address {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================
   MOBILE ORDER BUTTON (sticky)
   ============================ */
.mobile-order-btn {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--honey);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(212,160,83,0.45);
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.mobile-order-btn:hover {
  background: var(--honey-dark);
  color: var(--white);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 30px rgba(212,160,83,0.55);
}

@media (max-width: 768px) {
  .mobile-order-btn { display: block; }

  /* Don't show on order page */
  body:has(.order-section) .mobile-order-btn { display: none; }

  /* Add bottom padding so footer isn't blocked */
  .footer { padding-bottom: 5rem; }
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.featured-grid .fade-in:nth-child(2),
.steps-grid .fade-in:nth-child(2),
.testimonials-grid .fade-in:nth-child(2),
.values-grid .fade-in:nth-child(2) {
  transition-delay: 0.1s;
}
.featured-grid .fade-in:nth-child(3),
.steps-grid .fade-in:nth-child(3),
.testimonials-grid .fade-in:nth-child(3),
.values-grid .fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

/* ============================
   UTILITIES & RESPONSIVE POLISH
   ============================ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }

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

  .order-item-card { flex-wrap: wrap; }
  .order-item-card img { width: 48px; height: 48px; }
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header, .mobile-order-btn, .hero-scroll { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  body { background: white; }
}
