:root {
  --bg: #f6f6f4;
  --bg-soft: #efefec;
  --surface: #ffffff;
  --surface-2: #0f1014;
  --text: #121212;
  --text-soft: #525252;
  --line: rgba(0,0,0,.10);
  --red: #e21b3c;
  --yellow: #f0d726;
  --black: #0a0b0f;
  --white: #fff;
  --gray: #d7d7d2;
  --green: #22c55e;
  --shadow: 0 22px 60px rgba(0,0,0,.12);
  --radius: 24px;
  --radius-lg: 34px;
  --container: min(1200px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(240,215,38,.18), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(226,27,60,.12), transparent 50%),
    linear-gradient(180deg, #faf9f6 0%, #f3f2ef 100%);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.text-muted {
  color: var(--text-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34,197,94,.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.7);
  color: var(--text);
  font-weight: 650;
  transition: .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff4e45);
  color: #fff;
  border-color: transparent;
}

.btn-yellow {
  background: linear-gradient(135deg, var(--yellow), #ffe96b);
  border-color: transparent;
}

.btn-dark {
  background: var(--black);
  color: #fff;
  border-color: transparent;
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

.site-topbar {
  background: linear-gradient(90deg, #191a21, #121318);
  color: #fff;
  font-size: 14px;
}

.site-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,247,243,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.brand-copy strong {
  display: block;
  font-size: 17px;
}

.brand-copy span {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 700;
  padding: 10px 4px;
  position: relative;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-mini {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.mobile-drawer {
  display: none;
  background: rgba(248,247,243,.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.mobile-drawer nav {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  padding: 8px 0 16px;
}

.mobile-drawer a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-weight: 700;
}

.mobile-drawer.open {
  display: block;
}

.hero {
  padding: 52px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.04em;
  margin: 16px 0 12px;
}

.hero h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 22px;
}

.hero p.lead {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-soft);
  max-width: 48rem;
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
  background: #15161b;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.28));
  pointer-events: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(16,17,22,.70);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.10);
}

.hero-stat {
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.10);
  color: #fff;
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  letter-spacing: -.03em;
}

.hero-stat span {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.03em;
  line-height: 1.02;
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  max-width: 68ch;
}

.cards-3,
.cards-2 {
  display: grid;
  gap: 20px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

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

.card {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card.dark {
  background: linear-gradient(180deg,#191a20,#0e0f14);
  color: #fff;
  border-color: rgba(255,255,255,.08);
}

.card.media-card {
  padding: 0;
}

.media-card .card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.media-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.media-card:hover .card-media img {
  transform: scale(1.03);
}

.media-card .card-body {
  padding: 24px 24px 26px;
}

.icon-wrap {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: rgba(240,215,38,.22);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.icon-wrap svg,
.icon-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  fill: var(--black);
}

.service-card h3 {
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}

.service-card p {
  color: var(--text-soft);
  margin: 0 0 16px;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "↘";
  color: #08a84c;
  font-weight: 900;
}

.service-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.68);
  font-weight: 700;
  cursor: pointer;
}

.chip.active {
  background: var(--black);
  color: #fff;
  border-color: transparent;
}

.split-banner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}

.promo-box {
  border-radius: 32px;
  padding: 38px;
  background: linear-gradient(135deg, var(--red), #ff4360);
  color: #fff;
  box-shadow: var(--shadow);
}

.promo-box h3 {
  font-size: clamp(34px,4vw,56px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 14px;
}

.promo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.promo-pills a {
  padding: 16px 22px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.16);
  color: #fff;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

.gallery-grid .stack {
  display: grid;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
  display: block;
}

.gallery-item.tall {
  min-height: 580px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.38));
}

.gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #fff;
  z-index: 1;
}

.gallery-caption h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -.03em;
}

.location-card .hours {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.04);
}

.price-table {
  border-radius: 28px;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  text-align: left;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table th {
  background: rgba(0,0,0,.03);
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.72);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.faq-q span {
  transition: transform .2s ease;
  flex: 0 0 auto;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  border-top: 1px solid rgba(0,0,0,.06);
}

.faq-a .inner {
  padding: 18px 20px;
  color: var(--text-soft);
}

.faq-a .inner p {
  margin: 0 0 14px;
}

.faq-a .inner p:last-child {
  margin-bottom: 0;
}

.faq-a .inner ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

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

.news-card {
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(0,0,0,.15);
}

.news-image-link {
  display: block;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 16px;
}

.news-card .thumb {
  aspect-ratio: 16/10;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 0;
}

.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-card:hover .thumb img,
.news-image-link:hover img {
  transform: scale(1.04);
}

.news-card .meta {
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 10px;
}

.news-title-link h3 {
  transition: color .2s ease;
}

.news-title-link:hover h3 {
  color: var(--red);
}

.news-toggle {
  margin-top: auto;
  width: 100%;
  border: 0;
  background: rgba(0,0,0,.04);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s ease;
}

.news-toggle:hover {
  background: rgba(0,0,0,.08);
}

.news-toggle span {
  transition: transform .2s ease;
}

.news-card.open .news-toggle span {
  transform: rotate(45deg);
}

.news-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 14px;
}

.news-extra .inner {
  padding-top: 16px;
  color: var(--text-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.contact-card p {
  margin: 0 0 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full {
  grid-column: 1/-1;
}

label {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin: 0 0 6px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 14px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.footer-main {
  padding: 18px 0;
  background: rgba(0,0,0,.10);
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer-main .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.partnerFooter {
  background: #0d0e12;
  border-top: 4px solid var(--red);
  padding: 28px 0;
}

.partnerFooterInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.partnerFooterLogo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.partnerFooterLinks {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.partnerFooterLinks a {
  color: #bdbdbd;
  font-weight: 600;
}

.partnerFooterLinks a:hover {
  color: #fff;
}

.toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #18b574;
  color: #fff;
  border: 4px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.20);
  z-index: 70;
}

.toTop svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.cookieBanner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  justify-content: center;
}

.cookieBox {
  width: min(760px,100%);
  background: #0d0e12;
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  padding: 20px;
  border-radius: 24px;
}

.cookieActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cookieLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: #bdbdbd;
}

.hidden {
  display: none !important;
}

.page-hero {
  padding: 44px 0 18px;
}

.page-hero-box {
  background: linear-gradient(135deg, #15161d, #0a0a0d);
  color: #fff;
  border-radius: 34px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-hero-box.yellow {
  background: linear-gradient(135deg, var(--yellow), #f4de46);
  color: #111;
}

.page-hero-box.red {
  background: linear-gradient(135deg, var(--red), #ff4562);
  color: #fff;
}

.page-hero-box::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.page-hero h1 {
  font-size: clamp(38px,5vw,70px);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 12px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 10px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.content-box {
  background: rgba(255,255,255,.74);
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,.08);
  padding: 22px;
  box-shadow: var(--shadow);
}

.sticky-box {
  position: sticky;
  top: 110px;
}

.embed-box {
  padding: 0;
  overflow: hidden;
}

.embed-box iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

.note-box {
  background: #fff5b1;
  border: 1px solid rgba(0,0,0,.08);
  padding: 16px 18px;
  border-radius: 20px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.gallery-strip .gallery-item {
  min-height: 220px;
}

.legal-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 24px 0 10px;
}

.legal-card h3 {
  font-size: 20px;
  margin: 18px 0 8px;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
}

.small-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-soft);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: 14px 4px 18px;
  font-weight: 700;
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: scaleX(1);
}

.mega-dropdown {
  position: relative;
}

.mega-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-45%);
  width: min(1075px, 92vw);
  background: #f3f3f1;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  padding: 28px 34px;
  z-index: 1000;
  grid-template-columns: 1.2fr 1.2fr .8fr;
  gap: 46px;
  align-items: start;
}

.mega-dropdown:hover .mega-menu,
.mega-menu:hover {
  display: grid;
}

.mega-column h4 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #555;
}

.mega-column a {
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
  color: #222;
  font-size: 16px;
  line-height: 1.35;
  white-space: normal;
  transition: color .2s ease;
}

.mega-column a:hover {
  color: #f05a28;
}

.mega-column a:last-child {
  margin-bottom: 0;
}

.side-image {
  width: 100%;
  margin-top: 20px;
  border-radius: 18px;
  filter: brightness(0.8);
}

.card.dark .feature-list li {
  color: rgba(255,255,255,0.85);
}

.card.dark .feature-list li::before {
  color: #22c55e;
}

.service-image {
  width: 100%;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side-photo {
  width: 100%;
  margin-top: 20px;
  border-radius: 20px;
  filter: brightness(.85);
}

.mobile-accordion {
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.mobile-accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-accordion-head > a {
  flex: 1;
  padding: 14px 0;
  border-bottom: 0;
  font-weight: 700;
}

.mobile-accordion-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease;
}

.mobile-accordion-body {
  display: none;
  padding: 0 0 10px 14px;
}

.mobile-accordion-body a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-weight: 600;
  font-size: 15px;
}

.mobile-accordion.open .mobile-accordion-body {
  display: block;
}

.mobile-accordion.open .mobile-accordion-toggle {
  transform: rotate(180deg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}



@media (max-width: 1100px) {
  .hero-grid,
  .split-banner,
  .gallery-grid,
  .content-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall {
    min-height: 320px;
  }

  .cards-3,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 800px) {
  .site-header .container {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
    gap: 12px;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 15px;
    line-height: 1.2;
  }

  .brand-copy span {
    font-size: 12px;
    line-height: 1.3;
  }

  .nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn,
  .header-actions .partner-mini {
    display: none;
  }

  .hamburger {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .cards-3,
  .cards-2,
  .news-grid,
  .gallery-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: static;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .partnerFooterInner,
  .footer-main .container,
  .site-topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Fix: Ratgeber-Karten sollen sich unabhängig öffnen */
.news-grid {
  align-items: start;
}

.news-card {
  height: auto;
  align-self: start;
}