/* ============================================================
   FRED'S FAMOUS PEANUTS — Shared Stylesheet
   Rustic Appalachian Country Store Theme
   ============================================================ */

/* 1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Color Palette — derived from store photos */
  --clr-bg:           #F5F0E8;   /* Parchment / natural linen       */
  --clr-cream:        #FDF8F0;   /* Lighter cream for cards         */
  --clr-bg-dark:      #1E1008;   /* Deep charcoal / dark wood       */
  --clr-wood-dark:    #3B2314;   /* Weathered dark wood             */
  --clr-wood-mid:     #6B4226;   /* Mid wood tone                   */
  --clr-wood-light:   #8B5E3C;   /* Light wood / warm brown         */
  --clr-red:          #B22222;   /* Americana red (signs)           */
  --clr-red-dark:     #8B1515;   /* Darker red for hover            */
  --clr-gold:         #C8860A;   /* Sign gold / amber               */
  --clr-gold-light:   #E8A825;   /* Lighter gold for hover          */
  --clr-green:        #2D5C27;   /* Georgia forest green            */
  --clr-tin:          #8B9EA8;   /* Tin roof silver / muted         */
  --clr-text:         #2C1A0E;   /* Primary text                    */
  --clr-text-muted:   #5C4033;   /* Muted / secondary text          */
  --clr-border:       #C4A882;   /* Warm tan border                 */

  /* Typography */
  --font-display: 'Alfa Slab One', 'Rockwell', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  2rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Layout */
  --max-w:  1100px;
  --nav-h:  80px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;

  /* Shadows */
  --shadow-sm: 0 2px 8px  rgba(44, 26, 14, 0.14);
  --shadow-md: 0 4px 20px rgba(44, 26, 14, 0.22);
  --shadow-lg: 0 8px 40px rgba(44, 26, 14, 0.30);

  /* Transition */
  --t: 0.22s ease;
}

/* 2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  /* Subtle parchment grain texture */
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(139, 94, 60, 0.025) 2px,
    rgba(139, 94, 60, 0.025) 3px
  );
}

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

a {
  color: var(--clr-red);
  text-decoration: none;
  transition: color var(--t);
}

a:hover {
  color: var(--clr-gold);
}

ul, ol {
  list-style: none;
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--clr-wood-dark);
}

h1 { font-size: clamp(1.9rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }

p {
  max-width: 70ch;
  margin-bottom: var(--sp-md);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--clr-wood-dark);
}

/* 4. LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}

.section {
  padding-block: var(--sp-xl);
}

.section-alt {
  background-color: var(--clr-cream);
}

.section-dark {
  background-color: var(--clr-bg-dark);
  color: var(--clr-bg);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--clr-gold);
}

.section-dark p,
.section-dark li {
  color: rgba(245, 240, 232, 0.88);
  max-width: 70ch;
}

.section-dark a {
  color: var(--clr-gold-light);
}

.section-dark a:hover {
  color: #fff;
  text-decoration: underline;
}

.text-center         { text-align: center; }
.margin-top-lg       { margin-top: var(--sp-lg); }
.margin-top-xl       { margin-top: var(--sp-xl); }
.margin-bottom-lg    { margin-bottom: var(--sp-lg); }
.max-width-prose     { max-width: 70ch; }
.max-width-prose-sm  { max-width: 55ch; }

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

.section-header h2 {
  margin-bottom: var(--sp-sm);
}

.section-header p {
  color: var(--clr-text-muted);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 0;
}

/* 5. WOOD PLANK DIVIDER
   ============================================================ */
.divider {
  border: none;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--clr-wood-dark) 0%,
    var(--clr-wood-light) 25%,
    var(--clr-gold) 50%,
    var(--clr-wood-light) 75%,
    var(--clr-wood-dark) 100%
  );
  margin-block: var(--sp-lg);
  border-radius: 3px;
}

/* 6. NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--clr-wood-dark);
  border-bottom: 3px solid var(--clr-gold);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-md);
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-fred,
.brand-famous {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--clr-gold);
  letter-spacing: 0.04em;
}

.brand-peanuts {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clr-gold);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.nav-brand:hover .brand-fred,
.nav-brand:hover .brand-famous,
.nav-brand:hover .brand-peanuts {
  color: var(--clr-gold-light);
}

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

.nav-links li {
  display: contents;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.88);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-sm);
  border-bottom: 2px solid transparent;
  transition: color var(--t), background var(--t), border-color var(--t);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--clr-gold);
  background-color: rgba(200, 134, 10, 0.1);
}

.nav-links a.active {
  color: var(--clr-gold);
  border-bottom-color: var(--clr-gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 7px;
  gap: 5px;
  background: none;
  border: 2px solid rgba(200, 134, 10, 0.7);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--clr-gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--clr-wood-dark);
}

.hero-sm {
  min-height: 260px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.42) saturate(0.8);
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-xl) var(--sp-lg);
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-tin);
  margin-bottom: var(--sp-sm);
}

.hero-title {
  font-family: var(--font-display);
  color: var(--clr-gold);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  margin-bottom: var(--sp-md);
  line-height: 1.1;
}

.hero-title .line-sub {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.35em;
  color: var(--clr-tin);
  text-transform: uppercase;
  margin-bottom: 0.3em;
}

.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(245, 240, 232, 0.9);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

.hero-page-title {
  font-family: var(--font-display);
  color: var(--clr-gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
  font-size: clamp(2rem, 5vw, 3rem);
}

/* Hero slideshow — stacked layers, crossfade between them */
.hero-slide {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* 8. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), box-shadow var(--t), transform var(--t);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background-color: var(--clr-red-dark);
  color: #fff;
  border-color: var(--clr-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-wood-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

/* 9. HOME — QUICK-NAV CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-lg);
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-sm);
  padding: var(--sp-lg) var(--sp-md);
  background: var(--clr-cream);
  border: 2px solid var(--clr-border);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--clr-text);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-gold);
  color: var(--clr-text);
}

.nav-card-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.nav-card h3 {
  font-size: 1rem;
  color: var(--clr-wood-dark);
  margin: 0;
}

.nav-card p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  max-width: none;
  margin: 0;
}

/* 10. PRODUCT CARDS
   ============================================================ */

/* --- Filter Nav --- */
.product-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
  margin-bottom: var(--sp-xl);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.45em 1em;
  background: var(--clr-cream);
  border: 2px solid var(--clr-border);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-wood-dark);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
}

.filter-btn:hover,
.filter-btn:focus-visible {
  background: var(--clr-red);
  border-color: var(--clr-red);
  color: #fff;
  outline: none;
}

/* --- Section Dividers --- */
.product-section {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
  margin-bottom: var(--sp-xl);
}

.section-divider {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--clr-wood-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--clr-border);
  border-radius: 2px;
}

/* --- Products Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-lg);
}

.product-card {
  background: var(--clr-cream);
  border: 2px solid var(--clr-border);
  border-top: 4px solid var(--clr-red);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}

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

.product-emoji {
  font-size: 2.6rem;
  margin-bottom: var(--sp-sm);
  line-height: 1;
}

.product-card h3 {
  font-size: 1.05rem;
  color: var(--clr-wood-dark);
  margin-bottom: var(--sp-sm);
}

.product-card > p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  max-width: none;
  margin: 0 0 var(--sp-md);
  flex: 1;
}

/* --- Price Toggle (details/summary) --- */
.price-details {
  margin-top: auto;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-sm);
}

.price-details summary {
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-red);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4em;
  user-select: none;
  padding: var(--sp-xs) 0;
}

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

.price-details summary::after {
  content: '▾';
  font-size: 0.9em;
  transition: transform var(--t);
  display: inline-block;
}

.price-details[open] summary::after {
  transform: rotate(-180deg);
}

/* --- Price List --- */
.price-list {
  list-style: none;
  margin: var(--sp-sm) 0 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-sm);
  padding: 0.3em 0;
  border-bottom: 1px solid rgba(196, 168, 130, 0.4);
  font-size: 0.8rem;
  color: var(--clr-text);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list .item-name {
  color: var(--clr-wood-dark);
}

.price-list .item-price {
  white-space: nowrap;
  font-weight: 600;
  color: var(--clr-green);
  font-family: var(--font-ui);
}

.price-list .item-note {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  font-style: italic;
}

.price-note {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-style: italic;
  margin: var(--sp-sm) 0 var(--sp-xs);
}

/* --- Seasonal Tag --- */
.tag-seasonal {
  display: inline-block;
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15em 0.5em;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 0.3em;
}

/* 11. STORE HOURS — SEASON CARDS
   ============================================================ */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-lg);
}

.season-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.season-card-header {
  background-color: var(--clr-wood-dark);
  padding: 0.85rem 1.25rem;
}

.season-card-header h3 {
  color: var(--clr-gold);
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.season-card-header p {
  color: var(--clr-tin);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  max-width: none;
  margin: 0;
  margin-top: 2px;
}

.hours-list {
  background: var(--clr-cream);
  padding: var(--sp-md) var(--sp-lg);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-md);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.92rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--clr-text);
  font-family: var(--font-body);
  font-weight: 600;
  white-space: nowrap;
}

.hours-time {
  color: var(--clr-text-muted);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  text-align: right;
}

.hours-time.closed {
  color: var(--clr-red);
  font-style: italic;
}

/* 12. CONTENT WITH IMAGE (History page)
   ============================================================ */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.img-styled {
  width: 100%;
  border-radius: var(--r-md);
  border: 3px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* 13. PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.photo-strip-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.photo-strip-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 3px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  display: block;
}

.photo-strip-caption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-align: center;
}

/* 14. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1em;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-xs);
}

.contact-value {
  font-size: 1.05rem;
  color: var(--clr-text);
  margin: 0;
}

.contact-value a {
  color: var(--clr-red);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(178, 34, 34, 0.35);
  text-underline-offset: 3px;
  transition: color var(--t), text-decoration-color var(--t);
}

.contact-value a:hover {
  color: var(--clr-red-dark);
  text-decoration-color: var(--clr-red-dark);
}

.contact-mascot-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  align-items: center;
}

.contact-mascot-wrap img {
  border-radius: var(--r-md);
  border: 3px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  max-height: 380px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.mascot-caption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  text-align: center;
  margin: 0;
}

.directions-card {
  background: var(--clr-cream);
  border: 2px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  margin-top: var(--sp-lg);
}

.directions-card h3 {
  margin-bottom: var(--sp-sm);
}

/* 14. NOTICE / CALLOUT BOXES
   ============================================================ */
.notice {
  background: rgba(200, 134, 10, 0.08);
  border-left: 4px solid var(--clr-gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-md) var(--sp-lg);
  margin-block: var(--sp-md);
}

.notice p {
  margin: 0;
  font-size: 0.95rem;
  max-width: none;
}

.notice-red {
  background: rgba(178, 34, 34, 0.07);
  border-left-color: var(--clr-red);
}

/* 15. INFO STRIP
   ============================================================ */
.info-strip {
  background-color: var(--clr-red);
  padding: var(--sp-md) 0;
  text-align: center;
}

.info-strip p {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #fff;
  max-width: none;
  margin: 0;
}

.info-strip a {
  color: var(--clr-gold-light);
}

.info-strip a:hover {
  color: #fff;
  text-decoration: underline;
}

/* 16. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--clr-bg-dark);
  border-top: 4px solid var(--clr-gold);
  color: var(--clr-bg);
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid rgba(200, 134, 10, 0.3);
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.65;
  max-width: none;
  margin-bottom: var(--sp-sm);
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: var(--sp-xs);
  transition: color var(--t);
}

.footer-col a:hover {
  color: var(--clr-gold-light);
}

.social-links {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.footer-col .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-bottom: 0;
}

.footer-col .social-link svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 134, 10, 0.2);
  padding-top: var(--sp-md);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.38);
  max-width: none;
  margin: 0;
}

/* 17. 404 PAGE
   ============================================================ */
.not-found {
  min-height: calc(80vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-xl) var(--sp-lg);
  gap: var(--sp-md);
}

.not-found-icon {
  font-size: 4.5rem;
  line-height: 1;
}

.not-found h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: var(--sp-sm);
}

.not-found p {
  color: var(--clr-text-muted);
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

/* 18. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

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

  /* Mobile nav drawer */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--clr-wood-dark);
    border-bottom: 3px solid var(--clr-gold);
    padding: var(--sp-sm) 0;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

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

  .nav-links a {
    width: 100%;
    padding: 0.9rem var(--sp-lg);
    font-size: 0.85rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(200, 134, 10, 0.15);
    text-align: left;
  }

  .nav-links a.active {
    background: rgba(200, 134, 10, 0.12);
    border-bottom-color: rgba(200, 134, 10, 0.15);
    border-left: 3px solid var(--clr-gold);
    padding-left: calc(var(--sp-lg) - 3px);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hero     { min-height: 380px; }
  .hero-sm  { min-height: 200px; }

  .content-with-image { grid-template-columns: 1fr; }
  .contact-layout     { grid-template-columns: 1fr; }
  .photo-strip        { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .footer-grid .footer-col:first-child {
    grid-column: auto;
  }

  .section {
    padding-block: var(--sp-lg);
  }
}

@media (max-width: 480px) {
  .container         { padding-inline: var(--sp-md); }
  .cards-grid        { grid-template-columns: 1fr 1fr; }
  .products-grid     { grid-template-columns: 1fr; }
  .seasons-grid      { grid-template-columns: 1fr; }
  .hero              { min-height: 320px; }

  .info-strip p {
    font-size: 0.72rem;
    letter-spacing: 0;
  }
}
