/* ============================================
   DRAKE'S BARBECUE COMPANY
   Design System: Peg Leg Porker Style
   ============================================ */

/* --- TOKENS --- */
:root {
  --red: #C1272D;
  --red-dark: #B32025;
  --black: #1A1A1A;
  --black-deep: #0D0D0D;
  --cream: #F5F1E8;
  --tan: #D6C2A1;
  --white: #FFFFFF;
  --font-headline: 'Roboto Slab', 'Georgia', serif;
  --font-nav: 'Oswald', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-light: 0 4px 18px rgba(0,0,0,0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* --- PAPER TEXTURE OVERLAYS --- */
.section-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.dark-texture { opacity: 0.1; }
.cream-texture { opacity: 0.06; }
.red-texture { opacity: 0.08; }

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 2px solid transparent;
}

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

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: #2a2a2a; }

/* --- SECTION LABELS --- */
.section-label {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label.light { color: var(--tan); }

/* --- SECTION HEADLINES --- */
.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.section-headline.dark { color: var(--black); }
.section-headline.light { color: var(--white); }

/* --- BODY TEXT --- */
.body-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.body-text.light-text { color: rgba(255,255,255,0.75); }

/* --- SECTION DIVIDERS (PAINT STROKES) --- */
.section-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
}
.section-divider svg { display: block; width: 100%; }

/* --- BRUSH STROKE ACCENT ELEMENTS --- */
.brush-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  /* Enough height for logo floating above brush */
  padding-top: 0;
}

/* Scrolled state */
.main-nav.scrolled .nav-brush-svg path { fill-opacity: 0.97; }

/* Desktop nav wrapper */
.nav-desktop {
  display: block;
}

/* The brush stroke container */
.nav-brush-wrap {
  position: relative;
  width: 100%;
  height: 90px;
  margin-top: 40px; /* reduced so logo sits lower */
}

/* Full-width brush SVG */
.nav-brush-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Left + right link columns sit inside the brush */
.nav-brush-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav-left { justify-content: flex-end; padding-right: 120px; }
.nav-right { justify-content: flex-start; padding-left: 120px; }

.nav-links a {
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-family: var(--font-nav) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s ease !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

/* Centered logo -- absolutely positioned, centered horizontally, floats above brush */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* Logo sits mostly inside the brush, just slightly above */
  bottom: -15px;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
}
.nav-logo img {
  height: 160px;
  width: 160px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: #1a1008;
  padding: 4px;
  border: 3px solid rgba(193,39,45,0.7);
  box-shadow:
    0 0 0 4px rgba(0,0,0,0.85),
    0 8px 32px rgba(0,0,0,0.9),
    0 0 40px rgba(193,39,45,0.3);
  transition: transform 0.25s ease;
  mix-blend-mode: normal;
  filter: none;
}
.nav-logo:hover img { transform: scale(1.05); }

/* Mobile nav */
.nav-mobile-inner {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 90px;
  background: rgba(13,13,13,0.96);
}
.nav-logo-mobile img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  background: #1a1008;
  padding: 4px;
  border: 2px solid rgba(193,39,45,0.7);
  box-shadow:
    0 0 0 3px rgba(0,0,0,0.85),
    0 4px 16px rgba(0,0,0,0.9),
    0 0 24px rgba(193,39,45,0.25);
  filter: none;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black-deep);
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-cta {
  margin-top: 12px;
  background: var(--red) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 4px;
  border: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding-top: 80px;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(193,39,45,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(193,39,45,0.05) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* --- HERO VIDEO BACKGROUND --- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
  /* Clip video to hero bounds only */
  clip-path: inset(0);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.58) saturate(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,0.62) 0%,
    rgba(13,13,13,0.40) 50%,
    rgba(13,13,13,0.10) 100%
  );
}

/* Bottom fade into the paint stroke divider */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 120% 50% at 50% 110%, rgba(13,13,13,0.45) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 55%, rgba(13,13,13,0.4) 100%);
  pointer-events: none;
}

/* Mute toggle button */
.hero-mute-btn {
  position: absolute;
  bottom: 140px;
  right: 28px;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
}
.hero-mute-btn:hover {
  background: rgba(193,39,45,0.6);
  border-color: rgba(193,39,45,0.8);
  color: #fff;
}
.hero-mute-btn svg {
  width: 18px;
  height: 18px;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  padding: 60px 24px 120px;
  text-align: left;
  margin-left: 6vw;
}

/* Centered hero variant (Peg Leg Porker style) */
.hero-content--centered {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 80px 24px 160px;
}

.hero-eyebrow {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.8);
}

/* Full-width centered headline -- Peg Leg Porker style */
.hero-headline--centered {
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.7);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-sub--centered {
  font-family: var(--font-nav);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  max-width: 100%;
  margin-bottom: 48px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ctas--centered {
  justify-content: center;
  gap: 20px;
}

.btn-hero {
  font-size: 1.05rem;
  padding: 18px 44px;
  border-radius: 6px;
  letter-spacing: 0.1em;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-nav);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================
   INFO CARD (Peg Leg Porker style)
   ============================================ */
.info-card-wrap {
  position: relative;
  z-index: 10;
  margin-top: -2px;
  background: transparent;
  overflow: hidden;
}

.info-card {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 36px 40px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

/* Inner content constrained to max-width */
.info-card > * {
  /* columns stay readable at large widths */
}

.info-card-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 36px;
  flex: 1;
  min-width: 160px;
}

.info-card-col--ctas {
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 280px;
}

.info-card-label {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.info-card-value {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
}

.info-card-value--lg {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.info-card-phone {
  font-family: var(--font-nav);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.info-card-phone:hover { opacity: 0.8; }

.info-card-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.info-card-social a {
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}
.info-card-social a:hover { opacity: 1; transform: scale(1.15); }

.info-card-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* CTA buttons inside info card */
.btn-info-card {
  font-family: var(--font-nav);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.18s ease;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
}

.btn-info-card--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-info-card--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Torn bottom edge of info card */
.info-card-tear {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: -2px;
}
.info-card-tear svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  position: relative;
  background: var(--cream);
  padding: 100px 0 140px;
  overflow: hidden;
}

.reviews-section .section-label { color: var(--red); }
.reviews-section .section-headline { color: var(--black); }
.reviews-section .container { text-align: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.review-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: var(--shadow-light);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow);
}

.review-card--rotate-left { transform: rotate(-1.2deg); }
.review-card--rotate-right { transform: rotate(1.1deg); }

.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.18;
  position: absolute;
  top: 8px;
  left: 16px;
}

.review-stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #333;
  margin-bottom: 16px;
}

.review-author {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  position: relative;
  background: var(--black);
  padding: 120px 0 140px;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(193,39,45,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.about-text .btn { margin-top: 12px; }

.about-images {
  position: relative;
  height: 520px;
}

.about-img {
  position: absolute;
  border-radius: 6px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-img-1 {
  width: 75%;
  height: 65%;
  top: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 3;
}

.about-img-2 {
  width: 65%;
  height: 55%;
  bottom: 0;
  left: 0;
  transform: rotate(-1.8deg);
  z-index: 2;
}

.about-img-3 {
  width: 42%;
  height: 38%;
  top: 4%;
  left: 4%;
  transform: rotate(1.5deg);
  z-index: 4;
  border: 4px solid var(--black);
}

.about-img-4 {
  width: 46%;
  height: 70%;
  bottom: 0;
  right: 4%;
  transform: rotate(-2.5deg);
  z-index: 5;
  border: 4px solid var(--black);
}

/* ============================================
   FOOD SHOWCASE
   ============================================ */
.showcase-section {
  position: relative;
  background: var(--cream);
  padding: 120px 0 140px;
  overflow: hidden;
}

.showcase-section .section-label { color: var(--red); }
.showcase-section .container { text-align: center; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  text-align: left;
}

.showcase-item {
  position: relative;
  cursor: pointer;
}

.showcase-item--tilt-left { transform: rotate(-1.5deg); }
.showcase-item--tilt-right { transform: rotate(1.3deg); }

.showcase-item:hover {
  transform: rotate(0) scale(1.03) !important;
  z-index: 5;
}

.showcase-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--black);
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.showcase-label {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 14px;
  padding-left: 4px;
}

.showcase-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 3px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}

.showcase-cta {
  margin-top: 56px;
  text-align: center;
}

/* ============================================
   CATERING TYPES
   ============================================ */
.catering-types-section {
  position: relative;
  background: var(--red);
  padding: 120px 0 140px;
  overflow: hidden;
}

.catering-types-section .container { text-align: center; }

.catering-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: center;
}

.catering-card {
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}
.catering-card:hover {
  background: rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.catering-icon {
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0.9;
}

.catering-card h3 {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.catering-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  position: relative;
  background: var(--cream);
  padding: 120px 0 140px;
  overflow: hidden;
}

.how-it-works .section-label { color: var(--red); }
.how-it-works .container { text-align: center; }

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
}

.step-item {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-headline);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -10px;
}

.step-brush {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 16px;
  position: relative;
}
.step-brush::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -10px;
  width: 80px;
  height: 8px;
  background: var(--red);
  opacity: 0.15;
  border-radius: 4px;
  transform: rotate(-1deg);
}

.step-title {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
}

.step-connector {
  flex-shrink: 0;
  padding-top: 60px;
  opacity: 0.7;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  position: relative;
  background: var(--black);
  padding: 120px 0 140px;
  overflow: hidden;
}

.experience-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: -5%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(193,39,45,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

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

.experience-images {
  position: relative;
  height: 560px;
}

.exp-img {
  position: absolute;
  border-radius: 6px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.exp-img-1 {
  width: 72%;
  height: 55%;
  top: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
}

.exp-img-2 {
  width: 60%;
  height: 48%;
  top: 10%;
  right: 0;
  transform: rotate(1.8deg);
  z-index: 3;
}

.exp-img-3 {
  width: 65%;
  height: 48%;
  bottom: 0;
  left: 5%;
  transform: rotate(1.2deg);
  z-index: 4;
  border: 4px solid var(--black);
}

.exp-img-4 {
  width: 50%;
  height: 40%;
  bottom: 5%;
  right: 0;
  transform: rotate(-1.5deg);
  z-index: 3;
}

.exp-quote {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 20px;
}

.exp-quote p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.exp-quote span {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.experience-content .btn { margin-top: 12px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  position: relative;
  background: var(--red);
  padding: 120px 0 140px;
  overflow: hidden;
}

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

.contact-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto 56px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  text-align: left;
}

.contact-phone-block {
  margin-bottom: 32px;
}

.contact-phone-label {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.contact-phone {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.contact-phone:hover { opacity: 0.8; }

.contact-details { margin-bottom: 32px; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-social {
  display: flex;
  gap: 14px;
}
.contact-social a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
}
.contact-social a:hover { color: var(--white); }

/* FORM */
.contact-form {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.15);
}

.form-group select option { background: var(--black); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 1rem;
  padding: 18px;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
  position: relative;
  background: var(--black);
  padding: 100px 0 80px;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(193,39,45,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-details {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}
.loc-item a { color: var(--red); }
.loc-item a:hover { text-decoration: underline; }

.location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,0.08);
  transform: rotate(0.8deg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black-deep);
  position: relative;
  padding-top: 0;
}

.footer-brush-top {
  line-height: 0;
  margin-top: -2px;
}
.footer-brush-top svg { display: block; width: 100%; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  height: 200px;
  width: auto;
  max-width: 220px;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: 0.7;
}

.footer-address-text {
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-phone {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  transition: opacity 0.2s ease;
}
.footer-phone:hover { opacity: 0.8; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: var(--font-nav);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--red); }

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--red);
  padding: 12px 24px;
  border-radius: 50px;
  position: relative;
}
.social-pill::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: var(--red);
  opacity: 0.2;
  transform: rotate(-1deg);
}
.social-pill a {
  color: var(--white);
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 1;
}
.social-pill a:hover { opacity: 0.75; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
}
.footer-credit {
  margin-top: 6px;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.3) !important;
}
.footer-credit a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-credit a:hover { color: var(--red); text-decoration: underline; }

/* ============================================
   STICKY CALL BAR (MOBILE)
   ============================================ */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--black-deep);
  border-top: 2px solid var(--red);
  padding: 10px 16px;
  gap: 10px;
}

.sticky-call-btn,
.sticky-quote-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.sticky-call-btn { background: var(--red); color: var(--white); }
.sticky-quote-btn { background: var(--white); color: var(--black); }
.sticky-call-btn:hover,
.sticky-quote-btn:hover { opacity: 0.88; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .catering-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-mobile-inner { display: flex; }

  .about-container,
  .experience-layout,
  .location-container,
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }

  .about-images,
  .experience-images { height: 360px; }

  .showcase-grid { grid-template-columns: repeat(2, 1fr); }

  .catering-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-row { flex-direction: column; align-items: center; gap: 32px; }
  .step-connector { transform: rotate(90deg); padding-top: 0; }

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

  .sticky-call-bar { display: flex; }

  body { padding-bottom: 70px; }

  .hero-content { margin-left: 0; padding: 60px 24px 140px; }
  .hero-content--centered { padding: 60px 24px 180px; }
  .hero-mute-btn { bottom: 160px; right: 16px; }

  /* Info card responsive */
  .info-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px;
    border-radius: 0;
  }
  .info-card-divider { width: 100%; height: 1px; }
  .info-card-col { padding: 0; }
  .info-card-col--ctas { flex-direction: column; width: 100%; }
  .btn-info-card { width: 100%; text-align: center; }
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .catering-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-headline--centered { font-size: clamp(2.6rem, 13vw, 5rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn, .hero-ctas .btn-outline-white { width: 100%; text-align: center; }
  .contact-form { padding: 24px 18px; }
  .about-images { height: 280px; }
  .experience-images { height: 280px; }
  .catering-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  position: relative;
  background: #1a1008;
  padding: 0 0 0;
  overflow: hidden;
}

/* Torn paper top edge transitioning from previous cream section */
.faq-top-edge {
  position: relative;
  margin-top: -2px;
  line-height: 0;
  z-index: 2;
}
.faq-top-edge svg {
  display: block;
  width: 100%;
  height: 80px;
}

.faq-section .container {
  padding-top: 60px;
  padding-bottom: 0;
  position: relative;
  z-index: 3;
  text-align: center;
}

/* Single-column full-width accordion list */
.faq-list {
  max-width: 820px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-q:hover {
  background: rgba(255,255,255,0.04);
}

.faq-q[aria-expanded="true"] {
  background: rgba(193,39,45,0.08);
}

.faq-num {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--red);
  min-width: 32px;
  flex-shrink: 0;
}

.faq-q-text {
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  flex: 1;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-q[aria-expanded="true"] .faq-q-text {
  color: var(--red);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-q[aria-expanded="true"] .faq-icon {
  border-color: var(--red);
  background: var(--red);
}

.faq-q[aria-expanded="true"] .faq-icon::before,
.faq-q[aria-expanded="true"] .faq-icon::after {
  background: var(--white);
}

.faq-q[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-a.open {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0 8px 28px 52px;
}

.faq-a p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.faq-a strong {
  color: rgba(255,255,255,0.9);
}

/* Terms strip */
.faq-terms {
  margin-top: 72px;
  padding-bottom: 100px;
}

.faq-terms-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.faq-term-block {
  background: rgba(255,255,255,0.03);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.faq-term-block:hover {
  background: rgba(255,255,255,0.07);
}

.faq-term-icon {
  line-height: 1;
  margin-bottom: 8px;
  color: var(--red);
}

.faq-term-icon svg {
  display: block;
  stroke: var(--red);
}

.faq-term-block strong {
  display: block;
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.faq-term-block p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.faq-term-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}
.faq-term-link:hover { text-decoration: underline; }

/* Shop nav link */
.nav-shop {
  color: var(--red) !important;
  font-weight: 700 !important;
  border: 1px solid rgba(193,39,45,0.5);
  border-radius: 4px;
  padding: 4px 10px !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.nav-shop:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}

/* FAQ responsive */
@media (max-width: 900px) {
  .faq-terms-inner { grid-template-columns: 1fr 1fr; }
  .faq-list { margin-top: 36px; }
}

@media (max-width: 600px) {
  .faq-terms-inner { grid-template-columns: 1fr; }
  .faq-q-text { font-size: 0.9rem; }
  .faq-a-inner { padding-left: 8px; }
}

/* =============================================
   GUARANTEE BANNER
   ============================================= */
.guarantee-banner {
  margin: 56px auto 0;
  max-width: 860px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  border: 3px solid rgba(193,39,45,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.22);
}

.guarantee-banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .guarantee-banner { margin-top: 40px; border-radius: 6px; }
}

/* =============================================
   GUARANTEE BLOCK
   ============================================= */
.guarantee-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 72px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-banner-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  margin-bottom: 48px;
}

.guarantee-banner-img img {
  display: block;
  width: 100%;
  height: auto;
}

.guarantee-title {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 32px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.guarantee-copy {
  max-width: 760px;
  margin: 0 auto;
}

.guarantee-copy p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3a2a1a;
  margin: 0 0 14px;
}

.guarantee-signature {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 2.8rem;
  color: #1a0a00;
  margin-top: 32px;
  line-height: 1;
  text-shadow: none;
}

@media (max-width: 700px) {
  .guarantee-title { font-size: 2rem; }
  .guarantee-signature { font-size: 2rem; }
}

/* =============================================
   REVIEWS CTA BUTTON
   ============================================= */
.reviews-cta-wrap {
  text-align: center;
  padding: 40px 20px 20px;
}

.btn-review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1a0a00;
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid #dadada;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn-review-cta:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(-2px);
  border-color: #b0b0b0;
}
