/* ============================================
   BURRITO VARIETY GUIDE - MAIN STYLESHEET
   Design: Bold Food Catalog
   Colors: Deep Red + Orange + White
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --red-dark:    #9B1B30;
  --red-mid:     #C0392B;
  --orange:      #E8610A;
  --orange-light:#F28C28;
  --yellow-warm: #F5C542;
  --white:       #FFFFFF;
  --off-white:   #FDF6F0;
  --cream:       #FAF0E6;
  --gray-light:  #F2F2F2;
  --gray-mid:    #CCCCCC;
  --gray-dark:   #555555;
  --black:       #1A1A1A;
  --text-body:   #2C2C2C;

  --font-heading: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'Georgia', serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.22);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p  { font-size: 1.05rem; margin-bottom: 1rem; color: var(--text-body); }

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* ---------- UTILITY CLASSES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-orange { color: var(--orange) !important; }
.text-red    { color: var(--red-dark) !important; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.bg-off-white { background: var(--off-white); }
.bg-cream     { background: var(--cream); }
.bg-dark      { background: var(--black); }
.bg-red       { background: var(--red-dark); }
.bg-orange    { background: var(--orange); }
.bg-gradient  {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--orange) 100%);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 97, 10, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232, 97, 10, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--red-dark);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--red-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--orange-light);
  letter-spacing: 2px;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--gray-mid);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(232, 97, 10, 0.2);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  color: var(--gray-mid) !important;
  padding: 10px 18px !important;
  font-size: 0.82rem !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.dropdown-menu a:hover {
  color: var(--orange) !important;
  background: rgba(232,97,10,0.12) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--red-dark));
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,97,10,0.4);
  background: linear-gradient(135deg, var(--orange), var(--red-dark)) !important;
  color: var(--white) !important;
}

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

/* ---------- HERO SECTIONS ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  transition: opacity 0.5s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155,27,48,0.82) 0%, rgba(232,97,10,0.60) 50%, rgba(26,26,26,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--yellow-warm);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero h1 .highlight {
  color: var(--orange-light);
  display: block;
}

.hero p.lead {
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 600px;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-light);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Page Hero (smaller) */
.page-hero {
  position: relative;
  padding: 100px 0 70px;
  background: var(--black);
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(155,27,48,0.88) 0%, rgba(26,26,26,0.92) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.78); margin: 0 auto; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

/* ---------- SECTION HEADERS ---------- */
.section-header {
  margin-bottom: 52px;
}

.section-header.centered { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.section-header.centered .section-label {
  padding-left: 0;
}
.section-header.centered .section-label::before { display: none; }

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  max-width: 600px;
}
.section-header.centered p { margin: 0 auto; }

.title-underline {
  display: inline-block;
  position: relative;
}
.title-underline::after {
  content: '';
  display: block;
  height: 4px;
  width: 60%;
  background: linear-gradient(90deg, var(--orange), var(--red-dark));
  border-radius: 2px;
  margin-top: 6px;
}

/* ---------- CARDS ---------- */
.card-grid {
  display: grid;
  gap: 28px;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.card-badge.orange { background: var(--orange); }
.card-badge.green  { background: #2E7D32; }

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.card-link:hover { gap: 12px; color: var(--red-dark); }
.card-link::after { content: '→'; }

/* Feature Card */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--red-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,97,10,0.12), rgba(155,27,48,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p  { font-size: 0.95rem; color: var(--gray-dark); margin: 0; }

/* ---------- VARIETY CARDS (Variety Pages) ---------- */
.variety-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
  background: var(--white);
}

.variety-item.reverse { direction: rtl; }
.variety-item.reverse > * { direction: ltr; }

.variety-img {
  height: 400px;
  overflow: hidden;
}
.variety-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.variety-item:hover .variety-img img { transform: scale(1.04); }

.variety-content {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.variety-tag {
  display: inline-block;
  background: rgba(232,97,10,0.1);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(232,97,10,0.25);
}

.variety-content h2 { margin-bottom: 16px; color: var(--black); font-size: 2rem; }
.variety-content p  { color: var(--gray-dark); margin-bottom: 16px; }

.variety-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.trait-chip {
  background: var(--gray-light);
  color: var(--gray-dark);
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--gray-mid);
}

/* ---------- COMPARISON ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--red-dark), var(--orange));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 24px;
  text-align: left;
}

.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td { background: var(--off-white); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(232,97,10,0.05); }

.comparison-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--red-dark);
  font-size: 1rem;
}

/* ---------- BLOG ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img { transform: scale(1.06); }

.blog-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--gray-dark);
}

.blog-meta .tag {
  background: rgba(232,97,10,0.1);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.blog-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.blog-body p  { font-size: 0.93rem; color: var(--gray-dark); flex: 1; }

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
}

.read-time { font-size: 0.82rem; color: var(--gray-dark); }

/* ---------- INFO SECTIONS ---------- */
.info-box {
  background: linear-gradient(135deg, rgba(232,97,10,0.08), rgba(155,27,48,0.08));
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 30px 0;
}

.info-box h4 { color: var(--red-dark); margin-bottom: 8px; }
.info-box p  { margin: 0; font-size: 0.95rem; }

.steps-list {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.step-num {
  counter-increment: steps;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 { margin-bottom: 6px; font-size: 1.1rem; }
.step-content p  { margin: 0; font-size: 0.95rem; color: var(--gray-dark); }

/* ---------- INTERNAL LINK STRIPS ---------- */
.link-strip {
  background: linear-gradient(135deg, var(--black) 0%, #2c1810 100%);
  padding: 60px 0;
}

.link-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.link-strip-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
  color: var(--white);
}

.link-strip-item:hover {
  background: rgba(232,97,10,0.2);
  border-color: var(--orange);
  transform: translateY(-4px);
}

.link-strip-item .icon { font-size: 2rem; margin-bottom: 12px; }
.link-strip-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.link-strip-item p  { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ---------- QUOTE / HIGHLIGHT BAND ---------- */
.quote-band {
  background: linear-gradient(135deg, var(--red-dark), var(--orange));
  padding: 70px 0;
  text-align: center;
}

.quote-band blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
}

.quote-band cite {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
}

/* ---------- TAG / CHIP LIST ---------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tag {
  background: var(--gray-light);
  color: var(--gray-dark);
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}

.tag:hover, .tag.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ---------- ACCORDION ---------- */
.accordion-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  transition: background var(--transition);
}

.accordion-header:hover { background: var(--off-white); }

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 24px 20px; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { margin: 0; font-size: 0.95rem; color: var(--gray-dark); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(232,97,10,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--orange); }

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 24px;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 12px;
  color: var(--red-dark);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
}

.legal-content p  { margin-bottom: 14px; font-size: 0.97rem; line-height: 1.8; }

.legal-content ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 16px;
}
.legal-content ul li { margin-bottom: 8px; font-size: 0.97rem; line-height: 1.7; }

.legal-last-updated {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 36px;
}

/* ---------- ABOUT / CONTACT ---------- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,97,10,0.1);
}

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

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

/* ---------- NOTICE / DISCLAIMER BAR ---------- */
.disclaimer-bar {
  background: rgba(232,97,10,0.08);
  border: 1px solid rgba(232,97,10,0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 28px 0;
  font-size: 0.88rem;
  color: var(--gray-dark);
}

.disclaimer-bar .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .variety-item { grid-template-columns: 1fr; }
  .variety-img  { height: 300px; }
  .variety-item.reverse { direction: ltr; }
  .link-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav    { display: none; }
  .hamburger   { display: flex; }
  .hero        { min-height: 75vh; }
  .hero-stats  { gap: 20px; flex-wrap: wrap; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--2 { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.88rem; }
  .comparison-table th,
  .comparison-table td { padding: 14px 16px; }
  .link-strip-grid { grid-template-columns: repeat(2, 1fr); }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    padding: 20px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .mobile-nav.open { transform: translateX(0); }

  .mobile-nav a {
    display: block;
    color: var(--gray-mid);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition);
  }

  .mobile-nav a:hover { color: var(--orange); }

  .mobile-nav .mobile-section-label {
    color: var(--orange);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    margin: 20px 0 8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
  }
}

@media (max-width: 576px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .link-strip-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }
  .hero-actions  { flex-direction: column; }
  .contact-form  { padding: 28px 20px; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.animate-fade-up { animation: fadeInUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.22s; }
.animate-delay-3 { animation-delay: 0.36s; }
.animate-delay-4 { animation-delay: 0.5s; }

/* Intersection observer-driven reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- GOOGLE FONTS IMPORT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');