/* ============================================================
   FUNDACJA Z MOJEGO ŁOWISKA — Global Styles
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #1c241b;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.25;
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.3; }
h3 { font-size: clamp(22px, 3vw, 28px); line-height: 1.35; }
h4, h5, h6 { font-size: 18px; line-height: 1.4; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  background: #e65c00;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
}
.btn:hover { background: #1c241b; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: #fff; color: #1c241b; }

.btn-dark {
  background: #1c241b;
  color: #fff;
}
.btn-dark:hover { background: #e65c00; }

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

/* ============================================================
   PROJECT DETAIL PAGES
   ============================================================ */

/* Breadcrumb bar */
.project-breadcrumb {
  background: #f3f1eb;
  border-bottom: 1px solid #e0ddd4;
  padding: 12px 0;
}
.project-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.project-breadcrumb a {
  color: #e65c00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.project-breadcrumb a:hover { color: #1c241b; }

/* Status badges */
.project-status-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.status-active {
  background: #d4edda;
  color: #1a5c2a;
}
.status-development {
  background: #fff3cd;
  color: #7a5800;
}

/* Project details grid */
.project-details-section {
  padding: 80px 24px;
  background: #fbfaf7;
}
.project-details-section .section-label {
  display: block;
  margin-bottom: 8px;
}
.project-details-section h2 {
  margin-bottom: 48px;
}
.project-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .project-details-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .project-details-grid { grid-template-columns: 1fr; }
}

.detail-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(28,36,27,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(28,36,27,0.12);
}
.detail-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}
.detail-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  margin-bottom: 10px;
  color: #1c241b;
}
.detail-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a5548;
  margin-bottom: 0;
}

/* Project CTA section */
.project-cta-section {
  background: #1c241b;
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.project-cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
}
.project-cta-section p {
  color: #c8d4c6;
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-dark {
  display: inline-block;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: #fff;
  color: #1c241b;
  transform: translateY(-1px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: #1c241b;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

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

.logo a { display: flex; align-items: center; }
.logo img { height: 50px; width: auto; flex-shrink: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu a {
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active { background: #e65c00; color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero-content h1 span {
  display: block;
  color: #9ab232;
}

.hero-quote {
  color: rgba(255,255,255,0.9);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 620px;
  margin: 0 auto 32px;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Inner page hero (smaller) */
.hero-inner {
  min-height: 400px;
}

.hero-inner .hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ab232;
  margin-bottom: 12px;
}

.text-green { color: #9ab232; }
.text-orange { color: #e65c00; }
.text-white { color: #fff; }
.text-center { text-align: center; }

/* ============================================================
   TWO-COLUMN IMAGE + TEXT SECTIONS
   ============================================================ */
.split-section {
  padding: 80px 0;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }

.split-text h3 { margin-bottom: 20px; }
.split-text p { color: #444; margin-bottom: 20px; }

.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ============================================================
   PROJECTS SECTION (parallax bg)
   ============================================================ */
.projects-section {
  position: relative;
  padding: 90px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Skip to content – accessibility & navigation policy */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #e65c00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }

.projects-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,36,27,0.72);
  pointer-events: none;
}

.projects-section .section-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 50px;
}

.projects-section .section-title h2 {
  color: #fff;
}

.projects-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card-body {
  padding: 20px;
}

.project-card-body h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  margin-bottom: 10px;
  color: #1c241b;
}

.project-card-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: #2d4a22;
  padding: 80px 0;
  text-align: center;
}

.stats-title {
  color: #fff;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {}

.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 700;
  color: #9ab232;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: #fbfaf7;
  padding: 80px 0;
  text-align: center;
}

.newsletter-section h2 { margin-bottom: 12px; }
.newsletter-section p { color: #555; margin-bottom: 32px; }

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: #9ab232; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0 40px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,36,27,0.78);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
}

.footer-col h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: #9ab232;
  margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.8;
  display: block;
}

.footer-col a:hover { color: #9ab232; }

.footer-col ul {
  list-style: none;
}

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

.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: #e9e8e5;
  padding: 80px 0;
}

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

.contact-info h2 { margin-bottom: 24px; }

.info-item {
  margin-bottom: 14px;
  font-size: 15px;
  color: #333;
}

.info-item strong {
  display: inline-block;
  min-width: 90px;
  color: #1c241b;
  font-weight: 600;
}

.map-wrap {
  margin-top: 28px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-note {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin: 10px auto 0;
  max-width: 600px;
  padding: 0 24px;
}

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

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #9ab232; }

.contact-form textarea { resize: vertical; min-height: 130px; }

.faq-section {
  background: #1c241b;
  padding: 80px 0;
}

.faq-section h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-card {
  border: 1.5px solid #9eaa97;
  border-radius: 10px;
  padding: 28px;
}

.faq-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: #9ab232;
  margin-bottom: 12px;
}

.faq-card p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   ABOUT / MISSION PAGES
   ============================================================ */
.content-section {
  padding: 80px 0;
  background: #fff;
}

.content-section.alt { background: #fbfaf7; }

.content-block {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-block h2 { margin-bottom: 24px; }
.content-block h3 { margin-bottom: 16px; margin-top: 36px; }
.content-block p { color: #444; margin-bottom: 18px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}

.value-card {
  background: #fff;
  border: 1.5px solid #e0e0d8;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
}

.value-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: #1c241b;
  margin-bottom: 10px;
}

.value-card p { font-size: 14px; color: #555; margin: 0; }

.value-icon {
  font-size: 32px;
  margin-bottom: 14px;
  color: #9ab232;
  line-height: 1;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  background: #fbfaf7;
  padding: 80px 0;
}

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

.gallery-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.gallery-card-img {
  position: relative;
  overflow: hidden;
}

.gallery-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,36,27,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.gallery-card-overlay span {
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(154,178,50,0.85);
  padding: 8px 20px;
  border-radius: 30px;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,14,10,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}

#lightboxCaption {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-top: 14px;
  font-family: 'Inter', Arial, sans-serif;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(154,178,50,0.8);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: #9ab232; }

.gallery-card-body {
  padding: 20px;
}

.gallery-card-body .card-date {
  font-size: 12px;
  color: #9ab232;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.gallery-card-body h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  margin-bottom: 10px;
}

.gallery-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-section {
  background: #fff;
  padding: 80px 0;
}

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

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
  background: #fff;
}

.blog-card-body .card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e65c00;
  margin-bottom: 8px;
  display: block;
}

.blog-card-body h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1c241b;
}

.blog-card-body h4 a {
  color: inherit;
  text-decoration: none;
}
.blog-card-body h4 a:hover {
  color: var(--green, #3a5a2a);
}
.blog-read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green, #3a5a2a);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.blog-read-more:hover {
  opacity: 0.7;
}
.blog-card img {
  display: block;
}
.blog-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}

/* ============================================================
   WHAT WE DO PAGE
   ============================================================ */
.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.what-card {
  background: #fbfaf7;
  border-radius: 10px;
  padding: 32px 28px;
  border-left: 4px solid #9ab232;
}

.what-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  margin-bottom: 12px;
  color: #1c241b;
}

.what-card p { font-size: 15px; color: #444; margin: 0; }

/* ============================================================
   FORM STATUS
   ============================================================ */
#formStatus, #newsletterStatus, #galleryStatus {
  margin-top: 12px;
  font-size: 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Disable parallax on mobile – improves paint performance */
  .projects-section,
  .site-footer {
    background-attachment: scroll;
  }

  .split-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-inner.reverse { direction: ltr; }
  .split-image img { height: 280px; }

  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1c241b;
    padding: 16px;
    gap: 4px;
    border-top: 2px solid #e65c00;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 10px 14px; font-size: 14px; }
  .nav-toggle { display: flex; }

  .site-header { position: sticky; top: 0; }
  .header-inner { height: 56px; }
  .logo img { height: 40px; }

  .hero { min-height: 70vh; }
  .section-pad { padding: 60px 0; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; width: 100%; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}