/* ============================================
   LA Gartenpflege — Stylesheet
   Theme: green & white, clean, professional
============================================ */

:root {
  /* Brand */
  --green-900: #1f4a2a;
  --green-800: #275a33;
  --green-700: #2f6b3a;
  --green-600: #3a8246;
  --green-500: #4ea35a;
  --green-300: #a9d6b1;
  --green-100: #e8f3ea;
  --green-50:  #f3f9f4;

  /* Neutrals */
  --white: #ffffff;
  --ink-900: #14201a;
  --ink-700: #2a3b31;
  --ink-500: #5a6b61;
  --ink-300: #9aa8a0;
  --line: #e6ece7;
  --bg-soft: #f7faf7;

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 6px rgba(20, 32, 26, 0.06);
  --shadow: 0 10px 30px rgba(20, 32, 26, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 32, 26, 0.12);

  --container: 1180px;
  --header-h: 92px;

  --t-fast: 180ms ease;
  --t: 280ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--green-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--green-900); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--ink-900);
  margin: 0 0 .4em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: -0.005em; }
h4 { font-size: .95rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(47, 107, 58, 0.25);
}
.btn-primary:hover { background: var(--green-800); color: var(--white); box-shadow: 0 12px 26px rgba(47, 107, 58, 0.32); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: rgba(20, 32, 26, 0.18);
}
.btn-ghost:hover { border-color: var(--green-700); color: var(--green-800); }

.btn-light {
  background: var(--white);
  color: var(--green-800);
}
.btn-light:hover { background: var(--green-50); color: var(--green-900); }

.btn-block { width: 100%; padding: 16px 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-900);
  line-height: 0;
}
.brand:hover { color: var(--ink-900); }
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav-list {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--green-700);
  transition: width var(--t);
}
.nav-list a:hover { color: var(--green-800); }
.nav-list a:hover::after { width: 100%; }

.nav-cta { padding: 10px 18px; font-size: .9rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(78, 163, 90, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 90%, rgba(78, 163, 90, 0.14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%232f6b3a' stroke-opacity='0.06' stroke-width='1.2'><path d='M20 180 C 60 140, 80 120, 120 80 M40 180 C 70 150, 95 130, 140 90 M60 180 C 90 150, 110 130, 160 80'/></g></svg>");
  background-size: 420px 420px;
  opacity: 0.6;
}

.hero-inner { position: relative; }
.hero-content { max-width: 760px; }
.hero-title { margin-bottom: 18px; }
.title-accent {
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-500);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(20, 32, 26, 0.25);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  background: var(--green-700);
  border-radius: 2px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head p { color: var(--ink-500); font-size: 1.05rem; }

.grid { display: grid; gap: 24px; }

/* ---------- Services ---------- */
.services { background: var(--bg-soft); }
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(78,163,90,0.04) 100%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--green-300);
  box-shadow: var(--shadow);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-800);
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; color: var(--ink-900); }
.card p { color: var(--ink-500); margin: 0; font-size: .95rem; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
}
.about-photo {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(31,74,42,0.18), rgba(78,163,90,0.05)),
    url("assets/team-at-work.png") center/cover;
  box-shadow: var(--shadow-lg);
}
.about-content p { color: var(--ink-500); font-size: 1.02rem; }
.checklist { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 12px; }
.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-700);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f6b3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 10 18 19 7'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

/* ---------- Process ---------- */
.process { background: var(--green-50); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-500); font-size: .95rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  margin: 0;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,32,26,0.25) 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item:hover::after { opacity: 1; }

.gi-1 { background-image: url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&w=900&q=80'); }
.gi-2 { background-image: url('https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=900&q=80'); }
.gi-3 { background-image: url('https://images.unsplash.com/photo-1601985705806-5b9a71f6004f?auto=format&fit=crop&w=900&q=80'); }
.gi-4 { background-image: url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=900&q=80'); }
.gi-5 { background-image: url('https://images.unsplash.com/photo-1558293842-c0fd3db86157?auto=format&fit=crop&w=900&q=80'); }
.gi-6 { background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=900&q=80'); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-soft); }
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-3px);
  border-color: var(--green-300);
  box-shadow: var(--shadow);
}
.testimonial .quote-mark {
  width: 34px;
  height: 34px;
  color: var(--green-300);
  margin-bottom: 14px;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
  font-style: italic;
}
.testimonial figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.testimonial figcaption strong {
  color: var(--ink-900);
  font-size: .98rem;
}
.testimonial figcaption span {
  font-size: .85rem;
  color: var(--ink-500);
  margin-top: 2px;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
  color: var(--white);
  padding: 70px 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info p { color: var(--ink-500); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 42px; height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list strong { display: block; color: var(--ink-900); font-size: .9rem; margin-bottom: 2px; }
.contact-list a, .contact-list span { color: var(--ink-500); font-size: .95rem; }
.contact-list a:hover { color: var(--green-800); }

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(78, 163, 90, 0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-row .field { margin-bottom: 18px; }
.form-status {
  margin: 14px 0 0;
  font-size: .9rem;
  text-align: center;
  min-height: 1em;
}
.form-status.success { color: var(--green-800); }
.form-status.error { color: #b3261e; }

/* ---------- Legal page (Impressum / Datenschutz) ---------- */
.legal-page { padding: 72px 0 96px; background: var(--white); }
.legal-container {
  max-width: 820px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--green-700);
  margin-bottom: 28px;
}
.legal-back:hover { color: var(--green-900); }
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 32px;
}
.legal-block { margin-bottom: 36px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.legal-block p {
  color: var(--ink-700);
  font-size: .98rem;
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { word-break: break-word; }
.legal-list {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--ink-700);
  font-size: .98rem;
  line-height: 1.7;
}
.legal-list li { margin-bottom: 6px; }
.legal-list li:last-child { margin-bottom: 0; }

.legal-lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-500);
  margin: 0 0 32px;
}

.legal-toc {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 0 0 48px;
}
.legal-toc strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-800);
  margin-bottom: 10px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  font-size: .96rem;
}
.legal-toc a { color: var(--ink-700); }
.legal-toc a:hover { color: var(--green-800); }

.legal-meta {
  margin-top: 18px;
  font-size: .85rem;
  color: var(--ink-500);
  font-style: italic;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0e1c14;
  color: rgba(255,255,255,0.78);
  padding-top: 64px;
}
.site-footer h4 { color: var(--white); margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: .92rem; }
.site-footer a:hover { color: var(--white); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-logo {
  height: 110px;
  max-width: 240px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 18px; max-width: 320px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.back-top { color: rgba(255,255,255,0.6); }
.back-top:hover { color: var(--white); }

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: .85rem;
}
.footer-legal a:hover { color: var(--white); }
.footer-legal a[aria-current="page"] { color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media { max-width: 100%; aspect-ratio: 4/3; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 780px) {
  .section { padding: 72px 0; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 24px;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast), transform var(--t-fast);
  }
  .nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .nav-list a { padding: 10px 4px; display: block; }
  .nav-list a::after { display: none; }
  .nav-cta { align-self: stretch; padding: 14px; }

  .hero { padding: 60px 0 80px; min-height: auto; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .field-row { grid-template-columns: 1fr; }

  .cta-inner { text-align: center; justify-content: center; }
  .cta-inner > div { width: 100%; }
}

@media (max-width: 780px) {
  .brand-logo { height: 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .contact-form { padding: 24px; }
  .footer-cols { grid-template-columns: 1fr; }
  .brand-logo { height: 50px; }
}
