/* =========================================================
   KombiNed Food Trucks — Style v4
   Nav logo 110px | Section H2 clamp(1.5rem, 2.5vw, 2rem) | Footer logo 100px
   ========================================================= */

:root {
  --orange:      #E8780A;
  --orange-dark: #C9950C;
  --green:       #2D5016;
  --cream:       #F5F0E8;
  --charcoal:    #1A1A1A;
  --sage:        #8BAA5A;
  --offwhite:    #FDFAF5;
  --caption:     #666;

  --font-head:   'Playfair Display', serif;
  --font-body:   'Lato', sans-serif;
  --font-accent: 'Dancing Script', cursive;

  --max-w: 1100px;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  animation: pageFade .45s ease;
}
@keyframes pageFade { from { opacity: 0 } to { opacity: 1 } }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; color: var(--green); }

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

/* Eyebrow = LARGEST text in each section: 3rem, orange, uppercase */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #E8780A;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Section H2 = medium, below the eyebrow */
.section-h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ---- Textures ---- */
.tx-cream {
  background-color: var(--cream);
  background-image: var(--grain);
}
.tx-green {
  background: radial-gradient(ellipse at 50% 50%, #3a6320 0%, var(--green) 45%, #1b310b 100%);
  position: relative;
}
.tx-green::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}
.tx-green > * { position: relative; z-index: 2; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 13px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232,120,10,.35), inset 0 -2px 0 rgba(0,0,0,.12);
}
.btn-primary:active { transform: translateY(0); box-shadow: inset 0 2px 4px rgba(0,0,0,.18); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--green); }
/* Outline variant for use on light backgrounds (e.g. hero-split text panel) */
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--green); border-color: #fff; }
.btn-white:hover { background: var(--cream); }
.btn-full { width: 100%; text-align: center; display: block; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   NAVIGATION — logo 180px, nav expands to fit
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--offwhite);
  border-bottom: 1px solid var(--orange);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.2rem 2rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 125px;
  width: auto;
  display: block;
}
/* Logo wrapper: background matches surrounding so PNG white bg is invisible */
.logo-bg-nav    { background-color: var(--offwhite); display: inline-flex; align-items: center; }
.logo-bg-footer { background: transparent; display: inline-flex; align-items: center; }
.nav-links { display: flex; gap: 32px; flex-shrink: 0; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.flag-switcher {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.flag-switcher img {
  height: 20px;
  width: auto;
  cursor: pointer;
  border-radius: 2px;
  transition: transform .2s;
}
.flag-switcher img:hover {
  transform: scale(1.2);
}
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-full { min-height: 100vh; }
.hero-60   { min-height: 60vh; }
.hero-50   { min-height: 50vh; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* base darkening ensures readability on bright images; then green gradient BL + vignette */
  background:
    rgba(0,0,0,0.28),
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.45) 100%),
    linear-gradient(to top right, rgba(45,80,22,0.82) 0%, rgba(45,80,22,0.5) 50%, rgba(45,80,22,0.18) 80%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 5rem;
  max-width: 720px;
}

/* Hero H1: massive, dominant — satisfies 4× subheadline rule */
.hero h1 {
  color: #fff;
  font-size: clamp(4.5rem, 10vw, 9rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.hero .subhead {
  color: var(--cream);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
.scroll-hint::after {
  content: "↓";
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  display: block;
}
@keyframes scrollPulse {
  0%,100% { opacity: .35; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;   transform: translateX(-50%) translateY(5px); }
}

/* ============================================================
   HERO — SPLIT VARIANT (text left, image right, no overlay)
   Used on pages like About: <section class="hero hero-60 hero-split">
   ============================================================ */
.hero-split {
  display: flex;
  align-items: stretch;
  background-image: none !important;
}
.hero-split::before {
  content: none; /* removes the dark/green overlay entirely */
}
.hero-split .hero-content {
  display: none; /* not used in split mode — replaced by .hero-text */
}

.hero-text {
  position: relative;
  z-index: 2;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem;
  background-color: #F5F0E8;
}
.hero-image {
  width: 50%;
  background-size: cover;
  background-position: center;
}

/* Smaller H1 for split hero — distinct from the massive full-bleed H1 above */
.hero-split h1,
.hero-h1-small {
  color: #2D5016;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-split .subhead {
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 0;
}
.hero-split .eyebrow {
  margin-bottom: .5rem;
  display: inline-block;
}
.hero-split .btn-row {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
  }
  .hero-text, .hero-image {
    width: 100%;
  }
  .hero-image {
    min-height: 280px;
  }
}

/* ============================================================
   WHY KOMBINED — asymmetric, stacked points + pull-quote
   ============================================================ */
.why-section { padding: 4rem 2rem; }
.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.why-heading { margin-bottom: 2.5rem; }
.why-point {
  position: relative;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 3px solid var(--orange);
  margin-bottom: 2rem;
}
.why-point:last-child { margin-bottom: 0; }
.why-num {
  position: absolute;
  left: -12px;
  top: 0;
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 1;
  color: rgba(45,80,22,.07);
  user-select: none;
  pointer-events: none;
}
.why-point h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 8px; }

.pull-quote-col { position: sticky; top: 140px; padding-top: 80px; }
.pull-quote {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--orange);
  font-style: italic;
  line-height: 1.35;
}
.pull-quote::before {
  content: "\201C";
  display: block;
  font-size: 4rem;
  line-height: .5;
  color: rgba(232,120,10,.2);
  margin-bottom: 14px;
}

/* ============================================================
   CONFIGURATIONS TEASER
   ============================================================ */
.configs-wrap {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.configs-bg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 58%;
  background-size: cover;
  background-position: center;
}
.configs-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.18) 0%, transparent 35%);
}
.configs-panel {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 48%;
  margin-left: 4%;
  padding: 3.5rem 3rem;
  box-shadow: 20px 0 52px rgba(0,0,0,.12);
}
.configs-panel h2 { margin-bottom: 1rem; }
.configs-panel p  { margin-bottom: 1rem; }

/* ============================================================
   FULL-BLEED SECTIONS
   ============================================================ */
.fb-section {
  display: flex;
  min-height: 480px;
}

.fb-text {
  width: 50%;
  background-color: #F5F0E8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.fb-text h2 {
  color: #2D5016;
  margin-bottom: .75rem;
  white-space: nowrap;
}

.fb-text p {
  color: #1A1A1A;
  max-width: 480px;
  margin: 0 0 .75rem;
}

.fb-text .btn {
  margin-top: 1.5rem;
}

.fb-image {
  width: 50%;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .fb-section {
    flex-direction: column;
  }
  .fb-text, .fb-image {
    width: 100%;
  }
  .fb-image {
    min-height: 280px;
  }
  .fb-text h2 {
    white-space: normal;
  }
}

/* ============================================================
   GALLERY PREVIEW (homepage)
   ============================================================ */
.preview-section { padding: 4rem 2rem; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 2rem;
}
.preview-item {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.preview-item:hover img { transform: scale(1.06); }
.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,120,10,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.preview-overlay span {
  font-family: var(--font-accent);
  font-size: 1.7rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
}
.preview-item:hover .preview-overlay { opacity: 1; }
.preview-cta { text-align: center; margin-top: 2rem; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gl-header { padding: 5rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.gl-header h1 { color: var(--cream); font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.gl-header p  { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 2.5rem 2rem 0;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 9px 22px;
  border-radius: 999px;
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(232,120,10,.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 2.5rem 2rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-item { opacity: 1; transition: opacity .32s ease; }
.gallery-item.hidden { display: none; }

.gallery-photo {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .42s ease;
}
.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(200,120,20,.08);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(232,120,10,.22);
  opacity: 0;
  transition: opacity .3s;
  z-index: 2;
  pointer-events: none;
}
.gallery-photo:hover::after { opacity: 1; }
.gallery-photo:hover img    { transform: scale(1.05); }

.gallery-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.gallery-photo:hover .gallery-label { opacity: 1; }
.gallery-label span {
  font-family: var(--font-accent);
  font-size: 1.65rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.65);
}
.gallery-caption { font-size: .875rem; font-style: italic; color: var(--caption); margin-top: .6rem; }

.gallery-cta { padding: 4rem 2rem; text-align: center; position: relative; }
.gallery-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.gallery-cta h2 { color: var(--cream); margin-bottom: .75rem; }
.gallery-cta p  { color: rgba(255,255,255,.88); margin-bottom: 1.75rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.differ-section {
  padding: 4rem 2rem;
  background: var(--offwhite);
}
.differ-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  /* CRITICAL: stretch so image height matches text column exactly */
  align-items: stretch;
}
.differ-text h2 { margin-bottom: 1rem; }
.differ-text p  { margin-bottom: 1rem; }
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: .78;
  color: var(--orange);
  padding-right: 10px;
  margin-top: 6px;
}
.differ-img {
  display: flex;
  flex-direction: column;
}
/* Image fills exactly the same height as the text column — no overhang */
.differ-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  display: block;
}

.offer-section { padding: 4rem 2rem; }
.offer-inner { max-width: var(--max-w); margin: 0 auto; }
.offer-heading { margin-bottom: 2.5rem; text-align: center; }
.offer-panel {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}
.offer-panel + .offer-panel { border-top: 1px solid var(--orange); }
.offer-num { font-family: var(--font-head); font-size: 2.5rem; color: rgba(45,80,22,.18); line-height: 1; }
.offer-panel h3 { color: var(--green); margin-bottom: .5rem; font-size: 1.2rem; }

.legend-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  overflow: hidden;
}
.legend-section::before { content: ""; position: absolute; inset: 0; background: rgba(45,80,22,.85); }
.legend-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: clamp(5rem, 12vw, 9rem);
  color: rgba(255,255,255,.055);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}
.legend-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.legend-inner h2 { color: var(--cream); margin-bottom: 1.25rem; }
.legend-inner p  { color: #fff; margin-bottom: 1rem; }

.mission-section { padding: 4rem 2rem; background: var(--offwhite); border-top: 3px solid var(--orange); }
.mission-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.mission-inner h2 { margin-bottom: 1rem; }
.mission-inner p  { margin-bottom: 1.5rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 4rem 2rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start; /* panels only grow as tall as their own content */
}
.form-col {
  background: var(--offwhite);
  padding: 3rem;
  border-radius: 2px 0 0 2px;
}
.form-col h2 { margin-bottom: 2rem; font-size: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 9px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--orange); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D5016' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; }
.form-disclaimer { font-size: .82rem; font-style: italic; color: var(--caption); margin-top: 1rem; }

/* CRITICAL: right panel only as tall as its content */
.next-col {
  background: var(--green);
  padding: 3rem 2.5rem;
  border-radius: 0 2px 2px 0;
  align-self: flex-start;  /* never grows taller than its own content */
  height: fit-content;
  position: relative;
  overflow: hidden;
}
.next-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(139,170,90,.14), transparent 60%);
  pointer-events: none;
}
.next-col h3 { font-family: var(--font-head); color: var(--cream); font-size: 1.5rem; margin-bottom: 1.75rem; position: relative; }
.next-steps { position: relative; }
.next-steps li { display: flex; gap: 18px; color: rgba(255,255,255,.9); margin-bottom: 1.5rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .85rem;
  color: var(--orange);
  margin-top: 2px;
}
.next-notes {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  position: relative;
}
.next-notes p { margin-bottom: 4px; }

/* ============================================================
   FOOTER — compact horizontal row, logo 200px with multiply blend
   ============================================================ */
.footer { padding: 0rem 2rem; position: relative; }
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .4;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-left img {
  height: 200px;
  width: auto;
  display: block;
}
.footer-center { text-align: center; flex: 1; }
.footer-tagline { font-family: var(--font-accent); color: var(--cream); font-size: 1rem; display: block; line-height: 1.3; }
.footer-copy { font-size: .75rem; color: rgba(253,250,245,.6); display: block; margin-top: 3px; }
/* Nav links on ONE line with | separators */
.footer-nav { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.footer-nav a { font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--cream); transition: color .2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-sep { color: rgba(253,250,245,.35); font-size: .75rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
#lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
  transition: opacity .18s ease;
}
.lb-close {
  position: fixed;
  top: 20px; right: 28px;
  background: none; border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .75;
  transition: opacity .2s;
  z-index: 10001;
}
.lb-close:hover { opacity: 1; }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background .2s;
}
.lb-arrow:hover { background: rgba(255,255,255,.2); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ============================================================
   FADE-IN
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.section-heading { margin-bottom: 2.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-inner   { grid-template-columns: 1fr; gap: 16px; }
  .pull-quote-col { position: static; padding-top: 0; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .preview-grid  { grid-template-columns: repeat(2, 1fr); }
  .differ-inner  { grid-template-columns: 1fr; align-items: start; }
  .differ-img img { height: 360px; }
  .configs-panel { width: 60%; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .nav-inner  { padding: 0.5rem 1.25rem; min-height: 80px; }
  .nav-logo img { height: 70px; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding-top: 80px;
    /* background: var(--green); */
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    z-index: 998;
  }
  .nav-links.open { 
    max-height: 500px; 
    border-bottom: 1px solid var(--orange);
  }
  .nav-links a {
    color: var(--green);
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: .9rem;
    background: var(--cream);
    text-align: center;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--orange);
    border-bottom-color: rgba(255,255,255,.1);
  }
  .hamburger { display: flex; }

  .hero-content { padding: 0 1.5rem 3.5rem; }
  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }

  .configs-wrap { flex-direction: column; min-height: auto; }
  .configs-bg { position: relative; width: 100%; height: 260px; }
  .configs-panel { width: 100%; margin: 0; box-shadow: none; }

  .contact-grid  { grid-template-columns: 1fr; }
  .form-col      { border-radius: 2px 2px 0 0; padding: 2rem 1.5rem; }
  .next-col      { border-radius: 0 0 2px 2px; padding: 2rem 1.5rem; align-self: auto; }

  .gallery-grid  { grid-template-columns: 1fr; padding: 2rem 1.25rem 4rem; }
  .filter-bar    { padding: 2rem 1.25rem 0; }
  .gl-header     { padding: 3.5rem 1.25rem 3rem; }

  .offer-panel   { grid-template-columns: 56px 1fr; gap: 16px; }
  .btn-row       { flex-direction: column; }
  .btn-row .btn  { text-align: center; }

  .fb-section { padding: 3rem 1.5rem; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-nav   { justify-content: center; flex-wrap: wrap; }
  .footer-left img { height: 70px; }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }

  .why-section, .offer-section, .differ-section,
  .mission-section, .contact-section,
  .preview-section { padding: 2.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .preview-grid  { grid-template-columns: 1fr; }
  .offer-panel   { grid-template-columns: 1fr; gap: 6px; }
  .section-h2    { font-size: clamp(2.5rem, 10vw, 4rem); }
}
