/* Base */
body {
  background-color: #fcf9f3;
  color: #1b1c18;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Layout helpers */
.site-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .site-container {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.magazine-grid,
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(252, 249, 243, 0.9);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #c7c7ba;
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.site-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  min-height: 80px;
}

@media (min-width: 1100px) {
  .site-nav {
    padding: 16px 32px;
    gap: 20px;
  }
}

@media (min-width: 1280px) {
  .site-nav {
    padding: 16px 64px;
    gap: 32px;
  }
}

.site-logo {
  font-family: Newsreader, serif;
  font-size: 24px;
  line-height: 1.4;
  color: #1b1c18;
  font-style: italic;
  flex-shrink: 0;
  white-space: nowrap;
}

.site-nav-links {
  display: none;
  align-items: stretch;
  gap: 0;
  position: absolute;
  top: calc(100% + 1px);
  left: 16px;
  right: 16px;
  flex-direction: column;
  background-color: rgba(252, 249, 243, 0.98);
  border: 1px solid #c7c7ba;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  padding: 12px;
}

@media (min-width: 1100px) {
  .site-nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 20px;
  }
}

.site-header.is-menu-open .site-nav-links {
  display: flex;
}

@media (min-width: 1280px) {
  .site-nav-links {
    gap: 32px;
  }
}

.nav-link {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #46483d;
  padding: 12px;
  transition: color 0.2s ease;
}

@media (min-width: 1100px) {
  .nav-link {
    padding: 0;
  }
}

.nav-link:hover {
  color: #576138;
}

.nav-link--mobile-only {
  display: block;
}

@media (min-width: 1100px) {
  .nav-link--mobile-only {
    display: none;
  }
}

.nav-link.is-active {
  color: #576138;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: #576138;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

@media (min-width: 1100px) {
  .nav-link.is-active {
    text-decoration: none;
    border-bottom: 2px solid #576138;
    padding-bottom: 4px;
  }
}

.site-nav .site-nav-cta {
  display: inline-flex;
  flex-shrink: 0;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media (min-width: 1100px) {
  .site-nav .site-nav-cta {
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

@media (min-width: 1280px) {
  .site-nav .site-nav-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.site-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #1b1c18;
  flex-shrink: 0;
}

@media (min-width: 1100px) {
  .site-nav-toggle {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-nav .site-nav-cta {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #fcf9f3;
  color: #576138;
  padding: 12px 24px;
  border: 1px solid #576138;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background-color: #576138;
  color: #fcf9f3;
  border: 1px solid #576138;
}

.btn-secondary {
  background-color: #fcf9f3;
  color: #576138;
  border-color: #576138;
}

.btn:hover,
.btn-secondary:hover {
  background-color: #dce8b4;
  border-color: #576138;
  color: #576138;
}

.btn-primary:hover {
  background-color: #fcf9f3;
  border-color: #576138;
  color: #576138;
}

.btn-lg {
  padding: 20px 40px;
}

@media (max-width: 767px) {
  .py-section-gap {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}

/* Split hero (home) */
.split-hero {
  height: 100svh;
  min-height: 620px;
  padding-top: 80px;
  box-sizing: border-box;
}

.split-side {
  flex: 1 1 0;
  min-height: 0;
}

.split-side__copy > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0 !important;
}

.image-zoom {
  opacity: 1 !important;
  transform: none;
  transition: none;
}

.image-zoom--private {
  object-position: center center;
}

.image-zoom--business {
  object-position: 52% center;
}

.overlay-mask {
  background-color: rgba(0, 0, 0, 0.28) !important;
  transition: background-color 0.25s ease;
}

.split-side--business .overlay-mask {
  background-color: rgba(0, 0, 0, 0.52) !important;
}

.split-side:hover .overlay-mask {
  background-color: rgba(0, 0, 0, 0.18) !important;
}

.split-side--business:hover .overlay-mask {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

@media (max-width: 1099px) {
  .split-hero {
    flex-direction: column !important;
    min-height: 780px;
  }

  .split-side {
    min-height: 310px;
  }

  .split-hero .split-side__content {
    justify-content: space-between !important;
    padding: clamp(44px, 8vh, 72px) 20px 40px;
  }

  .split-side__content .mb-stack-md {
    margin-bottom: 16px;
  }

  .split-side__content .mb-stack-lg {
    margin-bottom: 0;
  }

  .split-side__content h1,
  .split-side__content h2 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.08;
  }

  .split-side__content p {
    font-size: 15px;
    line-height: 1.45;
  }
}

@media (max-width: 767px) {
  .split-hero {
    min-height: 100svh;
  }

  .split-side {
    min-height: calc((100svh - 80px) / 2);
  }

  .split-hero .split-side__content {
    justify-content: flex-end !important;
    gap: 14px;
    padding: clamp(22px, 5svh, 36px) 16px clamp(20px, 4svh, 30px);
  }

  .split-side__content .space-y-stack-sm > :not([hidden]) ~ :not([hidden]) {
    margin-top: 8px;
  }

  .split-side__content .mb-stack-md,
  .split-side__content .mb-stack-lg {
    margin-bottom: 0;
  }

  .split-side__content h1,
  .split-side__content h2 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .split-side--private .split-side__content h1 {
    font-size: clamp(20px, 6vw, 30px);
    white-space: nowrap;
  }

  .split-side--private .split-side__content h1 br {
    display: none;
  }

  .split-side__content p {
    display: none;
  }

  .split-side__content .btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (min-width: 1100px) {
  .split-hero {
    flex-direction: row !important;
    min-height: 760px;
    padding-top: 0;
  }

  .split-side__copy {
    display: grid;
    row-gap: 16px;
  }

  .split-side__copy h1,
  .split-side__copy h2 {
    min-height: 3.3em;
  }

  .split-side__copy p {
    min-height: 4.8em;
  }

  .split-side__copy h1,
  .split-side__copy h2,
  .split-side__copy p {
    margin: 0;
  }
}

/* Editorial accents */
.editorial-line {
  width: 40px;
  height: 1px;
  background-color: #3A241C;
  display: inline-block;
  vertical-align: middle;
}

/* Quote / testimonial band */
.quote-band {
  background-color: #fcf9f3;
}

.quote-band__panel {
  background-color: #6f7a4f;
  border-radius: 0.25rem;
  padding: clamp(48px, 7vw, 80px) 24px;
}

.quote-band__texture {
  background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
  opacity: 0.1;
}

@media (min-width: 768px) {
  .quote-band__panel {
    padding-inline: 64px;
  }
}

/* Dark CTA block */
.cta-dark {
  background-color: #3A241C;
  color: #fcf9f3;
}

/* Package cards */
.package-card {
  background-color: #ffffff;
  border: 1px solid rgba(199, 199, 186, 0.3);
  border-radius: 0.25rem;
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.package-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.package-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

/* Service level cards (pakketten page) */
.service-card {
  background-color: #fcf9f3;
  padding: 32px;
  border: 1px solid #c7c7ba;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  transition: border-color 0.5s ease;
}

.service-card:hover {
  border-color: #576138;
}

.service-card--featured {
  background-color: #eae8e2;
  border-color: #576138;
}

.service-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #576138;
  color: #fcf9f3;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 500;
}

/* Route split images */
.route-card img {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.route-card:hover img {
  transform: scale(1.05);
}

/* Process steps */
.process-block {
  background-color: #576138;
  color: #fcf9f3;
}

.process-block__header {
  border-bottom: 1px solid rgba(252, 249, 243, 0.35);
}

.process-block__eyebrow,
.process-block__title,
.process-block__text {
  color: #fcf9f3;
}

.process-block .process-block__eyebrow {
  color: #fcf9f3;
}

.process-step__number {
  color: #dce8b4;
  font-family: Newsreader, serif;
  font-size: 48px;
  line-height: 0.9;
  font-weight: 500;
  opacity: 1;
}

.process-block .process-step__heading {
  color: #fcf9f3;
}

.process-block .process-step__body {
  color: rgba(252, 249, 243, 0.84);
}

.process-block--light {
  background-color: #fcf9f3;
  color: #1b1c18;
}

.process-block--light .process-block__header {
  border-bottom-color: #c7c7ba;
}

.process-block--light .process-block__eyebrow,
.process-block--light .process-block__title {
  color: #576138;
}

.process-block--light .process-step__number {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: #576138;
  color: #fcf9f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-block--light .process-step__heading {
  color: #1b1c18;
}

.process-block--light .process-step__body {
  color: #46483d;
}

@media (max-width: 767px) {
  .process-block .process-block__header {
    align-items: flex-start !important;
  }

  .process-block--light .process-step__number {
    margin-bottom: 12px;
  }
}

/* FAQ */
.faq-section {
  background-color: #f0eee8;
}

.faq-section__eyebrow {
  color: #576138;
}

.faq-list {
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid rgba(87, 97, 56, 0.24);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: #1b1c18;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid #576138;
  outline-offset: 6px;
}

.faq-item__question {
  max-width: 760px;
}

.faq-item__icon {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid #576138;
  flex: 0 0 36px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 1px;
  background-color: #576138;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  max-width: 760px;
  padding: 0 60px 28px 0;
  color: #46483d;
}

@media (max-width: 767px) {
  .faq-item summary {
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
  }

  .faq-item__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .faq-item__answer {
    padding-right: 0;
  }
}

/* Impression carousel */
.impression-carousel {
  overflow: hidden;
}

.impression-carousel__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.impression-carousel__controls {
  display: flex;
  gap: 8px;
}

.impression-carousel__button {
  width: 44px;
  height: 44px;
  border: 1px solid #576138;
  color: #576138;
  background-color: #fcf9f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.impression-carousel__button:hover {
  background-color: #dce8b4;
}

.impression-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;
}

.impression-carousel__item {
  flex: 0 0 calc((100% - 48px) / 3);
  height: 480px;
  min-width: 0;
  overflow: hidden;
  background-color: #f0eee8;
  scroll-snap-align: start;
}

.impression-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s ease, transform 0.7s ease;
}

.impression-carousel__item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 1023px) {
  .impression-carousel__item {
    flex-basis: calc((100% - 24px) / 2);
    height: 420px;
  }
}

@media (max-width: 767px) {
  .impression-carousel__header {
    align-items: start;
    flex-direction: column;
  }

  .impression-carousel__item {
    flex-basis: 82%;
    height: 380px;
  }
}

/* Portfolio (sfeerimpressie) */
.category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  transition: all 0.3s ease;
  padding: 10px 20px;
  background-color: #f0eee8;
  color: #46483d;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #c7c7ba;
}

.category-chip:hover,
.category-chip.is-active {
  background-color: #576138;
  color: #fcf9f3;
}

.portfolio-item img {
  transition: transform 0.7s ease;
}

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

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-item__overlay {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
  opacity: 1;
}

/* Forms */
.form-label {
  font-size: 12px;
  font-weight: 500;
  color: #3A241C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.preserve-case {
  text-transform: none;
}

.form-input {
  background-color: #fcf9f3;
  border: 1px solid #3A241C;
  padding: 16px;
  font-size: 16px;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: #576138;
  box-shadow: 0 0 0 1px #576138;
}

.form-label.is-focused {
  color: #576138;
}

/* Thank-you page */
.thank-you-hero {
  min-height: 100svh;
}

.thank-you-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thank-you-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 28, 24, 0.78), rgba(27, 28, 24, 0.44) 52%, rgba(27, 28, 24, 0.16));
}

.thank-you-hero .btn-secondary {
  background-color: rgba(252, 249, 243, 0.92);
}

@media (max-width: 767px) {
  .thank-you-hero {
    min-height: 760px;
  }

  .thank-you-hero__overlay {
    background: linear-gradient(to bottom, rgba(27, 28, 24, 0.34), rgba(27, 28, 24, 0.82));
  }
}

/* Footer */
.site-footer {
  background-color: #f6f3ed;
  border-top: 1px solid #c7c7ba;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #46483d;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #576138;
  text-decoration: underline;
  text-decoration-color: #576138;
}

/* Legal pages */
.legal-page {
  padding-top: 136px;
  padding-bottom: 96px;
}

.legal-document {
  max-width: 760px;
  margin: 0 auto;
}

.legal-document__intro {
  padding-bottom: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid #c7c7ba;
}

.legal-document__intro > * + *,
.legal-document__section > * + * {
  margin-top: 16px;
}

.legal-document__title {
  margin-top: 40px;
  font-family: Newsreader, serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  color: #3a241c;
}

.legal-document__meta {
  display: grid;
  gap: 8px;
  padding: 24px;
  background-color: #f0eee8;
  border-left: 3px solid #576138;
}

.legal-document__lead {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.7;
}

.legal-document__section {
  margin-top: 48px;
}

.legal-document__section h2 {
  margin-bottom: 20px;
  font-family: Newsreader, serif;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  color: #3a241c;
}

.legal-document p {
  line-height: 1.75;
  color: #46483d;
}

@media (max-width: 767px) {
  .legal-page {
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .legal-document__intro {
    margin-bottom: 40px;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page hero */
.page-hero {
  position: relative;
  height: clamp(620px, 78vh, 780px);
  overflow: hidden;
}

.page-hero__content {
  box-sizing: border-box;
  padding-top: clamp(104px, 13vh, 132px);
  padding-bottom: clamp(72px, 10vh, 108px);
}

.page-hero__content > div {
  transform: translateY(clamp(64px, 9vh, 96px));
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__image--private {
  object-position: center center;
}

.page-hero__image--business {
  object-position: 52% center;
}

.page-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(252, 249, 243, 0.6), transparent, #fcf9f3);
}

.page-hero__gradient--dark {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), #fcf9f3);
}

.page-hero--private .page-hero__gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.48));
}

.page-hero--business .page-hero__gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.62));
}

.page-hero--private .page-hero__eyebrow,
.page-hero--private .page-hero__title,
.page-hero--private .page-hero__copy {
  color: #fcf9f3;
}

.page-hero--private .editorial-line {
  background-color: #fcf9f3;
}

@media (max-width: 1023px) {
  .page-hero__content {
    padding-top: clamp(128px, 17vh, 152px);
    padding-bottom: 72px;
  }

  .page-hero__content > div {
    transform: translateY(56px);
  }
}

@media (max-width: 767px) {
  .page-hero {
    height: clamp(560px, 82vh, 680px);
  }

  .page-hero__content {
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .page-hero__content > div {
    transform: translateY(40px);
  }
}
