/* =============================================
   CFA FOOTHILL RANCH — STYLES
   Inspired by thedwarfhouse.com
   ============================================= */

/* ---------- Brand Fonts (Chick-fil-A Licensed) ---------- */
@font-face {
  font-family: 'Apercu';
  src: url('../fonts/Apercu Font/Apercu-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Apercu';
  src: url('../fonts/Apercu Font/Apercu-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Apercu';
  src: url('../fonts/Apercu Font/Apercu-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Rooney';
  src: url('../fonts/Rooney/Web fonts/RooneyPro-Medium.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Rooney';
  src: url('../fonts/Rooney/Web fonts/RooneyPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* ---------- CSS Variables ---------- */
:root {
  /* Primary Brand Colors */
  --red: #DD0033; /* Chick-fil-A Red (PMS 186C) - BRAND STANDARD */
  --white: #FFFFFF;

  /* Secondary/Tertiary Colors - BRAND COMPLIANCE NOTES:
     - Per brand standards, external communications should use 75% primary palette (White/Red)
     - Approved Secondary: Navy, Dark Red, Dark Gray, Gray, Light Gray
     - Tertiary colors are primarily for flavor cues
     - Consider replacing cream/tan with white for better brand compliance */
  --red-dark: #B80000; /* Dark Red - appears in approved secondary palette */
  --cream: #FDF6EE; /* Cream - NOT in standard palette, consider using white instead */
  --tan: #F2E8D9; /* Tan - NOT in standard palette, consider using white instead */
  --brown: #5C3D2E; /* Brown - NOT in standard palette, avoid if possible */
  --text: #1A1A1A; /* Dark Gray/Black for text */
  --text-light: #555; /* Medium Gray for secondary text */
  --nav-height: 72px;
  --font-display: 'Rooney', Georgia, serif;
  --font-body: 'Apercu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  font-variant-ligatures: none; /* BRAND STANDARD: No ligatures per typography guidelines */
  -webkit-font-variant-ligatures: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em; /* -30 tracking per brand standards */
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em; /* -30 tracking per brand standards */
}
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

p { margin-bottom: 1rem; color: var(--text-light); }

/* ---------- Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
  color: var(--text-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(221,0,0,0.25);
}

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

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

/* Show logo text if image missing */
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  transition: color var(--transition);
}

.site-header.scrolled .logo-text {
  color: var(--text);
}

.logo-text small {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition), opacity var(--transition);
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.site-header.scrolled .nav-links a {
  color: var(--text);
}

.nav-links .nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
  opacity: 1;
}

.nav-links .nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background var(--transition);
}

.site-header.scrolled .hamburger span {
  background: var(--text);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-nav.open {
  display: flex;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  /* Fallback color if no image - using dark gray from approved secondary palette */
  background-color: var(--text);
}

.hero-content {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  z-index: 2;
  text-align: right;
  color: var(--white);
  animation: fadeUp 1s ease both;
}

.hero-heading {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

/* =============================================
   ABOUT
   ============================================= */
.section-about {
  background: var(--white); /* Changed from cream to white per brand standards (75% primary palette) */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
}

.about-text .btn {
  margin-top: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  background: var(--white); /* Changed from tan to white per brand standards */
}

.gallery-img.tall {
  grid-row: span 2;
}

/* =============================================
   CULTURE / TESTIMONIALS
   ============================================= */
.section-culture {
  background: var(--red);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 100%;
}

.testimonial-card {
  background: var(--red);
  border-right: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: transform var(--transition);
}

.testimonial-card:last-child {
  border-right: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-img-wrap {
  height: 280px;
  overflow: hidden;
}

.testimonial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.7;
  color: #FFFFFF;
  padding: 2rem 2rem 1.25rem;
  margin: 0;
}

.testimonial-card cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  color: #FFFFFF;
  padding: 0 2rem 2rem;
  line-height: 1.6;
}

.testimonial-card cite strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* =============================================
   BENEFITS
   ============================================= */
.section-benefits {
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 40%, var(--red) 40%, var(--red) 100%);
  padding: 80px 0 100px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.benefit-item {
  text-align: center;
  color: var(--text);
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.benefit-item:nth-child(1),
.benefit-item:nth-child(2),
.benefit-item:nth-child(3),
.benefit-item:nth-child(4) {
  color: var(--text);
  background: var(--white);
}

.benefit-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.benefit-item h3 {
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefit-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  text-align: left;
  color: var(--text);
}

/* =============================================
   STORY / RISING ABOVE
   ============================================= */
.section-story {
  background: transparent;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.story-wrapper {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.story-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.story-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.story-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: 8%;
  padding: 5rem 2rem;
  color: var(--white);
  text-align: left;
}

.story-content .section-label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.story-content h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 400;
}

.story-content p {
  color: #FFFFFF;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
}

.story-product {
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 450px;
  z-index: 3;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4));
}

.story-product img {
  width: 100%;
  height: auto;
}

/* =============================================
   JOB OPENINGS
   ============================================= */
.section-jobs {
  background: var(--white);
  padding: 100px 0 120px;
}

.jobs-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.jobs-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
}

.jobs-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.jobs-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.job-card-new {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.job-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.job-icon-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  padding: 8px;
}

.job-icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.job-image-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--white); /* Changed from tan to white per brand standards */
}

.job-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.job-card-new:hover .job-image-wrap img {
  transform: scale(1.05);
}

.job-content {
  padding: 1.75rem;
}

.job-content h3 {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.job-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.btn-red-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: all var(--transition);
  display: inline-block;
}

.btn-red-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(221,0,51,0.3);
}

/* =============================================
   ORDER
   ============================================= */
.section-order {
  background: var(--red);
  padding: 120px 0;
}

.order-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.order-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-icon-circle {
  width: 400px;
  height: 400px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.app-icon-circle img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.order-content .section-label {
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.order-content h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.order-content p {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

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

/* =============================================
   FUNDRAISING
   ============================================= */
.section-fundraising {
  background: var(--white); /* Changed from cream to white per brand standards (75% primary palette) */
  padding: 6rem 0;
}

.fundraising-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.fundraising-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.fundraising-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.fundraising-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.fundraising-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.fundraising-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.email-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.email-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.fundraising-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   VISIT
   ============================================= */
.section-visit {
  background: var(--white); /* Changed from #F5F5F0 to white per brand standards */
  padding: 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.visit-map {
  position: relative;
  overflow: hidden;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  inset: 0;
}

.visit-info {
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-info .section-label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.visit-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 2.5rem;
  color: var(--text);
}

.visit-detail {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.visit-icon {
  flex-shrink: 0;
  color: var(--red);
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.visit-detail p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.visit-detail strong {
  font-weight: 600;
  color: var(--text);
}

.visit-link {
  color: var(--text);
  text-decoration: underline;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.visit-link:hover {
  color: var(--red);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-legal {
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.footer-developer {
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1.5rem;
}

.footer-developer p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-developer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-developer a:hover {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-benefits {
    background: var(--red);
  }

  .benefit-item,
  .benefit-item:nth-child(1),
  .benefit-item:nth-child(2),
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4) {
    color: var(--text);
    background: var(--white);
  }

  .benefit-item h3 {
    color: var(--red);
  }

  .benefit-item p {
    color: var(--text);
    text-align: center;
  }

  .benefit-icon {
    color: var(--red);
  }

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

  .testimonial-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .testimonial-card:last-child {
    border-bottom: none;
  }

  .jobs-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero content responsive */
  .hero-content {
    bottom: 2rem;
    right: 2rem;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-img.tall { grid-row: span 1; }

  .jobs-grid-new {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .job-icon-badge {
    width: 42px;
    height: 42px;
  }

  /* Story section responsive */
  .story-wrapper {
    min-height: 550px;
  }

  .story-content {
    padding: 3rem 1.5rem;
    max-width: 100%;
    margin-left: 1.5rem;
    text-align: left;
  }

  .story-content h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .story-product {
    width: 320px;
    right: -40px;
    bottom: -50px;
  }

  /* Order section responsive */
  .order-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .app-icon-circle {
    width: 250px;
    height: 250px;
    padding: 40px;
  }

  /* Visit section responsive */
  .visit-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .visit-map {
    height: 300px;
  }

  .visit-map iframe {
    position: relative;
  }

  .visit-info {
    padding: 2rem;
  }

  /* Fundraising responsive */
  .fundraising-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .fundraising-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fundraising-actions .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}
