/* ============================================
   Groene Tuinen Hoveniers — Design System
   ============================================ */

:root {
  --green-dark: #1f3d2b;
  --green-deep: #2a5038;
  --green-mid: #3a6b4a;
  --green-light: #5a8f68;
  --oker: #b09b71;
  --oker-light: #c9b88a;
  --oker-pale: #ddd0b8;
  --cream: #f7f5ef;
  --cream-dark: #ede9df;
  --white: #ffffff;
  --text: #1a2e1f;
  --text-light: #4a5e4f;
  --text-muted: #6b7d70;
  --shadow-sm: 0 2px 8px rgba(31, 61, 43, 0.08);
  --shadow-md: 0 4px 20px rgba(31, 61, 43, 0.12);
  --shadow-lg: 0 8px 32px rgba(31, 61, 43, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--oker); }
ul { list-style: none; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-dark);
}

.logo svg { flex-shrink: 0; }

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

/* Main Nav */
.main-nav ul {
  display: flex;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover {
  background: var(--cream);
  color: var(--green-dark);
}

.main-nav a.active {
  background: var(--green-dark);
  color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--green-dark);
}

.menu-toggle svg { width: 28px; height: 28px; }
.menu-toggle .icon-close { display: none; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-content h1 span { color: var(--oker-light); }

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.hero-photo {
  background-image: linear-gradient(90deg, rgba(31,61,43,0.93) 0%, rgba(31,61,43,0.72) 55%, rgba(31,61,43,0.35) 100%), url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: 110px 24px;
}

.hero-photo .hero-inner {
  grid-template-columns: 1.1fr 0.9fr;
}

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

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--oker);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--oker-light);
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

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

.btn-dark:hover {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 80px 24px;
}

.section-alt { background: var(--white); }

.section-green { background: var(--green-dark); color: var(--white); }
.section-green a { color: var(--oker-light); }
.section-green a:hover { color: var(--white); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

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

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-green .section-header p { color: rgba(255,255,255,0.7); }

/* ============================================
   Cards
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

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

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

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img svg {
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--oker);
}

.card-link:hover { color: var(--green-dark); }

/* Service detail cards */
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 40px;
}

.service-card:nth-child(even) { direction: rtl; }
.service-card:nth-child(even) > * { direction: ltr; }

.service-card .service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .service-img svg { width: 100%; height: 100%; }

.service-card .service-body {
  padding: 40px;
}

.service-card .service-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.service-card .service-body p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-card .service-body ul {
  margin: 16px 0;
  padding-left: 0;
}

.service-card .service-body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-card .service-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--oker);
  border-radius: 50%;
}

/* ============================================
   Stats Row
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding: 48px 0;
}

.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--oker);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   Timeline (Over Ons)
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--oker-pale);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--oker);
  border: 3px solid var(--cream);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

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

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

.form-group .radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.form-group .radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.form-group .radio-group input[type="radio"] {
  width: auto;
  accent-color: var(--green-dark);
}

.form-success {
  display: none;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-weight: 500;
}

.form-success.visible { display: block; }

/* Opening Hours */
.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.hours-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.hours-table {
  width: 100%;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--green-dark);
  width: 50%;
}

.hours-table td:last-child {
  color: var(--text-light);
}

.hours-table tr:last-child td { border-bottom: none; }

.emergency-note {
  background: var(--cream);
  border-left: 4px solid var(--oker);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.emergency-note strong { color: var(--green-dark); }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 24px;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.info-card p,
.info-card li {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.info-card li { margin-bottom: 8px; padding-left: 20px; position: relative; }
.info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--oker);
  border-radius: 50%;
}

/* ============================================
   Team Grid (Over Ons)
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream-dark);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-avatar svg { width: 60px; height: 60px; }

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--oker);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 32px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 24px 0 8px;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  list-style: disc;
}

.legal-content li { margin-bottom: 6px; }

.legal-updated {
  display: inline-block;
  background: var(--cream-dark);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oker-light);
  margin-bottom: 16px;
}

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

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--oker); }

.newsletter-form button {
  padding: 10px 20px;
  background: var(--oker);
  color: var(--green-dark);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--oker-light); }

.newsletter-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.newsletter-checkbox input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--oker);
  flex-shrink: 0;
}

.newsletter-message {
  margin-top: 10px;
  font-size: 0.85rem;
  display: none;
}

.newsletter-message.visible { display: block; }
.newsletter-message.success { color: var(--oker-light); }
.newsletter-message.info { color: rgba(255,255,255,0.7); }

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

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

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

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

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--oker);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Footer newsletter */
#newsletter-field { display: none; }

/* Photo cards & cover utility */
.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Split feature sections (tekst + foto) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.split:nth-child(even) .split-img { order: 2; }

.split-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.split-body p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Photo gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 14px 10px;
  background: linear-gradient(transparent, rgba(31,61,43,0.85));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Page hero (binnenpagina's) */
.page-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Checklist */
.check-list { margin: 16px 0; }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b09b71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Duurzaam highlight strip */
.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.highlight-item svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  color: var(--green-dark);
}

.highlight-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.highlight-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.quote-block {
  border-left: 4px solid var(--oker);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  padding: 28px 32px;
  margin: 40px 0;
}

.quote-block blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.quote-block cite {
  font-style: normal;
  font-weight: 600;
  color: var(--green-dark);
}

/* CTA Banner */
.cta-banner {
  background: var(--oker);
  color: var(--green-dark);
  padding: 60px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: var(--green-dark);
  color: var(--white);
}

.cta-banner .btn:hover {
  background: var(--green-deep);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 360px; }

  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(even) { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split:nth-child(even) .split-img { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-strip { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 12px 24px;
    gap: 4px;
  }

  .main-nav a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hero { padding: 48px 24px; }
  .section { padding: 56px 24px; }
  .hero-photo { padding: 72px 24px; }
  .hero-photo .hero-inner { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
}
