/* style.css — Burget Mill Design System
   Palette: Warm wheat/cream surfaces, deep barn red accent, earthy browns
   Typography: Zodiak (display serif) + Work Sans (body sans)
   Heritage feed store serving Central Iowa since 1896 */

:root {
  /* Typography */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);

  /* 4px Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==================== LIGHT MODE ==================== */
:root {
  --color-bg:        #faf8f4;
  --color-surface:   #ffffff;
  --color-surface-2: #f5f1eb;
  --color-border:    #e0d9ce;
  --color-divider:   #ece7de;

  --color-text:       #2c2416;
  --color-text-muted: #706556;
  --color-text-faint: #b5ad9f;

  --color-accent:       #8b2d1a;
  --color-accent-hover: #6f2415;
  --color-accent-light: #f3e8e5;

  --color-green:       #3d6b35;
  --color-green-light: #e8f0e6;

  --color-wheat:       #c5a55a;
  --color-wheat-light: #f7f0dd;

  /* Shadows (warm-tinted) */
  --shadow-sm: 0 1px 2px rgba(44, 36, 22, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 36, 22, 0.08);
  --shadow-lg: 0 12px 32px rgba(44, 36, 22, 0.12);
}

/* ==================== DARK MODE ==================== */
/* Dark mode removed — site always uses light theme */

/* ==================== GLOBAL COMPONENTS ==================== */

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-accent); }

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container--narrow {
  max-width: var(--content-default);
}

/* ==================== TOPBAR ==================== */
.topbar {
  background: var(--color-text);
  color: var(--color-bg);
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
}

.topbar__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  align-items: center;
}

.topbar a { color: var(--color-bg); font-weight: 600; }
.topbar a:hover { color: var(--color-wheat); }

/* ==================== SITE HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-divider);
}

.site-header__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
  color: var(--color-text);
}

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

.brand__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-accent);
}

.brand__tagline {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.2;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  min-height: 44px;
}

.nav__link:hover,
.nav__link--active {
  background: var(--color-surface-2);
  color: var(--color-accent);
}

.nav__link--active {
  font-weight: 700;
}

/* Dropdown */
.nav__item {
  position: relative;
}

.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  min-height: 44px;
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav__trigger:hover { background: var(--color-surface-2); color: var(--color-accent); }

.nav__trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  display: none;
  z-index: 60;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  display: block;
}

.nav__dropdown a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  min-height: 40px;
}

.nav__dropdown a:hover {
  background: var(--color-surface-2);
  color: var(--color-accent);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.theme-toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg { width: 22px; height: 22px; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  border: 1px solid transparent;
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--secondary:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(135deg, #3d2a1a 0%, #5a3520 40%, #4a2c18 100%);
  color: #fff;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
  pointer-events: none;
}

.hero__grid {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--text-xs);
  color: var(--color-wheat);
  margin-bottom: var(--space-4);
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  max-width: 16ch;
  color: #fff;
}

.hero__desc {
  font-size: var(--text-base);
  max-width: 55ch;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}
.hero__desc a {
  color: var(--color-wheat);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero__desc a:hover {
  color: #fff;
}

.hero__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.hero__panel {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}

.hero__panel h2, .hero__panel h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.hero__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.hero__list li {
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  border-left: 3px solid var(--color-wheat);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}

.section--alt {
  background: var(--color-surface-2);
}

.section__header {
  margin-bottom: var(--space-8);
  max-width: 65ch;
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.section__header p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* ==================== CARDS ==================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

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

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}

.card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.card h3 a { color: var(--color-accent); }
.card h3 a:hover { text-decoration: underline; }

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

/* ==================== ACCORDION ==================== */
.accordion {
  display: grid;
  gap: var(--space-3);
}

.accordion__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion__btn {
  width: 100%;
  border: 0;
  background: transparent;
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  min-height: 54px;
}

.accordion__btn:hover { color: var(--color-accent); }

.accordion__btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--color-text-muted);
}

.accordion__item.active .accordion__btn svg {
  transform: rotate(45deg);
}

.accordion__body {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text-muted);
  display: none;
}

.accordion__item.active .accordion__body {
  display: block;
}

.accordion__body ul {
  padding-left: var(--space-5);
  margin-top: var(--space-3);
}

.accordion__body li {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.accordion__body li strong {
  color: var(--color-text);
}

.accordion__body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.accordion__body a:hover {
  color: var(--color-accent-dark, #6b2013);
}

/* Product group layout */
.product-group {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.product-group:first-of-type {
  margin-top: var(--space-3);
  border-top: 0;
  padding-top: 0;
}

.product-group__brand {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin: 0 0 var(--space-2) 0;
}

.product-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-1) var(--space-4);
}

.product-group__list li {
  font-size: var(--text-sm);
  padding: var(--space-1) 0;
  margin: 0;
}

@media (max-width: 480px) {
  .product-group__list {
    grid-template-columns: 1fr;
  }
}

/* ==================== SPLIT LAYOUT ==================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

/* ==================== TAGS ==================== */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
}

/* ==================== INFO BOX ==================== */
.info-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.info-box h2, .info-box h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.info-box p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ==================== CHECKLIST ==================== */
.checklist {
  margin: var(--space-3) 0 0;
  padding-left: var(--space-5);
  list-style: none;
}

.checklist li {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-text-muted);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.checklist a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checklist a:hover {
  color: var(--color-accent-hover);
}

/* ==================== CTA BAND ==================== */
.cta-band {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-8);
}

.cta-band h2, .cta-band h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
  color: #fff;
}

.cta-band p,
.cta-band div {
  color: rgba(255,255,255,0.88);
  font-size: var(--text-sm);
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}

.cta-band .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  color: var(--color-accent-hover);
}

/* ==================== REVIEWS ==================== */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  padding: var(--space-1);
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.review-stars {
  color: #8a7028;
  letter-spacing: 0.16em;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  font-weight: 700;
}

.review-card blockquote {
  margin: 0 0 var(--space-4);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
}

.review-author {
  color: var(--color-text);
  font-weight: 700;
  font-size: var(--text-sm);
}

.review-meta {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  margin-top: var(--space-1);
}

.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  font-size: var(--text-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.reviews-dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: 0;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.reviews-dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

/* ==================== HISTORY / ABOUT ==================== */
.history-banner {
  background: var(--color-wheat-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.history-banner h2, .history-banner h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.history-banner p {
  color: var(--color-text-muted);
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.story-photo {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
}

.story-frame {
  min-height: 170px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-4);
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  font-weight: 600;
  font-size: var(--text-sm);
}

.story-label {
  display: inline-block;
  margin-top: var(--space-3);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-photo h4 {
  margin: var(--space-3) 0 var(--space-1);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 700;
}

.story-photo p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

/* ==================== COMMUNITY AWARD ==================== */
.community-award {
  margin-top: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
}

.community-award img {
  width: 100%;
  height: auto;
  display: block;
}

.community-award__caption {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  font-style: italic;
}

/* ==================== TIMELINE ==================== */
.timeline {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-6);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.timeline__item:nth-child(even) {
  direction: rtl;
}

.timeline__item:nth-child(even) > * {
  direction: ltr;
}

.timeline__img {
  overflow: hidden;
  height: 100%;
  min-height: 220px;
}

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

.timeline__info {
  padding: var(--space-5) var(--space-6);
}

.timeline__info h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin: var(--space-3) 0 var(--space-2);
}

.timeline__info p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* Small 's' in decade labels like "1890s" */
.s-small {
  font-size: 0.7em;
  vertical-align: baseline;
}

@media (max-width: 900px) {
  .timeline__item,
  .timeline__item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .timeline__img {
    min-height: 180px;
    max-height: 240px;
  }
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.contact-card h2, .contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.contact-card p,
.contact-card li {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
}

.contact-card li:last-child { border-bottom: 0; }

.contact-card a:not(.btn) {
  color: var(--color-accent);
  font-weight: 600;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: var(--space-8) var(--space-4);
  margin-top: var(--space-8);
}

.footer__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  font-weight: 600;
}

.footer__brand p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  max-width: 30ch;
}

.footer h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: var(--space-2);
}

.footer a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
}

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

.footer__map {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.footer__bottom {
  max-width: var(--content-wide);
  margin-inline: auto;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
}

.footer__bottom a:hover { color: var(--color-wheat); }

/* ==================== PAGE HEADER (Interior pages) ==================== */
.page-header {
  background: linear-gradient(135deg, #3d2a1a 0%, #5a3520 40%, #4a2c18 100%);
  color: #fff;
  padding: clamp(var(--space-8), 5vw, var(--space-16)) var(--space-4);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
  pointer-events: none;
}

.page-header__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  position: relative;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: #fff;
}

.page-header p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
}

.page-header__breadcrumb {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-3);
}

.page-header__breadcrumb a {
  color: var(--color-wheat);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .site-header__inner { position: relative; }

  .menu-toggle { display: inline-flex; }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + var(--space-2));
    left: var(--space-4);
    right: var(--space-4);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-3);
    flex-direction: column;
    gap: var(--space-1);
    z-index: 60;
  }

  .site-header.menu-active .nav {
    display: flex;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link,
  .nav__trigger {
    width: 100%;
    justify-content: space-between;
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    text-align: left;
  }

  .nav__dropdown {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: 0;
    border-radius: var(--radius-md);
    background: var(--color-surface-2);
    margin-top: var(--space-1);
  }

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

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

@media (max-width: 900px) {
  .hero__grid,
  .grid-3,
  .grid-2,
  .split,
  .story-gallery,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar { font-size: var(--text-xs); padding: var(--space-1) var(--space-3); }
  .topbar__inner { justify-content: center; gap: var(--space-1) var(--space-3); }

  .brand__icon { width: 40px; height: 40px; }
  .brand__name { font-size: var(--text-base); }

  .hero h1 { max-width: 12ch; }

  .hero__actions,
  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

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

  .review-card { padding: var(--space-5); }

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

  .uhaul-hero__actions { flex-direction: column; align-items: stretch; }
  .uhaul-cta-band { flex-direction: column; align-items: stretch; }
  .uhaul-cta-band__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .btn--uhaul, .btn--uhaul-outline { width: 100%; text-align: center; }
}

/* ==================== U-HAUL PAGE ==================== */

:root {
  --uhaul-orange: #C93F00;
  --uhaul-orange-hover: #A83500;
  --uhaul-orange-light: #FFF3EE;
  --uhaul-dark: #1a1a1a;
}

/* U-Haul Hero */
.uhaul-hero {
  background: linear-gradient(135deg, var(--uhaul-dark) 0%, #2d1a0a 100%);
  padding: var(--space-24) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}
.uhaul-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,83,20,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.uhaul-hero__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}
.uhaul-hero__logo {
  max-width: 260px;
  height: auto;
  margin-bottom: var(--space-6);
}

/* Trucks showcase */
.uhaul-trucks-section {
  background: var(--color-bg);
  padding: var(--space-10) 0 0;
  text-align: center;
}
.uhaul-trucks-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.uhaul-trucks-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
}
.uhaul-trucks-img {
  width: 100%;
  height: auto;
  display: block;
}
.uhaul-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.uhaul-hero__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.uhaul-hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* U-Haul Buttons */
.btn--uhaul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--uhaul-orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast);
  border: 2px solid var(--uhaul-orange);
}
.btn--uhaul:hover {
  background: var(--uhaul-orange-hover);
  border-color: var(--uhaul-orange-hover);
}
.btn--uhaul-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition-fast);
}
.btn--uhaul-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* U-Haul Cards */
.uhaul-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.uhaul-card:hover {
  border-color: var(--uhaul-orange);
  box-shadow: 0 4px 20px rgba(255,83,20,0.08);
}
.uhaul-card__icon {
  width: 56px;
  height: 56px;
  background: var(--uhaul-orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--uhaul-orange);
}
.uhaul-card h2, .uhaul-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.uhaul-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* U-Haul Info Split */
.uhaul-info-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: start;
}
.uhaul-info-split h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.uhaul-info-split__content > p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* U-Haul Steps */
.uhaul-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.uhaul-steps li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.uhaul-steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--uhaul-orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uhaul-steps li strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.uhaul-steps li span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.uhaul-steps li a {
  color: var(--uhaul-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.uhaul-steps li a:hover {
  color: var(--uhaul-orange-hover);
}

/* U-Haul Simple Info */
.uhaul-simple-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.uhaul-simple-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.uhaul-simple-info p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.uhaul-simple-info p:last-child {
  margin-bottom: 0;
}
.uhaul-simple-info strong {
  color: var(--color-text);
}

/* U-Haul Location Card */
.uhaul-location-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.uhaul-location-card__header {
  background: var(--uhaul-orange);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.uhaul-location-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.uhaul-location-card__body strong {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.uhaul-location-card__body span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.uhaul-location-card__body a {
  color: var(--uhaul-orange);
  text-decoration: none;
  font-weight: 500;
}
.uhaul-location-card__body a:hover {
  text-decoration: underline;
}
.uhaul-location-card__body hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-3) 0;
}
.uhaul-location-card__hours {
  font-weight: 500;
  color: var(--color-text) !important;
}

/* U-Haul CTA Band */
.uhaul-cta-band {
  background: linear-gradient(135deg, var(--uhaul-dark) 0%, #2d1a0a 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.uhaul-cta-band h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-2);
}
.uhaul-cta-band div:first-child div {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
}
.uhaul-cta-band__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* U-Haul responsive */
@media (max-width: 900px) {
  .uhaul-info-split {
    grid-template-columns: 1fr;
  }
  .uhaul-cta-band {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .uhaul-cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
