:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --fg: #f0ede5;
  --muted: #8a857a;
  --line: rgba(240, 237, 229, 0.10);
  --accent: #ff3a30;
  --accent-glow: rgba(255, 58, 48, 0.4);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1320px;
  --pad: 3vw;
  --ease: cubic-bezier(0.77, 0, 0.18, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font: inherit; color: inherit; background: transparent;
  border: none; outline: none;
}
button, a { cursor: pointer; }
::selection { background: var(--accent); color: var(--bg); }

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--accent);
  z-index: 9999;
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
}
.loader-logo {
  width: clamp(200px, 30vw, 360px); height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.15));
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  padding: 0.9rem var(--pad);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.static {
  position: sticky; top: 0;
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-block; }
.brand img {
  height: 24px; width: auto; display: block;
  transition: transform 0.4s var(--ease), filter 0.3s;
}
.brand:hover img { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(255,255,255,0.3)); }

.nav { display: flex; gap: 1.8rem; justify-self: center; }
.nav a {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 500;
  color: var(--muted);
  position: relative; padding: 0.4rem 0;
  transition: color 0.3s;
}
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--fg);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.05rem;
  background: var(--fg); color: var(--bg);
  font-family: var(--font-display); font-weight: 500; font-size: 0.82rem;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, gap 0.3s var(--ease), box-shadow 0.3s;
}
.header-cta:hover {
  background: var(--accent); color: var(--fg); gap: 0.7rem;
  box-shadow: 0 0 24px var(--accent-glow);
}
.header-cta span { transition: transform 0.3s; display: inline-block; }
.header-cta:hover span { transform: translateX(3px); }

/* ============ CONTAINER & SECTIONS ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
section { padding: 3rem 0; position: relative; }

.head {
  display: flex; align-items: baseline; gap: 1.5rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.num {
  font-family: var(--font-display); font-size: 0.85rem;
  color: var(--accent); letter-spacing: 0.04em;
}
h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -0.04em;
  line-height: 1.02; padding-bottom: 0.08em;
}

.word-wrap {
  display: inline-block; overflow: hidden;
  vertical-align: top; line-height: 1.15;
  padding-bottom: 0.12em;
}
.word { display: inline-block; will-change: transform; }

/* ============ HERO (full-bleed photo BG + big GÄBS) ============ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 1.5rem 6rem;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(0.25) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(10,10,10,0) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.92) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 2.2rem;
  max-width: 900px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 500;
  color: var(--fg); letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 237, 229, 0.18);
  border-radius: 999px;
}
.eyebrow .dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 16px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(5.5rem, 22vw, 22rem);
  line-height: 1; letter-spacing: -0.07em;
  padding-top: 0.12em;
  padding-bottom: 0.06em;
  text-shadow: 0 4px 60px rgba(0,0,0,0.6);
  will-change: transform;
}
.hero-tag {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(240, 237, 229, 0.85);
  max-width: 36em;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.3rem;
}
.btn-primary {
  padding: 0.95rem 1.7rem;
  background: var(--fg); color: var(--bg);
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.3s, color 0.3s, gap 0.3s var(--ease), box-shadow 0.3s;
  will-change: transform;
}
.btn-primary span { display: inline-block; transition: transform 0.3s; }
.btn-primary:hover {
  background: var(--accent); color: var(--fg);
  gap: 0.7rem;
  box-shadow: 0 0 32px var(--accent-glow);
}
.btn-primary:hover span { transform: translateX(3px); }

.btn-ghost {
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(240,237,229,0.4);
  background: rgba(10,10,10,0.3);
  backdrop-filter: blur(4px);
  display: inline-flex; align-items: center;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--fg); background: rgba(240,237,229,0.08); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(240,237,229,0.15);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 0.2rem; align-items: center; }
.hero-stats span {
  font-family: var(--font-display); font-size: 0.72rem;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-stats strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem; color: var(--fg);
}

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 0.3em; color: var(--muted);
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--fg));
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1rem 0; overflow: hidden; white-space: nowrap;
  background: var(--bg-2);
}
.marquee-track {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem); letter-spacing: -0.02em;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee-track { animation-duration: 25s; }
.marquee-track > * { display: inline-block; margin: 0 1.2rem; vertical-align: middle; }
.marquee-track i {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; vertical-align: middle;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ============ SETS / Cards ============ */
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem 1.4rem;
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: background 0.4s var(--ease), transform 0.5s var(--ease),
              border-color 0.3s, box-shadow 0.4s;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.card:hover {
  background: var(--bg-3);
  border-color: rgba(240,237,229,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.card { transform-style: preserve-3d; will-change: transform; }
.item { transform-style: preserve-3d; will-change: transform; }
.hero-letter { display: inline-block; will-change: transform, opacity; }
.card:hover::before { transform: scaleX(1); }
.card-num {
  font-family: var(--font-display); font-size: 0.78rem;
  color: var(--muted); letter-spacing: 0.05em;
}
.card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem); letter-spacing: -0.02em;
  margin-top: 0.1rem;
  transition: color 0.3s;
}
.card:hover h3 { color: var(--accent); }
.card p {
  font-size: 0.92rem; color: var(--muted); line-height: 1.55;
  flex: 1;
}
.card-arrow {
  position: absolute; top: 1.3rem; right: 1.3rem;
  font-size: 1rem; color: var(--muted);
  transition: color 0.3s, transform 0.4s var(--ease);
}
.card:hover .card-arrow { color: var(--accent); transform: translate(6px, -6px); }

/* ============ ABOUT ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem;
  align-items: start;
}
.about-image {
  aspect-ratio: 4/5; overflow: hidden; position: relative;
  border-radius: 8px;
}
.about-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,58,48,0) 60%, rgba(255,58,48,0.15) 100%);
  opacity: 0; transition: opacity 0.6s;
  pointer-events: none;
}
.about-image:hover::after { opacity: 1; }
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s;
  filter: grayscale(0.15);
}
.about-image:hover img { transform: scale(1.06); filter: grayscale(0); }

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.55;
  margin-bottom: 1rem; max-width: 32em;
}
.body {
  font-size: 0.95rem; line-height: 1.7; color: var(--muted);
  max-width: 32em; margin-bottom: 1.8rem;
}
.meta { border-top: 1px solid var(--line); }
.meta > div {
  display: grid; grid-template-columns: 130px 1fr; gap: 1rem;
  padding: 0.9rem 0; font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.meta > div:hover { padding-left: 0.8rem; }
.meta dt {
  color: var(--muted); font-size: 0.78rem;
  font-family: var(--font-display); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.meta dd { font-weight: 500; }

/* ============ GALLERY (horizontal auto-scrolling marquee) ============ */
.gallery-marquee {
  overflow: hidden;
  padding: 1rem 0 0.5rem;
  position: relative;
  margin-top: 1rem;
}
.gallery-marquee::before,
.gallery-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px;
  z-index: 3; pointer-events: none;
}
.gallery-marquee::before {
  left: 0; background: linear-gradient(to right, var(--bg), transparent);
}
.gallery-marquee::after {
  right: 0; background: linear-gradient(to left, var(--bg), transparent);
}
.gallery-marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: gallery-scroll 70s linear infinite;
  will-change: transform;
}
.gallery-marquee:hover .gallery-marquee-track {
  animation-play-state: paused;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.gallery .item {
  flex: 0 0 auto;
  position: relative; overflow: hidden;
  height: clamp(280px, 46vh, 460px);
  width: auto;
  border-radius: 8px;
  transition: transform 0.6s var(--ease);
  cursor: pointer;
}
.gallery .item:nth-child(4n+1) { transform: rotate(-0.8deg); }
.gallery .item:nth-child(4n+2) { transform: rotate(0.6deg) translateY(8px); }
.gallery .item:nth-child(4n+3) { transform: rotate(-0.4deg) translateY(-6px); }
.gallery .item:nth-child(4n+4) { transform: rotate(1deg); }
.gallery .item:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.04);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.gallery .item img {
  height: 100%; width: auto; display: block;
  transition: filter 0.5s;
  filter: grayscale(0.15) brightness(0.92);
  pointer-events: none;
}
.gallery .item:hover img { filter: grayscale(0) brightness(1); }
.gallery .item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255,58,48,0.28));
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.gallery .item:hover::after { opacity: 1; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 1rem 1.2rem;
  font-size: 0.95rem; font-family: var(--font-body);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(255, 58, 48, 0.12);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form select { color: var(--muted); }
.contact-form select option { background: var(--bg); color: var(--fg); }
.contact-form textarea { resize: vertical; min-height: 110px; }

.cf-check {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--muted);
  padding: 0.6rem 0;
  cursor: pointer;
}
.cf-check input[type="checkbox"] {
  width: 18px; height: 18px;
  appearance: none;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  flex-shrink: 0; margin-top: 1px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.cf-check input[type="checkbox"]:checked {
  background: var(--accent); border-color: var(--accent);
}
.cf-check input[type="checkbox"]:checked::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 12px; font-weight: 700;
}
.cf-check a { color: var(--fg); text-decoration: underline; text-underline-offset: 2px; }
.cf-check a:hover { color: var(--accent); }

.contact-form .btn-primary { align-self: flex-start; margin-top: 0.5rem; }

.contact-aside {
  display: flex; flex-direction: column; gap: 0.4rem;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 1.5rem;
}
.ca-link {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
  position: relative;
}
.ca-link:last-child { border-bottom: none; }
.ca-link:hover { padding-left: 0.7rem; }
.ca-link::before {
  content: '→'; position: absolute; left: -0.6rem; top: 50%;
  transform: translateY(-50%); opacity: 0;
  color: var(--accent);
  transition: opacity 0.3s, left 0.4s var(--ease);
}
.ca-link:hover::before { opacity: 1; left: 0; }
.ca-link span {
  font-family: var(--font-display); font-size: 0.72rem;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}
.ca-link strong {
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  color: var(--fg);
  transition: color 0.3s;
}
.ca-link:hover strong { color: var(--accent); }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 2.5rem 0; }
.footer-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: center;
  margin-bottom: 1.5rem;
}
.footer-brand img {
  height: 26px; width: auto; display: block;
  transition: transform 0.4s var(--ease), filter 0.3s;
}
.footer-brand:hover img { transform: scale(1.05); filter: drop-shadow(0 0 12px rgba(255,255,255,0.25)); }
.footer-links {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-display); font-size: 0.85rem;
  color: var(--muted);
  position: relative; padding: 0.3rem 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--fg); }
.footer-legal {
  display: flex; gap: 1.2rem; justify-self: end;
}
.footer-legal a {
  font-family: var(--font-display); font-size: 0.82rem;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--fg); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-family: var(--font-display); font-size: 0.78rem;
  color: var(--muted);
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}

/* ============ LEGAL PAGES ============ */
.page-legal { background: var(--bg); }
.page-legal .site-header {
  position: sticky;
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid var(--line);
}
.legal { padding: 8rem 0 5rem; }
.legal .container { max-width: 880px; }
.back-link {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.85rem;
  color: var(--muted); margin-bottom: 2.5rem;
  transition: color 0.3s, transform 0.4s var(--ease);
}
.back-link:hover { color: var(--accent); transform: translateX(-4px); }
.legal-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 1.2rem;
  padding-bottom: 0.08em;
}
.legal-intro {
  font-size: 1.05rem; color: var(--muted);
  margin-bottom: 3rem; line-height: 1.6;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.legal-block { margin-bottom: 2.5rem; }
.legal-block h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.3rem; letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--fg);
}
.legal-block p {
  font-size: 0.95rem; line-height: 1.75; color: rgba(240, 237, 229, 0.85);
  margin-bottom: 0.8rem;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  list-style: none; padding-left: 0;
  margin-bottom: 0.8rem;
}
.legal-block ul li {
  font-size: 0.95rem; line-height: 1.7;
  color: rgba(240, 237, 229, 0.85);
  padding-left: 1.5rem; position: relative;
}
.legal-block ul li::before {
  content: '·'; position: absolute; left: 0.5rem;
  color: var(--accent); font-weight: 700;
}
.legal-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}
.legal-block a:hover { opacity: 0.7; }
.legal-block strong { font-weight: 600; color: var(--fg); }
.legal-block code {
  font-family: 'Courier New', monospace; font-size: 0.9rem;
  background: var(--bg-2); padding: 0.1rem 0.4rem;
  border-radius: 3px; border: 1px solid var(--line);
}

/* ============ MOBILE ============ */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 700px) {
  :root { --pad: 1.2rem; }
  .nav { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .header-cta { padding: 0.5rem 0.9rem; font-size: 0.78rem; }
  section { padding: 3rem 0; }
  .cards { grid-template-columns: 1fr; }
  .gallery .grid { grid-template-columns: repeat(2, 1fr); }
  .item.feature { grid-column: span 2; grid-row: auto; aspect-ratio: 1/1; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; gap: 1.2rem; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-legal { justify-self: center; }
  .footer-brand { justify-self: center; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .hero-stats { gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
