:root {
  --c-dark: #1c2029;
  --c-dark-2: #262b36;
  --c-bg: #f3efe4;
  --c-bg-2: #eae3d1;
  --c-ink: #23262d;
  --c-ink-soft: #6b6a63;
  --c-accent: #3c4a33;
  --c-line: rgba(35, 38, 45, 0.12);
  --c-line-dark: rgba(243, 239, 228, 0.16);
  --shadow-1: 0 10px 28px rgba(28, 32, 41, 0.1);
  --shadow-2: 0 20px 50px rgba(28, 32, 41, 0.2);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--c-bg);
  color: var(--c-ink);
  overflow-x: hidden;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-accent);
}

/* ============================================================
   TOPBAR + NAV (dunkel, wie Vorlage)
   ============================================================ */
.topbar {
  background: var(--c-dark-2);
  color: #cfc9b8;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.topbar-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #f3efe4;
}
.topbar-right {
  display: flex;
  gap: 20px;
  opacity: 0.85;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--c-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.nav-logo img {
  width: 100px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: #e3ddc9;
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s var(--ease);
  text-transform: uppercase;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #fff;
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.btn-primary {
  background: #f3efe4;
  color: var(--c-dark);
  box-shadow: var(--shadow-1);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.btn-outline {
  background: transparent;
  color: #f3efe4;
  border-color: #f3efe4;
}
.btn-outline:hover {
  background: rgba(243, 239, 228, 0.12);
  transform: translateY(-2px);
}
.btn-outline.on-light {
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn-outline.on-light:hover {
  background: rgba(35, 38, 45, 0.06);
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.nav-call-mobile {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3efe4;
  color: var(--c-dark);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--c-line-dark);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f3efe4;
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  background: var(--c-dark);
  z-index: 190;
  padding-top: 110px;
  padding-bottom: 36px;
  max-height: 100vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  font-size: 19px;
  font-weight: 700;
  padding: 15px 4px;
  border-bottom: 1px solid var(--c-line-dark);
  color: #f3efe4;
}
.mobile-menu .mm-cta {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
body.menu-open {
  overflow: hidden;
}

/* ============================================================
   HERO — großes Foto mit Verlauf, Text links
   ============================================================ */
.hero {
  padding: 28px 0 0;
  background: var(--c-bg);
}
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-2);
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(28, 32, 41, 0.88) 0%,
      rgba(28, 32, 41, 0.55) 45%,
      rgba(28, 32, 41, 0.15) 100%
    ),
    repeating-linear-gradient(120deg, #d8cfb8 0 3px, #e6ddc6 3px 46px);
  background-size: cover;
}
.hero-photo-bg::after {
  content: "Platz für Ihr Projektfoto";
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 48px;
  color: #fff;
}
.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  margin: 16px 0 20px;
}
.hero-sub {
  font-size: 16.5px;
  line-height: 1.7;
  color: #dcd6c4;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.hero-play:hover {
  background: #fff;
  color: var(--c-dark);
  transform: scale(1.06);
}
.hero-thumbs {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-thumb {
  width: 64px;
  height: 44px;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  border: 2px solid rgba(255, 255, 255, 0.6);
  background-size: cover;
  background-position: center;
}

/* ============================================================
   SECTION shared
   ============================================================ */
.section {
  padding: 92px 0;
}
.section-alt {
  background: var(--c-bg-2);
}
.section-head {
  max-width: 620px;
  margin-bottom: 46px;
}
.section-title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.2;
  margin-top: 10px;
}
.section-desc {
  font-size: 16px;
  color: var(--c-ink-soft);
  line-height: 1.75;
  margin-top: 10px;
}
.section-foot-link {
  margin-top: 40px;
  text-align: center;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   "Wir sind spezialisiert" split + Portraitkarten
   ============================================================ */
.split-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.portrait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portrait-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-1);
}
.portrait-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-card:nth-child(2) {
  margin-top: 34px;
}
.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 32, 41, 0.85) 0%, transparent 55%);
}
.portrait-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px;
  color: #fff;
}
.portrait-body .t {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}

/* ============================================================
   LEISTUNGEN — 3 Karten mit Icon
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-1);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--c-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.svc-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 10px;
}
.svc-card p {
  font-size: 14.5px;
  color: var(--c-ink-soft);
  line-height: 1.65;
  margin: 0 0 16px;
}
.svc-card a {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-accent);
}

/* ============================================================
   Galerie + Fortschrittsbalken
   ============================================================ */
.gallery-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gallery-grid img {
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  object-fit: cover;
  height: 100%;
}
.gallery-grid .g1 {
  grid-row: 1 / 3;
  height: 100%;
}
.progress-item {
  margin-bottom: 22px;
}
.progress-item:last-child {
  margin-bottom: 0;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.progress-track {
  height: 6px;
  border-radius: 4px;
  background: var(--c-line);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--c-dark);
  width: 0;
  transition: width 1.2s var(--ease);
}

/* ============================================================
   Dunkles CTA-Band
   ============================================================ */
.cta-band {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 24px;
  min-height: 340px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-2);
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: url(../Photos/living-room-with-large-tv-large-window-with-city-view-background.jpg);
  background-size: cover;
}
.cta-band-content {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  max-width: 520px;
  color: #fff;
}
.cta-badge {
  display: inline-block;
  background: var(--c-accent);
  color: #f3efe4;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.cta-band-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 14px;
}
.cta-band-content p {
  font-size: 15.5px;
  color: #d9d3c1;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* ============================================================
   ERFOLGE / STATS
   ============================================================ */
.stats-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-1);
}
.stat-card .ic {
  font-size: 22px;
  margin-bottom: 10px;
}
.stat-card .num {
  font-size: 34px;
  font-weight: 800;
  color: var(--c-ink);
}
.stat-card .lbl {
  font-size: 13.5px;
  color: var(--c-ink-soft);
  margin-top: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-1);
}
.testi-card p {
  font-size: 14.5px;
  color: var(--c-ink-soft);
  line-height: 1.7;
  margin: 0 0 18px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-dark);
  color: #f3efe4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex: none;
}
.testi-person .n {
  font-weight: 800;
  font-size: 14.5px;
}
.testi-person .r {
  font-size: 12.5px;
  color: var(--c-ink-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-dark);
  color: #cfc9b8;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-line-dark);
}
.footer-brand .nav-logo {
  color: #fff;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #a9a394;
  max-width: 280px;
}
.footer h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 18px;
  color: #fff;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 14.5px;
  color: #b9b2a0;
  transition: color 0.25s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #f3efe4;
  transition:
    background 0.25s,
    transform 0.25s;
}
.footer-social a:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--c-line-dark);
  background: var(--c-dark-2);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.newsletter-form input::placeholder {
  color: #8f8b7c;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  font-size: 12.5px;
  color: #8f8b7c;
}

/* ============================================================
   Inner page hero
   ============================================================ */
.page-hero {
  padding: 58px 0 50px;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-line);
}
.page-hero h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 800;
  margin: 12px 0 10px;
  color: var(--c-ink);
}
.page-hero p {
  color: var(--c-ink-soft);
  font-size: 16px;
  max-width: 600px;
}

/* Legacy Leistungen-Karten (Unterseite) */
.leist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.leist-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  transition:
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.leist-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-4px);
}
.leist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease);
}
.leist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(28, 32, 41, 0.86) 0%,
    rgba(28, 32, 41, 0.1) 60%,
    transparent 100%
  );
  z-index: 1;
}
.leist-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}
.leist-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.leist-name {
  font-size: 18px;
  font-weight: 800;
}
.leist-line {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.6;
  color: #e3ddc9;
  transition:
    max-height 0.4s var(--ease),
    opacity 0.3s var(--ease),
    margin-top 0.4s var(--ease);
}
.leist-card:hover img {
  transform: scale(1.08);
}
.leist-card:hover .leist-line {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
}

/* Vorher/Nachher (Unterseite) */
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ba-compare {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
  background: var(--c-bg-2);
}
.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.ba-after {
  background: linear-gradient(135deg, var(--c-bg-2), #ddd4bc);
  color: var(--c-dark);
}
.ba-before {
  background: linear-gradient(135deg, #cfc6b0, #b9af97);
  color: #4a4737;
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  cursor: ew-resize;
}
.ba-handle::after {
  content: "⇔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
  font-size: 17px;
}
.ba-tag {
  position: absolute;
  top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-ink);
  z-index: 3;
}
.ba-tag.left {
  left: 14px;
}
.ba-tag.right {
  right: 14px;
}
.ba-text ul {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-text li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--c-ink-soft);
  line-height: 1.6;
}
.ba-text li .dot {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-bg-2);
  color: var(--c-dark);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ============================================================
   Animation: sanftes Einblenden beim Scrollen
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .leist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-wrap,
  .gallery-wrap,
  .stats-wrap,
  .testi-wrap {
    grid-template-columns: 1fr;
  }
  .portrait-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid,
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-mobile-actions {
    display: flex;
  }
  .nav-call-mobile {
    display: flex;
  }
  .ba-wrap {
    grid-template-columns: 1fr;
  }
  .topbar-right {
    display: none;
  }
  .portrait-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portrait-card:nth-child(3) {
    display: none;
  }
  .hero-content {
    padding: 40px 24px;
  }
  .stats-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .leist-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section {
    padding: 60px 0;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid .g1 {
    grid-row: auto;
  }
  .stats-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    margin: 0 16px;
  }
  .cta-band-content {
    padding: 40px 24px;
  }
  .portrait-grid {
    grid-template-columns: 1fr;
  }
  .portrait-card:nth-child(3) {
    display: block;
  }
}
