@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;500;600;700&display=swap");

/*
  Snelle aanpassing:
  1) Kleuren: pas de variabelen in :root aan.
  2) Teksten en contactgegevens: vervang placeholders in index.html.
*/

:root {
  --color-bg: #f2f2ef;
  --color-surface: #ffffff;
  --color-text: #232a33;
  --color-text-soft: #232a33;
  --color-primary: #2f3742;
  --color-primary-dark: #1f252d;
  --color-accent: #232a33;
  --color-border: #e2d8ca;
  --color-shadow: 35 38 44;
  --font-bodoni: "Bodoni Moda", "Didot", "Bodoni MT", "Times New Roman", serif;
  --btn-primary-bg: #b4a277;
  --btn-primary-bg-hover: #9a8a64;
  --btn-primary-text: #ffffff;
  --btn-secondary-bg: #FFFFFF;
  --btn-secondary-bg-hover: #F5F5F5;
  --btn-secondary-text: #5a6470;
  --btn-secondary-border: #5a6470;
  --radius-md: 14px;
  --radius-lg: 24px;
  --space-1: 0.5rem;
  --space-2: 0.8rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3.5rem;
  --container: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  font-family: "Nunito Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.58;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.26)),
    url("assets/marble-background.svg");
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-blend-mode: normal, normal;
  background-attachment: fixed;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(122, 75, 95, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -120%;
  left: 0;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 0;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(226, 216, 202, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-text);
  text-decoration: none;
}

.brand:hover {
  color: var(--color-text);
}

.brand-name {
  font-size: 1.05rem;
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", serif;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: auto;
  height: 120px;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-soft);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-bodoni);
}

.nav-list a:hover {
  color: var(--color-text);
}

.nav-list a.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.95rem;
  border: 1px solid transparent;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  text-decoration: none;
}

.nav-list a.nav-contact-btn:hover {
  background: var(--btn-primary-bg-hover);
  color: var(--btn-primary-text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #b4a277;
}

.section {
  padding: var(--space-6) 0;
}

.section-soft {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  color: #1f242c;
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", serif;
  font-weight: 600;
}

h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.05rem, 4.9vw, 3.25rem);
  letter-spacing: -0.015em;
  max-width: 16ch;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.42rem;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 58ch;
  color: var(--color-text-soft);
}

.hero {
  padding-top: calc(var(--space-6) + var(--space-1));
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: var(--space-5);
  align-items: center;
}

.hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

@media (min-width: 981px) {
  .split-reverse .content-panel {
    order: 2;
  }

  .split-reverse .image-placeholder {
    order: 1;
  }
}

.hero-panel,
.content-panel {
  border-radius: 0;
  box-shadow: 0 16px 30px rgba(var(--color-shadow), 0.08);
}

.hero-panel {
  padding: clamp(1.25rem, 3vw, 2.3rem);
}

.content-panel {
  padding: clamp(1.1rem, 2.5vw, 2rem);
}

.button-row {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.15rem;
  border-radius: 0;
  border: 1px solid transparent;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, color 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}

.btn-primary:hover {
  background: var(--btn-primary-bg-hover);
  color: var(--btn-primary-text);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-border);
}

.btn-secondary:hover {
  background: var(--btn-secondary-bg-hover);
  color: #000000;
}

.image-placeholder {
  min-height: 295px;
  padding: var(--space-4);
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 0;
  border: 1.5px dashed rgba(90, 100, 112, 0.32);
  background: #f8f5f1;
  color: #4b5c6f;
  font-weight: 700;
}

.image-placeholder-small {
  min-height: 245px;
}

.about-stock-image,
.hero-proof-image {
  display: block;
  width: 100%;
  height: clamp(300px, 34vw, 440px);
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.hero-slideshow {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(300px, 34vw, 440px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slideshow-dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transform: translateX(-50%);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(35, 42, 51, 0.16);
  font-size: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-arrow:hover {
  background: #fcfcfc;
  border-color: #cfcfcf;
}

.hero-arrow::before {
  color: #b4a277;
  font-family: "Nunito Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.hero-arrow-prev::before {
  content: "\2039";
}

.hero-arrow-next::before {
  content: "\203A";
}

.hero-arrow-prev {
  left: 0.65rem;
}

.hero-arrow-next {
  right: 0.65rem;
}

.hero-dot {
  width: 0.58rem;
  height: 0.58rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #ffffff;
}

@media (min-width: 981px) {
  .about-stock-image,
  .hero-proof-image,
  .hero-slideshow {
    width: 100%;
    height: clamp(340px, 36vw, 520px);
  }
}

.check-list {
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 0.62rem;
  padding-left: 1.45rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0;
  background: #b4a277;
}

.cards {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.card {
  padding: var(--space-4);
  border-radius: 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: 0 14px 24px rgba(var(--color-shadow), 0.06);
}

.card h3 {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.42rem;
}

.card p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-3);
}

.price-from {
  margin-bottom: 0.55rem;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.text-link {
  color: var(--btn-secondary-text);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: #694153;
}

.pricing-note {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.prijslijst-poster {
  margin: 2rem auto 0;
  max-width: 760px;
}

#prijslijst h2 {
  text-align: center;
}

.prijslijst-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 24px rgba(var(--color-shadow), 0.1);
}

.reviews-wrap h2 {
  text-align: center;
}

.reviews-intro {
  margin: 0 auto;
  max-width: 64ch;
  color: var(--color-text-soft);
  text-align: center;
}

.reviews-grid {
  margin-top: 1.6rem;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d8d8d8 transparent;
  gap: 1rem;
  padding: 0 0 0.35rem;
}

.reviews-grid::-webkit-scrollbar {
  height: 8px;
}

.reviews-grid::-webkit-scrollbar-thumb {
  background: #d8d8d8;
}

.reviews-grid::-webkit-scrollbar-track {
  background: transparent;
}

.review-card {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 1rem;
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
}

.review-rating {
  margin: 0 0 0.45rem;
  color: #b4a277;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-text {
  margin: 0;
  color: var(--color-text);
}

.review-author {
  margin: 0.8rem 0 0;
  color: var(--color-text-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.reviews-cta {
  margin: 1.3rem 0 0;
  text-align: center;
}

#reviews {
  border-bottom: 1px solid rgba(226, 216, 202, 0.9);
}

@media (min-width: 981px) {
  .review-card {
    flex-basis: 330px;
  }
}

.contact-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.contact-card {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-surface);
  box-shadow: 0 14px 24px rgba(var(--color-shadow), 0.06);
}

.contact-card p {
  margin-bottom: 0.55rem;
}

.contact-card-accent {
  background: #f8f5f1;
}

.site-footer {
  background: #FFFFFF;
  padding: 4.8rem 0 5.2rem;
  font-family: var(--font-bodoni);
}

.site-footer .container {
  width: 100%;
  max-width: 1080px;
  padding-inline: 1.5rem;
  margin-inline: auto;
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}

.footer-contact {
  justify-self: start;
}

.footer-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.15;
  color: #37384a;
}

.footer-address {
  margin: 0 0 0.55rem;
  max-width: 30ch;
  color: #6a717d;
  font-size: 0.95rem;
}

.footer-email {
  margin: 0 0 0.75rem;
}

.footer-email a {
  color: #626b78;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-phone {
  margin: 0;
  line-height: 1;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.footer-phone a {
  color: #b4a277;
  font-weight: 700;
  text-decoration: none;
}

.footer-hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.22rem;
  color: #6a717d;
  font-size: 0.92rem;
}

.footer-hours {
  text-align: center;
  justify-self: center;
}

.footer-hours .footer-hours-list {
  justify-content: center;
}

.footer-hours-list li {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 0.3rem;
  justify-content: center;
}

.footer-hours-list li span:first-child {
  font-weight: 700;
  color: #4f5663;
}

.social-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-social {
  text-align: right;
  justify-self: end;
}

.footer-social .social-list {
  justify-content: flex-end;
}

.social-list a {
  color: #6a717d;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.25;
}

.social-list a:hover {
  color: #37384a;
}

.social-list a.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #b4a277;
}

.social-list a.social-icon-link:hover {
  color: var(--btn-primary-bg-hover);
}

.social-icon {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0.8rem 0 0;
  color: #8b9098;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  body {
    background-attachment: scroll;
  }

  .site-header .container {
    width: min(100% - 2.2rem, var(--container));
  }

  #reviews .container {
    width: min(100% - 2.2rem, var(--container));
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    min-height: 74px;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 12px 18px rgba(var(--color-shadow), 0.08);
    z-index: 40;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.35rem;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.8rem 0.9rem;
    border: 0;
  }

  .nav-list a.nav-contact-btn {
    justify-content: center;
    margin-top: 0.2rem;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 700px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  #reviews .container {
    width: min(100% - 1.25rem, var(--container));
    padding-inline: 1.1rem;
  }

  .header-inner {
    min-height: auto;
    gap: 0.7rem;
    padding: 0.7rem 0;
    justify-content: space-between;
  }

  .brand-logo {
    height: 80px;
  }

  .section {
    padding: 2.6rem 0;
  }

  .hero {
    padding-top: calc(var(--space-5) + 0.4rem);
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .hero-panel,
  .content-panel {
    padding: 1.1rem;
  }

  .button-row {
    gap: 0.6rem;
  }

  .button-row .btn {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .image-placeholder {
    min-height: 220px;
  }

  .about-stock-image {
    height: clamp(320px, 78vw, 500px);
    width: calc(100% - 2.2rem);
    margin-inline: auto;
  }

  .hero-proof-image,
  .hero-slideshow {
    height: clamp(320px, 78vw, 500px);
    width: calc(100% - 2.2rem);
    margin-inline: auto;
  }

  .hero-arrow {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero-arrow::before {
    font-size: 1.55rem;
  }

  .prijslijst-image {
    height: auto;
    width: calc(100% - 2.2rem);
    margin-inline: auto;
  }

  .site-footer {
    padding: 3.3rem 0 3.6rem;
  }

  .footer-title {
    font-size: 1.25rem;
  }

  .footer-phone {
    font-size: 1.35rem;
  }

  .footer-hours-list {
    font-size: 0.88rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.2rem;
    text-align: left;
  }

  .footer-contact,
  .footer-hours,
  .footer-social {
    justify-self: start;
  }

  .footer-social {
    text-align: left;
  }

  .footer-hours {
    text-align: left;
  }

  .footer-social .social-list {
    justify-content: flex-start;
  }

  .footer-hours .footer-hours-list,
  .footer-hours-list li {
    justify-content: start;
  }

}
