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

html,
body {
  height: 100%;
  min-height: 100%;
  background: #ffffff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #323233;
  line-height: 1.6;
}

main {
  flex: 1;
}

section {
  width: 100%;
  display: block;
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 36px;
  z-index: 10000;
  background: transparent;
  transition: background 0.35s ease, height 0.35s ease;
  pointer-events: none;
}

.header * {
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: flex-start;
}

.logo {
  height: 50px;
  display: block;
}

.logo-dark {
  display: none;
}

.menu-btn {
  width: 34px;
  height: 26px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ddd3ca;
  transition: 0.3s ease;
}

.menu-btn span:nth-child(1) {
  top: 0;
}

.menu-btn span:nth-child(2) {
  top: 12px;
}

.menu-btn span:nth-child(3) {
  bottom: 0;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 12px;
}

.menu-content {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 90px;
  
  position: relative;
  z-index: 10001;
  
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.header.menu-open {
  background: #ddd3ca;
  backdrop-filter: blur(8px);
}

.header.menu-open .menu-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header.menu-open .logo-light {
  display: none;
}

.header.menu-open .logo-dark {
  display: block;
}

.header.menu-open .menu-btn span {
  background: #323233;
}

.menu-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-collage {
  display: flex;
  align-items: flex-start;
}

.menu-collage img {
  width: 125px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #ddd3ca;
}

.menu-collage img:hover {
  transform: translateY(-4px);
}

.menu-collage img:nth-child(2) {
  margin-left: -18px;
  margin-top: 14px;
}

.menu-collage img:nth-child(3) {
  margin-left: -18px;
}

.menu-right {
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.header-divider {
  width: 1px;
  height: 220px;
  background: rgba(50,50,51,0.25);
}

.menu-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 180px;
}

.menu-panel a {
  font-size: 12px;
  letter-spacing: 2.2px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: #323233;
}

.menu-panel a:hover {
  opacity: 0.6;
}

.menu-cta {
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid #323233;
}

.menu-cta:hover {
  background: rgba(50,50,51,0.08);
}

.hero {
  height: 70vh;
  background: url("images/hero/hero-main.jpg") center/cover no-repeat;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-text {
  position: absolute;
  bottom: 60px;
  left: 40px;
  z-index: 2;
  color: #ddd3ca;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0.5px;
  max-width: 700px;
}

.btn {
  display: inline-block;
  margin-top: 26px;
  padding: 11px 22px;
  border: 1px solid #ddd3ca;
  color: #ddd3ca;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.btn:hover {
  background: #ddd3ca;
  color: #323233;
}

.strip {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.strip::before,
.strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.strip::before {
  left: 0;
  background: linear-gradient(to right, #ddd3ca, transparent);
}

.strip::after {
  right: 0;
  background: linear-gradient(to left, #ddd3ca, transparent);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: scroll 65s linear infinite;
}

.strip-track img {
  height: 220px;
  display: block;
  transition: transform 0.5s ease
}

.strip-track img:hover {
  transform: scale(1.02);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pricing-break {
  background: #ddd3ca;
  padding: 90px 20px;
  text-align: center;
}

.pricing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-line {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.pricing-btn {
  margin-top: 20px;
  border: 1px solid #323233;
  color: #323233;
}

.pricing-btn:hover {
  background: #323233;
  color: #ddd3ca;
}

.footer {
  background: #323233;
  padding: 40px 0;
  color: #ddd3ca;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-icons a {
  color: #ddd3ca;
  font-size: 18px;
  text-decoration: none;
}

.portfolio-page {
  background: #ddd3ca;
}

.portfolio-page .menu-btn span {
  background: #ddd3ca;
}

.portfolio-hero {
  position: relative;
  width: 100%;
  height: 30vh;
  min-height: 420px;

  background: url("images/hero/hero-portfolio.jpg") center center / cover no-repeat;

  display: flex;
  align-items: flex-end;

  overflow: visible;
}

.portfolio-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;

  padding: 0 0 70px 60px;
}

.portfolio-divider {
  width: 1px;
  height: 250px;

  margin-right: 28px;
  margin-bottom: -170px;

  background: linear-gradient(
    to bottom,
    rgba(221,211,202,0.75),
    rgba(50,50,51,0.45)
  );
}

.portfolio-text {
  display: flex;
  flex-direction: column;
}

.portfolio-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  font-weight: 300;
  line-height: 1;
  color: #ddd3ca;
}

.portfolio-text p {
  margin-top: 8px;

  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;

  color: rgba(221,211,202,0.88);
}

.portfolio-section {
  padding: 140px 0 0;
  background: #ddd3ca;
}

.portfolio-grid {
  column-count: 2;
  column-gap: 0;
  padding-top: 80px;
}

.portfolio-grid img {
  width: 100%;
  margin-bottom: 0;
  display: block;
  break-inside: avoid;

  transition: opacity 0.4s ease;
  image-rendering: auto;
}

.portfolio-grid img:hover {
  opacity: 0.94;
}

.about-page {
  background: #ddd3ca;
}

.about-page .menu-btn span {
  background: #ddd3ca;
}

.about-hero {
  position: relative;
  width: 100%;
  height: 42vh;
  min-height: 420px;

  background: url("images/about/about-01.jpg") center center / cover no-repeat;

  display: flex;
  align-items: flex-end;

  overflow: visible;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;

  padding: 0 0 70px 60px;
}

.about-hero-divider {
  width: 1px;
  height: 250px;

  margin-right: 28px;
  margin-bottom: -170px;

  background: linear-gradient(
    to bottom,
    rgba(221,211,202,0.75),
    rgba(50,50,51,0.35)
  );
}

.about-hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  font-weight: 300;
  line-height: 1;

  color: #ddd3ca;
}

.about-hero-text p {
  margin-top: 10px;

  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;

  color: rgba(221,211,202,0.88);
}

.about-content-section {
  background: #ddd3ca;
  padding: 140px 60px 120px;
  position: relative;
}

.about-text-wrap {
  max-width: 760px;
}

.about-text-wrap p {
  font-size: 15px;
  line-height: 2;

  color: rgba(50,50,51,0.92);

  margin-bottom: 26px;
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.about-text-wrap h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1;

  margin-bottom: 36px;
  margin-top: -80px;
  margin-left: 50px;

  color: #323233;
}

.about-detail-image {
  position: absolute;
  right: 320px;
  top: 150px;
  
  z-index: 1;
}

.about-detail-image img {
  width: 360px;
  height: 472px;

  object-fit: cover;
  display: block;
}

.about-btn {
  margin-top: 18px;
  border: 1px solid #323233;
  color: #323233;
}

.about-btn:hover {
  background: #323233;
  color: #ddd3ca;
}

@media (max-width: 900px) {

  .about-content-section {
    padding: 120px 28px 80px;
  }

  .about-text-wrap {
    max-width: 100%;
  }

.about-text-wrap h2 {
  margin-top: -20px;
  margin-left: 0;

  font-size: 38px;
  line-height: 1.1;
  text-align: center;
}

  .about-text-wrap p {
    max-width: 100%;
  }

  .about-detail-image {
    position: relative;
    right: auto;
    top: auto;

    margin-top: 50px;

    display: flex;
    justify-content: center;
  }

  .about-detail-image img {
    width: 240px;
    height: 320px;
  }

  .about-btn {
    display: table;
    margin: 30px auto 0;
  }

}

.tarieven-page {
  background: #323233;
}

.tarieven-page .header.scrolled .menu-btn span {
  background: #ddd3ca;
}

.tarieven-page .header.scrolled .logo-dark {
  opacity: 0;
}

.tarieven-page .header.scrolled .logo-light {
  opacity: 1;
}

.tarieven-page .menu-btn span {
  background: #323233;
}

.menu-subnav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-subnav {
  margin-top: 10px;
  margin-left: 18px;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-subnav a {
  font-size: 10px;
  letter-spacing: 1.8px;
  opacity: 0.65;
}

.tarieven-intro {
  padding: 170px 60px 90px;
  background: #ddd3ca;
}

.tarieven-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tarieven-intro-line {
  width: 100%;
  height: 1px;

  background: rgba(50,50,51,0.12);
}

.tarieven-intro-inner h1 {
  margin-top: 34px;

  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;

  color: #323233;
}

.tarieven-intro-inner p {
  margin-top: 22px;

  max-width: 560px;

  font-size: 14px;
  line-height: 1.9;

  color: rgba(50,50,51,0.82);
}

.tarieven-jump-links {
  position: relative;
  z-index: 5;

  margin-top: 34px;

  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tarieven-jump-links a,
.tarieven-jump-links span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  color: rgba(50,50,51,0.58);
}

.tarieven-jump-links a {
  cursor: pointer;
}

.tarieven-jump-links a:hover {
  opacity: 0.6;
}

.tarieven-intro-line:last-child {
  margin-top: 42px;
}

.pricing-section {
  padding: 100px 60px;
  background: #323233;
}

#bruiloften {
  padding-top: 130px;
}

#loveshoots {
  border-top: 1px solid rgba(221,211,202,0.08);
}

.pricing-heading {
  margin-bottom: 42px;
}

.pricing-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;

  color: #ddd3ca;
}

.pricing-section-note {
  margin-top: 14px;

  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.3px;

  color: rgba(221,211,202,0.56);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  padding: 30px;

  background: rgba(221,211,202,0.03);

  border: 1px solid rgba(221,211,202,0.08);

  display: flex;
  flex-direction: column;

  min-height: 100%;

  transition:
    background 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.pricing-card:hover {
  background: rgba(221,211,202,0.06);
  border-color: rgba(221,211,202,0.14);
  transform: translateY(-2px);
}

.pricing-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.pricing-card-top h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #ddd3ca;
}

.pricing-card-top span {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;

  color: #ddd3ca;
}

.pricing-text {
  margin-top: 18px;

  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;

  color: #ddd3ca;
}

.pricing-meta {
  margin-top: auto;
  padding-top: 28px;

  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-meta p {
  font-size: 12px;
  line-height: 1.8;

  color: rgba(221,211,202,0.66);
}

.included-section {
  background: #2a2a2b;
  padding: 70px 28px;
}

.included-line {
  width: 120px;
  height: 1px;

  margin: 0 auto;

  background: rgba(221,211,202,0.14);
}

.included-inner {
  max-width: 700px;
  margin: 0 auto;

  text-align: center;
}

.included-inner h2 {
  margin: 26px 0 18px;

  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;

  color: #ddd3ca;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.included-list p {
  font-size: 13px;
  line-height: 1.8;

  color: rgba(221,211,202,0.72);
}

.included-line:last-child {
  margin-top: 34px;
}

.extra-section {
  background: #ddd3ca;
  padding: 60px 60px 90px;
}

.extra-line {
  width: 100%;
  height: 1px;

  background: rgba(50,50,51,0.12);
}

.extra-inner {
  padding: 30px 0;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.extra-item {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.extra-item span {
  font-size: 12px;
  line-height: 1.8;

  color: rgba(50,50,51,0.82);
}

.extra-contact-link {
  margin-top: 30px;

  margin-left: auto;

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  color: #323233;

  display: table;
}

.extra-contact-link:hover {
  opacity: 0.6;
}

@media (max-width: 1000px) {

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

@media (max-width: 900px) {

  .tarieven-intro {
    padding: 170px 28px 70px;
  }

  .tarieven-intro-inner h1 {
    font-size: 42px;
  }

  .pricing-section {
    padding: 80px 28px;
  }

  #bruiloften {
    padding-top: 100px;
  }

  .pricing-heading h2 {
    font-size: 28px;
  }

  .pricing-card {
    padding: 26px;
  }

  .pricing-text {
    font-size: 16px;
  }

  .included-section {
    padding: 60px 28px;
  }

  .included-inner h2 {
    font-size: 28px;
  }

  .extra-section {
    padding: 50px 28px 70px;
  }

  .extra-item {
    flex-direction: column;
    gap: 2px;
  }

}

.contact-page {
  background: #323233;
}

.contact-page .menu-btn span {
  background: #323233;
}

.contact-hero {
  padding: 170px 60px 80px;
  background: #ddd3ca;
}

.contact-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-hero-line {
  width: 100%;
  height: 1px;

  background: rgba(50,50,51,0.12);
}

.contact-hero-inner h1 {
  margin-top: 34px;

  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;

  color: #323233;
}

.contact-hero-inner p {
  margin-top: 22px;

  max-width: 560px;

  font-size: 14px;
  line-height: 1.9;

  color: rgba(50,50,51,0.82);
}

.contact-hero-line:last-child {
  margin-top: 42px;
}

.contact-layout {
  padding: 90px 60px 110px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;

  align-items: start;

  background: #323233;
}

.contact-form-wrap {
  padding-top: 6px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: rgba(221,211,202,0.52);
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 20px 22px;

  border: 1px solid rgba(221,211,202,0.06);

  background: rgba(221,211,202,0.035);

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;

  color: #ddd3ca;

  outline: none;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  background: rgba(221,211,202,0.045);

  border-color: rgba(221,211,202,0.10);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(221,211,202,0.055);

  border-color: rgba(221,211,202,0.16);

  transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(221,211,202,0.24);
}

.contact-form textarea {
  resize: vertical;
  min-height: 190px;
}

.contact-form input[type="date"] {
  color-scheme: dark;
}

.contact-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  padding-top: 10px;
}

.contact-form button {
  padding: 16px 28px;

  border: none;

  background: #ddd3ca;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #323233;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);

  opacity: 0.92;
}

.contact-form button:disabled {
  opacity: 0.5;
  cursor: default;
}

.form-message {
  font-size: 12px;
  line-height: 1.8;

  color: rgba(221,211,202,0.58);
}

.form-message.success {
  color: rgba(221,211,202,0.82);
}

.form-message.error {
  color: rgba(221,211,202,0.5);
}

.contact-image-wrap {
  position: sticky;
  top: 120px;
}

.contact-image-wrap img {
  width: 100%;
  height: 760px;

  object-fit: cover;

  display: block;

  opacity: 0.78;
}

.contact-direct {
  background: #ddd3ca;
  padding: 70px 60px 90px;
}

.contact-direct-line {
  width: 100%;
  height: 1px;

  background: rgba(50,50,51,0.12);
}

.contact-direct-inner {
  max-width: 1100px;
  margin: 0 auto;

  padding: 34px 0;
}

.contact-direct-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.1;

  color: #323233;
}

.contact-direct-links {
  margin-top: 24px;

  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-direct-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  color: rgba(50,50,51,0.72);

  transition: opacity 0.3s ease;
}

.contact-direct-links a:hover {
  opacity: 0.6;
}

@media (max-width: 1000px) {

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-image-wrap {
    position: relative;
    top: 0;
  }

  .contact-image-wrap img {
    height: 520px;
  }

}

@media (max-width: 900px) {

  .contact-hero {
    padding: 170px 28px 70px;
  }

  .contact-hero-inner h1 {
    font-size: 44px;
  }

  .contact-layout {
    padding: 70px 28px 90px;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-image-wrap img {
    height: 420px;
  }

  .contact-direct {
    padding: 60px 28px 70px;
  }

  .contact-direct-inner h2 {
    font-size: 30px;
  }

}
/* Accessibility: reduce motion for users who request it */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Better menu fit on small screens */
@media (max-width: 700px) {
  .header {
    padding: 24px 24px;
  }

  .menu-content {
    flex-direction: column;
    gap: 32px;
    margin-top: 34px;
  }

  .menu-left {
    display: none;
  }

  .menu-right {
    width: 100%;
    margin-left: 0;
    gap: 24px;
  }

  .header-divider {
    height: 180px;
  }

  .menu-panel {
    gap: 16px;
  }

  .hero-text {
    left: 28px;
    right: 28px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .portfolio-grid {
    column-count: 1;
  }
}
