:root {
  --bg: #f2eee5;
  --surface: #fffdf9;
  --surface-2: #fff4ef;
  --ink: #222019;
  --muted: #5f5a4f;
  --primary: #c61f1c;
  --primary-strong: #8f1513;
  --primary-soft: #f7d8d7;
  --accent: #1c8f5a;
  --line: #dbd2c6;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 45px rgba(36, 27, 21, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 82% 8%, rgba(198, 31, 28, 0.16), transparent 44%),
    radial-gradient(circle at 12% 75%, rgba(28, 143, 90, 0.14), transparent 34%),
    linear-gradient(180deg, #f6f2e9 0%, #efeadf 100%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(246, 242, 233, 0.92);
  border-bottom: 1px solid rgba(219, 210, 198, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #f03a32);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(143, 21, 19, 0.34);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-title,
.brand-subtitle {
  margin: 0;
  line-height: 1.1;
}

.brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
}

.section {
  padding: 72px 0;
}

.hero-banner {
  position: relative;
  width: 100%;
  background: #1f1d18;
  border-bottom: 6px solid rgba(198, 31, 28, 0.45);
}

.hero-slider {
  width: min(1500px, 100%);
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-slider::-webkit-scrollbar {
  display: none;
}

.hero-slider img {
  flex: 0 0 100%;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  scroll-snap-align: start;
}

.hero-controls {
  position: absolute;
  inset: 0;
  width: min(1500px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
}

.hero-control {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 180ms ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.3rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin-bottom: 14px;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #ef3d36);
  box-shadow: 0 12px 20px rgba(143, 21, 19, 0.3);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
}

.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 212, 196, 0.9);
}

.image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.over {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.2));
}

.over-intro {
  text-align: center;
  max-width: 980px;
}

.over-intro .eyebrow {
  margin-bottom: 12px;
}

.welcome-photo-frame {
  width: min(960px, 100%);
  margin: 0 auto 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f3eee4;
  border: 1px solid rgba(216, 212, 196, 0.9);
  box-shadow: var(--shadow);
}

.welcome-opening-photo {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
}

.over-intro h1 {
  color: #6b2030;
  margin-bottom: 12px;
}

.over-intro p {
  color: #4f4a40;
  font-size: 1.07rem;
}

.section-heading {
  margin-bottom: 28px;
}

.products-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(34, 32, 28, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(33, 31, 25, 0.12);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 20px 22px 22px;
}

.product-content h2 {
  margin-bottom: 10px;
  color: #6b2030;
}

.product-content em {
  font-style: italic;
  font-size: 0.9em;
  color: #5d443c;
}

.tick-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #4e493f;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(28, 143, 90, 0.2);
  color: #167649;
  font-weight: 700;
}

.waarom {
  padding-top: 26px;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.why-images {
  display: grid;
  gap: 16px;
}

.why-card {
  background: linear-gradient(160deg, #fffdf9, #f5f1e8);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-card h2 {
  color: #6b2030;
  margin-bottom: 16px;
}

.tick-list-large li {
  margin-bottom: 11px;
}

.contact {
  padding-top: 56px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-info {
  background: linear-gradient(160deg, var(--primary-soft), #fde8e8);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid #e7b6b4;
}

.contact-info strong {
  color: var(--ink);
}

.contact-card p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #4a4a45;
  margin-top: 60px;
  padding: 38px 0 20px;
  background:
    linear-gradient(160deg, rgba(42, 40, 35, 0.98), rgba(30, 30, 28, 0.96)),
    radial-gradient(circle at 20% 10%, rgba(198, 31, 28, 0.24), transparent 45%);
  color: #f5f2e9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  margin: 4px 0 12px;
  font-size: 1.02rem;
}

.footer-brand p {
  color: rgba(245, 242, 233, 0.85);
}

.brand-footer .brand-subtitle {
  color: rgba(245, 242, 233, 0.7);
}

.footer-links,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-list li {
  margin-bottom: 8px;
  color: rgba(245, 242, 233, 0.85);
}

.footer-links a {
  color: rgba(245, 242, 233, 0.9);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-block,
.payment-block {
  margin-top: 18px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f7f3ea;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.payment-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.pay-badge.visa {
  background: #17359a;
  color: #fff;
}

.pay-badge.maestro {
  background: linear-gradient(90deg, #0d4b9f 0 50%, #d5143f 50% 100%);
  color: #fff;
}

.pay-badge.amex {
  background: #2e77bc;
  color: #fff;
}

.pay-badge.ideal {
  background: #fff;
  color: #101010;
  border-color: #dc1874;
}

.pay-badge.klarna {
  background: #ffb3c7;
  color: #1a1a1a;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(245, 242, 233, 0.22);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 242, 233, 0.82);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.product-card,
.image-frame,
.why-card,
.contact-card {
  animation: riseIn 500ms ease both;
}

.product-card:nth-child(2) {
  animation-delay: 80ms;
}

.product-card:nth-child(3) {
  animation-delay: 140ms;
}

@media (max-width: 960px) {
  .why-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    gap: 12px;
  }

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

}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .primary-nav {
    width: 100%;
  }

  .primary-nav .nav-links {
    display: none;
    margin-top: 10px;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
  }

  .primary-nav.is-open .nav-links {
    display: flex;
  }

  .primary-nav .nav-links a {
    display: block;
    width: fit-content;
  }

  .section {
    padding: 64px 0;
  }

  .products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .over-intro p {
    font-size: 1rem;
  }

  .hero-controls {
    padding: 0 8px;
  }

  .hero-control {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .welcome-photo-frame {
    margin-bottom: 18px;
    border-radius: var(--radius-md);
  }

}
