@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 button */

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 46px;
  height: 46px;
  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: 100px;
  z-index: 1000;
  padding: 1.25rem 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 {
  width: 100%;
  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;
  margin-left: 40px;
}

.nav img {
  max-width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin-right: 40px;
}

.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.active,
.nav-links a:hover {
  color: var(--cognac);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50%;
  height: 2px;
  background: var(--cognac);
}

/* ===== Mobile hamburger nav ===== */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(143, 94, 59, 0.35);
  background: rgba(28, 28, 28, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--beige);
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* wrapper around ul so we can dropdown it */
.nav-links-wrap {
  display: block;
}

@media (max-width: 900px) {

  .nav {
    padding: 0;
    height: 95px;
  }

  .nav-brand {
    margin-left: 80px;
    padding-top: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 65px;
  }

  /* Hide inline desktop list */
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }

  /* collapsed by default */
  .nav-links-wrap {
    position: absolute;
    top: 70px;
    /* directly under the fixed nav */
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border-top: 1px solid rgba(255,255,255,0.08); */

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  /* open state */
  .nav.menu-open .nav-links-wrap {
    max-height: 70vh;
  }

  /* animate hamburger into an X */
  .nav.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav.menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav.menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 400px) {
  .nav-brand {
    margin-left: 40px;
    /* padding-top: 1rem; */
  }

  .nav-toggle {
    /* display: inline-flex;
    align-items: center;
    justify-content: center; */
    margin-right: 40px;
  }
}

/* #endregion */

/* #region HOME PAGE */

.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-inner {
  max-width: 820px;
  padding: 6rem 3rem;
}

.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%);
}

@media (max-width: 900px) {
  .hero-image {
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 4rem 2rem;
  }
}

@media (max-width: 400px) {
  .hero-inner {
    padding: 0;
    margin-top: 0;
  }

  .hero::after {
    left: 0;
  }
}

/* #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;
}

.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: auto;
  object-fit: cover;
  object-position: center bottom;
}

.signature-text {
  background: rgba(28, 28, 28, 0.85);
  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: 900px) {
  .luxe-inner {
    display: flex;
    flex-direction: column;
  }

  .luxe-image {
    width: 100%;
    max-height: 500px;
  }

  .about-signature {
    padding: 0;
    margin-bottom: 3rem;
  }

  .about-signature-grid {
    display: flex;
    flex-direction: column;
  }

  .signature-image {
    order: 2;
    width: 100%;
    /* max-height: 500px; */
    max-height: none;
  }

  .signature-text {
    order: 1;
    width: 100%;
    padding: 2rem;
  }

  .about-cta {
    margin-top: 3rem;
    padding: 2rem;
  }
}

@media (max-width: 400px) {
  .luxe-section {
    padding: 2rem;
    margin-top: 2rem;
  }

  .luxe-inner {
    gap: 3rem;
    padding: 0;
    margin: 0;
  }

  .luxe-content::after {
    margin-top: 1rem;
  }

  .section {
    padding: 0;
  }

  .about-container {
    margin: 2rem;
  }

  .about-quote-background {
    padding: 0;
    background:
      linear-gradient(180deg, #1c1c1c 0%, #252525 100%);
    margin-top: 3rem;
  }

  .about-philosophy {
    margin-top: 3rem;
  }

  .about-container h2::after {
    margin-bottom: 1.5rem;
  }

  .about-approach {
    padding: 0.2rem 0;
    background:
      linear-gradient(180deg, #1c1c1c 0%, #252525 100%);
    margin-top: 3rem;
  }

  .about-signature {
    margin-top: 1rem;
  }

  .signature-text {
    background: none;
  }

  .about-signature-grid {
    gap: 0;
  }

  .about-cta {
    margin-top: 3rem;
    padding: 2rem;
  }

  .center {
    padding: 2rem;
  }

}

/* #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;
  }
}

@media (max-width: 400px) {
  .services-hero {
    padding: 2rem 0;
  }

  .hero-accent {
    margin-top: 1rem;
  }

  .services-intro {
    background: rgba(28, 28, 28, 0.85);
    padding: 2rem;
  }

  .service-row {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }

  .service-panel {
    padding: 2rem;
  }

  .reverse {
    display: inline;
    padding: 6rem;
  }

  .accessories-section {
    margin-top: 3rem;
    padding: 0;
  }

  .center {
    padding: 0;
  }

  .accessories-lead {
    margin-bottom: 3rem;
  }

  .services-women {
    margin-top: 5rem;
    margin-bottom: 3rem;
    padding: 0;
  }

  .women-intro {
    margin-bottom: 2rem;
  }

}

/* #endregion */

/* #region GALERIJ */

.gallery-intro {
  margin: 2rem;
}

.gallery-section {
  padding: 6rem 2rem;
  background: #f8f5ef;
  color: #1c1c1c;
}

.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  color: #8a6a3d;
}

.gallery-heading,
.showcase-text {
  margin-bottom: 2rem;
}

.showcase-text h2,
.gallery-heading h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.showcase-text p,
.gallery-heading p {
  max-width: 650px;
  line-height: 1.7;
}

/* ========== CUSTOMER GRID ========== */

.customer-gallery {
  position: relative;
}

.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  transition: transform 0.45s ease;
  width: 100%;
}

.gallery-track .gallery-item {
  flex: 0 0 calc(100% / 4);
  height: 100%;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

.gallery-slider-btn {
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  background: rgba(28, 28, 28, 0.85);
  color: white;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-slider-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.gallery-slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* ========== LIGHTBOX ========== */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.97);
  z-index: 99999;
  padding: 0 !important;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
  width: 100vw;
  height: 100vh;
}

.lightbox-content img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: calc(100vw - 160px) !important;
  max-height: calc(100vh - 40px) !important;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 100000;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 100000;
}

/* ========== SHOWCASE / ADVERTISEMENT IMAGES ========== */

.collection {
  padding: 6rem;
}

.collection-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

.showcase-collage {
  position: relative;
  min-height: 500px;
}

.collage-img {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.collage-img:hover {
  transform: scale(1.02);
}

.img-1 {
  object-position: top;
  width: 40%;
  height: 300px;
  top: 40%;
  left: 0;
  /* right: 0; */
  /* bottom: 0; */
  z-index: 2;
}

.img-2 {
  object-position: top;
  width: 40%;
  height: 300px;
  top: 0%;
  left: 25%;
  /* right: 0; */
  /* bottom: 0; */
  z-index: 1;
}

.img-3 {
  object-position: top;
  width: 40%;
  height: 300px;
  top: 60%;
  left: 35%;
  /* right: 0; */
  /* bottom: 0; */
  z-index: 1;
}

.img-4 {
  object-position: top;
  width: 40%;
  height: 300px;
  top: 20%;
  /* left: 45%; */
  right: 0;
  /* bottom: 0; */
  z-index: 3;
}

.img-5 {
  object-position: top;
  width: 40%;
  height: 300px;
  top: 40%;
  left: 60%;
  /* right: 0; */
  /* bottom: 0; */
  z-index: 2;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1200px) {
  .gallery-section {
    margin: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 260px;
  }

  .collection {
    padding: 4rem;
  }

  .collection-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-collage {
    min-height: 420px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .gallery-intro {
    margin: 2rem;
  }

  .gallery-track .gallery-item {
    flex: 0 0 calc(100% / 2);
  }

  .gallery-item img {
    height: 220px;
  }
}

@media (max-width: 700px) {
  .gallery-intro {
    margin-top: 2.5rem;
  }

  .gallery-section {
    margin: 2rem;
    /* margin-top: 4rem; */
    padding: 4rem 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 180px;
  }

  .collection {
    margin-top: 3rem;
    padding: 2rem;
  }

  .collection-showcase {
    margin-bottom: 0;
  }

  .showcase-collage {
    min-height: 360px;
  }

  .img-1 {
    width: 45%;
    height: 150px;
  }

  .img-2 {
    width: 45%;
    height: 150px;
    /* top: 40px; */
  }

  .img-3 {
    width: 45%;
    height: 150px;
    /* bottom: 10px;
    left: 14%; */
  }

  .img-4 {
    width: 45%;
    height: 150px;
    /* bottom: 10px;
    left: 14%; */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-slider {
    gap: 0.5rem;
  }

  .gallery-track .gallery-item {
    flex: 0 0 calc(100% / 1);
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .gallery-intro {
    margin: 0;
    margin-top: 1.5rem;
  }

  .gallery-section {
    margin: 0;
    margin-top: 2.5rem;
  }

  .collection {
    margin-top: 3rem;
    padding: 1rem;
  }

  .collection-showcase {
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .img-1 {
    width: 45%;
    height: 150px;
  }

  .img-2 {
    width: 45%;
    height: 150px;
    /* top: 40px; */
  }

  .img-3 {
    width: 45%;
    height: 150px;
    /* bottom: 10px;
    left: 14%; */
  }

  .img-4 {
    width: 45%;
    height: 150px;
    /* bottom: 10px;
    left: 14%; */
  }
}

/* #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;
}

.contact-intro {
  align-items: center;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 40px;
}

/* ---------- 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;
}

.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 {
  max-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;
}

@media (max-width: 1250px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
  }

  .card-map {
    width: 87%;
  }
}

@media (max-width: 400px) {
.container {
  margin-top: 2rem;
}

  .contact-intro {
    margin: 0;
  }

  .card {
    padding: 0;
    border: none;
    margin-top: 3rem;
  }

  .card-map {
    max-width: 78%;
  }
}

/* #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);
}

@media (max-width: 800px) {
  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .footer {
    display: flex;
  }
}

/* #endregion */