:root {
  --ink: #171717;
  --muted: #626262;
  --green: #151515;
  --green-dark: #050505;
  --green-soft: #f2f2f2;
  --cream: #f7f4ec;
  --sand: #e7d7a4;
  --coral: #f0c95d;
  --brand: #f0c95d;
  --brand-hover: #e5b83e;
  --white: #ffffff;
  --surface: #f6f6f6;
  --border: #dedede;
  --shadow: 0 18px 50px rgba(0, 0, 0, .10);
  --base-size: 18px;
  --section-space: 18px;
  --section-space-mobile: 14px;
}

/* Seniorentaxi: dynamische Buchungsauswahl und gemeinsames Buchungs-Popup */
.senior-booking-section {
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, #fff 0%, #f7f4ec 100%);
}

.senior-booking-card {
  padding: 28px;
  border: 1px solid #ead7ae;
  border-top: 5px solid var(--brand);
  border-radius: 26px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.senior-booking-card > .eyebrow,
.senior-booking-card > h2,
.senior-booking-intro {
  text-align: center;
}

.senior-booking-card > h2 {
  margin: 2px 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.15;
}

.senior-booking-card > h2 span {
  color: var(--brand-hover);
}

.senior-booking-intro {
  max-width: 720px;
  margin: 0 auto 22px;
  color: var(--muted);
}

.senior-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.senior-booking-option {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  padding: 18px 14px 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.senior-booking-option::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--brand), #9b7a27);
}

.senior-booking-option:hover {
  transform: translateY(-3px);
  border-color: #d7bd72;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .10);
}

.senior-booking-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 16px;
  color: #171717;
  background: linear-gradient(145deg, #f8df91, var(--brand));
  font-size: 1.45rem;
  box-shadow: 0 9px 20px rgba(240, 201, 93, .30);
}

.senior-booking-option strong {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.senior-booking-option > span:not(.senior-booking-icon) {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.senior-booking-option em {
  margin-top: auto;
  padding: 9px 16px;
  border-radius: 999px;
  color: #171717;
  background: #f7e8b7;
  font-size: .86rem;
  font-style: normal;
  font-weight: 800;
}

.bt-booking-modal-open {
  overflow: hidden;
}

.bt-booking-modal[hidden] {
  display: none !important;
}

.bt-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.bt-booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 12, .72);
  backdrop-filter: blur(3px);
}

.bt-booking-modal__dialog {
  position: relative;
  width: min(940px, 100%);
  height: min(92vh, 960px);
  overflow: hidden;
  border: 1px solid #ead7ae;
  border-radius: 22px;
  background: #f7f4ec;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.bt-booking-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #171717;
  background: var(--brand);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.bt-booking-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f7f4ec;
}

@media (max-width: 860px) {
  .senior-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .senior-booking-section {
    padding: var(--section-space-mobile) 0;
  }

  .senior-booking-card {
    width: min(100% - 24px, 1160px);
    padding: 20px 12px 16px;
    border-radius: 20px;
  }

  .senior-booking-grid {
    gap: 10px;
  }

  .senior-booking-option {
    min-height: 220px;
    padding: 16px 10px 13px;
    border-radius: 16px;
  }

  .senior-booking-icon {
    width: 48px;
    height: 48px;
  }

  .senior-booking-option strong {
    font-size: .92rem;
  }

  .senior-booking-option > span:not(.senior-booking-icon) {
    font-size: .78rem;
  }

  .bt-booking-modal {
    align-items: stretch;
    padding: 0;
  }

  .bt-booking-modal__dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .bt-booking-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: var(--base-size); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body.font-larger { --base-size: 20px; }
body.font-smaller { --base-size: 16px; }
body.high-contrast {
  --ink: #000;
  --muted: #111;
  --green: #000;
  --green-dark: #000;
  --green-soft: #f5f5f5;
  --cream: #fff8da;
  --border: #000;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 4px solid #f5b942;
  outline-offset: 4px;
}
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 0 0 10px 10px;
  color: #fff;
  background: #000;
}
.skip-link:focus { top: 0; }
.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;
}
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  backdrop-filter: blur(14px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  min-height: 74px;
  margin-inline: auto;
  padding: 12px 18px;
  gap: 24px;
  border: 1px solid #ead7ae;
  border-top: 4px solid #f0c95d;
  border-radius: 28px;
  background: linear-gradient(145deg, #fffdf7 0%, #f4f1e9 100%);
  box-shadow: 0 14px 38px rgba(0,0,0,.075);
}
.logo {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}
.logo::before {
  content: "TAXI";
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 32px;
  border: 2px solid rgba(255,255,255,.9);
  border-bottom-width: 4px;
  border-radius: 18px 18px 10px 10px;
  color: #111;
  background:
    linear-gradient(90deg, #111 0 8px, transparent 8px 14px, #111 14px 22px, transparent 22px 28px, #111 28px 36px, transparent 36px 42px, #111 42px 50px, transparent 50px 100%) bottom / 100% 6px no-repeat,
    linear-gradient(145deg, #ffe785 0%, #f0c95d 56%, #d79b17 100%);
  box-shadow:
    0 0 18px rgba(240,201,93,.52),
    0 10px 22px rgba(0,0,0,.24);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .12em;
  transform: rotate(-3deg);
}
.logo::after {
  content: "1220 Wien";
  grid-column: 2;
  display: block;
  margin-top: 6px;
  color: #8a6500;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.nav-links a {
  position: relative;
  color: #171717;
  font: inherit;
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
}
.nav-links a:hover {
  color: #8a6500;
}
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff !important;
  background: #25d366;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .22);
}
.nav-whatsapp::before {
  content: "💬";
  font-size: .95rem;
}
.nav-whatsapp:hover {
  background: #1fb85a;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: rgba(240,201,93,.18);
  border: 1px solid #ead7ae;
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #171717;
  border-radius: 2px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 20px 0 var(--section-space);
  color: var(--ink);
  background: #fff;
}
.hero::after {
  content: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
  min-height: 500px;
  padding: 48px 52px;
  border: 1px solid #ead7ae;
  border-top: 4px solid #f0c95d;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 20%, rgba(240,201,93,.24), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #f6f3eb 52%, #ffffff 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,.075);
}
.eyebrow { margin: 0 0 10px; color: #a98418; font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero .eyebrow { color: #8a6500; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.15; }
h1 { max-width: 680px; margin: 0 0 18px; font-size: clamp(2rem, 3.4vw, 3.25rem); letter-spacing: -.03em; }
h2 { margin: 0 0 16px; font-size: clamp(1.55rem, 2.6vw, 2.2rem); letter-spacing: -.022em; }
h3 { font-size: 1.18rem; }
.hero-lead { max-width: 620px; margin: 0 0 24px; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 56px; padding: 14px 22px; border-radius: 13px; font-weight: 850; text-decoration: none; }
.button-primary { color: #111; background: #f0c95d; box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.button-primary:hover { background: #ffd84d; }
.button-secondary { color: #111; background: #fff; border: 2px solid #dedede; }
.button-whatsapp { color: #fff; background: #25d366; box-shadow: 0 12px 28px rgba(37,211,102,.24); }
.button-whatsapp::before { content: "💬"; }
.button-whatsapp:hover { background: #1fb85a; }
.compact-actions {
  align-items: center;
  gap: 9px;
}
.compact-actions .button {
  min-height: 44px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: .86rem;
  box-shadow: none;
}
.compact-actions .button-primary {
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.compact-actions .button-whatsapp::before {
  content: none;
}
.button-symbol {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
  line-height: 1;
}
.button-secondary .button-symbol {
  background: #f4f4f4;
}
.section-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 30px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .86rem; font-weight: 750; }
.trust-list li::before { content: "✓"; margin-right: 8px; color: #a98418; font-weight: 950; }

.hero-panel {
  padding: 26px 28px;
  border: 1px solid #e3d6b2;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 42px rgba(0,0,0,.07);
}
.hero-panel-label {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #111;
  background: #f0c95d;
  font-size: .56rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  line-height: 1.18;
}
.hero-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .9rem;
  line-height: 1.5;
}
.hero-panel li {
  padding-bottom: 8px;
  border-bottom: 1px solid #e9e1cd;
  color: var(--muted);
}
.hero-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #111;
  background: #f0c95d;
  font-weight: 950;
  text-decoration: none;
}

.quick-contact { color: #fff; background: var(--green); }
.quick-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 126px; }
.quick-contact-inner > div { display: flex; align-items: center; gap: 18px; }
.quick-contact-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: var(--green); background: var(--cream); font-size: 1.4rem; }
.quick-contact p { margin: 0; }
.quick-contact a { flex: 0 0 auto; padding: 11px 18px; border: 2px solid rgba(255,255,255,.7); border-radius: 11px; font-weight: 900; text-decoration: none; }
.notice-strip {
  padding: var(--section-space) 0 18px;
  background: #fff;
}
.notice-card {
  padding: 24px 28px;
  border: 1px solid #ead7ae;
  border-radius: 28px;
  color: #503b00;
  background: linear-gradient(145deg, #fffdf7 0%, #fff1b8 100%);
  box-shadow: 0 14px 38px rgba(0,0,0,.055);
  font-size: .92rem;
}
.notice-toggle {
  padding: 0;
  overflow: hidden;
}
.notice-toggle summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
}
.notice-toggle summary::-webkit-details-marker { display: none; }
.notice-toggle summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #111;
  background: rgba(240,201,93,.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  padding-bottom: 2px;
}
.notice-toggle[open] summary {
  border-bottom: 1px solid #ead7ae;
}
.notice-toggle[open] summary::after { content: "−"; }
.notice-toggle summary span {
  color: #102c28;
  font-size: 1.02rem;
  font-weight: 950;
}
.notice-toggle summary small {
  color: #6b6255;
  font-weight: 850;
  white-space: nowrap;
}
.notice-toggle-content {
  display: grid;
  gap: 8px;
  padding: 18px 28px 22px;
}
.notice-toggle-content p {
  margin: 0;
}

.section { padding-block: var(--section-space); }
.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 26px 30px;
  border: 1px solid rgba(222, 222, 222, .9);
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 38px rgba(0,0,0,.055);
  text-align: center;
}
.section-heading > p:last-child, .section-intro { color: var(--muted); }
.section-heading > p:last-child { font-size: .96rem; line-height: 1.6; }
.area-section { background: #fff; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid #ead7ae;
  border-radius: 36px;
  background: linear-gradient(145deg, #fffdf7 0%, #fff 58%, #f6f3eb 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
}
.area-heading {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin: 0 0 8px;
  padding: 4px 18px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.area-card {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(0,0,0,.055);
  font-size: .92rem;
}
.area-card-primary {
  color: #171717;
  background: linear-gradient(145deg, #fffdf7 0%, #f4f1e9 100%);
  border-color: #ead7ae;
}
.area-card-note {
  background: var(--cream);
  border-color: #ead7ae;
}
.area-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.area-card:not(.area-card-primary) .area-badge {
  color: #111;
  background: #f0c95d;
}
.area-card-primary .area-badge {
  color: #111;
  background: #f0c95d;
}
.area-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.18;
}
.area-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.area-card-primary p {
  color: var(--muted);
}
.services-section {
  background: #fff;
}
.services-group {
  padding: 28px;
  border: 1px solid #ead7ae;
  border-radius: 36px;
  background: linear-gradient(145deg, #fffdf7 0%, #fff 58%, #f6f3eb 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
}
.services-section .section-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  padding: 4px 18px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; align-items: stretch; }
.service-card { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 9px; align-items: center; min-height: 54px; padding: 11px 13px; border: 1px solid rgba(234,215,174,.9); border-radius: 999px; color: inherit; background: rgba(255,255,255,.76); box-shadow: none; text-decoration: none; overflow: hidden; cursor: default; }
.service-card:nth-child(even),
.service-card:nth-child(odd) { border-radius: 999px; }
.service-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: #111; background: #f0c95d; font-family: Arial, Helvetica, sans-serif; font-size: .92rem; font-weight: 950; line-height: 1; }
.service-card h3 { align-self: center; min-width: 0; margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .9rem; font-weight: 850; line-height: 1.22; overflow-wrap: anywhere; hyphens: auto; }
.service-card p { grid-column: 1 / -1; min-width: 0; margin: 2px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.52; overflow-wrap: anywhere; hyphens: auto; }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 26px; align-items: start; padding: 24px; border: 1px solid #ead7ae; border-radius: 32px; background: linear-gradient(145deg, #fffdf7 0%, #fff 58%, #f6f3eb 100%); box-shadow: 0 14px 38px rgba(0,0,0,.05); }
.process-grid > div:first-child {
  padding: 4px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.process-grid h2 { font-size: clamp(1.35rem, 2.1vw, 1.85rem); }
.process-grid .section-intro { font-size: .92rem; line-height: 1.55; }
.process-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 15px 16px; border: 1px solid #ead7ae; border-radius: 15px; background: rgba(255,255,255,.75); }
.process-list li > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: #fff; background: var(--green); font-size: 1rem; font-weight: 900; }
.process-list strong { display: block; margin-bottom: 2px; font-family: Georgia, serif; font-size: 1.02rem; line-height: 1.2; }
.process-list p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

.values-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; align-items: center; }
.values-visual { position: relative; display: grid; place-items: center; min-height: 440px; border-radius: 36px; background: var(--green-soft); overflow: hidden; }
.values-ring { position: absolute; border: 42px solid rgba(27,94,85,.12); border-radius: 50%; }
.values-ring-one { width: 350px; height: 350px; }
.values-ring-two { width: 220px; height: 220px; }
.values-heart { position: relative; z-index: 1; display: grid; place-items: center; width: 130px; height: 130px; border-radius: 38px; color: #fff; background: var(--coral); font-size: 4rem; transform: rotate(-6deg); box-shadow: 0 20px 45px rgba(214,95,75,.25); }
.values-content > p:not(.eyebrow) { color: var(--muted); }
.value-points { display: grid; gap: 12px; margin-top: 26px; }
.value-points div { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.value-points strong { color: var(--green); }
.value-points span { color: var(--muted); }

.faq-section { background: #fff; }
.faq-shell {
  border: 1px solid #ead7ae;
  border-radius: 36px;
  background: linear-gradient(145deg, #fffdf7 0%, #fff 58%, #f6f3eb 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-shell-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}
.faq-shell-summary::-webkit-details-marker { display: none; }
.faq-shell-summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #111;
  background: rgba(240,201,93,.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  padding-bottom: 2px;
}
.faq-shell[open] .faq-shell-summary {
  border-bottom: 1px solid #ead7ae;
}
.faq-shell[open] .faq-shell-summary::after { content: "−"; }
.faq-shell-summary .eyebrow {
  display: block;
  margin-bottom: 4px;
}
.faq-shell-summary strong {
  display: block;
  color: #171717;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.25;
}
.faq-shell-summary small {
  color: #6b6255;
  font-weight: 850;
  white-space: nowrap;
}
.faq-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 34px;
  align-items: start;
  padding: 28px;
}
.faq-heading {
  padding: 6px 16px;
}
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid #ead7ae; border-radius: 16px; background: rgba(255,255,255,.78); box-shadow: 0 10px 28px rgba(0,0,0,.04); }
.faq-list summary { position: relative; padding: 20px 58px 20px 20px; font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 14px; color: var(--green); font-size: 1.65rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.subpage-hero {
  padding: 20px 0 var(--section-space);
  background: #fff;
  color: var(--ink);
}
.subpage-hero-inner {
  max-width: 1160px;
  padding: 42px 48px;
  border: 1px solid #ead7ae;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 18%, rgba(240,201,93,.18), transparent 32%),
    linear-gradient(145deg, #fffdf7 0%, #fff 58%, #f6f3eb 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
}
.subpage-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.12;
}
.subpage-lead { max-width: 760px; color: var(--muted); font-size: 1.02rem; }
.content-section { padding: var(--section-space) 0; background: #fff; }
.content-section.soft { background: #fff; }
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid #ead7ae;
  border-radius: 36px;
  background: linear-gradient(145deg, #fffdf7 0%, #fff 58%, #f6f3eb 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
}
.content-grid.two { grid-template-columns: repeat(2, 1fr); }
.content-card {
  position: relative;
  padding: 26px 26px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff 0%, #fffdf7 100%);
  box-shadow: 0 12px 32px rgba(0,0,0,.045);
}
.content-card:nth-child(odd) {
  border-radius: 28px 18px 28px 28px;
}
.content-card:nth-child(even) {
  margin-top: 0;
  border-radius: 18px 28px 28px 28px;
  background: #fff;
}
.content-card::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 5px;
  border-radius: 999px;
  background: var(--coral);
}
.content-grid.two .content-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 620px);
}
.content-card h2,
.content-card h3 {
  margin-top: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.2;
}
.content-card p,
.content-card li { color: var(--muted); font-size: .94rem; line-height: 1.58; }
.content-card ul { margin: 12px 0 0; padding-left: 20px; }
.callout {
  padding: 24px 26px;
  border: 1px solid #ead7ae;
  border-radius: 26px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 32px rgba(0,0,0,.045);
}
.callout:nth-child(even) {
  margin-top: 0;
  border-radius: 18px 28px 28px 28px;
}
.callout:nth-child(odd) {
  border-radius: 28px 18px 28px 28px;
}
.callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.24;
}

.area-heading h2,
.services-section .section-heading h2,
.process-grid h2,
.contact-card h2,
.subpage-hero h1 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.18;
}

.area-card h3,
.content-card h2,
.content-card h3 {
  font-size: 1.08rem;
  line-height: 1.24;
}

.contact-section {
  padding: var(--section-space) 0 18px;
  background: #fff;
}
.contact-section-early {
  padding-top: 0;
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid #ead7ae;
  border-radius: 30px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(240,201,93,.18), transparent 30%),
    linear-gradient(145deg, #fffdf7 0%, #f4f1e9 100%);
  box-shadow: 0 16px 42px rgba(0,0,0,.06);
}
.contact-card .eyebrow { color: #8a6500; }
.contact-card h2 { font-size: clamp(1.35rem, 2.1vw, 1.85rem); }
.contact-card p { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.contact-options { display: grid; gap: 9px; }
.contact-options a { display: grid; grid-template-columns: 38px 1fr; column-gap: 12px; align-items: center; min-height: 58px; padding: 10px 13px; border: 1px solid #e3d6b2; border-radius: 15px; background: rgba(255,255,255,.86); text-decoration: none; box-shadow: 0 10px 24px rgba(0,0,0,.045); }
.contact-options a > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #111; background: #f0c95d; font-size: .98rem; }
.contact-options .contact-booking-option {
  border-color: #dfc45f;
  background: linear-gradient(145deg, #fff7d4 0%, #f0c95d 100%);
  box-shadow: 0 14px 34px rgba(240,201,93,.22);
}
.contact-options .contact-booking-option > span {
  color: #111;
  background: #fff;
}
.contact-options a[href*="wa.me"] > span { color: #fff; background: #25d366; }
.contact-options small { color: #6b6255; }
.contact-options strong { overflow-wrap: anywhere; font-size: .93rem; }

.site-footer {
  padding: 0 0 16px;
  color: #3f3a31;
  background: #fff;
  font-size: .84rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(170px, .72fr));
  align-items: start;
  gap: 18px;
  padding: 22px 28px 18px;
  border: 1px solid #ead7ae;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(145deg, #fffdf7 0%, #f4f1e9 100%);
  box-shadow: 0 14px 38px rgba(0,0,0,.055);
}
.footer-grid strong { color: #171717; font-family: Georgia, serif; font-size: 1.02rem; }
.footer-grid span { display: block; margin-bottom: 4px; color: #171717; font-weight: 850; }
.footer-grid p { margin: 3px 0 0; line-height: 1.35; }
.footer-grid a { display: block; margin: 2px 0; text-decoration: none; }
.footer-partners {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.footer-partners-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  min-height: 46px;
  padding: 10px 0;
}
.footer-partners span {
  margin: 0;
  color: #8a6500;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-partners a {
  margin: 0;
  overflow-wrap: anywhere;
  color: #3f3a31;
  text-decoration: underline;
  text-decoration-color: rgba(138,101,0,.35);
  text-underline-offset: 3px;
}
.footer-contact {
  align-self: start;
  padding: 10px 14px 12px;
  border: 1px solid #ead7ae;
  border-radius: 18px;
  background: rgba(255,255,255,.48);
}
.footer-operator p {
  color: #3f3a31;
}
.footer-contact summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #171717;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.footer-contact[open] summary {
  margin-bottom: 9px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ded4bd;
}
.footer-contact summary::-webkit-details-marker { display: none; }
.footer-contact summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #111;
  background: rgba(240,201,93,.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  padding-bottom: 1px;
}
.footer-contact[open] summary::after {
  content: "−";
}
.footer-contact-button,
.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin-top: 7px !important;
  margin-right: 6px !important;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid #e3d6b2;
  color: #171717;
  background: #fff;
  font-weight: 850;
}
.footer-contact-button::before,
.footer-whatsapp::before {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}
.footer-phone::before {
  content: "☎";
}
.footer-email::before {
  content: "✉";
}
.footer-whatsapp {
  border-color: transparent;
  color: #fff;
  background: #25d366;
}
.footer-whatsapp::before {
  content: "💬";
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 3px 10px; margin: 0; }
.footer-legal a { margin: 0; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  padding: 10px 28px 12px;
  border: 1px solid #ead7ae;
  border-top: 1px solid #ded4bd;
  border-radius: 0 0 28px 28px;
  color: #6b6255;
  background: #f4f1e9;
  font-size: .74rem;
}
.footer-bottom p { margin: 0; }
.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3f3a31;
  font-weight: 850;
  text-decoration: none;
}
.footer-top-link span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #111;
  background: rgba(240,201,93,.88);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}
.footer-top-link:hover span {
  background: #f0c95d;
}
.mobile-call-button,
.mobile-whatsapp-button { display: none; }

@media (max-width: 980px) {
  .nav-container { position: relative; min-height: 68px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(330px, calc(100vw - 40px));
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    white-space: normal;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
  }
  .nav-links.is-open,
  .nav-links.show { display: flex; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px;
    color: #111;
    border-radius: 12px;
    text-align: left;
    text-shadow: none;
  }
  .nav-links a:hover {
    color: #111;
    background: rgba(0,0,0,.06);
  }
  .nav-links .nav-whatsapp { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 44px 34px; border-radius: 30px; }
  .hero-content { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-panel { width: min(680px, 100%); margin-inline: auto; }
  .area-grid { grid-template-columns: 1fr; padding: 22px; border-radius: 28px; }
  .services-group { padding: 22px; border-radius: 28px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-grid,
  .content-grid.two { grid-template-columns: 1fr; }
  .subpage-hero-inner,
  .content-grid { padding: 22px; border-radius: 28px; }
  .content-card:nth-child(even),
  .callout:nth-child(even) { margin-top: 0; }
  .content-grid.two .content-card:last-child:nth-child(odd) { width: 100%; }
  .process-grid, .values-grid, .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .process-grid { gap: 18px; padding: 18px; border-radius: 26px; }
  .faq-shell { border-radius: 28px; }
  .faq-shell-summary { padding: 20px 22px; }
  .faq-grid { gap: 22px; padding: 22px; border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-partners-line { min-height: auto; padding: 4px 0 8px; }
  .values-visual { min-height: 360px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .top-nav { padding: 8px 0; }
  .nav-container { width: min(100% - 20px, 1160px); padding: 10px 12px; border-radius: 22px; }
  .logo { font-size: 1.05rem; }
  .logo::before {
    width: 52px;
    height: 27px;
    border-radius: 15px 15px 8px 8px;
    font-size: .6rem;
  }
  .hero { padding: 12px 0 var(--section-space-mobile); }
  .hero-grid { gap: 34px; padding: 34px 22px; border-radius: 24px; }
  h1 { font-size: clamp(1.85rem, 8.5vw, 2.55rem); }
  h2 { font-size: clamp(1.42rem, 7vw, 2rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions a[href^="tel:"] { display: none; }
  .button { width: 100%; }
  .compact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .compact-actions .button {
    width: auto;
    min-height: 42px;
    padding: 9px 12px;
    font-size: .82rem;
  }
  .trust-list { display: grid; text-align: left; }
  .quick-contact-inner { display: grid; padding-block: 24px; text-align: center; }
  .quick-contact-inner > div { display: grid; justify-items: center; }
  .quick-contact a { width: 100%; }
  .section { padding-block: var(--section-space-mobile); }
  .section-heading { margin-bottom: 24px; }
  .area-grid { padding: 16px; border-radius: 24px; }
  .services-group { padding: 16px; border-radius: 24px; }
  .subpage-hero { padding: 12px 0 var(--section-space-mobile); }
  .subpage-hero-inner,
  .content-grid { padding: 16px; border-radius: 24px; }
  .content-card,
  .callout { padding: 22px 20px; }
  .process-grid { gap: 16px; padding: 15px; border-radius: 24px; }
  .faq-shell { border-radius: 24px; }
  .faq-shell-summary { grid-template-columns: minmax(0, 1fr) 30px; align-items: center; padding: 18px 16px; }
  .faq-shell-summary small { display: none; }
  .faq-shell-summary::after { width: 30px; height: 30px; font-size: 1.25rem; }
  .faq-grid { gap: 20px; padding: 16px; border-radius: 24px; }
  .faq-heading { padding: 2px 8px; }
  .faq-list summary { padding: 17px 52px 17px 17px; }
  .faq-list summary::after { right: 17px; top: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .process-list li { grid-template-columns: 38px 1fr; gap: 12px; padding: 14px; }
  .process-list li > span { width: 36px; height: 36px; font-size: .92rem; }
  .process-list strong { font-size: .98rem; }
  .process-list p { font-size: .84rem; }
  .values-visual { min-height: 300px; }
  .value-points div { grid-template-columns: 1fr; gap: 2px; }
  .contact-section { padding: var(--section-space-mobile) 0 16px; }
  .contact-section-early { padding-top: 0; }
  .contact-card { grid-template-columns: 1fr; gap: 22px; padding: 22px 18px; text-align: center; }
  .contact-options { text-align: left; }
  .notice-toggle summary { grid-template-columns: minmax(0, 1fr) 30px; padding: 18px 16px; }
  .notice-toggle summary small { display: none; }
  .notice-toggle summary::after { width: 30px; height: 30px; font-size: 1.25rem; }
  .notice-toggle-content { padding: 16px; }
  .site-footer { padding: 0 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 12px; padding: 22px 22px 16px; }
  .footer-bottom { display: grid; gap: 4px; padding: 10px 22px 12px; }
  .mobile-call-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #111;
    background: #f0c95d;
    font-size: 1.35rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0,0,0,.24);
  }
  .mobile-whatsapp-button {
    position: fixed;
    right: 82px;
    bottom: 16px;
    z-index: 90;
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
    font-size: 1.35rem;
    line-height: 1;
    text-decoration: none;
  }
}

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