:root {
  --bg: #071019;
  --bg-soft: #0b1621;
  --panel: rgba(13, 22, 34, 0.82);
  --panel-strong: rgba(9, 16, 25, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(98, 145, 255, 0.34);
  --text: #eef4fb;
  --muted: #a7b5c7;
  --muted-2: #7f8da3;
  --blue: #4d7cff;
  --blue-2: #75a8ff;
  --gold: #d9b77f;
  --gold-soft: rgba(217, 183, 127, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.26);
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(77, 124, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(217, 183, 127, 0.09), transparent 18%),
    linear-gradient(180deg, #060b11 0%, #09111a 34%, #071019 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,0.5), transparent 78%);
  z-index: -1;
}

body.consent-locked {
  overflow: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(calc(100% - 42px), var(--max-width));
  margin: 0 auto;
}

.surface {
  background: linear-gradient(180deg, rgba(16, 25, 38, 0.86), rgba(9, 15, 24, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 18, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(77,124,255,0), rgba(77,124,255,0.35), rgba(217,183,127,0.28), rgba(217,183,127,0));
}

.nav-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0 12px;
}

.brand-logo-frame::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(77,124,255,0), rgba(77,124,255,0.56), rgba(217,183,127,0.3), rgba(217,183,127,0));
}

.brand-logo {
  width: clamp(214px, 17vw, 292px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.28));
}

.nav-links,
.nav-actions,
.hero-actions,
.gallery-toolbar,
.footer-links,
.consent-actions,
.map-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links {
  justify-content: center;
  min-width: 0;
  gap: 8px;
}

.nav-links a,
.cookie-link,
.filter-btn,
.eyebrow,
.section-label,
.contact-mini {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.77rem;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  outline: none;
}

.nav-links a.is-current {
  box-shadow: inset 0 0 0 1px rgba(77,124,255,0.12);
}

.nav-actions {
  justify-content: flex-end;
  min-width: 0;
}

.btn,
.filter-btn,
.menu-toggle,
.mobile-contact-bar a,
.consent-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
  cursor: pointer;
}

.btn:hover,
.filter-btn:hover,
.menu-toggle:hover,
.mobile-contact-bar a:hover,
.consent-btn:hover {
  transform: translateY(-2px);
}

.btn {
  min-height: 52px;
  padding: 13px 20px;
  font-weight: 700;
  white-space: nowrap;
}

.btn-primary,
.consent-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f63ff, #6ea5ff);
  box-shadow: 0 14px 28px rgba(47,99,255,0.24);
}

.btn-secondary,
.consent-btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.consent-btn-ghost {
  color: var(--muted);
  background: transparent;
  border-color: rgba(255,255,255,0.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 1.15rem;
  flex: 0 0 auto;
}

.nav-mobile-cta {
  display: none;
}

.hero {
  position: relative;
  padding: 44px 0 40px;
  overflow: clip;
  isolation: isolate;
}

.home-hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 9, 14, 0.94) 0%, rgba(5, 9, 14, 0.84) 35%, rgba(5, 9, 14, 0.48) 63%, rgba(5, 9, 14, 0.88) 100%),
    url("beispielbild1.jpg") center center / cover no-repeat;
}

.inner-hero::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(77,124,255,0.17), transparent 34%),
    linear-gradient(180deg, rgba(10, 18, 28, 0.92), rgba(7, 14, 21, 0.98));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 16, 25, 0), rgba(7, 16, 25, 1));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  max-width: 720px;
  padding: 34px 0 18px;
}

.inner-hero .hero-copy {
  max-width: 820px;
  padding: 20px 0 6px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0dfbf);
  box-shadow: 0 0 0 6px rgba(217, 183, 127, 0.11);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.9rem, 5.1vw, 5.3rem);
  max-width: 12ch;
}

h1 span,
.detail-label,
.section-label,
.stat-label,
.contact-mini {
  color: var(--gold);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.24rem;
}

p, li {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-copy p,
.lead {
  max-width: 62ch;
  font-size: 1.04rem;
  margin: 20px 0 0;
}

.hero-actions {
  margin-top: 28px;
}

.hero-info-row,
.detail-grid,
.stats,
.services-grid,
.list-grid,
.gallery-grid,
.about-grid,
.contact-grid,
.legal-grid,
.faq-grid,
.split-grid {
  display: grid;
  gap: 18px;
}

.hero-info-row,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-info-row {
  margin-top: 28px;
}

.info-pill,
.detail-item,
.list-item,
.faq-item,
.note,
.legal-card {
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.info-pill strong,
.detail-item strong,
.list-item strong,
.gallery-caption strong,
.faq-item h3 {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.hero-panel {
  position: relative;
  min-height: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, rgba(11,17,27,0.86), rgba(9,13,20,0.96));
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,18,0.12), rgba(8,12,18,0.58) 75%, rgba(8,12,18,0.95) 100%),
    url("beispielbild9.jpg") center center / cover no-repeat;
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 58%, rgba(255,255,255,0) 78%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 22px 36px rgba(0,0,0,0.24);
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-badge img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.hero-detail-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8,12,18,0.8), rgba(8,12,18,0.94));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.detail-label,
.section-label,
.stat-label,
.contact-mini,
.cookie-link,
.filter-btn {
  font-size: 0.73rem;
}

.detail-title {
  font-size: 1.18rem;
  font-weight: 700;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.76rem;
}

.section {
  padding: 58px 0;
}

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

.section-label {
  display: inline-block;
  margin-bottom: 10px;
}

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

.stat-card,
.service-card,
.copy-card,
.contact-card,
.legal-card,
.map-panel,
.faq-item {
  border-radius: 24px;
  min-height: 100%;
}

.stat-card {
  padding: 24px;
}

.stat-value {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

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

.service-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77,124,255,0.07), transparent 55%);
  pointer-events: none;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.split-grid,
.about-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.media-card,
.contact-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  background: #111722;
}

.media-card img,
.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.copy-card,
.contact-card,
.about-copy,
.map-panel {
  padding: 30px;
}

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

.gallery-toolbar {
  margin-bottom: 18px;
}

.filter-btn {
  padding: 10px 15px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  white-space: nowrap;
}

.filter-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(47,99,255,0.26), rgba(110,165,255,0.16));
  border-color: rgba(110,165,255,0.38);
  box-shadow: 0 12px 24px rgba(47,99,255,0.12);
}

.gallery-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
  background: #0f1722;
  cursor: pointer;
  isolation: isolate;
}

.gallery-item.large { grid-column: span 6; min-height: 360px; }
.gallery-item.tall { min-height: 430px; }
.gallery-item[hidden] { display: none !important; }

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,18,0) 0%, rgba(8,12,18,0.18) 55%, rgba(8,12,18,0.88) 100%);
  z-index: 1;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-caption span {
  color: #d6dfed;
  font-size: 0.92rem;
}

.about-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
}

.about-copy {
  display: grid;
  gap: 12px;
}

.about-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}

.about-visual img:first-child {
  grid-column: span 2;
  min-height: 320px;
}

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

.faq-item,
.legal-card {
  padding: 26px;
}

.faq-item p,
.legal-card p,
.legal-card li {
  margin-top: 10px;
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.note {
  margin-top: 16px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-rows {
  display: grid;
  gap: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row strong {
  color: var(--text);
}

.contact-row a {
  color: var(--muted);
}

.contact-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(9,13,20,0.78), rgba(9,13,20,0.94));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.map-embed-placeholder {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(13, 22, 34, 0.82), rgba(9, 16, 25, 0.96));
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

.map-embed-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(5, 9, 14, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-end;
}

.footer-brand .brand-logo-frame {
  padding: 6px 0 10px;
}

.footer-brand .brand-logo {
  width: min(235px, 56vw);
  opacity: 0.92;
}

.footer-meta {
  color: var(--muted-2);
  font-size: 0.78rem;
  max-width: 60ch;
}

.footer-links {
  justify-content: flex-end;
}

.cookie-link {
  color: var(--muted);
  font-size: 0.74rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 12px 16px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(4,7,11,0.84);
  backdrop-filter: blur(8px);
  z-index: 220;
}

.lightbox.is-open {
  display: grid;
}

.lightbox-inner {
  width: min(1080px, 100%);
  max-height: min(88vh, 860px);
  border-radius: 28px;
  overflow: hidden;
  background: #0b111a;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.lightbox-inner img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #070b11;
}

.lightbox-caption {
  padding: 18px 24px 22px;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8,12,18,0.78);
  color: #fff;
}

.mobile-contact-bar {
  display: none;
}

.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 11, 0.74);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 240;
}

.consent-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.consent-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 250;
}

.consent-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.consent-card {
  width: min(680px, 100%);
  padding: 28px;
  border-radius: 28px;
}

.consent-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.consent-card > p {
  margin-top: 0;
}

.consent-options {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.consent-option {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

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

.consent-option span {
  display: grid;
  gap: 5px;
}

.consent-option strong {
  color: var(--text);
}

.consent-actions {
  margin-top: 20px;
  justify-content: flex-end;
}

.consent-btn {
  min-height: 50px;
  padding: 12px 18px;
  font-weight: 700;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .hero-grid,
  .split-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item, .gallery-item.large { grid-column: span 6; }
  .hero-panel { min-height: 540px; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 88px; }
  .container { width: min(calc(100% - 30px), var(--max-width)); }

  .menu-toggle { display: inline-flex; }

  .nav-shell {
    grid-template-columns: auto auto;
    min-height: 76px;
    gap: 12px;
  }

  .nav-links,
  .nav-actions .btn-primary,
  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-shell.is-open {
    padding: 12px 0 16px;
  }

  .nav-shell.is-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    gap: 8px;
    background: linear-gradient(180deg, rgba(13,20,31,0.98), rgba(8,12,18,0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--shadow-md);
  }

  .nav-shell.is-open .nav-links a {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    padding: 14px 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
  }

  .nav-shell.is-open .nav-mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-shell.is-open .nav-mobile-cta .btn {
    width: 100%;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-copy,
  .inner-hero .hero-copy {
    padding-top: 10px;
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(2.45rem, 8vw, 4.2rem);
    max-width: 12ch;
  }

  .hero-info-row,
  .detail-grid,
  .list-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 0;
  }

  .section-intro {
    margin-bottom: 22px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand-logo-frame {
    padding: 7px 0 9px;
  }

  .brand-logo {
    width: min(184px, 54vw);
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .eyebrow {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  h1 {
    font-size: clamp(2.12rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .hero-copy p,
  .lead,
  p,
  li {
    font-size: 0.98rem;
  }

  .hero-actions,
  .map-actions,
  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .map-actions .btn,
  .consent-actions .consent-btn {
    width: 100%;
  }

  .stats,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .service-card,
  .copy-card,
  .contact-card,
  .faq-item,
  .legal-card,
  .map-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-panel {
    min-height: auto;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero-panel::before {
    display: none;
  }

  .hero-visual {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }

  .hero-detail-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -22px 12px 0;
    padding: 18px;
  }

  .hero-badge {
    width: 88px;
    height: 88px;
    top: 16px;
    right: 16px;
  }

  .hero-badge img {
    width: 52px;
    height: 52px;
  }

  .gallery-toolbar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .gallery-toolbar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.tall {
    grid-column: span 12;
    min-height: 250px;
  }

  .media-card {
    min-height: 320px;
  }

  .media-card img,
  .contact-visual img {
    min-height: 320px;
  }

  .about-visual {
    gap: 12px;
  }

  .about-visual img {
    min-height: 180px;
  }

  .about-visual img:first-child {
    min-height: 240px;
  }

  .contact-visual {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .contact-visual img {
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }

  .contact-overlay {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -22px 12px 0;
    padding: 18px;
  }

  .map-embed-placeholder,
  .map-embed-placeholder iframe {
    min-height: 320px;
    border-radius: 24px;
  }

  .footer {
    padding: 24px 0 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    justify-content: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-link {
    text-align: center;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 120;
  }

  .mobile-contact-bar a {
    min-height: 56px;
    font-size: 0.74rem;
    font-weight: 700;
    backdrop-filter: blur(16px);
    text-align: center;
  }

  .mobile-contact-bar a:first-child {
    color: #fff;
    background: linear-gradient(135deg, #2f63ff, #6ea5ff);
    box-shadow: 0 14px 28px rgba(47,99,255,0.24);
  }

  .mobile-contact-bar a:last-child {
    color: var(--text);
    background: rgba(10,15,23,0.92);
    border-color: rgba(255,255,255,0.08);
  }

  .consent-modal {
    align-items: end;
    padding: 12px;
  }

  .consent-card {
    width: 100%;
    padding: 20px;
    border-radius: 24px;
    max-height: min(86vh, 760px);
    overflow-y: auto;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    min-height: 72px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

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

  .hero-detail-card,
  .contact-overlay {
    margin-inline: 10px;
  }

  .detail-title {
    font-size: 1.05rem;
  }

  .footer-meta,
  .cookie-link,
  .section-label,
  .detail-label,
  .contact-mini,
  .filter-btn {
    font-size: 0.68rem;
  }

  .mobile-contact-bar {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-contact-bar a {
    min-height: 54px;
    font-size: 0.7rem;
    padding: 0 8px;
  }
}
