/* ============================================================
   BLACK CAVERN — The Anti-Ketchup
   CSS: Dark, bold, gritty Western / industrial aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rye&family=Teko:wght@400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
  --black:       #080604;
  --deep:        #0e0b08;
  --charcoal:    #1a1410;
  --smoke:       #252018;
  --ash:         #5a4e3a;
  --bone:        #e2d5be;
  --cream:       #f0e8d8;
  --red:         #b83225;
  --red-hot:     #d93d2e;
  --rust:        #7a2000;
  --gold:        #c8982a;
  --white:       #f5ede0;
  --wood:        #3d2b1a;
  --leather:     #5c3d22;
}

/* ── GRAIN TEXTURE ────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(61,43,26,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(61,43,26,0.2) 0%, transparent 60%);
  color: var(--bone);
  font-family: 'Teko', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: default;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 0; }

.wood-divider {
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--wood) 0px, var(--leather) 2px, var(--wood) 5px, #2a1a0a 8px, var(--wood) 12px);
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(8,6,4,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(184,50,37,0.5);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8), inset 0 -1px 0 rgba(200,152,42,0.15);
  transition: background 0.3s;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  color: var(--bone);
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.4rem;
  font-family: 'Teko', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  letter-spacing: 0.12em;
  transition: background 0.2s !important;
  box-shadow: 2px 2px 0 var(--rust);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-hot) !important; }

.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(90,78,58,0.4);
  margin-left: 0.3rem;
}
.nav-social-icons a {
  display: flex;
  align-items: center;
  color: var(--bone);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-social-icons a::after { display: none !important; }
.nav-social-icons a:hover { opacity: 1; color: var(--white); }
.nav-social-icons svg { width: 17px; height: 17px; fill: currentColor; }

.mobile-social-icons {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(90,78,58,0.3);
  margin-top: 1rem;
}
.mobile-social-icons a {
  color: var(--bone) !important;
  opacity: 0.7;
  transition: opacity 0.2s;
  text-decoration: none;
}
.mobile-social-icons a:hover { opacity: 1; color: var(--red) !important; }
.mobile-social-icons svg { width: 24px; height: 24px; fill: currentColor; display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--bone);
  transition: 0.3s;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-video-mobile { display: none; }
.hero-video-desktop { display: block; }

@media (max-width: 768px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; object-position: center center; }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.0) 0%, rgba(10,10,10,0.0) 40%, rgba(10,10,10,0.0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Teko', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--gold);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 0.35rem 1.4rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Rye', serif;
  font-size: clamp(1.8rem, 9.5vw, 12rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  display: block;
  text-shadow:
    3px 3px 0 rgba(0,0,0,0.8),
    6px 6px 0 rgba(0,0,0,0.4),
    0 0 60px rgba(184,50,37,0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-tagline {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--white);
  margin-top: 1.2rem;
  letter-spacing: 0.06em;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-subtagline {
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  color: rgba(226,213,190,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1s forwards;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 1.1s forwards;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 3px 3px 0 var(--rust), inset 0 1px 0 rgba(255,255,255,0.15);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover { background: var(--red-hot); transform: translateY(-2px); box-shadow: 4px 5px 0 var(--rust); }

.btn-secondary {
  background: transparent;
  color: var(--bone);
  text-decoration: none;
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  display: inline-block;
  border: 1px solid rgba(226,213,190,0.35);
  border-top: 2px solid rgba(200,152,42,0.4);
  border-bottom: 2px solid rgba(200,152,42,0.4);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-secondary-filled {
  background: rgba(0,0,0,0.6);
  border-color: rgba(226,213,190,0.7);
  border-top-color: rgba(200,152,42,0.7);
  border-bottom-color: rgba(200,152,42,0.7);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
}

.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ash); }

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ══════════════════════════════════════════════════════════
   MANIFESTO BANNER
══════════════════════════════════════════════════════════ */
#manifesto {
  background: var(--red);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  border-top: 2px solid var(--rust);
  border-bottom: 2px solid var(--rust);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: 'Rye', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 2.5rem;
  flex-shrink: 0;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.marquee-track span.sep { color: rgba(255,255,255,0.4); padding: 0; }

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
#about {
  padding: 8rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 2px solid var(--red);
  z-index: -1;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.about-image-wrap::after {
  content: 'THE ANTI-KETCHUP';
  position: absolute;
  bottom: -1px; left: 0;
  background: var(--red);
  color: var(--white);
  font-family: 'Rye', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  padding: 0.4rem 1.2rem;
}

.about-text .section-label { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }

.about-text h2 {
  font-family: 'Rye', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.8rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.about-text p { font-family: 'Crimson Text', serif; font-weight: 400; font-size: 1.1rem; line-height: 1.85; color: rgba(226,213,190,0.85); margin-bottom: 1.4rem; }

.ingredient-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }

.pill {
  border: 1px solid var(--ash);
  color: var(--bone);
  font-family: 'Teko', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: var(--red); color: var(--red); }

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
#features {
  background: var(--deep);
  background-image:
    linear-gradient(180deg, rgba(61,43,26,0.08) 0%, transparent 30%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(61,43,26,0.03) 40px, rgba(61,43,26,0.03) 41px);
  padding: 7rem 3rem;
  border-top: 3px solid rgba(184,50,37,0.4);
  border-bottom: 3px solid rgba(184,50,37,0.4);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

.section-heading { text-align: center; margin-bottom: 4rem; }

.section-heading .section-label {
  font-family: 'Teko', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.section-heading h2 {
  font-family: 'Rye', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; }

.feature-card {
  background: var(--charcoal);
  background-image: linear-gradient(135deg, rgba(61,43,26,0.15) 0%, transparent 60%);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
  border-bottom: 1px solid rgba(90,78,58,0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}

.feature-card:hover { background: var(--smoke); }
.feature-card:hover::before { height: 100%; }

.feature-number {
  font-family: 'Rye', serif;
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.feature-card:hover .feature-number { color: var(--red-hot); }

.feature-card h3 { font-family: 'Teko', sans-serif; font-weight: 600; font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 0.8rem; line-height: 1.2; }

.feature-card p { font-family: 'Crimson Text', serif; font-weight: 400; font-size: 1rem; line-height: 1.75; color: rgba(226,213,190,0.65); }

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
#gallery { padding: 7rem 3rem; max-width: 1400px; margin: 0 auto; }

.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }

.gallery-header h2 { font-family: 'Rye', serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--white); line-height: 1.05; text-shadow: 2px 2px 0 rgba(0,0,0,0.5); }

.gallery-header p { font-family: 'Crimson Text', serif; font-style: italic; font-weight: 400; font-size: 1.05rem; color: rgba(226,213,190,0.6); max-width: 280px; text-align: right; }

.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.filter-btn {
  background: none;
  border: 1px solid var(--ash);
  color: var(--bone);
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 4px; }

.gallery-item { position: relative; overflow: hidden; cursor: pointer; min-height: 280px; }

.gallery-hidden { display: none; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: block; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label { font-family: 'Teko', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }

/* ══════════════════════════════════════════════════════════
   ORDER
══════════════════════════════════════════════════════════ */
#order { background: var(--charcoal); padding: 7rem 3rem; border-top: 1px solid rgba(192,57,43,0.2); }

.order-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.order-text .section-label { font-family: 'Teko', sans-serif; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }

.order-text h2 { font-family: 'Rye', serif; font-size: clamp(2.4rem, 4vw, 4rem); color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 2px 2px 0 rgba(0,0,0,0.5); }

.order-text p { font-family: 'Crimson Text', serif; font-weight: 400; font-size: 1.1rem; line-height: 1.85; color: rgba(226,213,190,0.7); margin-bottom: 2.5rem; }

.order-slogans { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }

.order-slogan-big { font-family: 'Rye', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); line-height: 1; text-shadow: 2px 2px 0 rgba(0,0,0,0.5); border-left: 4px solid var(--red); padding-left: 1rem; }

.order-slogan-sm { font-family: 'Crimson Text', serif; font-style: italic; font-size: 1.15rem; color: rgba(226,213,190,0.75); border-left: 2px solid rgba(184,50,37,0.4); padding-left: 1rem; line-height: 1.4; }

.order-image-wrap { position: relative; }

.order-image-wrap img { width: 100%; height: 480px; object-fit: cover; }

.order-image-wrap::after {
  content: 'Goes everywhere ketchup goes — and everywhere it doesn\'t.';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: var(--white);
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.2rem;
  line-height: 1.4;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════════════════════ */
#video-section { padding: 7rem 3rem; background: var(--black); }

.video-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.video-inner .section-label { font-family: 'Teko', sans-serif; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }

.video-inner h2 { font-family: 'Rye', serif; font-size: clamp(2.2rem, 4.5vw, 4rem); color: var(--white); margin-bottom: 3rem; text-shadow: 2px 2px 0 rgba(0,0,0,0.5); }

.video-wrap { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }

.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════ */
#reviews {
  background: var(--deep);
  background-image: linear-gradient(135deg, rgba(61,43,26,0.12) 0%, transparent 50%);
  padding: 7rem 3rem;
  border-top: 3px solid rgba(184,50,37,0.3);
}

.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-inner .section-heading { margin-bottom: 4rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px; }

.review-card {
  background: var(--charcoal);
  background-image: linear-gradient(160deg, rgba(61,43,26,0.1) 0%, transparent 50%);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.review-card:hover { background: var(--smoke); }

.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }

.review-card blockquote { font-family: 'Crimson Text', serif; font-style: italic; font-weight: 400; font-size: 1rem; line-height: 1.85; color: rgba(226,213,190,0.8); margin-bottom: 1.5rem; border-left: 3px solid var(--red); padding-left: 1rem; }

.review-author { font-family: 'Teko', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); }

.review-source { font-family: 'Teko', sans-serif; font-size: 0.75rem; color: var(--red); margin-top: 0.2rem; letter-spacing: 0.1em; }

/* ══════════════════════════════════════════════════════════
   SOCIAL
══════════════════════════════════════════════════════════ */
#social { padding: 7rem 3rem; text-align: center; }

.social-inner { max-width: 900px; margin: 0 auto; }

.social-inner h2 { font-family: 'Rye', serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--white); margin-bottom: 0.8rem; text-shadow: 2px 2px 0 rgba(0,0,0,0.5); }

.social-inner p { font-family: 'Crimson Text', serif; font-style: italic; font-weight: 400; font-size: 1.05rem; color: rgba(226,213,190,0.5); margin-bottom: 3rem; }

.social-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

.social-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--bone);
  font-family: 'Teko', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--ash);
  border-top: 2px solid rgba(90,78,58,0.6);
  border-bottom: 2px solid rgba(90,78,58,0.6);
  padding: 0.7rem 1.8rem;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--red); color: var(--white); background: rgba(192,57,43,0.08); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer { background: var(--deep); border-top: 1px solid rgba(192,57,43,0.2); padding: 4rem 3rem 2rem; }

.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

.footer-brand img { height: 52px; width: auto; margin-bottom: 1.2rem; }

.footer-brand p { font-family: 'Crimson Text', serif; font-weight: 400; font-size: 1rem; line-height: 1.8; color: rgba(226,213,190,0.45); max-width: 280px; }

.footer-col h4 { font-family: 'Teko', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 1.2rem; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col a { color: rgba(226,213,190,0.5); text-decoration: none; font-family: 'Teko', sans-serif; font-weight: 400; font-size: 1rem; letter-spacing: 0.05em; transition: color 0.2s; }
.footer-col a:hover { color: var(--bone); }

.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

.footer-bottom p { font-family: 'Teko', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; color: rgba(226,213,190,0.25); }

.footer-bottom .made { color: var(--red); font-size: 0.85rem; letter-spacing: 0.1em; font-family: 'Teko', sans-serif; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; }
.mobile-menu a,
.mobile-menu a:link,
.mobile-menu a:visited,
.mobile-menu a:active {
  color: var(--bone) !important;
  text-decoration: none !important;
  font-family: 'Rye', serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(90,78,58,0.3);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--red) !important; padding-left: 0.5rem; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,6,4,0.99);
    padding: 2rem 1.5rem;
    z-index: 999;
    border-bottom: 3px solid var(--red);
    border-top: 1px solid rgba(200,152,42,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.9);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

  #about { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  .order-inner { grid-template-columns: 1fr; gap: 3rem; }
  .order-image-wrap { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  #features, #gallery, #order, #reviews, #social, #video-section { padding: 5rem 1.5rem; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 260px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; padding: 0.25rem 0.8rem; }
  .hero-tagline { font-size: 0.95rem; }
}