:root {
  --yellow: #f4b400;
  --yellow-dark: #d99e00;
  --ink: #17181a;
  --ink-soft: #3a3c40;
  --wood: #c9905a;
  --wood-dark: #9c6a3b;
  --bg: #faf7f2;
  --bg-card: #ffffff;
  --line: #eae4da;
  --radius: 18px;
  --shadow: 0 20px 50px -25px rgba(23, 24, 26, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-head: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}

section[id] { scroll-margin-top: 76px; }

img, video { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}
section { position: relative; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view > * {
  animation: fadeUp 0.7s var(--ease) both;
}
.reveal-stagger.in-view > *:nth-child(1) { animation-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { animation-delay: 0.1s; }
.reveal-stagger.in-view > *:nth-child(3) { animation-delay: 0.18s; }
.reveal-stagger.in-view > *:nth-child(4) { animation-delay: 0.26s; }
.reveal-stagger.in-view > *:nth-child(5) { animation-delay: 0.34s; }
.reveal-stagger.in-view > *:nth-child(6) { animation-delay: 0.42s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 30px -20px rgba(0,0,0,0.4);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  transition: color 0.4s var(--ease);
}
.nav.scrolled .brand { color: var(--ink); }
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 7px 14px;
  border-radius: 10px;
  box-shadow: 0 10px 26px -14px rgba(0,0,0,0.5);
  transition: padding 0.4s var(--ease), transform 0.3s var(--ease);
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.nav.scrolled .brand-logo-wrap { padding: 5px 12px; box-shadow: none; }
.nav.scrolled .brand-logo { height: 28px; }
.brand small {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: 0.8;
  padding-top: 2px;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  opacity: 0.88;
  transition: color 0.4s var(--ease), opacity 0.2s;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--yellow);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  opacity: 1 !important;
}
.nav-cta::after { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero (embedded as first scrollstory state) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.15s forwards;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--yellow);
  display: inline-block;
}
.scrollstory-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  margin: 0 0 22px;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.55);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.scrollstory-hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.scrollstory-hero p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 540px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 34px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.45s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(244, 180, 0, 0.7);
}
.btn-primary:hover { box-shadow: 0 20px 36px -12px rgba(244, 180, 0, 0.85); }
.btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { box-shadow: 0 16px 30px -14px rgba(0,0,0,0.5); }

/* ---------- Section heads ---------- */
.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wood-dark);
  margin-bottom: 14px;
}
.eyebrow-dark::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--wood-dark);
  display: inline-block;
}
.section-head { max-width: 620px; margin-bottom: 50px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }
.section-pad { padding: 110px 0; }

/* ---------- Scroll-scrub story ---------- */
.scrollstory {
  position: relative;
  height: 280vh;
  background: #0d0d0e;
}
.scrollstory-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0e;
}
.scrollstory-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.scrollstory-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.25) 32%, rgba(10,10,11,0.15) 50%, transparent 65%),
    linear-gradient(180deg, rgba(10,10,11,0.15) 0%, rgba(10,10,11,0.25) 55%, rgba(10,10,11,0.75) 100%);
  pointer-events: none;
}
.scrollstory-caption {
  position: absolute;
  left: 50%;
  bottom: 16%;
  transform: translate(-50%, 16px);
  text-align: center;
  color: #fff;
  max-width: 640px;
  padding: 0 24px;
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.scrollstory-caption.active { opacity: 1; transform: translate(-50%, 0); }
.scrollstory-hero {
  left: 6%;
  bottom: auto;
  top: 50%;
  max-width: 640px;
  text-align: left;
  padding: 0 24px 0 0;
  transform: translateY(calc(-50% + 28px));
  pointer-events: auto;
}
.scrollstory-hero.active { transform: translateY(-50%); }
.scrollstory-caption .eyebrow {
  margin-bottom: 14px;
  color: var(--yellow);
  opacity: 1;
  animation: none;
}
.scrollstory-caption h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.scrollstory-hint {
  position: absolute;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: opacity 0.4s;
}
.scrollstory-sticky.scrolled .scrollstory-hint { opacity: 0; }
.scrollstory-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
}
.scrollstory-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--yellow);
}

/* ---------- Keyword marquee ---------- */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 20px 0;
  border-top: 3px solid var(--yellow);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}
.marquee-group span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-group .dot {
  color: var(--yellow);
  font-size: 12px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Tiny House focus section ---------- */
.focus {
  background: var(--bg);
}
.focus-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.focus-media {
  position: relative;
  padding: 0 22px 26px 0;
}
.focus-media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.focus-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.focus-media:hover img { transform: scale(1.06); }
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 32px -14px rgba(23,24,26,0.35);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.focus-media:hover .float-chip { transform: translateY(-4px); box-shadow: 0 22px 38px -14px rgba(23,24,26,0.4); }
.float-chip-tl { top: 22px; left: -22px; }
.float-chip-br { bottom: 0; right: 0; }
.float-chip .chip-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.float-chip strong { display: block; font-size: 1.05rem; font-weight: 800; line-height: 1.2; }
.float-chip span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--ink-soft); }

.focus-facts {
  list-style: none;
  margin: 30px 0 34px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.focus-facts li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-soft);
}
.focus-facts li .ico {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 6px 14px -6px rgba(244, 180, 0, 0.7);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stat-row .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--ink);
}
.stat-row .stat strong .suffix { color: var(--wood-dark); }
.stat-row .stat span {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink-soft);
}

/* ---------- Gallery ---------- */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.4);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s var(--ease);
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }
.gallery-item .zoom-ico {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.7);
  transition: 0.3s var(--ease);
}
.gallery-item:hover .zoom-ico { opacity: 1; transform: scale(1); }

/* ---------- Leistungen ---------- */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .ico { transform: rotate(-8deg) scale(1.08); }
.service-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  font-weight: 800;
}
.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Ansprechpartner ---------- */
.contact-person {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.person-avatar {
  width: 108px; height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--wood));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(244, 180, 0, 0.25), 0 0 0 10px rgba(244, 180, 0, 0.08);
}
.person-info .eyebrow-dark { color: var(--yellow); }
.person-info .eyebrow-dark::before { background: var(--yellow); }
.person-info h3 { font-size: 1.7rem; margin: 4px 0 4px; font-weight: 800; }
.person-info p { margin: 0; color: rgba(255,255,255,0.7); }
.person-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.person-actions .btn { justify-content: center; white-space: nowrap; }

/* ---------- Contact form ---------- */
.contact-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 56px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,180,0,0.18);
}
.form-foot {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.form-note { font-size: 13px; color: var(--ink-soft); max-width: 380px; }
.form-success {
  display: none;
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(60, 160, 90, 0.12);
  color: #237a45;
  font-weight: 600;
  font-size: 14.5px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; animation: fadeUp 0.5s var(--ease); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,11,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: min(1000px, 100%);
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.35s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 26px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.25s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.24); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, #26241f 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  border-radius: 32px;
  margin: 0 auto 100px;
  width: min(1180px, 92%);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,180,0,0.25), transparent 70%);
  top: -200px; right: -150px;
}
.cta-band::before {
  content: "TINY HAUS";
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900;
  letter-spacing: 4px;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.09);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 16px; font-weight: 800; position: relative; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0 0 32px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 18px;
}
.footer-col h4::after {
  content: "";
  display: block;
  width: 26px; height: 2px;
  background: var(--yellow);
  margin-top: 8px;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-about p {
  margin: 18px 0 0;
  max-width: 320px;
  line-height: 1.65;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
}
.footer-brand { color: #fff; font-weight: 700; font-family: var(--font-head); }
.footer-logo {
  height: 30px;
  width: auto;
  display: block;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .focus-grid { grid-template-columns: 1fr; }
  .focus-media { padding: 0 12px 22px 12px; }
  .float-chip-tl { left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .contact-person { grid-template-columns: 1fr; text-align: center; }
  .person-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: #fff; font-size: 18px; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-wrap, .contact-person { padding: 32px 24px; }
  .section-pad { padding: 76px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .stat-row { grid-template-columns: 1fr; gap: 22px; }
}
