@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: #f4ecd6;
  color: #0b1d33;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-center {
  text-align: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .u-center {
    margin-top: 3rem;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  opacity: 0;
}
.animate-fade-in-up.is-visible {
  animation: fade-in-up 0.7s ease-out both;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav--transparent {
  background: transparent;
}
.nav--transparent .nav__link,
.nav--transparent .nav__brand-name,
.nav--transparent .nav__hamburger,
.nav--transparent .nav__lang-btn {
  color: #ffffff;
}
.nav--transparent .nav__inner {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.nav--transparent .nav__lang {
  border-left-color: rgba(255, 255, 255, 0.35);
}
.nav--solid {
  background-color: rgba(244, 236, 214, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav--solid .nav__link,
.nav--solid .nav__brand-name,
.nav--solid .nav__hamburger,
.nav--solid .nav__lang-btn {
  color: #0b1d33;
}
.nav--solid .nav__inner {
  text-shadow: none;
}
.nav--solid .nav__lang {
  border-left-color: rgba(11, 29, 51, 0.2);
}

.nav__inner {
  max-width: 80rem;
  margin: auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav__logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav__brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .nav__brand-name {
    font-size: 1.25rem;
  }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  transition: color 0.2s ease;
  text-decoration: none;
}
.nav__link:hover, .nav__link--active {
  color: #a07f2c !important;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 1px solid;
  opacity: 0.8;
}

.nav__lang-btn {
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  transition: opacity 0.2s ease;
  color: inherit;
  opacity: 0.5;
  text-shadow: none !important;
}
.nav__lang-btn--active, .nav__lang-btn:hover {
  opacity: 1;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: -0.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__bar {
  display: block;
  height: 2px;
  width: 1.5rem;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.2s ease;
  border-radius: 1px;
}

.nav__hamburger[aria-expanded=true] .nav__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded=true] .nav__bar:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded=true] .nav__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  background-color: rgba(244, 236, 214, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__mobile--open {
  max-height: 80vh;
}
@media (min-width: 1024px) {
  .nav__mobile {
    display: none !important;
  }
}

.nav__mobile-inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav__mobile-link {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #0b1d33;
  text-decoration: none;
  transition: color 0.2s ease;
  text-shadow: none;
}
.nav__mobile-link:hover {
  color: #a07f2c;
}

.nav__mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 29, 51, 0.1);
}

.nav__mobile {
  display: block;
}

body.nav-open {
  overflow: hidden;
}

.footer {
  background-color: #f4ecd6;
  border-top: 1px solid rgba(11, 29, 51, 0.1);
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

.footer__inner {
  max-width: 80rem;
  margin: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 3rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
    margin-bottom: 7rem;
  }
}

@media (min-width: 768px) {
  .footer__brand {
    grid-column: span 2;
  }
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .footer__brand-row {
    gap: 1.5rem;
  }
}

.footer__logo {
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 9rem;
    height: 9rem;
  }
}
@media (min-width: 1024px) {
  .footer__logo {
    width: 10rem;
    height: 10rem;
  }
}

.footer__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.875rem;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 600;
  color: #0b1d33;
  line-height: 1.2;
  word-break: break-word;
}
@media (min-width: 768px) {
  .footer__name {
    font-size: 2.25rem;
  }
}

.footer__tagline {
  color: #1a2c44;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .footer__tagline {
    font-size: 1.125rem;
  }
}

.footer__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #0b1d33;
  margin-bottom: 2rem;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__menu-link {
  font-size: 1.125rem;
  color: #1a2c44;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__menu-link:hover {
  color: #a07f2c;
}

.footer__address {
  color: #1a2c44;
  font-size: 1.125rem;
  line-height: 1.8;
}
.footer__address p {
  margin-bottom: 0.25rem;
}
.footer__address p + p {
  margin-bottom: 0;
}
.footer__address .footer__phone {
  padding-top: 1.5rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(11, 29, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1d33;
  font-size: 1rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.footer__social:hover {
  background-color: #0b1d33;
  color: #f4ecd6;
  border-color: #0b1d33;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(11, 29, 51, 0.1);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(26, 44, 68, 0.7);
}
@media (min-width: 768px) {
  .footer__bottom {
    font-size: 0.875rem;
    letter-spacing: 0.18em;
  }
}
@media (min-width: 1024px) {
  .footer__bottom {
    padding-top: 3.5rem;
  }
}

.footer__bottom-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .footer__bottom-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__credit {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__credit:hover {
  color: #a07f2c;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.footer__legal-link {
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: #a07f2c;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__gradient {
  position: absolute;
  inset: 0;
}
.hero__gradient--h {
  background: linear-gradient(to right, rgba(11, 29, 51, 0.7) 0%, rgba(11, 29, 51, 0.4) 50%, transparent 100%);
}
.hero__gradient--v {
  background: linear-gradient(to top, rgba(11, 29, 51, 0.5) 0%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero__inner {
  max-width: 42rem;
  color: #f4ecd6;
}

.hero__eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(244, 236, 214, 0.9);
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.75rem;
  line-height: 1.02;
  margin-bottom: 2rem;
  font-style: italic;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4.125rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(244, 236, 214, 0.85);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.125rem;
  }
}
.hero__subtitle strong {
  color: #f4ecd6;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background-color: #f4ecd6;
  color: #0b1d33;
  border: 2px solid #f4ecd6;
}
.btn--primary:hover {
  background-color: #a07f2c;
  color: #f4ecd6;
  border-color: #a07f2c;
}
.btn--outline-snow {
  background: transparent;
  color: #f4ecd6;
  border: 2px solid #f4ecd6;
}
.btn--outline-snow:hover {
  background-color: #f4ecd6;
  color: #0b1d33;
}
.btn--outline-pine {
  background: transparent;
  color: #0b1d33;
  border: 1px solid rgba(11, 29, 51, 0.3);
}
.btn--outline-pine:hover {
  border-color: rgba(160, 127, 44, 0.4);
  color: #a07f2c;
}
.btn--pine {
  background-color: #0b1d33;
  color: #f4ecd6;
  border: 2px solid #0b1d33;
}
.btn--pine:hover {
  background-color: #a07f2c;
  border-color: #a07f2c;
}
.btn--oak {
  background-color: #a07f2c;
  color: #f4ecd6;
  border: 2px solid #a07f2c;
}
.btn--oak:hover {
  background-color: #f4ecd6;
  color: #0b1d33;
  border-color: #f4ecd6;
}

.page-hero {
  position: relative;
  height: 48vh;
  min-height: 360px;
  max-height: 480px;
  width: 100%;
  overflow: hidden;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__gradient-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 29, 51, 0.5) 0%, rgba(11, 29, 51, 0.25) 50%, rgba(11, 29, 51, 0.1) 100%);
}

.page-hero__gradient-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 29, 51, 0.25) 0%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  max-width: 80rem;
  margin: auto;
  padding: 0 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .page-hero__content {
    padding-bottom: 3.5rem;
  }
}

.page-hero__eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(244, 236, 214, 0.9);
}

.page-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-style: italic;
  color: #f4ecd6;
  line-height: 1.05;
  max-width: 48rem;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .page-hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .page-hero__title {
    font-size: 3.75rem;
  }
}

.section {
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .section {
    padding: 8rem 1.5rem;
  }
}

.section--sm {
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) {
  .section--sm {
    padding: 7rem 1.5rem;
  }
}

.section--dark {
  background-color: #0b1d33;
  color: #f4ecd6;
}

.section--cream {
  background-color: #f5f0e6;
}

.section--snow {
  background-color: #f4ecd6;
}

.section--border {
  border-top: 1px solid rgba(11, 29, 51, 0.05);
}

.intro-section {
  padding: 4rem 1.5rem;
  max-width: 56rem;
  margin: auto;
}
@media (min-width: 768px) {
  .intro-section {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

.intro-section--wide {
  max-width: 80rem;
}

.intro-section__lead {
  font-weight: 500;
  font-size: 1.125rem;
  color: #0b1d33;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .intro-section__lead {
    font-size: 1.25rem;
  }
}

.intro-section__body {
  color: #1a2c44;
  line-height: 1.7;
}
.intro-section__body p + p {
  margin-top: 1rem;
}

.section__eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #a07f2c;
}

.section__title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #0b1d33;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section__title--snow {
  color: #f4ecd6;
}

.section__title--xs {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .section__title--xs {
    font-size: 1.875rem;
  }
}

.section__title--sm {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .section__title--sm {
    font-size: 2.25rem;
  }
}

.section__title--md {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .section__title--md {
    font-size: 3rem;
  }
}

.section__title--lg {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .section__title--lg {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .section__title--lg {
    font-size: 3.75rem;
  }
}

.section__title--xl {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .section__title--xl {
    font-size: 3.75rem;
  }
}

.section__title--mb-md {
  margin-bottom: 1.5rem;
}

.section__title--mb-lg {
  margin-bottom: 2.5rem;
}

.section__subtitle {
  color: #1a2c44;
  line-height: 1.7;
}

.section__subtitle--snow {
  color: rgba(244, 236, 214, 0.8);
}

.haeuser {
  padding: 6rem 3rem 1.5rem;
  max-width: 80rem;
  margin: auto;
}
@media (min-width: 768px) {
  .haeuser {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
}

.haeuser__header {
  margin-bottom: 4rem;
  max-width: 42rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.card__img-wrap {
  overflow: hidden;
}

.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #a07f2c;
  margin-bottom: 0.75rem;
}

.card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 0.75rem;
}

.card__desc {
  font-size: 0.875rem;
  color: #1a2c44;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card__stats {
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 29, 51, 0.1);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #0b1d33;
  margin-bottom: 1.25rem;
}

.card__stat {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card__action {
  flex: 1;
  text-align: center;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.card__action--fill {
  background-color: #0b1d33;
  color: #f4ecd6;
}
.card__action--fill:hover {
  background-color: #a07f2c;
}
.card__action--outline {
  border: 1px solid rgba(11, 29, 51, 0.3);
  color: #0b1d33;
}
.card__action--outline:hover {
  border-color: #a07f2c;
  color: #a07f2c;
}

.huisjes-grid {
  padding: 0 1.5rem 6rem;
  max-width: 80rem;
  margin: auto;
}

.dienst {
  background-color: #0b1d33;
  color: #f4ecd6;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .dienst {
    padding: 8rem 0;
  }
}

.dienst__inner {
  max-width: 80rem;
  margin: auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .dienst__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .dienst__img-wrap {
    position: sticky;
    top: 7rem;
  }
}

.dienst__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1rem;
}

.dienst__list {
  list-style: none;
  margin: 2.5rem 0 0;
  border-top: 1px solid rgba(244, 236, 214, 0.15);
}

.dienst__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(244, 236, 214, 0.15);
}

.dienst__num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #a07f2c;
  font-size: 1.125rem;
  padding-top: 0.125rem;
}

.dienst__icon {
  color: #a07f2c;
  font-size: 1.125rem;
  padding-top: 0.2rem;
}

.dienst__cta {
  margin-top: 2rem;
}

.dienst__service-title {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
  cursor: default;
}

.dienst__service-body {
  font-size: 0.875rem;
  color: rgba(244, 236, 214, 0.65);
}

.about {
  padding: 5rem 1.5rem;
  max-width: 80rem;
  margin: auto;
}
@media (min-width: 768px) {
  .about {
    padding: 7rem 3rem;
  }
}
@media (min-width: 1024px) {
  .about {
    padding: 7rem 5rem;
  }
}

.about-section {
  padding: 4rem 1.5rem 6rem;
  max-width: 72rem;
  margin: auto;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.about-grid__img {
  max-width: 100%;
}

.about__title {
  margin-bottom: 2rem;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1rem;
  color: #1a2c44;
  line-height: 1.7;
}

.about__layout {
  position: relative;
}
@media (min-width: 768px) {
  .about__layout {
    min-height: 760px;
  }
}

@media (min-width: 768px) {
  .about__img-wrap {
    width: 58.33%;
  }
}

.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .about__img {
    aspect-ratio: 4/5;
  }
}

.about__card-wrap {
  margin-top: 1.5rem;
  padding: 0;
}
@media (min-width: 768px) {
  .about__card-wrap {
    position: absolute;
    left: 50%;
    top: 25%;
    z-index: 10;
    width: 50%;
    transform: translate(-80px, -50%);
    margin-top: 0;
    padding-right: 1.5rem;
  }
}

.about__card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(11, 29, 51, 0.05);
  padding: 2rem;
}
@media (min-width: 768px) {
  .about__card {
    padding: 3rem;
  }
}

.about__signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 29, 51, 0.1);
}

.about__name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #0b1d33;
}

.about__role {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.875rem;
  color: #a07f2c;
  margin-top: 0.25rem;
}

.sights {
  background-color: #f4ecd6;
  border-top: 1px solid rgba(11, 29, 51, 0.05);
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .sights {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
}

.sights__inner {
  max-width: 80rem;
  margin: auto;
}

.sights__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.sights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .sights__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sight-card__img-wrap {
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}

.sight-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sight-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 0.25rem;
}

.sight-card__detail {
  font-size: 0.875rem;
  color: #1a2c44;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sight-card__text {
  font-size: 0.875rem;
  color: #1a2c44;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.kontakt-cta {
  background-color: #f4ecd6;
}

.kontakt-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .kontakt-cta__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kontakt-cta__text {
  background-color: #0b1d33;
  color: #f4ecd6;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .kontakt-cta__text {
    padding: 7rem 3rem;
  }
}
@media (min-width: 1024px) {
  .kontakt-cta__text {
    padding: 7rem 5rem;
  }
}

.kontakt-cta__inner {
  max-width: 36rem;
}

.kontakt-cta__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .kontakt-cta__title {
    font-size: 3rem;
  }
}

.kontakt-cta__subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.875rem;
  color: #a07f2c;
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .kontakt-cta__subtitle {
    font-size: 2.25rem;
  }
}

.kontakt-cta__body {
  color: rgba(244, 236, 214, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.kontakt-cta__img-wrap {
  position: relative;
  min-height: 400px;
}
@media (min-width: 768px) {
  .kontakt-cta__img-wrap {
    min-height: unset;
  }
}

.kontakt-cta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontakt-details {
  background-color: #0b1d33;
  color: #f4ecd6;
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .kontakt-details {
    padding: 8rem 1.5rem;
  }
}

.kontakt-details__inner {
  max-width: 64rem;
  margin: auto;
  text-align: center;
}

.kontakt-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: left;
}
@media (min-width: 768px) {
  .kontakt-details__grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
}

.kontakt-details__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #a07f2c;
  margin-bottom: 0.75rem;
}

.kontakt-details__value {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  transition: color 0.2s ease;
  text-decoration: none;
  color: #f4ecd6;
}
.kontakt-details__value:hover {
  color: #a07f2c;
}

.contact-page {
  padding: 0 1.5rem 6rem;
  max-width: 80rem;
  margin: auto;
}
@media (min-width: 768px) {
  .contact-page {
    padding-bottom: 8rem;
  }
}

.contact-page__intro {
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) {
  .contact-page__intro {
    padding-top: 5rem;
  }
}

.contact-page__intro-text {
  color: #1a2c44;
  max-width: 48rem;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-page__cta {
  margin-top: 2rem;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-page__grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.contact-info {
  background-color: #0b1d33;
  color: #f4ecd6;
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .contact-info {
    padding: 2.5rem;
  }
}

.contact-info__row {
  display: flex;
  gap: 1rem;
}
.contact-info__row + .contact-info__row {
  margin-top: 2rem;
}

.contact-info__icon {
  color: #a07f2c;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #a07f2c;
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #f4ecd6;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  word-break: break-all;
}
.contact-info__value:hover {
  color: #a07f2c;
}

.contact-info__value--sm {
  font-size: 1rem;
}

.contact-info__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 236, 214, 0.2);
}

.contact-info__social-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #a07f2c;
  margin-bottom: 1rem;
}

.contact-info__social-section {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 236, 214, 0.2);
  margin-top: 0.5rem;
}

.contact-info__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(244, 236, 214, 0.3);
  color: #f4ecd6;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-info__social:hover {
  background-color: #f4ecd6;
  color: #0b1d33;
}

.contact-form {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2.5rem;
  }
}

.contact-form__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.875rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 0.5rem;
}

.contact-form__note {
  font-size: 0.875rem;
  color: #1a2c44;
  margin-bottom: 1.5rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.field {
  display: block;
}

.field__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0b1d33;
  margin-bottom: 0.5rem;
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(11, 29, 51, 0.15);
  background-color: #f4ecd6;
  color: #0b1d33;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.field__input::placeholder,
.field__select::placeholder,
.field__textarea::placeholder {
  color: rgba(26, 44, 68, 0.4);
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: rgba(160, 127, 44, 0.4);
  box-shadow: 0 0 0 3px rgba(160, 127, 44, 0.1);
}
.field__input--error,
.field__select--error,
.field__textarea--error {
  border-color: #ef4444;
}
.field__input--error:focus,
.field__select--error:focus,
.field__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field__textarea {
  resize: vertical;
}

.field__select {
  appearance: none;
  cursor: pointer;
}

.field__error {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #dc2626;
}

.contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}

.contact-form__privacy {
  font-size: 0.75rem;
  color: rgba(26, 44, 68, 0.6);
  max-width: 28rem;
}

.field--mb {
  margin-bottom: 1.5rem;
}

.field__checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.field__checkbox {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.field__checkbox-text {
  font-size: 0.875rem;
  color: #1a2c44;
}

.field__link {
  text-decoration: underline;
}

.contact-success {
  background-color: #f5f0e6;
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}
.contact-success h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.875rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 1rem;
}
.contact-success p {
  color: #1a2c44;
}

.diensten-intro {
  padding: 4rem 1.5rem 4rem;
  max-width: 56rem;
  margin: auto;
}
@media (min-width: 768px) {
  .diensten-intro {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

.diensten-intro__lead {
  font-weight: 500;
  font-size: 1.125rem;
  color: #0b1d33;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .diensten-intro__lead {
    font-size: 1.25rem;
  }
}

.diensten-intro__beschrijving {
  color: #1a2c44;
  line-height: 1.7;
}
.diensten-intro__beschrijving p + p {
  margin-top: 1rem;
}

.service-cards {
  padding: 5rem 1.5rem 7rem;
  background-color: #f5f0e6;
}
@media (min-width: 768px) {
  .service-cards {
    padding: 7rem 1.5rem;
  }
}

.service-cards__inner {
  max-width: 80rem;
  margin: auto;
}

.service-cards__header {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.service-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background-color: #0b1d33;
  color: #f4ecd6;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .service-card {
    padding: 2.5rem;
  }
}

.service-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: #a07f2c;
  color: #f4ecd6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.service-card__num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #a07f2c;
  margin-bottom: 0.25rem;
}

.service-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #f4ecd6;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .service-card__title {
    font-size: 1.875rem;
  }
}

.service-card__bullets {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 236, 214, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card__bullet {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(244, 236, 214, 0.85);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .service-card__bullet {
    font-size: 1rem;
  }
}

.service-card__dot {
  color: #a07f2c;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-card ul {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(244, 236, 214, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(244, 236, 214, 0.85);
  line-height: 1.7;
}
.service-card li::before {
  content: "●";
  color: #a07f2c;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .service-card li {
    font-size: 1rem;
  }
}

.extra-services {
  padding: 5rem 1.5rem 7rem;
}
@media (min-width: 768px) {
  .extra-services {
    padding: 7rem 1.5rem;
  }
}

.extra-services__inner {
  max-width: 80rem;
  margin: auto;
}

.extra-services__header {
  max-width: 42rem;
  margin-bottom: 3.5rem;
}

.extra-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .extra-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .extra-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.extra-card {
  background-color: #f4ecd6;
  border: 1px solid rgba(11, 29, 51, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.extra-card:hover {
  border-color: rgba(160, 127, 44, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.extra-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(160, 127, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a07f2c;
  margin-bottom: 1.25rem;
}

.extra-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.extra-card__body {
  font-size: 0.875rem;
  color: #1a2c44;
  line-height: 1.7;
}

.extra-diensten {
  padding: 5rem 1.5rem 7rem;
}
@media (min-width: 768px) {
  .extra-diensten {
    padding: 7rem 1.5rem;
  }
}

.extra-diensten__inhoud {
  max-width: 80rem;
  margin: auto;
}

.extra-diensten__kop {
  max-width: 42rem;
  margin-bottom: 3.5rem;
}

.extra-diensten__raster {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .extra-diensten__raster {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .extra-diensten__raster {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.extra-dienst-kaart {
  background-color: #f4ecd6;
  border: 1px solid rgba(11, 29, 51, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.extra-dienst-kaart__icoon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(160, 127, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a07f2c;
  margin-bottom: 1.25rem;
}

.extra-dienst-kaart__titel {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.extra-dienst-kaart__beschrijving {
  font-size: 0.875rem;
  color: #1a2c44;
  line-height: 1.7;
}

.vorteile {
  background-color: #f5f0e6;
  padding: 5rem 1.5rem 7rem;
}
@media (min-width: 768px) {
  .vorteile {
    padding: 7rem 1.5rem;
  }
}

.vorteile__inner {
  max-width: 64rem;
  margin: auto;
}

.vorteile__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.875rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .vorteile__title {
    font-size: 3rem;
  }
}

.vorteile__subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #a07f2c;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .vorteile__subtitle {
    font-size: 1.875rem;
  }
}

.vorteile__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2.5rem;
}
@media (min-width: 640px) {
  .vorteile__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vorteile__item {
  display: flex;
  gap: 1rem;
  color: #1a2c44;
  font-size: 1rem;
  line-height: 1.7;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .vorteile__item {
    font-size: 1.125rem;
  }
}

.vorteile__icon {
  color: #a07f2c;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.erlebnisse-intro {
  padding: 4rem 1.5rem 3rem;
  max-width: 80rem;
  margin: auto;
}
@media (min-width: 768px) {
  .erlebnisse-intro {
    padding-top: 5rem;
  }
}

.erlebnisse-intro__text {
  color: #1a2c44;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.erlebnisse-intro__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.erlebnisse-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(11, 29, 51, 0.2);
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b1d33;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.erlebnisse-intro__link:hover {
  border-color: #a07f2c;
  color: #a07f2c;
}

.erlebnisse-intro__link--card {
  margin-top: 0.75rem;
}

.erlebnisse-cat {
  padding: 4rem 1.5rem 5rem;
  max-width: 80rem;
  margin: auto;
  border-top: 1px solid rgba(11, 29, 51, 0.05);
}
@media (min-width: 768px) {
  .erlebnisse-cat {
    padding: 5rem 1.5rem;
  }
}

.erlebnisse-cat__header {
  margin-bottom: 3rem;
  max-width: 42rem;
}

.erlebnisse-cat__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.875rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .erlebnisse-cat__title {
    font-size: 2.25rem;
  }
}

.erlebnisse-cat__intro {
  color: #1a2c44;
}

.erlebnisse-cat__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .erlebnisse-cat__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .erlebnisse-cat__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.erlebnisse-card__img-wrap {
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}

.erlebnisse-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.erlebnisse-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 0.25rem;
}

.erlebnisse-card__detail {
  font-size: 11px;
  color: #a07f2c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.erlebnisse-card__text {
  font-size: 0.875rem;
  color: #1a2c44;
  line-height: 1.7;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  background-color: #f5f0e6;
}

.error-page__content {
  max-width: 42rem;
  margin: auto;
  text-align: center;
}

.error-page__code {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: #a07f2c;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .error-page__code {
    font-size: 7rem;
  }
}

.error-page__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
  color: #0b1d33;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .error-page__title {
    font-size: 2.5rem;
  }
}

.error-page__message {
  color: #1a2c44;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.error-page__cta {
  display: flex;
  justify-content: center;
}

.error-page__request-id {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(26, 44, 68, 0.6);
}

/*# sourceMappingURL=main.css.map */
