/* ==========================================================================
   Vet Pet — Stylesheet
   Green palette, no emojis, SVG icons only.
   ========================================================================== */

:root {
  --green-950: #0d2b1c;
  --green-900: #123524;
  --green-800: #1a4531;
  --green-700: #205b3c;
  --green-600: #2d7a4f;
  --green-500: #3c9a63;
  --green-400: #5cb37e;
  --green-300: #8fd0a7;
  --green-100: #e3f6ea;
  --green-50:  #f4fbf6;
  --cream:     #fbfaf3;
  --ink:       #163020;
  --ink-soft:  #3c5548;
  --white:     #ffffff;
  --gold:      #c9a24b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(13, 43, 28, 0.08);
  --shadow-md: 0 10px 30px rgba(13, 43, 28, 0.14);
  --shadow-lg: 0 20px 45px rgba(13, 43, 28, 0.18);

  --container: 1180px;
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--green-900);
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin: 0 0 1.1em; color: var(--ink-soft); }

a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-500); }

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

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

.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

section { padding: 84px 0; }
section.tight { padding: 56px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green-700); color: var(--white); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; border-color: var(--green-700); color: var(--green-800); }
.btn-ghost:hover { background: var(--green-800); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--green-800); }
.btn-light:hover { background: var(--green-100); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.topbar {
  background: var(--green-950);
  color: var(--green-100);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 18px; }
.topbar-item svg { width: 14px; height: 14px; }
.topbar a { color: var(--green-100); }
.topbar a:hover { color: var(--green-300); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 250, 243, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(13, 43, 28, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 26px; height: 26px; fill: var(--green-100); stroke: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.28rem; color: var(--green-900); letter-spacing: 0.01em; }
.brand-text span { font-size: 0.72rem; color: var(--green-600); letter-spacing: 0.08em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.main-nav a:hover, .main-nav a.active { background: var(--green-100); color: var(--green-800); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green-800); font-family: var(--font-head); }
.header-phone svg { width: 18px; height: 18px; color: var(--green-600); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--green-300);
  background: var(--white);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--green-800); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,35,22,0.92) 0%, rgba(13,43,28,0.78) 45%, rgba(13,43,28,0.45) 100%);
}
.hero-inner { position: relative; padding: 110px 0 100px; max-width: 680px; }
.hero-inner .section-tag { background: rgba(255,255,255,0.14); color: var(--green-100); }
.hero-inner h1 { color: var(--white); }
.hero-inner p { color: rgba(255,255,255,0.88); font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--white); }
.hero-stats div span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

.page-hero { min-height: 300px; display: flex; align-items: center; }
.page-hero .hero-inner { padding: 70px 0; max-width: 720px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,43,28,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }

.media-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.media-card figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card .media-body { padding: 22px 24px 26px; }
.media-card .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 8px;
}

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.split-media .float-card {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.split-media .float-card svg { width: 30px; height: 30px; color: var(--green-600); flex-shrink: 0; }
.split-media .float-card strong { display: block; font-family: var(--font-head); color: var(--green-900); font-size: 1rem; }
.split-media .float-card span { font-size: 0.78rem; color: var(--ink-soft); }

.check-list { list-style: none; margin: 0 0 20px; padding: 0; }
.check-list li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.check-list svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

/* ---------- Alt / dark section ---------- */
.alt-section { background: var(--green-900); color: var(--green-100); }
.alt-section h2 { color: var(--white); }
.alt-section p { color: rgba(230, 248, 236, 0.8); }
.band { background: var(--green-50); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-item { text-align: center; }
.value-item .card-icon { margin: 0 auto 16px; background: rgba(255,255,255,0.08); color: var(--green-300); }
.alt-section .value-item h3, .alt-section .value-item p { color: var(--green-100); }
.alt-section .value-item p { color: rgba(230,248,236,0.75); font-size: 0.9rem; }

/* ---------- Team / quote ---------- */
.owner-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 34px; align-items: center;
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md);
}
.owner-avatar {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: var(--green-800); display: flex; align-items: center; justify-content: center;
}
.owner-avatar svg { width: 60%; height: 60%; color: var(--green-200); fill: var(--green-200); stroke: none; }
.owner-card .quote-mark { color: var(--green-300); width: 34px; height: 34px; margin-bottom: 10px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 34px; border-left: 2px solid var(--green-200); }
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -43px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--green-600);
  border: 3px solid var(--green-100);
}
.timeline-item .year { font-family: var(--font-head); font-weight: 700; color: var(--green-700); font-size: 0.85rem; letter-spacing: 0.05em; }

/* ---------- Contact / Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; background: var(--white); padding: 18px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.info-list .card-icon { margin: 0; }
.info-list strong { display: block; color: var(--green-900); font-family: var(--font-head); font-size: 0.95rem; }
.info-list span, .info-list p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--green-900); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid #d9e6dc; font-family: var(--font-body); font-size: 0.95rem;
  background: var(--green-50); color: var(--ink); transition: border-color 0.18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-500); background: var(--white); }
.field-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft); }
.field-consent input { width: auto; margin-top: 3px; }
.field-consent a { text-decoration: underline; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 10px; }
.form-success {
  display: none; align-items: center; gap: 12px; background: var(--green-100); color: var(--green-800);
  padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; font-weight: 600; font-size: 0.9rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid var(--white); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table td { padding: 9px 0; border-bottom: 1px dashed var(--green-200); color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--green-900); }

/* ---------- FAQ / Accordion ---------- */
.faq-item { border-bottom: 1px solid var(--green-200); padding: 20px 0; }
.faq-item summary {
  cursor: pointer; list-style: none; font-family: var(--font-head); font-weight: 600;
  color: var(--green-900); display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 18px; height: 18px; color: var(--green-600); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; margin-bottom: 0; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--green-800); color: var(--white); border-radius: var(--radius-lg);
  padding: 46px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); margin-bottom: 6px; }
.cta-strip p { color: rgba(230,248,236,0.82); margin: 0; }

/* ---------- Legal / policy pages ---------- */
.legal-wrap { max-width: 840px; margin: 0 auto; }
.legal-updated { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--green-600); background: var(--green-100); padding: 6px 14px; border-radius: 999px; margin-bottom: 26px; }
.legal-wrap h2 { margin-top: 2.2em; padding-top: 0.2em; border-top: 1px solid var(--green-200); padding-top: 1.2em; }
.legal-wrap h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0.4em; }
.legal-wrap h3 { margin-top: 1.4em; color: var(--green-700); }
.legal-wrap ul, .legal-wrap ol { color: var(--ink-soft); padding-left: 22px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-toc { background: var(--white); border: 1px solid var(--green-200); border-radius: var(--radius-md); padding: 24px 26px; margin-bottom: 40px; }
.legal-toc strong { display: block; font-family: var(--font-head); color: var(--green-900); margin-bottom: 10px; }
.legal-toc ol { columns: 2; gap: 24px; margin: 0; padding-left: 20px; }
.legal-toc li { margin-bottom: 6px; font-size: 0.92rem; }
.legal-table { width: 100%; border-collapse: collapse; margin: 20px 0 30px; font-size: 0.9rem; }
.legal-table th, .legal-table td { border: 1px solid var(--green-200); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal-table th { background: var(--green-100); color: var(--green-900); font-family: var(--font-head); }
.callout {
  background: var(--green-50); border-left: 4px solid var(--green-600); border-radius: var(--radius-sm);
  padding: 18px 20px; margin: 22px 0; font-size: 0.94rem; color: var(--ink-soft);
}
.callout strong { color: var(--green-900); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: rgba(227, 246, 234, 0.8); padding: 70px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text span { color: var(--green-400); }
.footer-brand p { color: rgba(227,246,234,0.65); font-size: 0.92rem; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; color: var(--green-200);
}
.footer-social a:hover { background: var(--green-600); color: var(--white); }
.footer-social svg { width: 17px; height: 17px; }

.site-footer h4 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.03em; margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(227,246,234,0.72); font-size: 0.92rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; color: rgba(227,246,234,0.78); align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(227,246,234,0.55); }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(227,246,234,0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 2000;
  max-width: 760px; margin: 0 auto;
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13,43,28,0.08);
  padding: 26px 28px; display: flex; gap: 22px; align-items: flex-start;
  transform: translateY(140%); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner .cookie-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cookie-banner .cookie-icon svg { width: 24px; height: 24px; }
.cookie-banner-body { flex: 1; }
.cookie-banner-body h3 { font-size: 1rem; margin-bottom: 6px; }
.cookie-banner-body p { font-size: 0.88rem; margin-bottom: 0; color: var(--ink-soft); }
.cookie-banner-body a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

.cookie-settings-btn {
  position: fixed; left: 20px; bottom: 20px; z-index: 1900;
  width: 50px; height: 50px; border-radius: 50%; background: var(--green-800); color: var(--white);
  display: none; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: var(--shadow-md);
}
.cookie-settings-btn.show { display: flex; }
.cookie-settings-btn svg { width: 22px; height: 22px; }

.cookie-modal-overlay {
  position: fixed; inset: 0; background: rgba(13,43,28,0.55); z-index: 2100;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.cookie-modal-overlay.show { display: flex; }
.cookie-modal { background: var(--white); border-radius: var(--radius-lg); max-width: 560px; width: 100%; padding: 32px; max-height: 86vh; overflow-y: auto; }
.cookie-modal h3 { display: flex; align-items: center; gap: 10px; }
.cookie-modal .cookie-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 16px 0; border-top: 1px solid var(--green-100); }
.cookie-modal .cookie-row:first-of-type { border-top: none; }
.cookie-modal .cookie-row h4 { margin: 0 0 4px; font-size: 0.95rem; color: var(--green-900); }
.cookie-modal .cookie-row p { margin: 0; font-size: 0.85rem; }
.switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: #d5e3d9; border-radius: 999px; transition: background 0.2s ease; cursor: pointer; }
.switch .track::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--white); border-radius: 50%; transition: transform 0.2s ease; }
.switch input:checked + .track { background: var(--green-600); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 1900;
  width: 46px; height: 46px; border-radius: 50%; background: var(--white); color: var(--green-800);
  border: 1px solid var(--green-200); box-shadow: var(--shadow-md);
  display: none; align-items: center; justify-content: center; cursor: pointer;
}
.back-to-top.show { display: flex; }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone span.header-phone-label { display: none; }
  .split, .contact-grid, .owner-card { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-media { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .owner-avatar { max-width: 200px; margin: 0 auto; }
}

@media (max-width: 700px) {
  section { padding: 60px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-strip { padding: 32px; }
  .cookie-banner { flex-direction: column; left: 12px; right: 12px; bottom: 12px; padding: 22px; }
  .legal-toc ol { columns: 1; }
  .hero-inner { padding: 80px 0 70px; }
  .hero-stats { gap: 22px; }
}

@media (max-width: 480px) {
  .topbar-item.hide-xs { display: none; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

/* ---------- Mobile nav panel ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 600; background: var(--white);
  transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--green-100); }
.mobile-nav-links { list-style: none; padding: 10px 10px 30px; margin: 0; }
.mobile-nav-links li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 14px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: var(--green-900); border-bottom: 1px solid var(--green-50);
}
.mobile-nav-links svg { width: 16px; height: 16px; color: var(--green-500); }
.mobile-nav-foot { padding: 10px 24px 30px; }
