:root {
  --color-bg: #16130f;
  --color-bg-soft: #1f1b17;
  --color-card: #251f1b;
  --color-light: #faf6f1;
  --color-text: #c9bfb6;
  --color-muted: #948a82;
  --color-accent: #e5225c;
  --color-accent-soft: #ff6b93;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --max-width: 1240px;
  --radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-light);
  font-weight: 800;
  line-height: 1.1;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; font-weight: 700; }

.highlight {
  color: var(--color-accent);
  font-style: italic;
  position: relative;
  white-space: nowrap;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* ============ Reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-accent-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(229, 34, 92, 0.35);
}

.btn-ghost {
  color: var(--color-light);
  border-color: rgba(250, 246, 241, 0.25);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline-light {
  color: var(--color-light);
  border-color: rgba(250, 246, 241, 0.25);
  align-self: flex-start;
}

.btn-outline-light:hover {
  background-color: var(--color-light);
  color: var(--color-bg);
  border-color: var(--color-light);
}

.btn-small {
  padding: 11px 26px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  border: none;
  font-family: var(--font-body);
  justify-content: center;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
}

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

.header.scrolled {
  background-color: rgba(22, 19, 15, 0.85);
  backdrop-filter: blur(14px);
  border-color: rgba(250, 246, 241, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navlink {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.navlink:hover,
.navlink.active {
  color: var(--color-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-light);
  transition: all 0.3s ease;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 170px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 34, 92, 0.25), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 480px;
  margin: 1.4rem 0 2.2rem;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
  border-top: 1px solid rgba(250, 246, 241, 0.1);
  padding-top: 2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-light);
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
}

.stat p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  margin-top: 4px;
}

/* Hero visual collage */
.hero-visual {
  position: relative;
  height: 560px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease;
}

.hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 5;
}

.hero-img-1 {
  width: 62%;
  height: 70%;
  top: 0;
  right: 0;
  transform: rotate(3deg);
}

.hero-img-2 {
  width: 46%;
  height: 42%;
  bottom: 0;
  left: 0;
  transform: rotate(-4deg);
}

.hero-img-3 {
  width: 34%;
  height: 38%;
  bottom: 14%;
  right: 8%;
  transform: rotate(6deg);
  border: 6px solid var(--color-bg);
}

.hero-badge {
  position: absolute;
  top: 4%;
  left: -4%;
  background-color: var(--color-light);
  color: var(--color-bg);
  border-radius: var(--radius);
  padding: 18px 22px;
  max-width: 200px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
  z-index: 6;
}

.hero-badge-stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.hero-badge p {
  font-size: 0.78rem;
  margin-top: 6px;
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
}

.hero-badge small {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent);
  font-style: normal;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--color-bg));
  pointer-events: none;
}

/* ============ Section head ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.section-head-text {
  max-width: 380px;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ============ Diensten - Bento ============ */
.diensten {
  background-color: var(--color-bg-soft);
}

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.bento-card {
  background-color: var(--color-card);
  border: 1px solid rgba(250, 246, 241, 0.06);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 34, 92, 0.4);
}

.bento-card--featured {
  grid-row: span 2;
  background: linear-gradient(155deg, var(--color-card) 0%, #2c1620 100%);
  border-color: rgba(229, 34, 92, 0.3);
}

.bento-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
}

.bento-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1rem;
}

.bento-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
  white-space: nowrap;
}

.bento-price span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-muted);
  display: block;
}

.bento-desc {
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.bento-list {
  list-style: none;
  margin-bottom: 1.8rem;
  flex-grow: 1;
  display: grid;
  gap: 10px;
}

.bento-list li {
  font-size: 0.92rem;
  padding-left: 26px;
  position: relative;
  color: var(--color-light);
}

.bento-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.bento-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============ Werkwijze - Stepper ============ */
.stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stepper-line {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), rgba(250, 246, 241, 0.08));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
}

.step p {
  font-size: 0.92rem;
}

/* ============ Portfolio - Masonry ============ */
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 100px;
  gap: 14px;
}

.masonry-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item--tall {
  grid-row: span 3;
}

.masonry-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item img,
.masonry-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img,
.masonry-item:hover video {
  transform: scale(1.06);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 19, 15, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay--video {
  opacity: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(22, 19, 15, 0.7) 100%);
  pointer-events: none;
}

.overlay-hint {
  display: block;
  font-size: 0.72rem;
  opacity: 0.75;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.masonry-item {
  cursor: pointer;
}

.reviews-btn {
  padding: 11px 22px;
  font-size: 0.82rem;
}

/* ============ Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.96);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lbFadeIn 0.25s ease;
}

.lightbox-content video {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 12px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--color-accent);
  border-color: transparent;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.lightbox-nav:hover {
  background: var(--color-accent);
  border-color: transparent;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-footer {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.lightbox-caption {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lightbox-counter {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
}

.masonry-overlay span {
  color: var(--color-light);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.masonry-item--video .masonry-overlay {
  pointer-events: none;
}

/* ============ Reviews ============ */
.reviews-score {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews-score-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-light);
}

.reviews-score p {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 4px;
}

.review-carousel {
  position: relative;
}

.review-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.review-grid::-webkit-scrollbar {
  display: none;
}

.review-carousel-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.review-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 241, 0.15);
  background: transparent;
  color: var(--color-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.review-carousel-btn:hover {
  background: var(--color-accent);
  border-color: transparent;
}

.review-card {
  background-color: var(--color-card);
  border: 1px solid rgba(250, 246, 241, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  min-width: 280px;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 34, 92, 0.35);
}

.review-card p {
  font-size: 0.92rem;
  margin: 14px 0 22px;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  color: var(--color-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.review-author small {
  color: var(--color-muted);
  font-size: 0.75rem;
}

/* ============ CTA banner ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark, #c01a4a) 100%);
  padding: 90px 0;
}

.cta-banner-inner {
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.cta-banner .btn-primary {
  background-color: var(--color-bg);
}

.cta-banner .btn-primary:hover {
  background-color: var(--color-light);
  color: var(--color-bg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info p {
  margin-bottom: 1.4rem;
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(250, 246, 241, 0.08);
  padding-bottom: 14px;
}

.contact-details strong {
  color: var(--color-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-details a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background-color: var(--color-bg-soft);
  border: 1px solid rgba(250, 246, 241, 0.06);
  padding: 40px;
  border-radius: var(--radius);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-light);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(250, 246, 241, 0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--color-bg);
  color: var(--color-light);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-form .btn-full {
  cursor: pointer;
  margin-top: 4px;
}

/* ============ Footer ============ */
.footer {
  background-color: var(--color-bg-soft);
  border-top: 1px solid rgba(250, 246, 241, 0.06);
  color: var(--color-muted);
  padding: 36px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-content .logo-img {
  height: 28px;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-light);
}

/* ============ Sticky CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(229, 34, 92, 0.4);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta:hover {
  background-color: var(--color-accent-soft);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 420px;
    margin-top: 40px;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card--featured {
    grid-row: span 1;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(250, 246, 241, 0.08);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .stepper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stepper-line {
    display: none;
  }

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

  .masonry-item--tall,
  .masonry-item--wide {
    grid-column: span 2;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    bottom: 16px;
    right: 16px;
    padding: 14px 22px;
    font-size: 0.85rem;
  }
}

@media (max-width: 500px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .masonry {
    grid-template-columns: 1fr;
  }

  .masonry-item,
  .masonry-item--tall,
  .masonry-item--wide {
    grid-column: span 1;
    grid-row: span 2;
  }
}
