/*
Theme Name: Mensch & Tier im Einklang
Theme URI: https://www.menschundtierimeinklang.de
Author: Anina Barnickel
Description: Ganzheitliches, seriöses Theme für die Praxis "Mensch & Tier im Einklang". Farben, Bilder, Preise/Pakete, Stimmen und FAQ sind komplett über das WordPress-Backend pflegbar. Ohne Plugin-Abhängigkeiten.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: menschundtier
*/

/* ============================================================
   Design-Tokens (Standardwerte – werden im Customizer überschrieben)
   ============================================================ */
:root {
  --bg:            #FAF7F1;
  --bg-alt:        #F1ECE2;
  --surface:       #FFFFFF;
  --forest:        #2F4034;
  --forest-600:    #263329;
  --forest-300:    #6E8571;
  --ochre:         #B08655;
  --ochre-soft:    #D8B892;
  --ink:           #2A2622;
  --muted:         #6C655B;
  --line:          #E4DDD0;
  --line-soft:     #EFE9DE;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r-sm: 8px;  --r-md: 14px;  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(42,38,34,.05), 0 2px 8px rgba(42,38,34,.04);
  --shadow-md: 0 10px 30px rgba(47,64,52,.08);

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink); background: var(--bg);
  line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--forest); margin: 0; letter-spacing: .2px; }
p { margin: 0; }

/* ---------- Accessibility ---------- */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--forest); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0; z-index: 999; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--ochre); outline-offset: 3px; }

/* ---------- Utilities ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 118px); }
.eyebrow { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--ochre); margin: 0 0 18px; }
.lead { font-size: clamp(18px, 2.1vw, 21px); color: var(--muted); max-width: 62ch; }
.center { text-align: center; margin-inline: auto; }
.bg-alt { background: var(--bg-alt); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 15px 28px; border-radius: 999px; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease; border: 1.5px solid transparent; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--forest-600); box-shadow: var(--shadow-md); color: #fff; }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--forest-300); background: #fff; }
.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: #fff; box-shadow: var(--shadow-md); }

.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--forest); border-bottom: 1.5px solid var(--ochre-soft); padding-bottom: 2px; transition: gap .2s ease, border-color .2s ease; }
.arrow-link:hover { gap: 13px; border-color: var(--ochre); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,247,241,.82); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line-soft); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--forest); letter-spacing: .3px; }
.brand > span { display: flex; flex-direction: column; justify-content: center; line-height: 1.05; white-space: nowrap; }
.brand img { max-height: 48px; width: auto; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--forest-300), var(--forest)); display: grid; place-items: center; color: #fff; flex: none; }
.brand small { display: block; font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--ochre); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color .18s ease; }
.nav-links a:hover, .nav-links a.is-active { color: var(--forest); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-weight: 600; font-size: 15px; color: var(--forest); white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--forest); }

/* Dropdown */
.has-drop { position: relative; }
.has-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.has-drop > a svg { transition: transform .2s ease; }
.has-drop:hover > a svg, .has-drop:focus-within > a svg { transform: rotate(180deg); }
.drop { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 250px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 8px; list-style: none; margin: 0; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 60; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.drop li a { display: block; padding: 11px 14px; border-radius: 9px; font-size: 15px; color: var(--ink); transition: background .15s ease, color .15s ease; }
.drop li a:hover { background: var(--bg-alt); color: var(--forest); }
.drop li a small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 8vw, 104px); }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); font-weight: 500; letter-spacing: 0; }
.hero h1 em { font-style: italic; color: var(--ochre); }
.hero .lead { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--muted); font-size: 14.5px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--forest-300); }
.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); background: linear-gradient(150deg, rgba(47,64,52,.10), rgba(176,134,85,.14)), linear-gradient(320deg, var(--bg-alt), #E7DFCF); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: grid; place-items: center; text-align: center; padding: 24px; overflow: hidden; }
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.placeholder-note { color: var(--forest-300); font-size: 13px; font-style: italic; max-width: 24ch; }
.hero-badge { position: absolute; bottom: -22px; left: -22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 16px 20px; max-width: 230px; z-index: 2; }
.hero-badge strong { font-family: var(--serif); font-size: 30px; color: var(--forest); display: block; line-height: 1; }
.hero-badge span { font-size: 13px; color: var(--muted); }

/* ---------- Strip ---------- */
.strip { background: var(--forest); color: #EFEDE6; }
.strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-block: 46px; }
.strip-item h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.strip-item p { color: rgba(239,237,230,.75); font-size: 15px; }

/* ---------- Section head ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(30px, 3.8vw, 46px); font-weight: 500; }
.section-head p { margin-top: 16px; }

/* ---------- Cards / Angebote ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 32px; display: flex; flex-direction: column; gap: 14px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ochre-soft); }
.card-icon { width: 52px; height: 52px; border-radius: 14px; flex: none; background: linear-gradient(150deg, var(--bg-alt), #fff); border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest); }
.card h3 { font-size: 24px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .arrow-link { margin-top: auto; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.reverse .split-visual { order: 2; }
.split-visual { position: relative; aspect-ratio: 5/6; border-radius: var(--r-lg); background: linear-gradient(160deg, rgba(47,64,52,.10), rgba(176,134,85,.12)), linear-gradient(300deg, var(--bg-alt), #E7DFCF); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center; padding: 24px; text-align: center; overflow: hidden; }
.split-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.split li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.split li svg { color: var(--ochre); flex: none; margin-top: 3px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.steps.cols-4 { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 26px; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--serif); font-size: 40px; color: var(--ochre); display: block; margin-bottom: 10px; }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- Applies ---------- */
.applies { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.apply { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; font-size: 15.5px; color: var(--ink); display: flex; align-items: center; gap: 12px; }
.apply svg { color: var(--forest-300); flex: none; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.quote p { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--forest); line-height: 1.4; }
.quote footer { margin-top: 18px; font-size: 14px; color: var(--muted); font-style: normal; }
.stars { color: var(--ochre); letter-spacing: 2px; margin-bottom: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 4px; position: relative; font-family: var(--serif); font-size: 21px; color: var(--forest); font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 26px; color: var(--ochre); transition: transform .2s ease; }
.faq details[open] summary::after { content: "–"; }
.faq details .faq-answer { color: var(--muted); padding: 0 44px 22px 4px; font-size: 16px; }
.faq details .faq-answer p { margin-bottom: 12px; }

/* ---------- CTA ---------- */
.cta { background: var(--forest); color: #EFEDE6; border-radius: var(--r-lg); overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; }
.cta-body { padding: clamp(40px, 6vw, 72px); }
.cta-body h2 { color: #fff; font-size: clamp(28px,3.6vw,42px); font-weight: 500; }
.cta-body p { color: rgba(239,237,230,.8); margin-top: 14px; max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.cta-side { background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(176,134,85,.18)); padding: clamp(32px,5vw,56px); display: flex; flex-direction: column; justify-content: center; gap: 18px; border-left: 1px solid rgba(255,255,255,.1); }
.contact-row { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.contact-row svg { color: var(--ochre-soft); flex: none; }
.contact-row a { color: #fff; font-weight: 500; }

/* ---------- Kontakt mit Formular ---------- */
.contact-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-intro .lead { margin-top: 16px; }
.contact-list { margin-top: 30px; display: grid; gap: 8px; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 12px 6px; border-radius: var(--r-md); color: var(--ink); transition: background .15s ease; }
a.contact-line:hover { background: var(--bg-alt); }
.contact-ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest); }
.contact-line .contact-label { display: block; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 1px; }
.contact-form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: clamp(28px, 4vw, 44px); }

/* Contact Form 7 – an das Theme angepasst */
.contact-form-card .wpcf7 { font-size: 15px; }
.contact-form-card .wpcf7 p { margin: 0 0 16px; }
.contact-form-card label { display: block; font-weight: 600; color: var(--forest); font-size: 14.5px; margin-bottom: 6px; }
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="url"],
.contact-form-card input[type="number"],
.contact-form-card input[type="date"],
.contact-form-card select,
.contact-form-card textarea {
	width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
	background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-md);
	padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease; -webkit-appearance: none; appearance: none;
}
.contact-form-card textarea { min-height: 130px; resize: vertical; }
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus { outline: none; border-color: var(--forest-300); box-shadow: 0 0 0 3px rgba(47,64,52,.08); }
.contact-form-card input[type="submit"],
.contact-form-card .wpcf7-submit {
	width: auto; background: var(--forest); color: #fff; border: 0; border-radius: 999px;
	font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 15px 30px; cursor: pointer;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease; box-shadow: var(--shadow-sm);
}
.contact-form-card input[type="submit"]:hover,
.contact-form-card .wpcf7-submit:hover { background: var(--forest-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-form-card input[type="checkbox"],
.contact-form-card input[type="radio"] { -webkit-appearance: auto; appearance: auto; width: auto; margin-right: 8px; }
.contact-form-card .wpcf7-list-item { display: block; margin: 0 0 6px; }
.contact-form-card .wpcf7-list-item label { display: inline; font-weight: 400; color: var(--ink); }
.contact-form-card .wpcf7-not-valid-tip { color: #b3261e; font-size: 13px; font-weight: 500; }
.contact-form-card .wpcf7-response-output { border-radius: var(--r-md); border-width: 1.5px; margin: 14px 0 0; padding: 12px 16px; font-size: 14px; }
.contact-form-card .wpcf7-spinner { margin: 0 0 0 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-block: 56px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 15px; }
.footer-grid a { color: var(--ink); }
.footer-grid a:hover { color: var(--forest); }
.footer-brand p { color: var(--muted); font-size: 15px; margin-top: 14px; max-width: 34ch; }
.disclaimer { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.disclaimer p { max-width: 70ch; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); border-bottom: 1px solid var(--line-soft); }
.page-hero .wrap { padding-block: clamp(48px, 7vw, 88px); }
.breadcrumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs a:hover { color: var(--forest); }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 500; max-width: 18ch; }
.page-hero .lead { margin-top: 20px; }

/* ---------- Prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(26px,3.2vw,38px); font-weight: 500; margin-bottom: 16px; }
.prose h3 { font-size: 22px; margin: 34px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose p strong { color: var(--ink); }
.prose ul { color: var(--muted); padding-left: 20px; margin-bottom: 16px; }
.prose a { color: var(--forest); border-bottom: 1px solid var(--ochre-soft); }

/* ---------- Preise ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; display: flex; flex-direction: column; gap: 8px; }
.price.is-featured { border-color: var(--forest); box-shadow: var(--shadow-md); }
.price-tag { position: absolute; top: -13px; left: 30px; background: var(--ochre); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .5px; padding: 5px 14px; border-radius: 999px; }
.price h3 { font-size: 22px; }
.price .amount { font-family: var(--serif); font-size: 42px; color: var(--forest); line-height: 1; margin: 6px 0 2px; }
.price .amount small { font-family: var(--sans); font-size: 14px; color: var(--muted); font-weight: 500; }
.price .desc { color: var(--muted); font-size: 15px; }
.price ul { list-style: none; padding: 0; margin: 16px 0 24px; display: grid; gap: 10px; font-size: 15px; }
.price li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.price li svg { color: var(--ochre); flex: none; margin-top: 3px; }
.price .btn { margin-top: auto; justify-content: center; }

/* ---------- Notice ---------- */
.notice { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--ochre); border-radius: var(--r-md); padding: 20px 24px; font-size: 15px; color: var(--muted); max-width: 70ch; }
.notice strong { color: var(--ink); }

/* ---------- Related ---------- */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related a { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.related a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ochre-soft); }
.related .card-icon { width: 44px; height: 44px; border-radius: 11px; }
.related strong { font-family: var(--serif); font-size: 19px; color: var(--forest); font-weight: 600; }
.related .rel-sub { display: block; font-size: 13px; color: var(--muted); }

/* ---------- Credo / Werte ---------- */
.credo { max-width: 820px; margin-inline: auto; text-align: center; }
.credo p { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3.4vw, 36px); line-height: 1.35; color: var(--forest); }
.credo footer { margin-top: 22px; font-family: var(--sans); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ochre); }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value { text-align: left; }
.value .card-icon { margin-bottom: 16px; }
.value h3 { font-size: 22px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 15.5px; }

/* ---------- WordPress core ---------- */
.alignwide { max-width: 1100px; }
.alignfull { width: 100%; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption-text { font-size: 13px; color: var(--muted); font-style: italic; }
.admin-bar .site-header { top: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-phone { display: none; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 10px var(--gutter) 20px; display: none; box-shadow: var(--shadow-md); }
  .nav-links.is-open { display: flex; }
  .nav-links > li { border-bottom: 1px solid var(--line-soft); }
  .nav-links > li > a { display: block; padding: 15px 0; font-size: 16px; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 10px 12px; min-width: 0; background: transparent; }
  .has-drop:hover .drop, .has-drop:focus-within .drop { transform: none; }
  .drop li a { padding: 8px 0; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/11; order: -1; }
  .hero-badge { display: none; }
}
@media (max-width: 820px) {
  .cta { grid-template-columns: 1fr; }
  .cta-side { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
  .price-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-visual { order: 0; }
}
@media (max-width: 760px) {
  .strip .wrap { grid-template-columns: 1fr; gap: 26px; }
  .steps, .steps.cols-4 { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .related { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
}
