:root {
  --bg: #f5f4f1;
  --surface: #ffffff;
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --brand: #9c6f3e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.fw-container {
  background: rgb(244, 241, 231);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(63, 62, 84, 0.95);
  color: #fff;
  border-bottom: 1px solid rgb(255, 179, 0);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 1.25rem;
}

.hero {
  position: relative;
  min-height: 70vh;
}

.hero img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
  color: #fff;
  padding: 2rem 0;
}

.hero-overlay .container {
  text-align: center;
}

.products-overview {
  padding: 3rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ece8e2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 360px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-card-body {
  padding: 1rem;
}

.product-price {
  color: var(--brand);
  font-weight: 700;
}

.product-page {
  padding: 2rem 0 4rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--muted);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.carousel {
  background: var(--surface);
  border: 1px solid #ece8e2;
  border-radius: 14px;
  padding: 0.6rem;
  position: relative;
}

.carousel-back-button {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.9rem;
}

.carousel-track {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-image {
  display: none;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.carousel-image.is-active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #ddd;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  cursor: pointer;
  z-index: 3;
  color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
}

.section {
  border-radius: 14px;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.section.belofte {
  max-width: 800px;
  text-align: center;
}

.instagram-section {
  margin-bottom: 3rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
  padding: 1.2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.instagram-copy h2 {
  margin: 0.35rem 0 0.6rem;
}

.instagram-image-wrap img {
  width: 100%;
  border-radius: 12px;
  display: block;
  min-height: 260px;
  max-height: 360px;
  object-fit: cover;
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0 0.2rem;
}

.dot {
  border: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #c8c8c8;
}

.dot.is-active {
  background: var(--brand);
}

.order-button,
.contact-form button {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  margin-top: 1rem;
}

.contact-page {
  padding: 2rem 0 4rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  max-width: 640px;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #d9d6cf;
  border-radius: 8px;
  padding: 0.65rem;
  font: inherit;
}

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  color: var(--muted);
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 850px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

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