:root {
  --bg: #0f1419;
  --bg-soft: #171d24;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f6f8;
  --muted: #c2c8d1;
  --dark-text: #1f2328;
  --light-bg: #f3f4f6;
  --accent: #c9782d;
  --accent-soft: #e8b37f;
  --ok: #45b36b;
  --error: #da4f4f;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  --max: 1200px;
  --header-h: 96px;
}

* {
  box-sizing: border-box;
}

/* Prevent horizontal overflow on all pages */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 120, 45, 0.18), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(94, 120, 145, 0.2), transparent 48%),
    linear-gradient(135deg, #0d1117 0%, #121922 45%, #1c2631 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section.light {
  background: var(--light-bg);
  color: var(--dark-text);
}

.section-title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.2;
}

.section-intro {
  margin: 0 0 2.3rem;
  max-width: 700px;
  color: var(--muted);
}

.section.light .section-intro,
.section.light .meta {
  color: #4d5560;
}

.meta {
  color: var(--accent-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.8rem 1rem;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 20, 0.82);
  transition: transform 0.3s ease;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-name {
  color: #c9782d;
  font-weight: 800;
  display: block;
}

.brand-service {
  color: #fff;
  font-weight: 400;
  font-size: 0.85em;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(232, 179, 127, 0.35);
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(201, 120, 45, 0.16);
  border-color: rgba(232, 179, 127, 0.42);
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

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

.site-nav a {
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(201, 120, 45, 0.2);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, #d7965f 100%);
  color: #111;
  box-shadow: 0 10px 30px rgba(201, 120, 45, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* 2. i svaki sljedeći btn-primary u grupi → bijeli/outline */
.btn-primary + .btn-primary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: none;
}

.btn-primary + .btn-primary:hover {
  background: var(--accent);
  color: #111;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 5.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero-copy p {
  margin: 1rem 0 1.8rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 320px;
  max-height: 530px;
  object-fit: cover;
}

.hero-badge {
  display: block;
  margin-top: 0.65rem;
  padding: 0.45rem 0.75rem;
  background: rgba(10, 14, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  text-align: center;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
}

.section.light .card {
  background: #fff;
  border: 1px solid #e2e6eb;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.section.light .card p {
  color: #4a5561;
}

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

.trust-item {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.before-after-shell {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.slider-buttons {
  display: flex;
  gap: 0.45rem;
}

.slider-btn {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.before-after-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.comparison-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  scroll-snap-align: center;
  min-height: 320px;
}

.comparison-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-labels,
.comparison-labels-top {
  position: absolute;
  inset: 0.8rem 0.8rem auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.pill {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.slider-dots button.active {
  width: 24px;
  background: var(--accent-soft);
}

.owner-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.8rem;
  align-items: center;
}

.owner-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.contact-strip {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
}

.contact-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: relative;
  z-index: 1;
  padding: 2rem;
  min-height: 260px;
  background: linear-gradient(120deg, rgba(11, 18, 24, 0.86), rgba(11, 18, 24, 0.45));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.page-hero {
  padding: 4rem 0 3rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  color: var(--muted);
  max-width: 70ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
}

.info-stack {
  display: grid;
  gap: 0.8rem;
}

.info-box {
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.form-shell {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

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

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 10, 14, 0.3);
  color: #fff;
  padding: 0.72rem 0.75rem;
  font: inherit;
}

.section.light input,
.section.light select,
.section.light textarea {
  border-color: #c9d0d7;
  background: #fff;
  color: #1f2328;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.form-message {
  margin-top: 0.75rem;
  font-weight: 600;
}

.form-message.success {
  color: var(--ok);
}

.form-message.error {
  color: var(--error);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b1117;
  padding: 3.2rem 0 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7fb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.social-link-icon:hover,
.social-link-icon:focus-visible {
  transform: translateY(-2px);
  background: rgba(201, 120, 45, 0.24);
  border-color: rgba(232, 179, 127, 0.75);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.footer-address {
  margin: 0.75rem 0 0.55rem;
  color: #c7cfda;
  line-height: 1.55;
}

small,
.copyright {
  color: #95a0ad;
}

.site-credit {
  margin-top: 0.4rem;
  color: #95a0ad;
  font-size: 0.9rem;
}

.site-credit a {
  color: #f0c18d;
  font-weight: 600;
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: #ffe0bd;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  color: #1f2328;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  padding: 1rem;
  z-index: 110;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.cookie-head img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 7px;
}

.cookie-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1rem;
}

.cookie-banner .btn-secondary {
  background: #f0f2f5;
  color: #1f2328;
  border: 1px solid #d0d5dd;
}

.cookie-banner .btn-secondary:hover {
  background: #e1e5ea;
}

.cookie-banner [data-cookie-settings] {
  background: transparent;
  color: #5b6571;
  border: 1px solid #d0d5dd;
  font-weight: 500;
}

.cookie-banner [data-cookie-settings]:hover {
  color: #1f2328;
  background: #f0f2f5;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.52);
  z-index: 120;
}

.cookie-modal.open {
  display: grid;
}

.cookie-dialog {
  width: min(92vw, 540px);
  background: #fff;
  color: #1f2328;
  border-radius: 16px;
  padding: 1.2rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-top: 1px solid #e1e5ea;
}

.cookie-option strong {
  font-size: 0.95rem;
}

.cookie-option small {
  display: block;
  color: #5b6571;
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
}

.home-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.9), rgba(8, 12, 18, 0.72));
}

.home-page .header-inner {
  gap: 1.6rem;
}

.home-page .brand {
  gap: 0.8rem;
}

.home-page .brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.015em;
}

.home-page .site-nav {
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .site-nav a {
  padding: 0.62rem 1rem;
  color: #d8dde6;
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-page .site-nav a.active {
  background: linear-gradient(120deg, rgba(201, 120, 45, 0.3), rgba(215, 150, 95, 0.2));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-page .section {
  padding: 6rem 0;
}

.home-page .hero {
  position: relative;
  padding: clamp(2.8rem, 7vw, 5.8rem) 0 5.8rem;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 6% 52% auto -5%;
  height: 340px;
  background: radial-gradient(circle at center, rgba(201, 120, 45, 0.24), transparent 70%);
  pointer-events: none;
}

.home-page .hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.8rem, 3vw, 3rem);
}

.home-page .hero-copy h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.55rem);
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.home-page .hero-copy p {
  margin: 1.2rem 0 2rem;
  max-width: 58ch;
}

.home-page .hero-media {
  padding: 0.8rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.35);
}

.home-page .hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.home-page .hero-badge {
  left: 1.35rem;
  bottom: 1.35rem;
  backdrop-filter: blur(8px);
}

.home-page .cards.services {
  gap: 1.2rem;
}

.home-page .card {
  padding: 0.9rem 0.9rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-page .card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 179, 127, 0.45);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.3);
}

.home-page .card img {
  height: 220px;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1rem;
}

.home-page .card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

.home-page .card p {
  line-height: 1.55;
}

.home-page .section-editorial {
  position: relative;
}

.home-page .section-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-page .section-editorial .owner-grid {
  gap: 2.3rem;
}

.home-page .section-editorial .owner-grid > div:first-child {
  border-radius: 22px;
  padding: 0.7rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-page .section-editorial .owner-grid > div:first-child img {
  border-radius: 15px;
  object-position: center 45%;
}

/* ── Video section ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.video-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-card video {
  width: 100%;
  height: 340px;
  aspect-ratio: unset;
  object-fit: cover;
  background: #000;
  display: block;
  border-radius: var(--radius);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.32);
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: var(--radius);
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.18);
}

.video-play-btn.hidden {
  display: none;
}

.play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #0a0e14;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: width 0.2s ease, height 0.2s ease, font-size 0.2s ease;
}

.video-play-btn:hover .play-icon {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
}

.video-card figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
}

/* ── Video modal ── */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal-overlay.open {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-modal-inner video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 0;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
}

@media (max-width: 760px) {
  .video-grid {
    grid-template-columns: unset;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }

  .video-grid::-webkit-scrollbar {
    display: none;
  }

  .video-grid .video-card {
    flex: 0 0 78vw;
    scroll-snap-align: center;
  }

  .video-grid .video-card:last-child {
    grid-column: unset;
    max-width: unset;
    margin-inline: unset;
  }

  .video-card video {
    aspect-ratio: unset;
    height: 280px;
  }
}

.home-page #warum-wir {
    radial-gradient(circle at 20% 0%, rgba(201, 120, 45, 0.09), transparent 34%),
    linear-gradient(180deg, #eff1f4 0%, #e8ecf1 100%);
}

.home-page #warum-wir .section-title {
  color: #161b22;
}

.home-page #warum-wir .trust-grid {
  gap: 1.05rem;
}

.home-page #warum-wir .trust-item {
  position: relative;
  background: #ffffff;
  border: 1px solid #dce3eb;
  box-shadow: 0 10px 22px rgba(18, 24, 31, 0.08);
  padding: 1.25rem 1.2rem;
}

.home-page #warum-wir .trust-item::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.15rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.home-page #warum-wir .trust-item strong {
  display: block;
  color: #171d24;
  font-size: 1.02rem;
  padding-left: 0.9rem;
}

.home-page #warum-wir .trust-item p {
  margin: 0.45rem 0 0;
  color: #556070;
}

}

/* ── Before / After new grid ── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.ba-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.ba-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ba-cell {
  flex: 1;
  overflow: hidden;
  min-height: 120px;
}

.ba-cell-full {
  flex: 1 1 100%;
}

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

.ba-pill {
  position: absolute;
  bottom: 0.55rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  pointer-events: none;
  z-index: 2;
}

.ba-pill-before {
  left: 0.55rem;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.ba-pill-after {
  right: 0.55rem;
  background: var(--accent);
  color: #fff;
}

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

  .ba-card {
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
  }

  .ba-cell {
    min-height: 160px;
  }
}

.home-page .before-after-shell {
  padding: 1.2rem;
  border-radius: 22px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
}

.home-page .comparison-card {
  min-height: 360px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .comparison-card:hover,
.home-page .comparison-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.home-page .comparison-card:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  place-items: stretch;
  background: rgba(4, 7, 11, 0.9);
  backdrop-filter: blur(5px);
  padding: 0;
}

.gallery-modal.open {
  display: grid;
}

.gallery-dialog {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(165deg, rgba(19, 27, 36, 0.96), rgba(10, 15, 21, 0.95));
  border: 0;
  border-radius: 0;
  padding: 1.15rem;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  gap: 0.6rem;
  align-items: center;
}

.gallery-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  max-height: calc(100vh - 2.3rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gallery-figure img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 2.3rem);
  object-fit: contain;
  object-position: center;
  background: #0a0f15;
}

.gallery-caption {
  position: absolute;
  inset: 1rem auto auto 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.gallery-close,
.gallery-nav {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 4;
}

.gallery-nav {
  width: 54px;
  height: 54px;
  font-size: 1.25rem;
  z-index: 3;
}

.gallery-close:hover,
.gallery-nav:hover {
  background: rgba(232, 179, 127, 0.26);
  transform: translateY(-1px);
}

.home-page .owner-photo-frame {
  border-radius: 22px;
  padding: 0.85rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.76), rgba(232, 238, 245, 0.95));
  border: 1px solid rgba(152, 163, 176, 0.38);
  box-shadow: 0 20px 34px rgba(20, 28, 37, 0.12);
}

.home-page .owner-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.home-page .contact-strip {
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
}

.home-page .contact-overlay {
  min-height: 310px;
  background: linear-gradient(92deg, rgba(8, 12, 18, 0.87) 0%, rgba(8, 12, 18, 0.7) 46%, rgba(8, 12, 18, 0.35) 100%);
}

.home-page .contact-overlay-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 1.2rem;
}

.home-page .contact-copy p {
  margin-top: 0.4rem;
  max-width: 56ch;
}

.home-page .contact-actions-right {
  justify-content: flex-end;
  flex-direction: column;
  align-items: stretch;
  max-width: 280px;
  margin-left: auto;
}

.home-page .contact-actions-right .btn {
  width: 100%;
}

.home-page .site-footer {
  padding: 3.6rem 0 2.4rem;
  background: linear-gradient(180deg, #0a1118 0%, #0a0f14 100%);
}

.home-page .footer-grid {
  gap: 1.6rem;
}

.home-page .footer-grid > div strong {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #f0f4f8;
}

.home-page .footer-links {
  gap: 0.62rem;
}

.sub-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(13px);
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.9), rgba(8, 12, 18, 0.74));
}

.sub-page .header-inner {
  gap: 1.5rem;
}

.sub-page .site-nav {
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-page .site-nav a {
  padding: 0.62rem 1rem;
  color: #d8dde6;
}

.sub-page .site-nav a:hover,
.sub-page .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.sub-page .site-nav a.active {
  background: linear-gradient(120deg, rgba(201, 120, 45, 0.3), rgba(215, 150, 95, 0.2));
  color: #fff;
}

.sub-page .page-hero {
  padding: 4.8rem 0 3.2rem;
  background:
    radial-gradient(circle at 10% 5%, rgba(201, 120, 45, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(16, 22, 30, 0.96), rgba(16, 22, 30, 0));
}

.sub-page .page-hero h1 {
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.sub-page .page-hero p {
  max-width: 64ch;
}

.sub-page .section {
  padding: 5.6rem 0;
}

.sub-page .card {
  padding: 0.9rem 0.9rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sub-page .card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 179, 127, 0.45);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.3);
}

.sub-page .cards.services {
  gap: 1.2rem;
}

.sub-page .cards.services .card img {
  height: 220px;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1rem;
}

.sub-page .owner-grid {
  gap: 2.2rem;
}

.sub-page .owner-grid img {
  object-position: center center;
}

.about-page .owner-photo-frame {
  border-radius: 22px;
  padding: 0.85rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.72), rgba(232, 238, 245, 0.94));
  border: 1px solid rgba(152, 163, 176, 0.38);
  box-shadow: 0 20px 34px rgba(20, 28, 37, 0.12);
}

.about-page .owner-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.sub-page .trust-item {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dce3eb;
  box-shadow: 0 10px 22px rgba(18, 24, 31, 0.08);
  color: #283240;
}

.sub-page .trust-item::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.15rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.sub-page .trust-item strong {
  display: block;
  padding-left: 0.9rem;
}

.contact-page .page-hero h1 {
  max-width: 19ch;
}

.contact-page .contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-page .contact-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-page .info-box {
  padding: 1rem 1rem 0.95rem;
  min-height: 138px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.contact-page .info-box h3 {
  margin: 0 0 0.35rem;
}

.contact-page .info-box p {
  margin: 0;
  color: #d4dbe4;
}

.contact-page .contact-form-premium {
  padding: 1.45rem;
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.24);
}

.contact-page .contact-form-premium h2 {
  margin-top: 0;
}

.contact-page .contact-form-premium small {
  display: block;
  margin-top: 0.9rem;
  color: #bcc5d2;
}

.legal-page .legal-content {
  max-width: 940px;
}

.legal-page .legal-card {
  border-radius: 15px;
  padding: 1.15rem;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 1.4rem;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  border-radius: 18px;
  padding: 1.25rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.legal-summary h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-summary p {
  margin: 0;
  color: #d8dde5;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.1rem;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5f7fa;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(201, 120, 45, 0.2);
  border-color: rgba(232, 179, 127, 0.56);
}

.legal-note {
  margin-top: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(6, 10, 15, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
}

.legal-note p {
  color: #c4ccd6;
}

.legal-page .legal-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  color: #f5f7fa;
}

.legal-page .legal-card p,
.legal-page .legal-card li {
  color: #d3dae3;
  line-height: 1.65;
}

.legal-page .legal-card a {
  color: #f0c18d;
}

.legal-page .legal-card a:hover {
  color: #ffe0bd;
}

.sub-page .site-footer {
  padding: 3.5rem 0 2.4rem;
  background: linear-gradient(180deg, #0a1118 0%, #0a0f14 100%);
}

.sub-page .footer-grid {
  gap: 1.55rem;
  align-items: start;
}

.sub-page .footer-grid > div strong {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #f0f4f8;
}

@media (max-width: 1024px) {
  .cards.services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .contact-overlay-split {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-layout {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

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

  .home-page .contact-actions-right {
    margin-left: 0;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .home-page .contact-actions-right .btn {
    width: auto;
  }

  .gallery-dialog {
    grid-template-columns: 56px 1fr 56px;
  }

  .hero-grid,
  .owner-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.4rem 0;
  }

  .header-inner {
    width: min(100% - 1.25rem, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    top: calc(100% + 0.5rem);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.98), rgba(14, 20, 28, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    border-radius: 10px;
    padding: 0.92rem 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
  }

  .cards.services,
  .trust-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 2.9rem 0 calc(2rem + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 1.3rem;
  }

  .footer-grid > div {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-address {
    margin: 0.55rem 0 0.5rem;
    font-size: 0.95rem;
  }

  .footer-links {
    gap: 0.7rem;
  }

  .social-links {
    justify-content: flex-start;
    gap: 0.7rem;
  }

  .social-link-icon {
    width: 44px;
    height: 44px;
  }

  .before-after-track {
    grid-auto-columns: 88%;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .home-page .site-nav {
    border-radius: 14px;
    padding: 0.6rem;
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.97), rgba(17, 24, 32, 0.95));
  }

  .sub-page .site-nav {
    border-radius: 14px;
    padding: 0.6rem;
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.97), rgba(17, 24, 32, 0.95));
  }

  .home-page .site-nav a,
  .sub-page .site-nav a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .home-page .section {
    padding: 4.8rem 0;
  }

  .home-page .hero::before {
    inset: 8% 20% auto -25%;
    height: 300px;
  }

  .home-page .hero-media {
    padding: 0.6rem;
  }

  .home-page .before-after-track {
    grid-auto-columns: 90%;
  }

  .gallery-modal {
    padding: 0;
  }

  .gallery-dialog {
    width: 100vw;
    height: 100vh;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: max(0.65rem, env(safe-area-inset-top)) 0.65rem max(0.75rem, env(safe-area-inset-bottom));
    align-items: stretch;
  }

  .gallery-figure {
    max-height: calc(100vh - 1.4rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    border-radius: 16px;
  }

  .gallery-figure img {
    max-height: calc(100vh - 1.4rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .gallery-caption {
    inset: 0.85rem auto auto 0.85rem;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .gallery-caption .pill,
  .comparison-labels .pill {
    font-size: 0.74rem;
    padding: 0.32rem 0.52rem;
  }

  .gallery-nav {
    position: absolute;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    z-index: 3;
    width: 52px;
    height: 52px;
    background: rgba(9, 14, 20, 0.82);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .gallery-nav.prev {
    left: 0.95rem;
  }

  .gallery-nav.next {
    right: 0.95rem;
  }

  .gallery-close {
    top: calc(0.7rem + env(safe-area-inset-top));
    right: 0.7rem;
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
    background: rgba(9, 14, 20, 0.82);
    backdrop-filter: blur(8px);
  }

  .home-page .owner-photo {
    object-position: center top;
  }

  .home-page .contact-strip {
    min-height: 0;
  }

  .home-page .contact-overlay {
    min-height: 0;
    padding: 1.35rem;
  }

  .home-page .contact-overlay-split {
    gap: 1rem;
  }

  .home-page .contact-copy .section-title {
    font-size: clamp(1.6rem, 6.4vw, 2.1rem);
  }

  .home-page .contact-copy p {
    margin-bottom: 0;
  }

  .contact-page .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-form-premium {
    order: -1;
  }

  .contact-page .info-box {
    min-height: 0;
  }

  .about-page .owner-photo {
    object-position: center top;
  }

  .hero-copy p,
  .section-intro {
    max-width: none;
  }
}
/* =====================================================
   MOBILE  ≤ 760 px  — FULL PREMIUM OVERHAUL
   ===================================================== */

@media (max-width: 760px) {

  /* ── Hide brand name on mobile, keep only logo ── */
  .brand strong {
    display: none;
  }

  /* ── Layout foundations ── */
  .section {
    padding: 3.6rem 0;
  }

  .container {
    width: min(100% - 2rem, var(--max));
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  /* ── Header ── */
  .header-inner {
    width: min(100% - 1.25rem, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    top: calc(100% + 0.5rem);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.98), rgba(14, 20, 28, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 100;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    border-radius: 10px;
    padding: 0.92rem 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 1rem;
  }

  .home-page .site-nav,
  .sub-page .site-nav {
    border-radius: 14px;
    padding: 0.6rem;
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.97), rgba(17, 24, 32, 0.95));
  }

  .home-page .site-nav a,
  .sub-page .site-nav a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  /* ── Home hero: full-bleed image with overlay copy ── */
  .home-page .hero {
    padding: 0;
    position: relative;
  }

  .home-page .hero::before {
    display: none;
  }

  .home-page .hero-grid {
    display: block;
    position: relative;
  }

  /* Image fills the full width, tall cinematic crop */
  .home-page .hero-media {
    padding: 0;
    border-radius: 0;
    border: none;
    background: none;
    box-shadow: none;
    width: 100%;
  }

  .home-page .hero-media img {
    width: 100%;
    min-height: 70vw;
    max-height: none;
    height: clamp(280px, 80vw, 480px);
    object-fit: cover;
    object-position: center 25%;
    border-radius: 0;
    display: block;
  }

  .home-page .hero-badge {
    display: none;
  }

  /* Copy sits below the image with generous padding */
  .home-page .hero-copy {
    padding: 1.8rem 1.2rem 2rem;
    background: linear-gradient(180deg, rgba(14, 20, 28, 0.0), rgba(14, 20, 28, 0.0));
  }

  .home-page .hero-copy .meta {
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.15;
    max-width: none;
    margin: 0 0 0.9rem;
  }

  .home-page .hero-copy p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 1.6rem;
    max-width: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    justify-content: center;
    min-height: 52px;
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  /* ── Home sections general ── */
  .home-page .section {
    padding: 3.6rem 0;
  }

  /* ── Service cards: 2-column grid on mobile ── */
  .cards.services,
  .home-page .cards.services {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .home-page .card {
    padding: 0.7rem 0.7rem 0.9rem;
  }

  .home-page .card img,
  .sub-page .cards.services .card img {
    height: 170px;
    margin-bottom: 0.65rem;
    border-radius: 10px;
  }

  .home-page .card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .home-page .card p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--muted);
  }

  /* ── Editorial / problem section ── */
  .home-page .section-editorial .owner-grid {
    display: block;
    gap: 0;
  }

  .home-page .section-editorial .owner-grid > div:first-child {
    border-radius: 16px;
    padding: 0.5rem;
    margin-bottom: 1.4rem;
  }

  .home-page .section-editorial .owner-grid > div:first-child img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* ── Warum wir / trust grid ── */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .home-page #warum-wir .trust-item {
    padding: 1rem 0.9rem 1rem 1rem;
  }

  .home-page #warum-wir .trust-item strong {
    font-size: 0.92rem;
  }

  .home-page #warum-wir .trust-item p {
    font-size: 0.82rem;
  }

  /* ── Before/after gallery ── */
  .home-page .before-after-track {
    grid-auto-columns: 82%;
  }

  /* ── Owner teaser section ── */
  .home-page .owner-photo-frame {
    border-radius: 16px;
    padding: 0.6rem;
    margin-bottom: 1.4rem;
  }

  .home-page .owner-photo {
    object-position: center top;
  }

  /* ── Contact strip ── */
  .home-page .contact-strip {
    min-height: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .home-page .contact-overlay {
    min-height: 0;
    padding: 1.6rem 1.2rem;
    background: linear-gradient(180deg, rgba(6, 10, 16, 0.92), rgba(6, 10, 16, 0.75));
  }

  .home-page .contact-overlay-split {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .home-page .contact-copy .section-title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .home-page .contact-copy p {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .home-page .contact-actions-right {
    width: 100%;
    gap: 0.65rem;
    margin-left: 0;
    max-width: none;
  }

  .home-page .contact-actions-right .btn {
    width: 100%;
    min-height: 52px;
    font-size: 0.97rem;
  }

  /* ── Form grid ── */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .site-footer {
    padding: 2.8rem 0 calc(1.8rem + env(safe-area-inset-bottom));
  }

  .footer-grid > div {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-address {
    margin: 0.55rem 0 0.5rem;
    font-size: 0.95rem;
  }

  .footer-links {
    gap: 0.7rem;
  }

  .social-links {
    justify-content: flex-start;
    gap: 0.7rem;
  }

  .social-link-icon {
    width: 46px;
    height: 46px;
  }

  /* ── Section intro text ── */
  .section-intro {
    font-size: 1rem;
    max-width: none;
  }

  .hero-copy p {
    max-width: none;
  }

  /* ── Lightbox / gallery ── */
  .gallery-modal {
    padding: 0;
  }

  .gallery-dialog {
    width: 100vw;
    height: 100vh;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: max(0.65rem, env(safe-area-inset-top)) 0.65rem max(0.75rem, env(safe-area-inset-bottom));
    align-items: stretch;
  }

  .gallery-figure {
    max-height: calc(100vh - 1.4rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    border-radius: 16px;
  }

  .gallery-figure img {
    max-height: calc(100vh - 1.4rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .gallery-caption {
    inset: 0.85rem auto auto 0.85rem;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .gallery-caption .pill,
  .comparison-labels .pill {
    font-size: 0.74rem;
    padding: 0.32rem 0.52rem;
  }

  .gallery-nav {
    position: absolute;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    z-index: 3;
    width: 52px;
    height: 52px;
    background: rgba(9, 14, 20, 0.82);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .gallery-nav.prev {
    left: 0.95rem;
  }

  .gallery-nav.next {
    right: 0.95rem;
  }

  .gallery-close {
    top: calc(0.7rem + env(safe-area-inset-top));
    right: 0.7rem;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    background: rgba(9, 14, 20, 0.82);
    backdrop-filter: blur(8px);
  }

  /* ── Sub-pages ── */
  .contact-page .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .info-box {
    min-height: 0;
  }

  .about-page .owner-photo {
    object-position: center top;
  }

  .sub-page .page-hero {
    padding: 2.8rem 0 2rem;
  }

  .sub-page .page-hero h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
    max-width: none;
  }

  .sub-page .page-hero p {
    font-size: 1rem;
    max-width: none;
  }

  /* Legal pages */
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .legal-page .legal-card {
    padding: 1.1rem;
  }
}
@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;
  }
}
