:root {
  --white: #ffffff;
  --cream: #f8f6f2;
  --gold: #c8a04d;
  --gold-dark: #9c772b;
  --brown: #4a3428;
  --text: #222222;
  --muted: #6f625b;
  --line: rgba(74, 52, 40, 0.14);
  --shadow: 0 24px 70px rgba(74, 52, 40, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open, body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.sr-only, .skip-link { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link:focus { width: auto; height: auto; clip: auto; z-index: 10000; top: 16px; left: 16px; padding: 10px 14px; background: var(--brown); color: white; }

.announcement {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 18px;
  background: var(--brown);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid rgba(200, 160, 77, 0.35);
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 79;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(74, 52, 40, 0.1);
  backdrop-filter: blur(18px);
}
.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav-menu a,
.site-header:not(.scrolled) .language-switcher button.active { color: var(--white); }
.site-header:not(.scrolled) .language-switcher button { color: rgba(255, 255, 255, 0.68); }
.site-header:not(.scrolled) .language-switcher { color: var(--gold); }
.site-header:not(.scrolled) .nav-toggle { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.32); }
.site-header:not(.scrolled) .nav-toggle span:not(.sr-only) { background: var(--white); }
.nav {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.55rem; font-weight: 700; letter-spacing: 0.04em; color: var(--brown); }
.hero .brand { color: var(--white); }
.brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; }
.nav-menu { display: flex; align-items: center; gap: 22px; color: var(--brown); }
.nav-menu.open-static { display: flex; opacity: 1; pointer-events: auto; transform: none; position: static; background: transparent; box-shadow: none; border: 0; padding: 0; }
.nav-menu a { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; position: relative; }
.nav-menu a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--gold); transition: width 0.25s ease; }
.nav-menu a:hover::after, .nav-menu a:focus-visible::after { width: 100%; }
.language-switcher { display: flex; align-items: center; gap: 7px; padding-left: 4px; color: var(--gold-dark); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; }
.language-switcher button { border: 0; background: transparent; color: var(--muted); padding: 3px; }
.language-switcher button.active { color: var(--brown); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,0.8); flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span:not(.sr-only) { width: 18px; height: 1px; background: var(--brown); transition: transform 0.25s ease, opacity 0.25s ease; }

.hero { min-height: 100svh; position: relative; display: grid; place-items: center; overflow: hidden; isolation: isolate; padding: 160px 20px 90px; }
.hero-bg, .final-bg { position: absolute; inset: 0; background: url("assets/sopretty/hero-owner-ring.webp") center 34% / cover no-repeat; transform: scale(1.04); z-index: -3; }
.hero-overlay, .final-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(34, 25, 20, 0.78), rgba(34, 25, 20, 0.3) 48%, rgba(34, 25, 20, 0.12)), linear-gradient(0deg, rgba(0,0,0,0.38), rgba(0,0,0,0.05)); }
.hero-content { max-width: 760px; text-align: center; color: var(--white); }
.hero-logo { width: 154px; height: 154px; object-fit: contain; margin: 0 auto 18px; border-radius: 50%; box-shadow: 0 18px 60px rgba(0,0,0,0.22); }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; }
h1, h2, h3 { font-family: var(--serif); color: var(--brown); line-height: 1.02; margin: 0; font-weight: 600; }
.hero h1 { font-size: clamp(4.2rem, 11vw, 9rem); color: var(--white); letter-spacing: 0.1em; text-shadow: 0 18px 70px rgba(0,0,0,0.42); }
.hero-subtitle { margin: 10px auto 0; font-size: clamp(1.1rem, 2vw, 1.55rem); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 13px 25px; border-radius: 999px; border: 1px solid transparent; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn.primary { background: var(--gold); color: var(--white); box-shadow: 0 16px 40px rgba(200, 160, 77, 0.26); }
.btn.secondary { background: rgba(255,255,255,0.08); color: currentColor; border-color: rgba(255,255,255,0.45); backdrop-filter: blur(12px); }
.btn.small { min-height: 42px; padding: 10px 16px; font-size: 0.7rem; }
.scroll-cue { position: absolute; left: 50%; bottom: 30px; width: 1px; height: 62px; background: rgba(255,255,255,0.3); overflow: hidden; }
.scroll-cue span { display: block; width: 1px; height: 28px; background: var(--gold); animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { from { transform: translateY(-32px); } to { transform: translateY(70px); } }

.intro-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.intro-grid { min-height: 156px; display: grid; grid-template-columns: 1.4fr 1fr; align-items: center; gap: 28px; }
.intro-grid p { font-family: var(--serif); color: var(--brown); font-size: clamp(1.55rem, 3vw, 2.45rem); line-height: 1.1; margin: 0; }
.intro-logos { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.intro-logos img { width: 86px; height: 86px; object-fit: contain; border-radius: 50%; background: var(--white); padding: 10px; box-shadow: 0 18px 50px rgba(74, 52, 40, 0.09); }

.section { padding: clamp(84px, 9vw, 132px) 0; }
.two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr); align-items: center; gap: clamp(40px, 7vw, 90px); }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .section-copy h2, .final-content h2 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
.section-heading p:not(.eyebrow), .section-copy p { color: var(--muted); }
.story p { margin: 0 0 18px; }
.text-link { display: inline-flex; margin-top: 12px; color: var(--brown); font-weight: 700; border-bottom: 1px solid var(--gold); letter-spacing: 0.02em; }
.image-collage { position: relative; min-height: 600px; }
.portrait-card { position: absolute; margin: 0; border-radius: 220px 220px 8px 8px; overflow: hidden; box-shadow: var(--shadow); background: var(--cream); }
.portrait-card.large { right: 34px; top: 0; width: 72%; }
.portrait-card.small { left: 0; bottom: 0; width: 48%; border: 12px solid var(--white); }
.portrait-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; transition: transform 0.5s ease; }
.portrait-card:hover img { transform: scale(1.035); }

.trust, .poodles, .process { background: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { min-height: 190px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 28px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 60px rgba(74, 52, 40, 0.07); }
.stat-card strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); color: var(--brown); line-height: 1; }
.stat-card span { margin-top: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.76rem; font-weight: 700; }

.philosophy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.philosophy-card { min-height: 178px; padding: 24px; background: linear-gradient(135deg, var(--white), var(--cream)); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.philosophy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.philosophy-card span { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.14em; font-weight: 700; }
.philosophy-card h3 { font-size: 1.65rem; }
.philosophy-card.wide { grid-column: span 2; background: var(--brown); }
.philosophy-card.wide h3 { color: var(--cream); }

.dog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dog-card { background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 60px rgba(74, 52, 40, 0.08); overflow: hidden; display: flex; flex-direction: column; }
.dog-image { overflow: hidden; }
.dog-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.55s ease; }
.dog-card:hover .dog-image img { transform: scale(1.045); }
.dog-content { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.dog-content h3 { font-size: 2.1rem; }
.dog-content p:not(.eyebrow), .dog-content li { color: var(--muted); }
.dog-content ul { margin: auto 0 0; padding: 18px 0 0; list-style: none; display: grid; gap: 7px; }
.dog-content li::before { content: "—"; color: var(--gold); margin-right: 8px; }
.dog-content ul.award-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.award-badges li { position: relative; padding: 7px 14px 7px 30px; font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--brown); background: var(--cream); border: 1px solid rgba(200, 160, 77, 0.45); border-radius: 999px; line-height: 1.25; }
.award-badges li::before { content: "\2726"; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); margin: 0; color: var(--gold); font-size: 0.8rem; }

.certificate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.certificate-card, .gallery-item { border: 0; background: transparent; padding: 0; text-align: left; color: inherit; }
.certificate-card { position: relative; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--cream); }
.certificate-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.45s ease; }
.certificate-card:hover img, .gallery-item:hover img { transform: scale(1.045); }
.certificate-card span { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 12px 14px; background: rgba(255,255,255,0.9); color: var(--brown); font-weight: 700; letter-spacing: 0.04em; backdrop-filter: blur(12px); }

.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.gallery-filters button { border: 1px solid var(--line); background: var(--white); color: var(--brown); padding: 10px 18px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.gallery-filters button.active { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.masonry-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 16px; }
.gallery-item { overflow: hidden; border-radius: 2px; box-shadow: 0 14px 44px rgba(74, 52, 40, 0.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease, filter 0.3s ease; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.hidden { display: none; }

.timeline { display: grid; grid-template-columns: repeat(6, 1fr); position: relative; gap: 12px; }
.timeline::before { content: ""; position: absolute; top: 38px; left: 6%; right: 6%; height: 1px; background: var(--gold); opacity: 0.55; }
.timeline-step { position: relative; text-align: center; padding-top: 6px; }
.timeline-step span { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: var(--white); border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold-dark); font-weight: 700; box-shadow: 0 14px 40px rgba(74, 52, 40, 0.08); }
.timeline-step h3 { font-size: 1.35rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 34px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 60px rgba(74, 52, 40, 0.07); }
.testimonial-card div { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 18px; }
.testimonial-card p { color: var(--muted); font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.testimonial-card strong { color: var(--brown); }

.final-cta { min-height: 560px; position: relative; display: grid; place-items: center; isolation: isolate; text-align: center; overflow: hidden; }
.final-bg { background-image: url("assets/sopretty/apricot-show-table.webp"); background-position: center; }
.final-overlay { background: rgba(34,25,20,0.58); }
.final-content { color: var(--white); max-width: 760px; }
.final-content h2 { color: var(--white); margin-bottom: 28px; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: start; }
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.contact-details a { padding: 18px; border: 1px solid var(--line); background: var(--cream); }
.contact-details span { display: block; color: var(--gold-dark); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; }
.contact-details strong { color: var(--brown); }
.contact-form { padding: clamp(26px, 4vw, 48px); background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: var(--brown); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(74, 52, 40, 0.18); background: var(--white); padding: 14px 15px; border-radius: 0; color: var(--text); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,160,77,0.13); }
.form-note { color: var(--muted); margin: 0; font-size: 0.86rem; }

.footer { background: var(--brown); color: var(--cream); padding-top: 66px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 34px; }
.footer h3 { color: var(--gold); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.footer a { display: table; color: rgba(248,246,242,0.78); margin: 8px 0; }
.footer a:hover { color: var(--gold); }
.footer p { color: rgba(248,246,242,0.72); max-width: 360px; }
.footer-brand { color: var(--cream) !important; }
.footer-brand img { width: 62px; height: 62px; }
.footer-bottom { margin-top: 52px; border-top: 1px solid rgba(248,246,242,0.13); padding: 20px; display: flex; justify-content: center; gap: 10px; color: rgba(248,246,242,0.65); font-size: 0.86rem; }

.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 100; display: none; grid-template-columns: 1fr auto; gap: 24px; align-items: center; max-width: 1120px; margin: 0 auto; padding: 22px; background: rgba(255,255,255,0.96); border: 1px solid var(--line); box-shadow: 0 22px 70px rgba(0,0,0,0.18); backdrop-filter: blur(18px); }
.cookie-banner.visible { display: grid; }
.cookie-banner h2 { font-size: 1.65rem; }
.cookie-banner p { margin: 6px 0 0; color: var(--muted); max-width: 680px; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.cookie-actions .secondary { color: var(--brown); border-color: var(--line); background: var(--cream); }
.cookie-preferences { display: flex; gap: 18px; margin-top: 12px; color: var(--brown); }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(20, 13, 9, 0.88); display: none; place-items: center; padding: 32px; }
.lightbox.open { display: grid; }
.lightbox figure { margin: 0; max-width: min(1100px, 94vw); max-height: 90svh; color: var(--cream); text-align: center; }
.lightbox img { max-height: 82svh; object-fit: contain; margin: 0 auto; box-shadow: 0 22px 80px rgba(0,0,0,0.38); cursor: zoom-in; transition: transform 0.25s ease; }
.lightbox img.zoomed { transform: scale(1.45); cursor: zoom-out; }
.lightbox figcaption { margin-top: 12px; color: var(--cream); }
.lightbox-close { position: absolute; right: 22px; top: 16px; border: 0; background: transparent; color: var(--cream); font-size: 3rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { background: var(--cream); }
.legal-hero { padding: 170px 0 72px; background: var(--brown); color: var(--cream); }
.legal-hero h1 { color: var(--cream); font-size: clamp(3rem, 7vw, 6rem); }
.legal-content { padding: 70px 0; }
.legal-card { background: var(--white); padding: clamp(28px, 6vw, 72px); border: 1px solid var(--line); box-shadow: var(--shadow); }
.legal-card h2 { font-size: 2rem; margin-top: 32px; }
.legal-card p, .legal-card li { color: var(--muted); }

@media (max-width: 1040px) {
  .nav-menu { gap: 14px; }
  .nav-menu a { font-size: 0.72rem; }
  .stats-grid, .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .dog-grid, .certificate-grid, .testimonial-grid, .contact-grid, .two-column, .intro-grid { grid-template-columns: 1fr; }
  .intro-logos { justify-content: flex-start; }
  .image-collage { min-height: 620px; }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .timeline::before { display: none; }
  .masonry-gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .announcement { font-size: 0.66rem; min-height: 42px; }
  .site-header { top: 42px; background: rgba(255,255,255,0.94); box-shadow: 0 12px 40px rgba(74, 52, 40, 0.08); }
  .site-header:not(.scrolled) .brand,
  .site-header:not(.scrolled) .nav-menu a,
  .site-header:not(.scrolled) .language-switcher button.active { color: var(--brown); }
  .site-header:not(.scrolled) .language-switcher button { color: var(--muted); }
  .site-header:not(.scrolled) .nav-toggle { background: rgba(255,255,255,0.8); border-color: var(--line); }
  .site-header:not(.scrolled) .nav-toggle span:not(.sr-only) { background: var(--brown); }
  .nav { min-height: 70px; }
  .nav-toggle { display: inline-flex; z-index: 90; }
  .nav-menu { position: fixed; inset: 112px 16px auto 16px; display: grid; gap: 0; padding: 20px; background: rgba(255,255,255,0.98); border: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; }
  .nav-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 0.86rem; }
  .language-switcher { padding-top: 16px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: 150px; align-items: end; }
  .hero-bg { background-position: 42% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(34,25,20,0.86), rgba(34,25,20,0.2)); }
  .hero-logo { width: 118px; height: 118px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 76px 0; }
  .portrait-card { position: relative; }
  .portrait-card.large, .portrait-card.small { inset: auto; width: 100%; }
  .portrait-card.small { margin-top: 18px; border-width: 8px; }
  .image-collage { min-height: 0; }
  .masonry-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: span 2; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand span { font-size: 1.28rem; }
  .brand img { width: 48px; height: 48px; }
  .hero h1 { letter-spacing: 0.045em; font-size: clamp(3.4rem, 17vw, 5rem); }
  .intro-logos img { width: 68px; height: 68px; }
  .stats-grid, .philosophy-grid, .dog-grid, .certificate-grid, .testimonial-grid, .contact-details, .timeline, .footer-grid { grid-template-columns: 1fr; }
  .philosophy-card.wide { grid-column: auto; }
  .masonry-gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
  .cookie-actions .btn { width: 100%; }
}

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