/* ===== Custom Properties ===== */
:root {
  --red: #5BAFBF;
  --red-dark: #4A9BAB;
  --charcoal: #1A1A1A;
  --gold: #D4A843;
  --gold-light: #E8C76A;
  --green: #2D6A2E;
  --green-light: #3A8A3B;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-500: #6B6B6B;
  --gray-700: #3D3D3D;

  --font-heading: 'Roboto Slab', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --nav-height: 140px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --transition: .3s ease;

}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== Layout ===== */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--honeycomb {
  position: relative;
}
.section--honeycomb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/Honeycomb Pattern.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

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

.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
}

.section--charcoal .section-header p,
.section--red .section-header p {
  color: rgba(255,255,255,.75);
}

/* ===== Animated Elements ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav--dark {
  background: transparent;
  border-bottom: none;
  height: 100px;
}

.nav--dark .nav__logo img {
  height: 90px;
  border-radius: 8px;
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav--dark.scrolled {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav--dark .nav__logo {
  color: var(--white);
}

.nav__logo img {
  height: 128px;
  width: auto;
}

.nav__logo span {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  color: var(--gray-700);
  position: relative;
  transition: color var(--transition);
}

.nav--dark .nav__link {
  color: rgba(255,255,255,.7);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav--dark .nav__link::after {
  background: var(--white);
}

.nav__link:hover,
.nav__link.active {
  color: var(--charcoal);
}

.nav--dark .nav__link:hover,
.nav--dark .nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

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

.btn--white:hover {
  background: var(--cream);
}

.btn--nav {
  padding: 10px 24px;
  font-size: .9rem;
  position: relative;
  overflow: hidden;
}
.btn--nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/Honeycomb Pattern.png');
  background-size: 150px;
  background-position: center;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.btn--nav:hover::before {
  opacity: 0.08;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== Mobile Nav Toggle ===== */
.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: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.hero--home {
  min-height: 85vh;
}

.hero--centered {
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
}

.hero--centered .hero__bg {
  opacity: 1;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding: 100px 24px 0;
  text-align: center;
}

.hero__cta {
  position: absolute;
  bottom: 23vh;
  left: 50%;
  transform: translateX(-50%);
}

.hero__text {
  max-width: 750px;
  max-height: 15vh;
}

.hero__text h1 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.hero__text h1::after {
  display: none;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}

/* ===== Tagline Section ===== */
.section--tagline {
  background: #2E2E2E;
  padding: 48px 0;
  text-align: center;
}

.tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* ===== Overview Section ===== */
.overview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.overview-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.overview-card__icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.overview-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.overview-card p {
  color: var(--gray-500);
  line-height: 1.7;
  font-size: .95rem;
}

.overview-card p {
  flex: 1;
}

.overview-card__img {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.overview-card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.overview-card__img--bottom img {
  object-position: center 60%;
}

/* Benefits Accordion */
.overview-benefits-section {
  margin-bottom: 48px;
}

.overview-section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.benefits-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.benefit-item {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.benefit-item:hover {
  box-shadow: var(--shadow);
}

.benefit-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
}

.benefit-item__icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.benefit-item__icon svg {
  width: 18px;
  height: 18px;
}

.benefit-item__trigger span {
  flex: 1;
}

.benefit-item__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray-500);
}

.benefit-item.active .benefit-item__chevron {
  transform: rotate(180deg);
}

.benefit-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px 0 68px;
}

.benefit-item.active .benefit-item__content {
  max-height: 200px;
  padding: 0 20px 16px 68px;
}

.benefit-item__content p {
  color: var(--gray-500);
  line-height: 1.6;
  font-size: .88rem;
}

@media (max-width: 768px) {
  .overview-row {
    grid-template-columns: 1fr;
  }
  .benefits-accordion {
    grid-template-columns: 1fr;
  }
  .benefit-item__content {
    padding: 0 20px 0 20px;
  }
  .benefit-item.active .benefit-item__content {
    padding: 0 20px 16px 20px;
  }
}

/* ===== Liner Cards (Technology Page) ===== */
.liner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.liner-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  min-height: 220px;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.liner-card__front,
.liner-card__back {
  padding: 32px 24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.liner-card__front {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.liner-card__icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.liner-card__front h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--charcoal);
}

.liner-card__hint {
  font-size: .75rem;
  color: var(--gray-500);
  opacity: .6;
  margin-top: 4px;
}

.liner-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: var(--red);
  opacity: 0;
  transform: translateY(10px);
}

.liner-card__back p {
  color: var(--white);
  font-size: .9rem;
  line-height: 1.7;
}

.liner-card[data-active="true"] .liner-card__front {
  opacity: 0;
}

.liner-card[data-active="true"] .liner-card__back {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .liner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .liner-grid {
    grid-template-columns: 1fr;
  }
}

.btn--outline-center {
  background: var(--red);
  color: var(--white);
  border: 3px solid var(--red);
  border-radius: 50px;
  padding: 14px 40px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all var(--transition);
}

.btn--outline-center:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,.1);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.hero__content {
  position: relative;
  max-width: 680px;
}

.hero__content h1 {
  margin-bottom: 20px;
}

.hero__content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}

.hero__content .btn {
  margin-top: 8px;
}

/* Gold accent line */
.hero__content h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin-top: 20px;
  border-radius: 2px;
}

/* ===== Dark Section ===== */
.section--dark {
  background: var(--charcoal);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ===== Problem / Solution ===== */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-solution--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.problem-solution--split .problem-solution__text h2 {
  margin-bottom: 8px;
}

.problem-solution--split .problem-solution__text p {
  color: var(--gray-500);
  font-size: .95rem;
  margin-bottom: 4px;
  line-height: 1.6;
}

.problem-solution__lead {
  font-size: 1.05rem !important;
  color: var(--gray-700) !important;
  font-weight: 500;
  margin-bottom: 8px !important;
}

.problem-solution__img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-solution__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__eyebrow--dark {
  color: var(--gray-500);
}

.problem-solution__text h2 {
  margin-bottom: 24px;
}

.problem-solution__text p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.problem-solution__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-200);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: .9rem;
}

.problem-solution__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

/* ===== Benefits Cards ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -2;
}

.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.78);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}

.benefit-card:hover::before,
.benefit-card:hover::after {
  opacity: 1;
}

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

.benefit-card[data-hover-bg="images/Hot Pizza.png"]::before {
  background-image: url('../images/Hot Pizza.png');
}

.benefit-card[data-hover-bg="images/Pizza People.png"]::before {
  background-image: url('../images/Pizza People.png');
}

.benefit-card[data-hover-bg="images/Pizza Boxes.png"]::before {
  background-image: url('../images/Pizza Boxes.png');
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.benefit-card__icon--red { background: rgba(45,106,46,.1); color: var(--green); }
.benefit-card__icon--gold { background: rgba(45,106,46,.1); color: var(--green); }
.benefit-card__icon--green { background: rgba(45,106,46,.1); color: var(--green); }

.benefit-card__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--gray-500);
  font-size: .95rem;
}

/* ===== Scrolling Gallery ===== */
.gallery-scroll {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}

.gallery-scroll__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 5%;
  scroll-behavior: smooth;
}

.gallery-scroll__track::-webkit-scrollbar {
  display: none;
}

.gallery-scroll__track img {
  height: 320px;
  width: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.gallery-scroll__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
}

.gallery-scroll__arrow:hover {
  background: var(--gray-100);
  transform: translateY(-50%) scale(1.08);
}

.gallery-scroll__arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--charcoal);
}

.gallery-scroll__arrow--left {
  left: 16px;
}

.gallery-scroll__arrow--right {
  right: 16px;
}

@media (max-width: 768px) {
  .gallery-scroll__track img {
    height: 220px;
  }

  .gallery-scroll__arrow {
    width: 40px;
    height: 40px;
  }
}

/* ===== Who It's For (Audience) ===== */
.section--audience {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.section--audience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pizza oven.png') center / cover no-repeat;
  opacity: .25;
}

.section--audience .section-header h2 {
  color: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.audience-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.3);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.audience-card h3 {
  margin-bottom: 12px;
  color: var(--red);
}

.audience-card p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  text-align: center;
  padding: var(--section-pad) 0;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: .85;
}

/* ===== Steps (How It Works) ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__content h3 {
  margin-bottom: 8px;
}

.step__content p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: .95rem;
  opacity: .8;
}

.stats-note {
  text-align: center;
  margin-top: 40px;
  font-size: .95rem;
  opacity: .7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Sustainability ===== */
.sustainability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sustainability__text h2 {
  margin-bottom: 24px;
}

.sustainability__text p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.sustainability__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  padding: 40px;
  text-align: center;
  position: relative;
}

.sustainability__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Pizza Boxes.png') center / cover no-repeat;
  opacity: .3;
}

.sustainability__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}

.sustainability__visual > * {
  position: relative;
  z-index: 1;
}

.sustainability__visual .eco-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

/* ===== Contact Page ===== */
.section--contact-page {
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

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

.form-note {
  margin-top: 16px;
  font-size: .85rem;
  color: var(--gray-500);
}

.contact-info {
  padding: 48px;
  background: var(--gray-300);
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  margin-bottom: 32px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-info__text strong {
  display: block;
  margin-bottom: 2px;
}

.contact-info__text a {
  color: var(--red);
  transition: color var(--transition);
}

.contact-info__text a {
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.contact-info__text a:hover {
  color: var(--red-dark);
  transform: translateY(-2px);
}

.contact-info__badge {
  margin-top: 40px;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0D2E0E;
  border: 2px solid rgba(45,106,46,.25);
  background: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-info__badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/American Flag.png') center / cover no-repeat;
  opacity: .4;
  z-index: -1;
}

.contact-info__logo {
  margin-top: 24px;
}

.contact-info__logo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/Honeycomb Pattern.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand p {
  color: rgba(255,255,255,.6);
  margin-top: 12px;
  font-size: .95rem;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold) !important;
  margin-top: 16px !important;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  font-size: .95rem;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  align-items: center;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

.footer__contact-item a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}

.footer__badges {
  display: flex;
  gap: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .problem-solution,
  .sustainability {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid,
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
    --nav-height: 68px;
  }

  .nav__logo img {
    height: 52px;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s ease;
  }

  .nav--dark .nav__links {
    background: #000;
    top: 0;
    bottom: 0;
    height: 100vh;
    min-height: 100%;
    padding-top: calc(var(--nav-height) + 20px);
    z-index: 9999;
  }

  .nav--dark .nav__link {
    border-bottom-color: rgba(255,255,255,.1);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    width: 100%;
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav__link::after { display: none; }

  .btn--nav {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 10000;
  }

  .nav--dark .nav__toggle span {
    background: var(--white);
  }

  .hero--home { min-height: auto; }
  .hero--centered { min-height: 100vh; }
  .hero__overlay { padding: calc(var(--nav-height) + 32px) 16px 40px; min-height: 100vh; }

  .problem-solution--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-solution__img {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero__product {
    max-width: 90%;
    margin-bottom: 32px;
  }

  .benefits-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .step {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }

  .step__number {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

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

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

  .contact-form {
    padding: 32px 24px;
  }

  .contact-info {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero__content p {
    font-size: 1rem;
  }
}
