/* ==========================================================================
   RUT'N'BUCK BURRITOS — MVP SITE

   Custom Fonts: Replace the fallback fonts below with your brand fonts
   once you have web-font files (.woff2) for:
   - House of Cards
   - Becker Gothic
   - BC Alphapipe
   ========================================================================== */

/* --- FONT FACE (uncomment & update paths when you have .woff2 files) ---
@font-face {
  font-family: 'House of Cards';
  src: url('assets/fonts/house-of-cards.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Becker Gothic';
  src: url('assets/fonts/becker-gothic.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BC Alphapipe';
  src: url('assets/fonts/bc-alphapipe.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
--- */

:root {
  --black: #111111;
  --white: #FFFFFF;
  --red: #C41A1A;
  --red-dark: #9B1111;
  --tan: #D4C5A9;
  --tan-light: #E8DFC8;
  --grey-light: #E5E5E5;
  --grey: #888888;
  --grey-dark: #333333;

  /* Replace these with your brand fonts when ready */
  --font-display: 'Georgia', 'Times New Roman', serif;      /* placeholder for House of Cards / BC Alphapipe */
  --font-body: 'Helvetica Neue', Arial, sans-serif;          /* placeholder for Becker Gothic */
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title--center { text-align: center; }
.section-subtitle {
  text-align: center;
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* --- BUTTON --- */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; text-align: center; }

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 40px;
  width: auto;
  filter: invert(1);
}
.nav.scrolled .nav-logo img {
  filter: invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links .btn:hover { color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: 120px 24px 80px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.hero-inner { max-width: 600px; position: relative; z-index: 1; }
.hero-logo {
  width: 550px;
  max-width: 90vw;
  margin: 0 auto 32px;
  filter: invert(1);
}
.hero-tagline {
  font-family: 'Bungee Shade', var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  margin-bottom: 36px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.hero-tagline span {
  color: var(--red);
  font-weight: 700;
}

/* --- ABOUT --- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  margin-top: 16px;
  color: var(--grey-dark);
  font-size: 1.05rem;
}
.about-image img {
  border-radius: 4px;
}

/* --- PRODUCT HERO --- */
.product-hero {
  background: var(--black);
  padding: 0;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.product-hero-image {
  overflow: hidden;
}
.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  text-align: center;
  color: var(--white);
}
.product-hero-illustration {
  width: 240px;
  max-width: 100%;
  margin-bottom: 24px;
  filter: invert(1);
}
.product-hero-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--grey-light);
  max-width: 380px;
}

/* --- CATERING --- */
.catering { background: var(--tan-light); }
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.catering-text p {
  margin-top: 16px;
  color: var(--grey-dark);
  font-size: 1.05rem;
}
.catering-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.catering-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}
.catering-feature svg { color: var(--red); flex-shrink: 0; }
.catering-cta-box {
  background: var(--black);
  color: var(--white);
  padding: 48px 40px;
  text-align: center;
}
.catering-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.catering-cta-box p {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.catering-phone {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--grey) !important;
  margin-bottom: 0 !important;
}
.catering-phone a { color: var(--white); transition: color 0.2s; }
.catering-phone a:hover { color: var(--red); }

/* --- BURRITOS --- */
.burritos { background: var(--tan-light); }
.burrito-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.burrito-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.burrito-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.burrito-card--spicy { border-color: var(--red); }
.burrito-icon {
  margin-bottom: 16px;
  color: var(--red);
  display: flex;
  justify-content: center;
}
.burrito-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.burrito-card p {
  color: var(--grey-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}
.meat-rotation {
  text-align: center;
  padding: 32px;
  background: var(--black);
  color: var(--white);
}
.meat-rotation h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.meat-tags { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.tag {
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- PROCESS GALLERY --- */
.process { background: var(--grey-dark); }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: var(--grey); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
}
.process-item {
  overflow: hidden;
  position: relative;
}
.process-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.process-item:hover img {
  transform: scale(1.05);
}
.process-item--tall {
  grid-row: span 2;
}
.process-item--wide {
  grid-column: span 2;
}

/* --- WHOLESALE --- */
.wholesale { background: var(--white); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.partner-card {
  background: var(--grey-light);
  padding: 36px 16px;
  text-align: center;
  transition: background 0.2s;
}
.partner-card:hover { background: var(--tan-light); }
.partner-icon {
  margin-bottom: 12px;
  color: var(--red);
  display: flex;
  justify-content: center;
}
.partner-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wholesale-cta {
  text-align: center;
  padding-top: 16px;
}
.wholesale-cta p {
  font-size: 1.1rem;
  color: var(--grey-dark);
  margin-bottom: 24px;
}

/* --- CONTACT --- */
.contact { background: var(--black); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: var(--grey); }
.contact-simple {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.contact-item { margin-bottom: 28px; }
.contact-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 6px;
}
.contact-item a,
.contact-item p {
  font-size: 1.15rem;
  color: var(--white);
  transition: color 0.2s;
}
.contact-link { font-size: 1.4rem; }
.contact-item a:hover { color: var(--red); }
.contact-simple .btn { margin-top: 16px; }

/* --- FOOTER --- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--grey-dark);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  height: 30px;
  width: auto;
  filter: invert(1);
}
.footer p {
  color: var(--grey);
  font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s;
  }
  .nav-links.open { right: 0; }

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

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { order: -1; }

  .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-image { max-height: 400px; }

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

  .process-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .process-item--tall { grid-row: span 1; }
  .process-item--wide { grid-column: span 2; }

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

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
