/* D. & H. Lukowski GmbH — modern alternative refresh 2026 */
:root {
  --ink: #23232b;
  --ink-soft: #3d3d47;
  --muted: #686973;
  --surface: #ffffff;
  --soft: #f6f5f8;
  --soft-purple: #f1eef8;
  --line: #e3e2e8;
  --purple: #43297c;
  --purple-2: #5b3aa1;
  --purple-dark: #2f1d59;
  --red: #e42c28;
  --shadow-sm: 0 8px 24px rgba(31, 27, 45, .07);
  --shadow: 0 24px 64px rgba(31, 27, 45, .12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--red); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid rgba(67, 41, 124, .32); outline-offset: 4px; }
.inner { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { max-width: 920px; }
.section { padding: 96px 0; }
.section.compact { padding: 84px 0 42px; }
.section-muted { background: var(--soft); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 9px; }
.skip-link:focus { top: 16px; color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(227, 226, 232, .75);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, .96); box-shadow: 0 8px 30px rgba(32, 26, 46, .07); }
.header-inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: min-height .25s ease; }
.site-header.scrolled .header-inner { min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand img { width: 60px; height: 60px; object-fit: contain; transition: width .25s ease, height .25s ease; }
.site-header.scrolled .brand img { width: 52px; height: 52px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.02rem; letter-spacing: .01em; }
.brand small { color: var(--muted); font-size: .78rem; margin-top: 1px; }
.site-nav ul { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.site-nav a { display: block; text-decoration: none; color: var(--ink); font-weight: 700; font-size: .9rem; padding: 11px 14px; border-radius: 11px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.site-nav a:hover { color: var(--purple); background: var(--soft-purple); transform: translateY(-1px); }
.site-nav a[aria-current="page"] { color: var(--purple); background: var(--soft-purple); }
.nav-contact { display: none !important; }
.menu-toggle, .menu-close { display: none; border: 0; background: transparent; color: var(--ink); cursor: pointer; }

/* Type */
.eyebrow { margin: 0 0 13px; color: var(--purple); font-size: .76rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { color: var(--ink); line-height: 1.1; margin-top: 0; text-wrap: balance; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); letter-spacing: -.052em; margin-bottom: 26px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); letter-spacing: -.043em; margin-bottom: 22px; }
h3 { font-size: 1.18rem; letter-spacing: -.015em; margin-bottom: 10px; }
p { margin: 0 0 1.25em; }
.lead { color: #50515b; font-size: clamp(1.08rem, 1.65vw, 1.3rem); max-width: 820px; }

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding-top: 86px;
  background:
    radial-gradient(circle at 85% 8%, rgba(91, 58, 161, .09), transparent 30%),
    radial-gradient(circle at 10% 62%, rgba(228, 44, 40, .045), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fdfcfe 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -260px;
  top: 240px;
  border: 1px solid rgba(67, 41, 124, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(67, 41, 124, .018), 0 0 0 145px rgba(67, 41, 124, .012);
  pointer-events: none;
}
.hero .inner { position: relative; z-index: 1; }
.hero-copy { max-width: 1000px; }
.hero-copy h1 { max-width: 980px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-weight: 780;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-dark)); border-color: transparent; box-shadow: 0 12px 28px rgba(67, 41, 124, .23); }
.button.primary:hover { color: #fff; box-shadow: 0 16px 34px rgba(67, 41, 124, .28); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.9); }
.button.secondary:hover { color: var(--purple); border-color: #cfc7df; box-shadow: var(--shadow-sm); }
.button.light { color: var(--purple-dark); background: #fff; border-color: #fff; box-shadow: 0 12px 30px rgba(22, 12, 43, .16); }
.button.light:hover { color: var(--purple-dark); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 880px;
  margin: 54px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item { min-width: 0; padding: 22px 26px 22px 0; }
.trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: 28px; }
.trust-item strong { display: block; color: var(--ink); font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.1; letter-spacing: -.025em; }
.trust-item span { display: block; margin-top: 5px; color: var(--muted); font-size: .86rem; }

.media-frame {
  position: relative;
  margin: 52px 0 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ececf0;
  box-shadow: var(--shadow);
}
.media-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); border-radius: inherit; pointer-events: none; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.media-frame:hover img { transform: scale(1.015); filter: saturate(1.025); }
.hero-image { aspect-ratio: 16 / 8.3; }
.hero-image img { object-position: center 47%; }
.content-image { aspect-ratio: 16 / 8.5; }
.content-image img { object-position: center 50%; }
.media-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  padding: 8px 12px;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(24, 22, 31, .55);
  backdrop-filter: blur(10px);
  font-size: .76rem;
  line-height: 1.25;
}

/* Section headings */
.section-heading { margin-bottom: 34px; }
.heading-row { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 54px; align-items: end; }
.heading-row h2 { margin-bottom: 0; max-width: 780px; }
.heading-row > p { margin: 0 0 5px; color: var(--muted); }
.home-copy { max-width: 930px; }

/* Services */
.services-section { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.service-card {
  position: relative;
  min-height: 225px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:nth-child(1), .service-card:nth-child(2) { grid-column: span 3; }
.service-card:nth-child(n+3) { grid-column: span 2; }
.service-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -85px;
  bottom: -85px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(67,41,124,.09), rgba(228,44,40,.045));
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #d3cce3; box-shadow: var(--shadow-sm); background: #fefeff; }
.service-card:hover::before { transform: scale(1.2); }
.service-index { display: inline-block; margin-bottom: 38px; color: var(--purple); font-size: .74rem; font-weight: 850; letter-spacing: .12em; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .94rem; }

/* Experience */
.experience-section { background: linear-gradient(180deg, #f6f5f8 0%, #f9f8fb 100%); }
.experience-section .content-image { margin-top: 44px; }

/* Project preview */
.project-preview-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 250px); gap: 16px; }
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ececf0;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.project-card-wide { grid-row: 1 / span 2; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(16, 15, 21, .72) 100%); transition: opacity .3s ease; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.project-card span { position: absolute; left: 22px; bottom: 18px; z-index: 2; display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 780; }
.project-card b { font-size: 1.1rem; transition: transform .25s ease; }
.project-card:hover { color: #fff; }
.project-card:hover img { transform: scale(1.035); filter: saturate(1.04); }
.project-card:hover b { transform: translate(3px, -3px); }
.projects-preview-action { display: flex; justify-content: center; margin-top: 30px; }

/* CTA */
.cta-section { padding-top: 34px; }
.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 50px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,.82);
  background: linear-gradient(135deg, #251b3f 0%, var(--purple) 56%, #5d318c 100%);
  box-shadow: var(--shadow);
}
.cta-panel::before { content: ""; position: absolute; width: 330px; height: 330px; right: -140px; top: -180px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.02); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel .eyebrow { color: #d7cbed; }
.cta-panel h2 { color: #fff; margin-bottom: 14px; }
.cta-panel p { margin-bottom: 0; max-width: 680px; }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 13px; min-width: 220px; }
.cta-phone { color: #fff; text-align: center; font-weight: 760; text-decoration: none; }
.cta-phone:hover { color: #fff; text-decoration: underline; }

/* Page intro */
.page-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(91,58,161,.085), transparent 28%),
    linear-gradient(180deg, #fff 0%, #faf9fc 100%);
  border-bottom: 1px solid var(--line);
}
.page-intro::after { content: ""; position: absolute; width: 260px; height: 260px; right: -130px; bottom: -175px; border: 1px solid rgba(67,41,124,.1); border-radius: 50%; box-shadow: 0 0 0 55px rgba(67,41,124,.02); }
.page-intro h1 { font-size: clamp(2.7rem, 5.2vw, 4.8rem); margin-bottom: 18px; }
.page-intro .lead { max-width: 760px; }

/* Gallery */
.gallery-section { padding-top: 52px; }
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-flow: dense; gap: 14px; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 16px; overflow: hidden; background: #ececf0; cursor: zoom-in; aspect-ratio: 1 / 1; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.gallery-item:nth-child(10n + 1), .gallery-item:nth-child(10n + 6) { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item::after { content: "+"; position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; background: rgba(25,22,32,.62); backdrop-filter: blur(8px); font-size: 1.2rem; opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.05) contrast(1.015); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 500; display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; gap: 16px; padding: 64px 28px 28px; background: rgba(13,13,17,.95); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; min-width: 0; text-align: center; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 130px); margin: auto; object-fit: contain; border-radius: 12px; }
.lightbox figcaption { color: rgba(255,255,255,.78); margin-top: 12px; font-size: .9rem; }
.lightbox-close, .lightbox-nav { border: 1px solid rgba(255,255,255,.12); color: #fff; background: rgba(255,255,255,.09); cursor: pointer; border-radius: 999px; transition: background .2s ease, transform .2s ease; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.16); transform: scale(1.04); }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; font-size: 2rem; line-height: 1; }
.lightbox-nav { width: 52px; height: 52px; font-size: 2rem; }
body.lightbox-open { overflow: hidden; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { position: relative; min-height: 215px; padding: 28px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.contact-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -52px; bottom: -52px; border-radius: 50%; background: rgba(67,41,124,.07); transition: transform .35s ease; }
a.contact-card:hover { color: var(--ink); transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: #d2cae2; }
a.contact-card:hover::after { transform: scale(1.35); }
.contact-card strong { position: relative; z-index: 1; font-size: 1.2rem; overflow-wrap: anywhere; }
.contact-card > span:last-child { position: relative; z-index: 1; color: var(--muted); font-size: .9rem; }
.contact-label { position: relative; z-index: 1; color: var(--purple); font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.map-consent { min-height: 430px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(circle at 15% 20%, #e9e3f5 0, transparent 34%), linear-gradient(135deg, #f9f8fb, #efedf4); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.map-consent-content { max-width: 560px; padding: 40px; text-align: center; }
.map-consent-content strong { display: block; font-size: 1.35rem; margin-bottom: 8px; }
.map-consent iframe { display: block; width: 100%; min-height: 430px; border: 0; }

/* Legal */
.legal-section { padding-top: 66px; }
.legal-copy { max-width: 980px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 48px; padding: 0; list-style: none; }
.legal-nav a { display: inline-flex; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: #fff; text-decoration: none; font-size: .84rem; font-weight: 730; }
.legal-nav a:hover { color: var(--purple); border-color: #cec5df; background: var(--soft-purple); }
.legal-copy > h2 { margin-top: 62px; font-size: clamp(2rem, 3.2vw, 2.85rem); scroll-margin-top: 110px; }
.legal-copy > h2:first-of-type { margin-top: 0; }
.legal-copy h3 { margin-top: 30px; }
.legal-copy hr { border: 0; border-top: 1px solid var(--line); margin: 58px 0; }
.legal-facts { margin: 28px 0 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fafafd; }
.legal-fact { min-width: 0; display: grid; grid-template-columns: minmax(190px, .38fr) minmax(0, 1fr); gap: 28px; align-items: start; padding: 24px 26px; }
.legal-fact + .legal-fact { border-top: 1px solid var(--line); }
.legal-fact h3 { margin: 2px 0 0; color: var(--purple-dark); font-size: .92rem; line-height: 1.35; }
.legal-fact p { margin: 0; line-height: 1.7; overflow-wrap: anywhere; }

/* Footer */
.site-footer { padding: 64px 0 22px; background: #202027; color: rgba(255,255,255,.74); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr .75fr; gap: 44px; }
.site-footer strong { color: #fff; }
.footer-title { font-size: 1.1rem; }
.site-footer p { margin: 8px 0 0; }
.site-footer address { margin-top: 8px; font-style: normal; }
.site-footer a { color: rgba(255,255,255,.9); }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.52); font-size: .82rem; }

/* Progressive reveal. Content stays visible when JS is unavailable. */
.reveal-ready { opacity: 0; transform: translateY(22px); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms); }
.reveal-ready.reveal-visible { opacity: 1; transform: translateY(0); }
.reveal-ready.reveal-soft { transform: translateY(14px); }

@media (max-width: 960px) {
  .section { padding: 82px 0; }
  .heading-row { grid-template-columns: 1fr; gap: 12px; }
  .heading-row > p { max-width: 760px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(n) { grid-column: span 1; }
  .service-card:last-child { grid-column: 1 / -1; }
  .project-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 240px; }
  .project-card-wide { grid-column: 1 / -1; grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 165px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(10n + 1), .gallery-item:nth-child(10n + 6) { grid-column: span 2; }
  .cta-panel { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { flex-direction: row; align-items: center; min-width: 0; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .inner { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 66px 0; }
  .section.compact { padding-top: 58px; }
  .header-inner, .site-header.scrolled .header-inner { min-height: 78px; }
  .brand img, .site-header.scrolled .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: .92rem; }
  .brand small { font-size: .7rem; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; padding: 0; }
  .menu-toggle span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; }
  .site-nav { position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px); height: 100dvh; padding: 82px 28px 30px; background: #fff; box-shadow: -18px 0 60px rgba(0,0,0,.18); transform: translateX(105%); visibility: hidden; transition: transform .26s ease, visibility .26s; }
  body.menu-open::before { content: ""; position: fixed; inset: 0; z-index: 99; background: rgba(20,20,26,.45); }
  body.menu-open .site-nav { transform: translateX(0); visibility: visible; }
  .site-nav ul { display: block; }
  .site-nav li + li { border-top: 1px solid var(--line); }
  .site-nav a { padding: 15px 2px; border-radius: 0; font-size: 1.05rem; }
  .site-nav a:hover, .site-nav a[aria-current="page"] { background: transparent; transform: none; }
  .nav-contact { display: block !important; margin-top: 26px; padding: 13px 16px !important; border-radius: 10px !important; color: #fff !important; background: var(--purple) !important; text-align: center; }
  .menu-close { display: block; position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; font-size: 2rem; line-height: 1; }
  .hero { padding-top: 56px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  .trust-row { grid-template-columns: 1fr; margin-top: 42px; }
  .trust-item { padding: 17px 0; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .media-frame { margin-top: 34px; border-radius: 18px; }
  .hero-image, .content-image { aspect-ratio: 4 / 3; }
  .media-frame figcaption { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { grid-column: auto; min-height: 190px; }
  .service-index { margin-bottom: 26px; }
  .project-preview-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .project-card, .project-card-wide { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .gallery-item, .gallery-item:nth-child(10n + 1), .gallery-item:nth-child(10n + 6) { grid-column: span 1; aspect-ratio: 1 / 1; border-radius: 11px; }
  .gallery-item::after { display: none; }
  .lightbox { grid-template-columns: 44px minmax(0,1fr) 44px; padding-inline: 10px; gap: 6px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .cta-section { padding-top: 18px; }
  .cta-panel { padding: 32px 24px; border-radius: 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .legal-nav { margin-bottom: 36px; }
  .legal-fact { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .legal-fact h3 { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { margin-top: 32px; }
}

@media (max-width: 420px) {
  .brand small { display: none; }
  .brand strong { max-width: 190px; line-height: 1.25; }
  .actions .button { width: 100%; }
  .map-consent { min-height: 360px; }
  .map-consent-content { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal-ready { opacity: 1 !important; transform: none !important; }
}

.gallery-count { margin: 20px 0 0; color: var(--muted); font-size: .86rem; font-weight: 650; }
