/* === Forest Theme — Koolmeesstraat 8 & 10 === */

/* --- Self-hosted Fonts --- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-serif-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-serif-display-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-navy: #1b2e1b;
  --color-navy-light: #263826;
  --color-text: #3a4a3a;
  --color-text-light: #6b7b6b;
  --color-white: #fff;
  --color-offwhite: #f8faf6;
  --color-accent: #8B6F47;
  --color-accent-dark: #6e5636;
  --color-gold: #C8D84D;
  --color-border: #dfe8dc;
  --max-width: 1100px;
  --header-height: 72px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--color-navy);
  line-height: 1.2;
  font-weight: 400;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section.block {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

/* Subtle divider between sections instead of alternating backgrounds */
section.block + section.block {
  border-top: 1px solid var(--color-border);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(27, 46, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.site-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.site-logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--color-accent-dark);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.3);
}

/* --- Hero --- */
section.block-hero {
  padding: 0;
  border: none !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 46, 27, 0.75) 0%,
    rgba(27, 46, 27, 0.40) 50%,
    rgba(38, 56, 38, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 0;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta-primary {
  display: inline-block;
  color: var(--color-white);
  background: var(--color-accent);
  padding: 1.1rem 3.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.15rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(139, 111, 71, 0.4);
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(139, 111, 71, 0.4); }
  50% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(139, 111, 71, 0); }
}

.hero-cta-primary:hover {
  background: var(--color-accent-dark);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(139, 111, 71, 0.35);
  transform: translateY(-1px);
  animation: none;
}

/* --- Hero Contact Strip --- */
.hero-contact-strip {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  text-decoration: none;
}

.hero-contact-link svg {
  flex-shrink: 0;
}

.hero-cta-scroll {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 1.25rem;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.hero-cta-scroll:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Scroll Reveal --- */
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: revealIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
  }

  @keyframes revealIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .scroll-indicator {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- Section headings --- */
section.block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
}

/* --- Features Grid --- */
.features-grid ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.features-grid li {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(27, 46, 27, 0.06), 0 4px 12px rgba(27, 46, 27, 0.04);
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.features-grid li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(27, 46, 27, 0.08), 0 8px 24px rgba(27, 46, 27, 0.06);
}

.features-grid li strong {
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* --- Text --- */
.text-content {
  max-width: 750px;
}

.text-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.text-content p {
  margin-bottom: 1rem;
}

.text-content ul, .text-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.text-content li {
  margin-bottom: 0.5rem;
}

/* --- Gallery --- */
.gallery-description {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 46, 27, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery large layout */
.gallery-large {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gallery-large .gallery-item {
  aspect-ratio: 16/9;
  border-radius: 12px;
}

/* --- Video --- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.video-item video,
.video-item img {
  width: 100%;
  border-radius: 12px;
}

/* --- Downloads --- */
.downloads-description {
  margin-bottom: 1.5rem;
}

.downloads-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.download-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.download-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-gold));
  transform: scaleY(0);
  transition: transform 0.3s;
}

.download-item:hover {
  border-color: var(--color-accent);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(27, 46, 27, 0.06);
}

.download-item:hover::before {
  transform: scaleY(1);
}

.download-icon {
  font-size: 1.5rem;
}

.download-label {
  flex: 1;
  font-weight: 500;
}

.download-action {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Floorplan --- */
.floorplan-description {
  margin-bottom: 1.5rem;
}

.floorplan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.floorplan-item {
  display: block;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  transition: box-shadow 0.2s;
}

.floorplan-item:hover {
  box-shadow: 0 4px 12px rgba(27, 46, 27, 0.08);
}

.floorplan-item img {
  border-radius: 8px;
}

/* --- Location --- */
.location-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.location-content li {
  margin-bottom: 0.5rem;
}

.location-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.location-photos a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.location-photos a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 46, 27, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.location-photos a:hover::after {
  opacity: 1;
}

.location-photos img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location-photos a:hover img {
  transform: scale(1.05);
}

/* --- CTA --- */
section.block-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  position: relative;
  overflow: hidden;
  border: none !important;
}

section.block-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200, 216, 77, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box {
  text-align: center;
  padding: 2rem 0;
  position: relative;
}

.cta-box h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-text p {
  margin-bottom: 0.25rem;
}

.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.85rem 2.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cta-button:hover {
  background: var(--color-accent-dark);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(139, 111, 71, 0.3);
  transform: translateY(-1px);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* --- Contact --- */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.contact-item-featured {
  grid-column: 1 / -1;
  background: var(--color-navy);
  border-color: var(--color-navy);
  border-left-color: var(--color-gold);
}

.contact-item-featured .contact-label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-item-featured a {
  color: var(--color-white);
  font-size: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item a {
  font-size: 1.15rem;
  font-weight: 500;
}

.contact-text {
  grid-column: 1 / -1;
  color: var(--color-text-light);
}

/* --- Booking Modal --- */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(27, 46, 27, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-content {
  background: var(--color-white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  margin: 1.5rem;
  text-align: center;
  box-shadow: 0 24px 48px rgba(27, 46, 27, 0.2);
}

.booking-modal-content h2 {
  margin-bottom: 1rem;
}

.booking-modal-content p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.booking-modal-close {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.booking-modal-close:hover {
  background: var(--color-accent-dark);
}

/* --- Ribbon --- */
/* --- Ribbon --- */
.ribbon-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  overflow: hidden;
  pointer-events: none;
}

.ribbon {
  position: absolute;
  bottom: 120px;
  right: -130px;
  width: 550px;
  padding: 12px 0;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.03em;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.4);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(27, 46, 27, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
  padding: 0.5rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
}

.lightbox-close {
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

/* --- Sticky CTA --- */
.mobile-sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-navy);
  padding: 0.75rem 1rem;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 16px rgba(27, 46, 27, 0.2);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-btn {
  flex: 1;
  display: block;
  text-align: center;
  padding: 0.85rem 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 48px;
  line-height: 1.3;
}

.mobile-sticky-btn:hover {
  text-decoration: none;
  background: var(--color-accent-dark);
}

.mobile-sticky-btn-secondary {
  display: block;
  text-align: center;
  padding: 0.85rem 1.25rem;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 48px;
  line-height: 1.3;
  white-space: nowrap;
}

.mobile-sticky-btn-secondary:hover {
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 599px) {
  .hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-scroll {
    margin-top: 1rem;
  }

  /* Ensure contact links are easily tappable on mobile */
  .contact-item a {
    display: inline-block;
    min-height: 48px;
    line-height: 48px;
    padding: 0 0.5rem;
  }

  /* Add bottom padding to body so sticky bar doesn't cover content */
  body {
    padding-bottom: 80px;
  }
}

/* Desktop sticky CTA: narrower centered bar */
@media (min-width: 600px) {
  .mobile-sticky-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(100%);
    width: auto;
    max-width: 520px;
    border-radius: 100px 100px 0 0;
    padding: 0.6rem 1.5rem;
    gap: 0.75rem;
  }

  .mobile-sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
  }

  body {
    padding-bottom: 0;
  }
}

/* --- Responsive --- */
@media (min-width: 600px) {
  .features-grid ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* First gallery item spans 2 columns */
  .gallery-grid .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
  }

  .gallery-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large .gallery-item:first-child {
    grid-column: auto;
    aspect-ratio: 16/9;
  }

  .location-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .downloads-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .floorplan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid ul {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Featured first item spans 2x2 */
  .gallery-grid .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }

  .gallery-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
}

/* --- QR Landing (straatbord visitors) --- */
html.qr-landing .block-hero {
  display: none;
}

html.qr-landing .reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

@media (max-width: 599px) {
  html.qr-landing .mobile-sticky-cta {
    transform: translateY(0);
  }
}

