/* ============================================================
   Rechtsanwalt Boyan Slavov — Website
   Plain static CSS, no framework. System font stack, one accent.
   ============================================================ */

:root {
  --navy:        #16273f;
  --navy-700:    #1f3557;
  --navy-600:    #2b4670;
  --gold:        #a5824a;
  --gold-soft:   #c8ad7e;
  --ink:         #1b1e23;
  --muted:       #5a6472;
  --line:        #e4e7ec;
  --bg:          #ffffff;
  --bg-soft:     #f5f6f8;
  --bg-navy:     #16273f;
  --hero-ground: #f7f4ee;
  --focus:       #2b4670;

  --wrap:        1120px;
  --radius:      10px;
  --pad-section: 5.5rem;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
          "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--navy-600); }
a:hover { color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.9rem;
}

.section-intro {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 2.5rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: #c9cfda;
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: rgba(22,39,63,0.04); }

/* Telephone call button: label above the number */
.btn-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-tel:hover { background: #927141; border-color: #927141; color: #fff; }
.btn-tel-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.btn-tel-num { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.15;
  text-decoration: none;
}
.brand-mark {
  width: auto;
  height: 42px;
  display: block;
  mix-blend-mode: multiply;
}
.brand-words {
  display: flex;
  flex-direction: column;
  padding-left: 0.7rem;
  border-left: 1px solid var(--line);
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}
.brand-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.header-right { display: flex; align-items: center; gap: 1.1rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lang-switch a { color: var(--muted); text-decoration: none; padding: 0.15rem 0.05rem; }
.lang-switch a:hover { color: var(--navy); }
.lang-switch a.is-active { color: var(--navy); }
.lang-switch span { color: var(--line); }

.site-nav { display: flex; align-items: center; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-list a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.97rem;
  font-weight: 500;
}
.nav-list a:hover { color: var(--navy); }

.nav-cta a {
  background: var(--navy);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta a:hover { background: var(--navy-700); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px; height: 2px;
  background: var(--navy);
  transform: translateX(-50%);
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-ground);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg,
      rgba(247,244,238,0.97) 20%,
      rgba(247,244,238,0.91) 52%,
      rgba(247,244,238,0.80) 100%),
    url("hero-freiburg.jpg?v=2");
  background-size: cover;
  background-position: center 38%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  min-height: 72vh;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero h1 { color: var(--navy); max-width: 20ch; }
.hero-claim {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 40ch;
  margin: 1rem 0 0;
}
.hero-lede {
  color: #4c5563;
  font-size: 1.08rem;
  line-height: 1.5;
  max-width: 46ch;
  margin: 0.75rem 0 0;
}
.hero-write {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-write a { color: var(--navy); font-weight: 600; text-decoration: none; }
.hero-write a:hover { text-decoration: underline; }
.hero-write span { margin: 0 0.4rem; color: #b7bdc7; }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; margin-top: 2rem; }
.hero .btn-ghost { color: var(--navy); border-color: #c7b48c; background: rgba(255,255,255,0.55); }
.hero .btn-ghost:hover { border-color: var(--navy); background: #fff; color: var(--navy); }
.hero .btn-tel { background: var(--navy); border-color: var(--navy); color: #fff; }
.hero .btn-tel:hover { background: var(--navy-700); border-color: var(--navy-700); }

.hero-trust {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.6rem;
  max-width: 44ch;
}
.hero-trust li {
  display: flex;
  gap: 0.65rem;
  color: #3f4854;
  font-size: 0.96rem;
}
.hero-trust li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex: none;
}
.hero-trust li sup { color: var(--gold); font-weight: 700; }

.hero-portrait { justify-self: end; }
.portrait-frame {
  margin: 0;
  width: min(100%, 370px);
}
.portrait-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 50% 10%;
  border-radius: 12px;
  box-shadow: 0 26px 55px -22px rgba(22,39,63,0.42);
}
.portrait-cap {
  margin: 2.4rem 0 0;
  text-align: center;
}
.portrait-cap a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #3f4854;
  font-size: 1.1rem;
}
.portrait-cap a:hover { color: var(--navy); }
.portrait-cap-stars {
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.portrait-cap strong { color: var(--navy); }

/* Deutscher Anwaltverein — Mitgliedslogo im weißen Streifen unter dem Hero */
.dav-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.dav-strip .wrap { display: flex; justify-content: flex-end; }
.dav-strip-link { display: inline-block; line-height: 0; }
.dav-strip img {
  height: 74px;
  width: auto;
  opacity: 0.95;
}
.dav-strip-link:hover img { opacity: 1; }


/* ---------- Sections ---------- */

.section {
  padding: var(--pad-section) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 76px;
}
.section-soft { background: var(--bg-soft); }

/* ---------- Rechtsgebiete: Accordion ---------- */

.accordion {
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.acc-item { border-bottom: 1px solid var(--line); }

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 0.25rem;
  background: none;
  border: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.acc-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  transition: background-color .2s ease, transform .2s ease;
}
.acc-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.acc-title {
  flex: 1;
  font-size: 1.14rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .16s ease;
}
.acc-chevron {
  flex: none;
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: transform .28s ease, color .16s ease;
}
.acc-chevron svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

.acc-head:hover .acc-title,
.acc-head:focus-visible .acc-title { color: var(--navy); }
.acc-head:hover .acc-icon { transform: scale(1.05); }

.acc-item.is-open .acc-title { color: var(--navy); }
.acc-item.is-open .acc-icon { background: var(--gold); }
.acc-item.is-open .acc-chevron { transform: rotate(180deg); color: var(--navy); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; }
.acc-list {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0 1.4rem calc(46px + 1.1rem);
  columns: 2;
  column-gap: 3rem;
}
.acc-list li {
  break-inside: avoid;
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  color: #48505c;
  font-size: 0.98rem;
  line-height: 1.45;
}
.acc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.acc-note {
  margin: 0;
  padding: 0 0 1.4rem calc(46px + 1.1rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .acc-panel, .acc-chevron, .acc-icon, .acc-title { transition: none; }
}

/* ---------- Über mich ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.25rem;
  align-items: start;
}
.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: 50% 20%;
  border: 1px solid var(--line);
}
.about-text p { color: #3c434f; }
.about-text p:last-child { margin-bottom: 0; }

/* ---------- Anlässe ---------- */

.triggers {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trigger {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.trigger h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.trigger p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

/* ---------- Ablauf ---------- */

.steps {
  list-style: none;
  counter-reset: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--muted); margin-bottom: 0; }

/* ---------- Bewertungen ---------- */

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.section-head .eyebrow { margin-bottom: 0.6rem; }
.section-head h2 { margin: 0; }
.section-head-logo-link { flex: none; display: block; line-height: 0; }
.section-head-logo {
  height: 56px;
  width: auto;
  opacity: 0.92;
}
.section-head-logo-link:hover .section-head-logo { opacity: 1; }


.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 0.5rem;
}
.review {
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.review blockquote {
  margin: 0 0 1rem;
  color: #35404f;
  font-size: 1.02rem;
  line-height: 1.6;
}
.review blockquote::before { content: "\201C"; }
.review blockquote::after { content: "\201D"; }
.review figcaption {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.review-stars {
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-right: 0.4rem;
}
.reviews-link { margin: 1.75rem 0 0; }
.reviews-link a { font-size: 0.95rem; font-weight: 600; }

/* ---------- Rechtstipps ---------- */

.tips-wrap { position: relative; }
.tips-media {
  position: absolute;
  top: -2.25rem;
  right: 3.25rem;
  width: 280px;
  max-width: 38%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.tips {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.tip {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
  justify-content: space-between;
}
.tip a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  flex: 1 1 20rem;
}
.tip a:hover { color: var(--gold); }
.tip-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  flex: none;
}

/* ---------- Kontakt ---------- */

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

.contact-list { margin: 0; }
.contact-list > div {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.contact-list > div:last-child { border-bottom: 1px solid var(--line); }
.contact-list dt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.dt-label { display: flex; flex-direction: column; }
.dt-sub {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
.dt-sub a { color: var(--navy-600); }
.contact-list dd { margin: 0; color: #3c434f; padding-top: 0.15rem; }
.ci {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
}
.ci svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: block;
  background: #e9ecf1;
}
.map-link { margin: 0.7rem 0 0; }
.map-link a { font-size: 0.92rem; }

/* ---------- Kontaktformular ---------- */

.contact-form-wrap {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-intro { color: var(--muted); max-width: 52ch; margin-bottom: 2rem; }

.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: 0.4rem; }
.field-label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.req { color: var(--gold); }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid #c6ccd6;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--focus);
}

.form-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #3f4854;
  line-height: 1.5;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex: none;
  accent-color: var(--navy);
}

.contact-form .btn { justify-self: start; margin-top: 0.25rem; }

.form-status {
  margin: 0;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-status.is-ok { background: #e6f2ea; color: #2f6b46; }
.form-status.is-err { background: #fbe9e9; color: #a03636; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: #c6cfde;
  padding: 2.25rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-info { display: grid; gap: 0.6rem; max-width: 64ch; }
.footer-brand { margin: 0; font-size: 0.9rem; }
.footer-memb {
  margin: 0;
  font-size: 0.85rem;
  color: #d3dbe7;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-dav {
  height: 52px;
  width: auto;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  flex: none;
}
.footer-disclaimer {
  margin: 0.2rem 0 0;
  max-width: 58ch;
  font-size: 0.76rem;
  line-height: 1.55;
  color: #8b97a8;
}
.footer-nav { display: flex; gap: 1.5rem; flex: none; }
.footer-nav a { color: #fff; text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { text-decoration: underline; }

/* ---------- Legal pages ---------- */

.legal {
  padding: 3.5rem 0 4.5rem;
}
.legal .wrap { max-width: 760px; }
.legal h1 { margin-bottom: 1.5rem; }
.legal h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
}
.legal p, .legal li { color: #3c434f; }
.legal a { word-break: break-word; }
.back-link {
  display: inline-block;
  margin-top: 3rem;
  font-weight: 600;
  text-decoration: none;
}
.legal .todo {
  background: #fff3cd;
  color: #7a5b00;
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
}
.legal-date {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  :root { --pad-section: 4rem; }

  .nav-toggle { display: block; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.5rem 1.25rem;
    display: none;
  }
  .nav-list.is-open { display: flex; }
  .nav-list li { padding: 0.35rem 0; }
  .nav-list a { display: block; padding: 0.5rem 0; font-size: 1.05rem; }
  .nav-cta a { text-align: center; margin-top: 0.5rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  .hero-portrait { justify-self: start; order: -1; width: 100%; }
  .portrait-frame { width: min(78%, 300px); }
  .portrait-frame img { height: 340px; }
  .hero h1 { max-width: none; }
  .hero-claim, .hero-lede, .hero-trust { max-width: none; }

  .dav-strip .wrap { justify-content: center; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .tips-media { position: static; width: 100%; max-width: none; max-height: none; margin: 0 0 1.75rem; }

  .acc-head { gap: 0.85rem; padding: 1.1rem 0.15rem; }
  .acc-icon { width: 40px; height: 40px; }
  .acc-icon svg { width: 20px; height: 20px; }
  .acc-title { font-size: 1.05rem; }
  .acc-list { columns: 1; padding-left: 0; }
  .acc-note { padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; gap: 1.25rem; }
  .triggers { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo img { width: min(72%, 320px); }
  .steps { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .triggers { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .hero-actions .btn-tel { align-items: center; }
  .contact-list > div { grid-template-columns: 1fr; gap: 0.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
