/* Übersiedlungsfalke — Imperial Precision (warm, ehrlich, Wienerisch) */

:root {
  /* Colors — Imperial Precision */
  --surface: #faf9fc;
  --surface-bright: #faf9fc;
  --surface-dim: #dbd9dd;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f5f3f6;
  --surface-container: #efedf0;
  --surface-container-high: #e9e7eb;
  --surface-container-highest: #e3e2e5;
  --surface-variant: #e3e2e5;
  --surface-tint: #495f82;
  --background: #faf9fc;
  --on-background: #1b1b1e;
  --on-surface: #1b1b1e;
  --on-surface-variant: #44474e;
  --inverse-surface: #303033;
  --inverse-on-surface: #f2f0f3;
  --outline: #74777f;
  --outline-variant: #c4c6cf;

  /* Primary (Deep Navy) */
  --primary: #001026;
  --primary-2: #0b2545;
  --primary-soft: #314769;
  --primary-container: #0b2545;
  --on-primary-container: #778db2;
  --inverse-primary: #b1c7f0;
  --primary-fixed: #d5e3ff;
  --primary-fixed-dim: #b1c7f0;
  --on-primary: #ffffff;
  --on-primary-fixed: #001c3b;
  --on-primary-fixed-variant: #314769;

  /* Secondary (Neutral Gray) */
  --secondary: #5d5f5f;
  --on-secondary: #ffffff;
  --secondary-container: #dfe0e0;
  --on-secondary-container: #616363;
  --secondary-fixed: #e2e2e2;
  --secondary-fixed-dim: #c6c6c7;
  --on-secondary-fixed: #1a1c1c;
  --on-secondary-fixed-variant: #454747;

  /* Tertiary (Gold accent) — gold* aliases preserved for legacy classes */
  --tertiary: #1d0b00;
  --on-tertiary: #ffffff;
  --tertiary-container: #3c1d00;
  --on-tertiary-container: #b38259;
  --tertiary-fixed: #ffdcc2;
  --tertiary-fixed-dim: #f3bb8e;
  --on-tertiary-fixed: #2e1500;
  --on-tertiary-fixed-variant: #643e1b;

  --gold: #b38259;
  --gold-deep: #643e1b;
  --gold-soft: #f3bb8e;
  --gold-pale: #ffdcc2;

  /* Error */
  --error: #ba1a1a;
  --error-soft: #ffdad6;
  --on-error: #ffffff;
  --error-container: #ffdad6;
  --on-error-container: #93000a;

  /* WhatsApp brand */
  --wa-green: #25d366;
  --wa-green-dark: #128c7e;

  /* Typography */
  --font-serif: "Noto Serif", "Iowan Old Style", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Radius */
  --r-sm: 2px;
  --r: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 12px;
  --r-full: 9999px;

  /* Spacing (8px grid) */
  --space-unit: 8px;
  --gutter: 24px;
  --margin: 32px;
  --container: 1240px;
  --stack-sm-gap: 16px;
  --stack-md-gap: 32px;
  --stack-lg-gap: 64px;

  /* Shadow — soft navy ambient */
  --shadow-1: 0 1px 2px rgba(0, 16, 38, 0.04), 0 4px 12px rgba(0, 16, 38, 0.04);
  --shadow-2: 0 2px 4px rgba(0, 16, 38, 0.05), 0 12px 32px rgba(0, 16, 38, 0.06);
  --shadow-3: 0 4px 8px rgba(0, 16, 38, 0.08), 0 16px 48px rgba(0, 16, 38, 0.10);
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--gold-deep); }

/* Type */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--on-surface);
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}
h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.3;
}
h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold-soft); }

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--on-surface-variant);
  max-width: 62ch;
}

.muted { color: var(--on-surface-variant); }
.tnum { font-variant-numeric: tabular-nums; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--margin);
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section {
  padding: 96px 0;
}
.section.tight { padding: 64px 0; }
.section.dense { padding: 48px 0; }

.divider-rule {
  height: 1px;
  background: var(--outline-variant);
  border: 0;
  margin: 0;
}
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 24px 0;
}
.gold-rule.center { margin: 0 auto 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .15s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--primary-2);
  color: #fff;
  border-bottom: 2px solid var(--gold);
}
.btn-primary:hover {
  background: #001a3a;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--primary-2);
  border-color: var(--primary-2);
}
.btn-secondary:hover {
  background: var(--primary-2);
  color: #fff;
}
.btn-tertiary {
  background: transparent;
  color: var(--gold-deep);
  padding: 10px 0;
}
.btn-tertiary:hover { color: var(--primary-2); }

.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Cards */
.card {
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 32px;
}
.card.lift { box-shadow: var(--shadow-1); }
.card-tight { padding: 24px; }

/* Badges & chips */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r);
  background: var(--surface-container);
  color: var(--on-surface-variant);
}
.badge-gold {
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
}
.badge-navy {
  background: var(--primary-2);
  color: #fff;
}
.badge-dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Form */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}
.input, .select, .textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--on-surface);
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r);
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.08);
}
.textarea { resize: vertical; min-height: 110px; }

/* Notices */
.notice {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--outline-variant);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  background: var(--surface-container-low);
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-surface-variant);
}
.notice strong { color: var(--on-surface); font-weight: 600; }
.notice .dot {
  flex: 0 0 auto;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
}

/* Header — items aligned on a single baseline */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 252, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--outline-variant);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--on-surface);
  flex-shrink: 0;
  line-height: 1;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--primary-2);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.brand-name em {
  font-style: normal;
  color: var(--gold-deep);
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}
.site-nav a {
  color: var(--on-surface);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.is-active {
  color: var(--primary-2);
  border-color: var(--gold);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.header-tel {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.header-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: var(--wa-green);
  color: #fff;
  transition: background .15s ease;
}
.header-wa:hover { background: var(--wa-green-dark); color: #fff; }
.header-wa svg { width: 18px; height: 18px; }
.lang-switch {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r);
  overflow: hidden;
  align-items: stretch;
  line-height: 1;
}
.lang-switch button,
.lang-switch a {
  padding: 7px 7px;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.lang-switch button.active,
.lang-switch a.active {
  background: var(--primary-2);
  color: #fff;
}

/* Mobile burger */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger svg { width: 20px; height: 20px; stroke: var(--primary-2); }

@media (max-width: 1100px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
}
@media (max-width: 1024px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 13px; }
  .header-tel-text { display: none; }
  .header-tel { padding: 10px; }
}
@media (max-width: 1060px) {
  .site-nav { display: none; }
  .header-tel-text { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 16, 38, 0.5);
  display: none;
  z-index: 100;
}
.mobile-drawer.open { display: block; }
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: var(--surface);
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-drawer-panel .close-x {
  align-self: flex-end;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  color: var(--primary-2);
  line-height: 1;
  padding: 4px 8px;
}
.mobile-drawer-panel nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.mobile-drawer-panel nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--outline-variant);
  font-size: 16px;
  color: var(--on-surface);
  font-weight: 500;
}
.mobile-drawer-panel nav a.is-active { color: var(--primary-2); font-weight: 600; }
.mobile-drawer-panel .drawer-cta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

/* Top utility strip */
.utility-strip {
  background: var(--primary);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.utility-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 24px;
}
.utility-strip a { color: #fff; }
.utility-strip .stack {
  display: flex; gap: 20px; align-items: center;
}
.utility-strip .pill {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-soft);
}
.utility-strip .pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
@media (max-width: 720px){
  .utility-strip .hide-sm { display:none; }
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 32px;
  margin-top: 64px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px){
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.56);
}
.footer-bottom a { font-size: 12px; }
.footer-mark {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.footer-mark .brand-name { color: #fff; }
.footer-mark .brand-name em { color: var(--gold-soft); }
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  max-width: 36ch;
  margin: 0 0 24px;
}

/* Section heads */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .right { color: var(--on-surface-variant); }
@media (max-width: 720px){
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
}

/* Photo placeholder — ehrlich */
.photo-ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--surface-container) 0 12px,
      var(--surface-container-low) 12px 24px
    );
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--on-surface-variant);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 24px;
}
.photo-ph::after{
  content: "";
  position:absolute; inset: 12px;
  border: 1px dashed var(--outline-variant);
  border-radius: 6px;
  pointer-events: none;
}
.photo-ph .ph-label {
  position: relative;
  z-index: 1;
  background: var(--surface);
  padding: 8px 12px;
  border-radius: var(--r);
  border: 1px solid var(--outline-variant);
  max-width: 80%;
}
.photo-ph .ph-label .tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.photo-ph.tall { aspect-ratio: 3/4; }
.photo-ph.wide { aspect-ratio: 16/9; }
.photo-ph.sq { aspect-ratio: 1/1; }

/* Pricing tier */
.tier {
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.tier.featured {
  border-color: var(--primary-2);
  box-shadow: var(--shadow-1);
}
.tier.featured::before {
  content: "Beliebteste Wahl";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--primary-2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r);
}
.tier .tier-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--primary-2);
}
.tier .tier-meta {
  font-size: 13px;
  color: var(--on-surface-variant);
  display: flex;
  gap: 16px;
}
.tier .tier-meta span { display: inline-flex; gap: 6px; align-items: center; }
.tier .tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-serif);
  border-top: 1px solid var(--outline-variant);
  border-bottom: 1px solid var(--outline-variant);
  padding: 16px 0;
}
.tier .tier-price .from {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.tier .tier-price .num {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-2);
  letter-spacing: -0.02em;
}
.tier .tier-price .unit {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--on-surface-variant);
}
.tier ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; color: var(--on-surface-variant); }
.tier ul li { display: flex; gap: 10px; align-items: flex-start; }
.tier ul li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}

/* Stats */
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid var(--outline-variant);
}
.stat .num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-2);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .label { font-size: 13px; color: var(--on-surface-variant); }

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  flex-wrap: wrap;
}
.stepper .step {
  display: flex; align-items: center; gap: 12px;
  flex: 1 1 0; min-width: 140px;
}
.stepper .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--outline-variant);
  background: #fff;
  color: var(--on-surface-variant);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  flex: 0 0 auto;
}
.stepper .step.active .dot {
  background: var(--primary-2); color: #fff; border-color: var(--primary-2);
}
.stepper .step.done .dot {
  background: var(--gold); color: var(--primary); border-color: var(--gold);
}
.stepper .label-block { display: flex; flex-direction: column; gap: 2px; }
.stepper .label-block .lbl { font-size: 13px; font-weight: 600; color: var(--on-surface); }
.stepper .label-block .sub { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-surface-variant); }
.stepper .line {
  flex: 1 1 24px;
  height: 1px;
  background: var(--outline-variant);
  margin: 0 8px;
}
@media (max-width: 720px){
  .stepper .line { display: none; }
  .stepper .step { flex: 1 1 100%; }
}

/* Icon */
.icon {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* Service tile */
.service-tile {
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.service-tile:hover {
  border-color: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
  color: inherit;
}
.service-tile .num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
}
.service-tile h3 { color: var(--primary-2); }
.service-tile .more {
  margin-top: auto;
  font-size: 13px;
  color: var(--primary-2);
  font-weight: 600;
  display: inline-flex; gap: 6px; align-items: center;
}

/* USP row */
.usp-row {
  background: var(--primary-2);
  color: #fff;
}
.usp-row .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 880px){
  .usp-row .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .usp-row .container { grid-template-columns: 1fr; }
}
.usp-row .usp {
  background: var(--primary-2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.usp-row .usp .icon { color: var(--gold-soft); }
.usp-row .usp h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.usp-row .usp p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* FAQ */
details.faq {
  border-bottom: 1px solid var(--outline-variant);
  padding: 20px 0;
}
details.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--on-surface);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--gold-deep);
  font-weight: 400;
  transition: transform .2s ease;
  flex: 0 0 auto;
}
details.faq[open] summary::after { content: "−"; }
details.faq .a {
  margin-top: 12px;
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.65;
  max-width: 70ch;
}

/* Hero specifics — use locally, but base here */
.hero {
  position: relative;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(179,130,89,0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(11,37,69,0.6), transparent 60%);
  pointer-events: none;
}
.hero h1 { color: #fff; }
.hero .lede { color: rgba(255,255,255,0.78); }
.hero .eyebrow { color: var(--gold-soft); }

/* Quote inline form (United-Vanlines style) */
.quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.quote-card .quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}
.quote-card label {
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.quote-card .input,
.quote-card .select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 15px;
}
.quote-card .input::placeholder { color: rgba(255,255,255,0.5); }
.quote-card .input:focus, .quote-card .select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(179,130,89,0.15);
}
@media (max-width: 720px){
  .quote-card .quote-row { grid-template-columns: 1fr; }
}

/* Falke ornaments */
.falke-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

/* Generic grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px){
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px){
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--outline-variant);
  border-bottom: 1px solid var(--outline-variant);
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--on-surface-variant);
}
.trust-bar .item { display: inline-flex; gap: 10px; align-items: center; }
.trust-bar .item .icon { color: var(--gold-deep); }
.trust-bar .stars { color: var(--gold); letter-spacing: 2px; }

/* Util */
.row-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.stack-sm { display: grid; gap: 8px; }
.stack-md { display: grid; gap: 16px; }
.stack-lg { display: grid; gap: 32px; }
.stack-xl { display: grid; gap: 48px; }
.text-center { text-align: center; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.full { width: 100%; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary-2);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r);
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; outline: 2px solid var(--gold); }

/* WhatsApp Floating Action Button */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.wa-fab:hover {
  background: var(--wa-green-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.wa-fab svg { width: 28px; height: 28px; }
@media (max-width: 720px) {
  .wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-fab svg { width: 26px; height: 26px; }
}

/* Form validation states */
.input.is-error,
.select.is-error,
.textarea.is-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(186, 26, 26, 0.10);
}
.error-msg {
  color: var(--error);
  font-size: 13px;
  margin-top: 6px;
  display: none;
  line-height: 1.4;
}
.field.is-error .error-msg { display: block; }
.help-text {
  font-size: 12px;
  color: var(--on-surface-variant);
  margin-top: 4px;
  line-height: 1.4;
}

/* Required marker */
.req {
  color: var(--error);
  margin-left: 2px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-2);
  display: none;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.open { display: block; }
.cookie-banner h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--primary-2);
}
.cookie-banner p {
  font-size: 14px;
  color: var(--on-surface-variant);
  margin: 0 0 16px;
  line-height: 1.55;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 16, 38, 0.55);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.open { display: flex; }
.cookie-modal-panel {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal-panel h3 {
  color: var(--primary-2);
  margin-bottom: 12px;
}
.cookie-modal-panel .cookie-cat {
  border-top: 1px solid var(--outline-variant);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.cookie-modal-panel .cookie-cat .meta {
  flex: 1 1 auto;
}
.cookie-modal-panel .cookie-cat strong {
  display: block;
  font-size: 14px;
  color: var(--on-surface);
  margin-bottom: 4px;
}
.cookie-modal-panel .cookie-cat .desc {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.5;
}
.cookie-modal-panel .cookie-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--outline-variant);
  border-radius: 24px;
  transition: background .2s;
}
.toggle-switch .slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch input:checked + .slider { background: var(--primary-2); }
.toggle-switch input:checked + .slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .slider { background: var(--surface-container-high); cursor: not-allowed; opacity: 0.7; }

/* Reviews / Testimonials section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 18px;
  line-height: 1;
}
.review-card blockquote {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--on-surface);
  margin: 0;
}
.review-card .reviewer {
  margin-top: auto;
  font-size: 13px;
  color: var(--on-surface-variant);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.reviews-cta {
  margin-top: 32px;
  text-align: center;
}
.reviews-note {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--on-surface-variant);
  font-style: italic;
}

/* Trust badge row */
.trust-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust-badges .tb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}
.trust-badges .tb svg { color: var(--gold-soft); }

/* Confirmation screen (after submit) */
.submit-success {
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-top: 4px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.submit-success h2 {
  font-family: var(--font-serif);
  margin-bottom: 12px;
  color: var(--primary-2);
}
.submit-success .checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--primary-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 700;
}

/* Mobile improvements for the wizard */
@media (max-width: 720px) {
  .wizard-step { padding: 16px 0; }
  .opt-card { padding: 16px; }
}

/* Legal pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0 96px;
}
.legal-page h1 { margin-bottom: 12px; }
.legal-page h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--primary-2);
  font-size: 24px;
}
.legal-page h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 18px;
}
.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-surface-variant);
  margin-bottom: 12px;
}
.legal-page strong { color: var(--on-surface); font-weight: 600; }
.legal-page ul, .legal-page ol { padding-left: 22px; }
.legal-page table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  margin: 16px 0;
}
.legal-page th, .legal-page td {
  border: 1px solid var(--outline-variant);
  padding: 10px 12px;
  text-align: left;
}
.legal-page th { background: var(--surface-container); font-weight: 600; }
.legal-page .last-updated {
  font-size: 13px;
  color: var(--on-surface-variant);
  font-style: italic;
  margin-bottom: 32px;
}
.legal-page .law-notice {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 16px 20px;
  margin: 32px 0;
  font-size: 14px;
  color: var(--gold-deep);
  line-height: 1.55;
}
.legal-page .law-notice strong { color: var(--gold-deep); }

/* 404 page */
.error-page {
  text-align: center;
  padding: 96px 24px;
  max-width: 540px;
  margin: 0 auto;
}
.error-page .big-num {
  font-family: var(--font-serif);
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 700;
  color: var(--primary-2);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Reduce body margin when WA-FAB visible — defensive */
body { padding-bottom: 0; }

/* Print: hide interactive chrome */
@media print {
  .site-header, .site-footer, .wa-fab, .cookie-banner, .cookie-modal, .mobile-drawer { display: none !important; }
}

/* ============================================================
   BRAND LOGO (new falcon-with-package illustration)
   ============================================================ */
.brand-mark-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.brand-mark-logo picture,
.brand-mark-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-logo-img { background: transparent; }
.footer-logo {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r);
  padding: 4px;
}
.footer-logo .brand-logo-img { filter: brightness(1.05); }

/* ============================================================
   MOBILE & iPad COMPREHENSIVE OPTIMIZATIONS
   Breakpoints:
     ≤1280px — small laptops
     ≤1024px — iPad Pro landscape, large tablets
     ≤900px  — iPad portrait, tablets
     ≤720px  — phone landscape, large phones
     ≤480px  — phone portrait
     ≤360px  — small phones
   ============================================================ */

/* ---- iOS Safari & touch device fixes (always-on) ---- */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(11, 37, 69, 0.08);
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

/* Prevent iOS zoom on input focus — minimum 16px font-size */
@media (max-width: 900px) {
  .input, .select, .textarea,
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="date"], input[type="number"], input[type="search"],
  textarea, select {
    font-size: 16px !important;
  }
}

/* Touch-friendly minimum target sizes (WCAG 2.5.5) */
@media (max-width: 1024px) {
  .btn, .btn-sm { min-height: 44px; padding: 12px 18px; }
  .btn-sm { padding: 10px 16px; }
  .btn-lg { min-height: 52px; padding: 16px 24px; }
  .counter button { width: 44px !important; height: 44px !important; font-size: 22px !important; }
  .counter .v { width: 50px !important; }
  .toggle-row { min-height: 64px; padding: 14px 18px !important; }
  .switch { width: 48px; height: 28px; }
  .switch::after { width: 22px; height: 22px; }
  .switch.on::after { transform: translateX(20px); }
  .lang-switch button,
  .lang-switch a { padding: 9px 8px !important; min-height: 36px; }
  .opt-card { min-height: 120px; }
  details.faq summary { padding: 12px 0; min-height: 44px; }
  .header-tel,
  .header-wa { min-height: 44px; min-width: 44px; }
  a, button { touch-action: manipulation; }
}

/* Safe-area insets for notched devices (iPhone X+, iPad Pro) */
@supports (padding: env(safe-area-inset-bottom)) {
  .wa-fab {
    bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px));
    right: max(20px, calc(env(safe-area-inset-right) + 12px));
  }
  .cookie-banner {
    bottom: max(16px, env(safe-area-inset-bottom));
    left: max(16px, env(safe-area-inset-left));
    right: max(16px, env(safe-area-inset-right));
  }
  .container {
    padding-left: max(var(--margin), env(safe-area-inset-left));
    padding-right: max(var(--margin), env(safe-area-inset-right));
  }
}

/* ---- ≤1280px: small laptops ---- */
@media (max-width: 1280px) {
  :root { --container: 1100px; }
  .section { padding: 80px 0; }
}

/* ---- ≤1024px: iPad Pro landscape, large tablets ---- */
@media (max-width: 1024px) {
  :root { --margin: 28px; }
  h1 { font-size: clamp(34px, 5vw, 52px); }
  h2 { font-size: clamp(26px, 3.4vw, 38px); }
  .section { padding: 72px 0; }
  .section.tight { padding: 56px 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 40px !important; }
  .site-header .bar { gap: 16px; min-height: 70px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 13px; }
  .header-tel-text { display: none; }
  .header-tel { padding: 10px; }
}

/* ---- ≤900px: iPad portrait, tablets ---- */
@media (max-width: 900px) {
  :root { --margin: 24px; --gutter: 20px; }
  .section { padding: 56px 0; }
  .section.tight { padding: 40px 0; }
  .section.dense { padding: 32px 0; }

  /* Hero — stack vertically */
  .hero-grid,
  .hero > .container > div[style*="grid-template-columns"] {
    display: block !important;
  }
  .hero-grid > *,
  .hero > .container > div[style*="grid-template-columns"] > * {
    margin-bottom: 32px;
  }
  .hero { text-align: left; }
  .hero .container { padding-top: 56px !important; padding-bottom: 64px !important; }

  /* Quote-card compact stack */
  .quote-card .quote-row { grid-template-columns: 1fr !important; gap: 12px; }

  /* Splits stack */
  .split { grid-template-columns: 1fr !important; gap: 32px !important; }
  .split[style*="direction: rtl"],
  .split[style*="direction:rtl"] { direction: ltr !important; }

  /* Section-head stacks earlier */
  .section-head { grid-template-columns: 1fr !important; gap: 16px !important; margin-bottom: 32px !important; }

  /* Typography */
  h1 { font-size: clamp(30px, 6vw, 44px); line-height: 1.12; }
  h2 { font-size: clamp(24px, 4.5vw, 32px); }
  h3 { font-size: clamp(19px, 3vw, 22px); }
  .lede { font-size: 17px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Header — hide nav, show burger */
  .site-nav { display: none; }
  .header-cta .lang-switch { display: none; }
  .header-tel { display: none; }
  .burger { display: inline-flex; }
  .header-cta { gap: 10px; }
  .header-cta .btn { padding: 10px 14px; font-size: 13px; }
  .site-header .bar { min-height: 64px; gap: 12px; }
  .brand-name { font-size: 18px; }
  .brand-mark-logo { width: 38px; height: 38px; }

  /* Utility strip — hide email, keep phone */
  .utility-strip .container { height: 32px; font-size: 11px; }
  .utility-strip .stack a + a { display: none; }

  /* Footer — 2 columns */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .site-footer { padding: 56px 0 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-tagline { font-size: 16px; }

  /* Trust badges wrap */
  .trust-badges { gap: 8px; }
  .trust-badges .tb { font-size: 11px; padding: 6px 10px; }

  /* USP row — 2 cols on tablet */
  .usp-row .container { grid-template-columns: repeat(2, 1fr) !important; }

  /* Cards & content */
  .card { padding: 24px; }
  .card.lift { padding: 24px !important; }

  /* CTA rows */
  .cta-row { gap: 10px; }
  .cta-row .btn { flex: 1 1 auto; min-width: 0; }

  /* Stepper compact (sticky) */
  .stepper { padding: 16px 0; gap: 0; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .stepper .step { flex: 0 0 auto !important; min-width: 0 !important; gap: 8px; }
  .stepper .label-block .sub { display: none; }
  .stepper .label-block .lbl { font-size: 12px; white-space: nowrap; }
  .stepper .line { flex: 0 0 16px !important; margin: 0 4px !important; }

  /* Wizard summary moves below form */
  .wizard-shell { grid-template-columns: 1fr !important; gap: 32px !important; }
  .summary-rail { position: static !important; top: auto !important; }
  .summary { padding: 20px; }
  .summary .total .num { font-size: 30px; }

  /* Cookie banner & modal sizing */
  .cookie-banner { padding: 18px 20px; }
  .cookie-modal-panel { padding: 24px; max-height: 88vh; }

  /* Reviews grid 2 cols on tablet portrait */
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  /* Service tile padding */
  .service-tile { padding: 22px; }

  /* Table → horizontal scroll wrapper */
  .legal-page table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .legal-page table th,
  .legal-page table td { white-space: normal; min-width: 120px; }

  /* FAQ sidebar stacks above content */
  .faq-grid,
  .legal-page > div[style*="grid-template-columns: 240px"] {
    display: block !important;
  }
  .faq-grid > aside,
  .legal-page > div[style*="grid-template-columns: 240px"] > aside {
    position: static !important;
    margin-bottom: 32px;
  }
}

/* ---- ≤720px: phone landscape, large phones ---- */
@media (max-width: 720px) {
  :root { --margin: 20px; --gutter: 16px; }
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }

  h1 { font-size: clamp(28px, 7vw, 40px); }
  h2 { font-size: clamp(22px, 5vw, 28px); }
  h3 { font-size: 18px; }

  .grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-2 { grid-template-columns: 1fr !important; gap: 16px !important; }

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 22px; }

  .usp-row .container { grid-template-columns: 1fr !important; }
  .usp-row .usp { padding: 22px 20px; }

  /* Header more compact */
  .site-header .bar { min-height: 60px; }
  .brand-name { font-size: 16px; }
  .brand-mark-logo { width: 36px; height: 36px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 8px 12px; font-size: 12px; min-height: 40px; }
  .header-wa { width: 40px; height: 40px; }
  .header-wa svg { width: 20px; height: 20px; }
  .burger { width: 40px; height: 40px; }
  .header-cta .lang-switch { display: none !important; }
  /* Drawer language switcher: ensure visible on mobile */
  .mobile-drawer .lang-switch { display: inline-flex !important; gap: 0; }
  .mobile-drawer .lang-switch button { padding: 8px 14px; min-height: 40px; }

  /* Utility strip even more compact */
  .utility-strip { font-size: 10.5px; }
  .utility-strip .container { height: 28px; gap: 12px; }
  .utility-strip .pill { font-size: 10.5px; }
  .utility-strip .hide-sm { display: none; }

  /* CTA full-width on phone */
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; flex: 0 0 auto; }

  .btn-lg { padding: 14px 20px; font-size: 15px; }

  .section-head { margin-bottom: 24px !important; }

  .card { padding: 20px; border-radius: var(--r); }
  .card.lift { padding: 22px !important; }

  .tier { padding: 20px; }
  .tier .tier-price .num { font-size: 36px; }

  /* Footer single column */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .site-footer { padding: 40px 0 20px; margin-top: 32px; }
  .footer-tagline { max-width: 100%; font-size: 15px; }

  /* Hero compact */
  .hero .container { padding-top: 40px !important; padding-bottom: 48px !important; }
  .hero .falke-watermark { display: none !important; }

  /* Trust badges wrap better */
  .trust-badges { width: 100%; }
  .trust-badges .tb { font-size: 11px; flex: 1 1 auto; justify-content: center; }

  /* Wizard step content */
  .wiz-step { padding: 4px 0; }
  .opt-card { padding: 18px; }

  /* Stepper hides labels entirely on tiny screens */
  .stepper { padding: 12px 0; }
  .stepper .label-block { display: none !important; }
  .stepper .step { gap: 0 !important; }
  .stepper .dot { width: 32px; height: 32px; font-size: 13px; }
  .stepper .line { flex: 1 1 auto !important; }

  /* Sticky bottom nav for wizard on phone */
  #wizard .row-between {
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 32px -20px 0 !important;
    padding: 16px 20px !important;
    padding-bottom: max(16px, env(safe-area-inset-bottom)) !important;
    border-top: 1px solid var(--outline-variant) !important;
    z-index: 20;
  }
  #wizard .row-between .btn { flex: 1 1 auto; }

  /* Quote-card on hero */
  .quote-card { padding: 20px; }
  .quote-card .quote-row { grid-template-columns: 1fr !important; gap: 10px !important; }

  /* Cookie banner phone */
  .cookie-banner {
    left: 8px !important;
    right: 8px !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
    padding: 16px 18px;
    border-radius: var(--r);
  }
  .cookie-banner .cookie-actions { flex-direction: column; }
  .cookie-banner .cookie-actions .btn { width: 100%; }

  /* Cookie modal phone — bottom sheet style */
  .cookie-modal { padding: 0; align-items: flex-end !important; }
  .cookie-modal-panel {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    padding: 20px;
    max-height: 92vh;
    margin-top: auto;
    width: 100%;
  }

  /* Mobile drawer */
  .mobile-drawer-panel { width: min(100%, 360px); padding: 20px; }

  /* WA-FAB slightly smaller and lower */
  .wa-fab { width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .wa-fab svg { width: 26px; height: 26px; }

  /* Legal page fits phone */
  .legal-page { padding: 32px 0 64px; }
  .legal-page h1 { font-size: clamp(26px, 7vw, 34px); }
  .legal-page h2 { font-size: 20px; margin-top: 32px; }
  .legal-page h3 { font-size: 16px; }
  .legal-page p, .legal-page li { font-size: 14.5px; }

  .notice { padding: 14px 16px; font-size: 13.5px; }
  .stat .num { font-size: 32px; }
  .photo-ph { padding: 18px; }
  .photo-ph .ph-label { font-size: 11px; }
  .skip-link:focus { top: 8px; left: 8px; }
}

/* ---- ≤480px: phone portrait ---- */
@media (max-width: 480px) {
  :root { --margin: 16px; }
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }

  h1 { font-size: clamp(26px, 8vw, 36px); line-height: 1.15; }
  h2 { font-size: 22px; }
  .lede { font-size: 16px; }

  .site-header .bar { min-height: 56px; }
  .brand-name { font-size: 15px; }
  .brand-mark-logo { width: 32px; height: 32px; }
  .header-cta .btn { padding: 7px 10px; font-size: 11.5px; min-height: 38px; }
  .header-wa { width: 38px; height: 38px; }
  .burger { width: 38px; height: 38px; }

  .hero .container { padding-top: 32px !important; padding-bottom: 40px !important; }

  .card { padding: 18px; }
  .card.lift { padding: 18px !important; }
  .tier .tier-price .num { font-size: 32px; }
  .quote-card { padding: 16px; }

  details.faq summary { font-size: 16px; gap: 12px; }
  details.faq .a { font-size: 14px; }

  .btn { padding: 11px 16px; font-size: 14px; }
  .btn-lg { padding: 13px 18px; font-size: 14.5px; }

  .stepper .dot { width: 28px; height: 28px; font-size: 12px; }
  .stepper .line { background: var(--outline-variant); }

  .toggle-row { padding: 12px 14px !important; gap: 10px; }
  .toggle-row .label { font-size: 14px; }
  .toggle-row .sub { font-size: 12px; }
  .row-counter { padding: 12px 14px; }
  .row-counter .label { font-size: 14px; }
  .row-counter .sub { font-size: 12px; }

  .notice { padding: 12px 14px; font-size: 13px; }
  .review-card { padding: 18px; }
  .review-card blockquote { font-size: 15px; }
  .service-tile { padding: 18px; }
  .service-tile h3 { font-size: 17px; }
  .submit-success { padding: 32px 20px; }
}

/* ---- ≤360px: small phones (iPhone SE, etc.) ---- */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .header-cta .btn { padding: 6px 8px; font-size: 11px; }
  .header-wa { width: 36px; height: 36px; }
  .burger { width: 36px; height: 36px; }
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
}

/* ---- iPad Pro 12.9" portrait — keep 2-col pricing ---- */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Landscape phone — hide utility strip, less hero padding ---- */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .utility-strip { display: none; }
  .site-header { position: relative; }
  .hero .container { padding-top: 24px !important; padding-bottom: 32px !important; }
}

/* ---- Reduced motion preference ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Focus-visible for keyboard navigation ---- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.btn:focus-visible {
  outline-offset: 3px;
}

/* ---- Active state feedback for buttons (touch devices) ---- */
@media (hover: none) {
  .btn:active { transform: scale(0.98); }
  .opt-card:active { transform: scale(0.99); }
  .service-tile:active { transform: scale(0.99); }
  .toggle-row:active { background: var(--surface-container-low); }
  .row-counter:active { background: var(--surface-container-low); }
}
