@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:wght@400..700&family=Merriweather:opsz,wght@18..144,300..900&display=swap');

/* #region GLOBAL STYLES */

:root {
  --ivory: #f6f4f1;
  --beige: rgba(246, 244, 241, 0.85);
  --cognac: #8F5E3B;
  --darkGrey: #1c1c1c;
  --grey: #3e3e3e;
}

html {
  box-sizing: border-box;
  font-size: 18px;
  color: var(--ivory);
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background:
    url("/assets/dark-leather.png"),
    linear-gradient(180deg, var(--darkGrey) 0%, var(--grey) 100%);
}

main {
  flex: 1;
  margin: 40px;
  padding-top: 55px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Lora', serif;
  font-weight: 400;
  color: var(--ivory);
}

h1,
.behavelikeh1 {
  font-size: clamp(2.5rem, 3.5vw, 4.4rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

h2,
.behavelikeh2 {
  font-size: clamp(2rem, 2.8vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

h3,
.behavelikeh3 {
  font-size: clamp(1.6rem, 2.2vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

h4,
.behavelikeh4 {
  font-size: clamp(1.4rem, 1.8vw, 2.2rem);
  line-height: 1.3;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--beige);
}

.section {
  padding: 6rem 2rem;
}

/* Back to Top knop */

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 46px;
  height: 46px;
  /* border-radius: 50%; */
  border: 1px solid var(--cognac);
  background: rgba(28, 28, 28, 0.85);
  color: var(--cognac);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 999;
}

#backToTop:hover {
  background: var(--cognac);
  color: var(--darkGrey);
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* #endregion */

/* #region NAV */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  padding: 1.5rem 3rem;
  background: transparent;
  transition: background 0.2s ease, backdrop-filter 0.2s ease;
}

.nav.scrolled {
  background: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--beige);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--cognac);
}

.nav-cta {
  border: 1px solid var(--cognac);
  padding: 0.6rem 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cognac);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--cognac);
  color: #1c1c1c;
}

.nav-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

/* #endregion */

/* #region HOME PAGE */

.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-inner {
  max-width: 820px;
  padding: 6rem 3rem;
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 4rem 2rem;
  }
}

.hero span {
  color: var(--cognac);
}

.hero p {
  max-width: 540px;
  margin-bottom: 3rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--cognac);
  color: var(--cognac);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-hero:hover {
  background-color: var(--cognac);
  color: var(--darkGrey);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3rem;
  width: 120px;
  height: 1px;
  background: var(--cognac);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  opacity: 0.75;
  filter: contrast(105%) saturate(95%);

  -webkit-mask-image: linear-gradient(to left,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.6) 80%,
      rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.6) 80%,
      rgba(0, 0, 0, 0) 100%);
}

/* #endregion */

/* #region OVER ONS */

.luxe-section {
  min-height: 85vh;
  position: relative;
  padding: 7rem 3rem;
  background:
    linear-gradient(180deg, #1c1c1c 0%, #252525 100%);
  color: #f6f4f1;
  margin-bottom: 3rem;
}

.luxe-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 7rem;
  align-items: center;
  /* border: 1px solid green; */
}

.luxe-content {
  max-width: 640px;
  /* border: 1px solid red; */
}

.luxe-quote {
  font-family: "Lora", serif;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.luxe-author {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cognac);
  font-weight: 500;
}

.luxe-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 4px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.luxe-image {
  position: relative;
}

.luxe-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      transparent 40%,
      rgba(31, 31, 31, 0.7) 85%,
      rgba(31, 31, 31, 1) 100%);
  pointer-events: none;
}

.luxe-content::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background: var(--cognac);
  margin-top: 3rem;
}

.about-container {
  max-width: 820px;
  margin: 0 auto;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 2rem;
}

/* =========================
   GIANT BACKGROUND QUOTE
========================= */

.about-quote-background {
  position: relative;
  padding: 10rem 2rem;
  overflow: hidden;
}

.giant-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Lora', serif;
  font-size: clamp(6rem, 9vw, 14rem);
  line-height: 0.85;
  text-align: center;
  color: var(--ivory);
  opacity: 0.04;
  /* super subtiel */
  pointer-events: none;
  white-space: nowrap;
}

.about-cta {
  background: #1c1c1c;
  text-align: center;
}

.about-container h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background: var(--cognac);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.about-values {
  list-style: none;
  margin: 2rem 0 2.5rem 0;
  padding: 0;
}

.about-values li {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--beige);
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 1.5rem;
}

.about-values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--cognac);
  border-radius: 50%;
}

/* =========================
   EIGEN MAATWERKLIJN
========================= */

.about-signature {
  padding: 8rem 2rem;
}

.about-signature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.signature-image img {
  width: 100%;
  /* height: 520px; */
  object-fit: cover;
  object-position: center bottom;
  /* focus onderkant */
}

.signature-text {
  background: rgba(28, 28, 28, 0.85);
  /* height: 520px; */
  padding: 4rem;
}

.signature-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.signature-text h2 {
  margin-bottom: 2rem;
}

.signature-text p {
  margin-bottom: 1.4rem;
}

.about-cta p {
  max-width: 540px;
  margin: 0 auto 2.5rem auto;
}

@media (max-width: 950px) {

  .about-signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-image img {
    height: 350px;
  }

  .signature-text {
    padding: 3rem;
  }
}

/* #endregion */

/* #region DIENSTEN */

.container-narrow {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.container-wide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 6rem 2rem;
}

.services-kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: 2rem;
  font-weight: 500;
}

.services-hero h1 {
  font-size: clamp(2.5rem, 3.5vw, 4.4rem);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.hero-accent {
  color: var(--cognac);
  display: block;
}

.hero-intro {
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 2rem;
}

.services-hero p {
  max-width: 900px;
  margin-bottom: 1.6rem;
}

.services-intro {
  padding: 4rem 2rem 8rem 2rem;
}

.services-intro p {
  margin-bottom: 1.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: stretch;
  margin-bottom: 8rem;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse>* {
  direction: ltr;
}

.service-image {
  max-height: 400px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel {
  background: rgba(28, 28, 28, 0.85);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-panel h2 {
  margin-bottom: 2rem;
}

.accessories-section {
  padding: 6rem 2rem 8rem 2rem;
}

.accessories-lead {
  font-size: 1.3rem;
  margin: 2rem 0 4rem 0;
  color: var(--ivory);
}

.accessories-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.accessories-images img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* =========================
   VROUWENMAATWERK
========================= */

.services-women {
  padding: 6rem 2rem 10rem 2rem;
}

.women-intro {
  margin-top: 1.5rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.women-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.women-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s ease;
}

/* subtiele asymmetrie */
.women-gallery img:nth-child(2) {
  margin-top: 3rem;
}

.women-gallery img:nth-child(3) {
  margin-top: 1.5rem;
}

.women-gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-panel {
    padding: 3rem;
  }

  .accessories-images {
    grid-template-columns: 1fr;
  }

  .accessories-images img {
    height: 300px;
  }

  .women-gallery {
    grid-template-columns: 1fr;
  }

  .women-gallery img {
    height: 300px;
    margin-top: 0 !important;
  }
}

/* #endregion */

/* #region GALERIJ */

.gallery-container {
  height: 100%;
  width: 100%;
  overflow: visible;
  scrollbar-width: none;
  position: relative;
}

/* .gallery-inner {
  height: 60vh;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  overflow: scroll;
  scrollbar-width: none;
} */

.gallery-grid {
  margin: 0 auto;
  height: 100%;
  width: 80%;
  display: grid;
  overflow: visible;
  scrollbar-width: none;
  grid-template-columns: repeat(6, 1fr);
  /* grid-template-rows: repeat(3, 1fr); */
  /* grid-auto-rows: 300px; */
  grid-auto-rows: 33vh;
  gap: 10px;
  position: relative;
}

@media (max-width: 499px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* .image-box {
  width: 300px;
  height: 400px;
  overflow: visible;
} */

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.gallery-photo.active {
  transform: scale(1.5);
  z-index: 10;
}

.zoom-out {
  object-fit: contain;
}

.zoom-in {
  object-fit: fill;
}

.left {
  object-position: left;
}

.right {
  object-position: right;
}

.top {
  object-position: top;
}

.bottom {
  object-position: bottom;
}

.sharpen {
  filter: contrast(1.1) brightness(1.05) saturate(1.05);
}

/* #endregion */

/* #region CONTACT */

.page-contact {
  width: 100%;
}

.contact-intro {
  padding: 1rem 0 2.5rem;
}

.contact-intro h1 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.intro-text {
  max-width: 60ch;
  line-height: 1.6;
  opacity: 0.75;
  font-weight: 300;
}

/* ---------- Layout ---------- */

.page-contact .section {
  padding: 2rem 0 5rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Cards ---------- */

.card {
  padding: 2rem;
  /* border-radius: 10px; */
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* border: 1px solid var(--cognac); */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card h2 {
  font-family: "Lora", serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.4px;
}

/* ---------- Info Block ---------- */

.info-list {
  display: grid;
  gap: 1.2rem;
}

.info-item .label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.4rem;
  color: var(--cognac)
}

.info-item .value {
  text-decoration: none;
  font-weight: 300;
  color: var(--beige);
}

.info-item a.value:hover {
  text-decoration: underline;
}

.info-item a:visited {
  color: var(--beige);
}

/* ---------- Form ---------- */

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.7;
  color: var(--cognac);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  /* border-radius: 12px; */
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* border: 1px solid var(--cognac); */
  background: transparent;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.field input::placeholder,
.field textarea::placeholder {
  opacity: 0.4;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  /* border: 1px solid var(--cognac); */
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

/* ---------- Button ---------- */

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.btn {
  height: 46px;
  padding: 0 1.5rem;
  /* border-radius: 10px; */
  border: 1px solid var(--cognac);
  background: transparent;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--cognac);
}

.btn:hover {
  background: var(--cognac);
  color: var(--darkGrey);
}

.btn-primary {
  border-color: var(--cognac);
}

.card-map {
  display: flex;
  flex-direction: column;
}

.map-embed {
  width: 100%;
  min-height: 420px;
  /* height: 250px; */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  /* filter: grayscale(1) contrast(1.05) brightness(0.85); */
}

@media (max-width: 900px) {
  .map-embed,
  .map-embed iframe {
    min-height: 340px;
  }
}

/* #endregion */

/* #region OTHER */

.toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  min-width: 280px;
  max-width: 400px;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 400;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(20, 20, 20, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-color: rgba(120, 200, 140, 0.4);
}

.toast.error {
  border-color: rgba(220, 90, 90, 0.4);
}

/* #endregion */

/* #region BREAKPOINTS */

@media (min-width: 768px) {
  /* Tablet */
}

@media (min-width: 1024px) {
  /* Laptop */
}

@media (min-width: 1280px) {
  /* Large desktop */
}

/* #endregion */

/* #region FOOTER */

.main-footer {
  border-top: 1px solid rgba(143, 94, 59, 0.3);
  padding: 1.5rem 0;
  background: var(--darkGrey);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--beige);
}

/* #endregion */