:root {
  --primary: rgb(225, 20, 60);
  --primary-soft: rgba(225, 20, 60, 0.08);
  --primary-border: rgba(225, 20, 60, 0.18);
}

.verhuur-page {
  width: min(1280px, 92%);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

/* TOP LAYOUT */

.verhuur-top {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

/* HERO */

.verhuur-intro {
  background: linear-gradient(135deg,
      rgb(225, 20, 60) 0%,
      rgb(190, 10, 45) 100%);
  color: white;
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.verhuur-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, .15);
  letter-spacing: .04em;
}

.verhuur-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.verhuur-lead {
  line-height: 1.75;
  max-width: 720px;
  opacity: .95;
}

/* BUTTONS */

.verhuur-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.verhuur-button {
  background: white;
  color: var(--primary);
  padding: .9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.verhuur-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.verhuur-button-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, .35);
}

/* CONTACT CARD */

.verhuur-contact-card {
  background: white;
  border: 1px solid var(--primary-border);
  border-radius: 24px;
  padding: 2rem;
}

.verhuur-contact-card h2 {
  margin-bottom: .8rem;
}

.verhuur-contact-card a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

/* SECTION HEADERS */

.verhuur-section-heading span {
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.verhuur-section-heading h2 {
  margin: .4rem 0 .6rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.verhuur-section-heading p {
  max-width: 720px;
  color: #555;
  line-height: 1.7;
  margin: 0 auto;
}

/* FEATURE CARDS */

.groups {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 1.4rem;
}

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

@media (max-width: 600px) {
  .groups {
    grid-template-columns: 1fr;
  }
}

.group {
  background: white;
  border-radius: 20px;
  padding: 1.6rem;
  border: 3px solid #eee;
  transition: all .2s ease;
}

.group:hover {
  border-color: var(--primary-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
}

.group-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: .9rem;
}

.group h3 {
  margin-bottom: .5rem;
}

.group p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* EXTRA INFO BLOCKS */

.verhuur-extra {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.verhuur-highlight {
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  border-radius: 22px;
  padding: 1.6rem;
}

.verhuur-highlight h2 {
  margin-bottom: .6rem;
}

.verhuur-highlight a {
  color: var(--primary);
  font-weight: 700;
}

/* GALLERY */

.verhuur-gallery {
  margin-top: 4rem;
}

.verhuur-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.verhuur-images a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.verhuur-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .3s ease;
}

.verhuur-images a:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media (max-width: 950px) {

  .verhuur-top {
    grid-template-columns: 1fr;
  }

  .verhuur-extra {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {

  .verhuur-page {
    width: min(94%, 1280px);
    padding: 2rem 0 4rem;
  }

  .verhuur-images img {
    height: 200px;
  }

}