:root {
  --cream: #fbf7ed;
  --warm-white: #fffdf8;
  --lemon: #f4cf45;
  --leaf: #183f2c;
  --leaf-soft: #dfe9d8;
  --gold: #b89645;
  --text: #25251f;
  --muted: #6f6a5f;
  --line: rgba(37, 37, 31, 0.12);
  --shadow: 0 24px 70px rgba(49, 45, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--warm-white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 207, 69, 0.75);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--leaf);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 4px;
}

.language-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  opacity: 0.48;
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-button:hover,
.language-button.is-active {
  opacity: 1;
  border-color: rgba(184, 150, 69, 0.38);
  background: rgba(244, 207, 69, 0.12);
}

.flag {
  display: block;
  width: 22px;
  height: 15px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(37, 37, 31, 0.16);
}

.flag-nl {
  background: linear-gradient(
    to bottom,
    #ae1c28 0 33.33%,
    #ffffff 33.33% 66.66%,
    #21468b 66.66% 100%
  );
}

.flag-gb {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='42' viewBox='0 0 60 42' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='42' rx='5' fill='%23012169'/%3E%3Cpath d='M0 0l60 42M60 0L0 42' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M0 0l60 42M60 0L0 42' stroke='%23c8102e' stroke-width='5'/%3E%3Cpath d='M30 0v42M0 21h60' stroke='%23fff' stroke-width='16'/%3E%3Cpath d='M30 0v42M0 21h60' stroke='%23c8102e' stroke-width='10'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--leaf);
}

section {
  padding: 96px 20px;
}

.section-light {
  background:
    radial-gradient(circle at 50% 38%, rgba(244, 207, 69, 0.2), transparent 28%),
    linear-gradient(180deg, var(--cream), var(--warm-white));
}

.section-warm {
  background: var(--cream);
}

.section-green {
  color: var(--warm-white);
  background: var(--leaf);
}

.hero,
.buy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px) minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  gap: 48px;
  overflow: hidden;
}

.hero-copy {
  grid-column: 1 / 2;
  justify-self: end;
  max-width: 430px;
}

.hero-image {
  grid-column: 2 / 3;
}

.hero-image,
.buy-image,
.image-panel,
.detail-card img,
.card-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at center, rgba(244, 207, 69, 0.2), rgba(223, 233, 216, 0.38));
  box-shadow: var(--shadow);
}

.hero-image,
.buy-image,
.image-panel {
  aspect-ratio: 4 / 5;
}

.hero-image img,
.buy-image img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-panel {
  padding: 34px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.image-panel img {
  object-fit: contain;
}

.has-missing-image img {
  display: none;
}

.has-missing-image::before {
  content: "";
  width: 92px;
  height: 210px;
  border: 2px solid rgba(24, 63, 44, 0.24);
  border-radius: 42px 42px 12px 12px;
  background:
    radial-gradient(circle at 50% 56%, rgba(244, 207, 69, 0.68) 0 24px, transparent 25px),
    rgba(255, 253, 248, 0.42);
}

.detail-card.has-missing-image::before {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 250px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  font-weight: 600;
}

h3 {
  font-size: 1.45rem;
  color: var(--leaf);
}

p {
  color: var(--muted);
}

.section-green p,
.section-green .eyebrow {
  color: rgba(255, 253, 248, 0.78);
}

.hero-text {
  max-width: 500px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--warm-white);
  background: var(--leaf);
}

.section-green .button-primary {
  color: var(--leaf);
  background: var(--lemon);
}

.button-secondary {
  color: var(--leaf);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.text-link {
  color: var(--leaf);
  font-weight: 700;
  border-bottom: 1px solid rgba(24, 63, 44, 0.36);
}

.section-heading,
.split-layout,
.narrow-copy,
.card-grid,
.info-grid,
.reservation-form {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.content-panel p,
.narrow-copy p {
  font-size: 1.06rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--line);
  color: var(--text);
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lemon);
}

.narrow-copy {
  max-width: 760px;
  text-align: center;
}

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

.detail-card,
.info-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 40px rgba(49, 45, 30, 0.08);
}

.detail-card {
  overflow: hidden;
}

.detail-card img,
.card-placeholder {
  width: 100%;
  height: 250px;
  min-height: 250px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  padding: 18px;
}

.card-placeholder::before {
  content: "";
  width: 78px;
  height: 128px;
  border: 2px solid rgba(24, 63, 44, 0.22);
  border-radius: 38px 38px 10px 10px;
  background: rgba(255, 253, 248, 0.46);
}

.card-placeholder.gold {
  background: linear-gradient(135deg, rgba(244, 207, 69, 0.22), rgba(255, 253, 248, 0.88));
}

.detail-card h3,
.detail-card p,
.info-grid h3,
.info-grid p {
  padding-left: 24px;
  padding-right: 24px;
}

.detail-card h3,
.info-grid h3 {
  padding-top: 24px;
}

.detail-card p,
.info-grid p {
  padding-bottom: 26px;
}

.cta {
  text-align: center;
}

.buy-hero {
  grid-template-columns: minmax(300px, 500px) minmax(300px, 560px);
  justify-content: center;
}

.product-info h1 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.product-meta {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.product-meta p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.product-meta span {
  color: var(--muted);
  font-weight: 600;
}

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

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 28px;
  margin: 0;
  color: var(--leaf);
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 42px 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--warm-white);
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.legal {
  max-width: 520px;
  margin: 0;
  font-size: 0.86rem;
}

.fade-in,
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bottle-rise {
  animation: bottleRise 900ms ease forwards;
}

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--warm-white);
    box-shadow: var(--shadow);
  }

  .language-switcher {
    padding-left: 0;
  }

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

  section {
    padding: 72px 20px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 76px;
    text-align: center;
  }

  .hero-copy,
  .hero-image {
    grid-column: auto;
    justify-self: center;
  }

  .button-row {
    justify-content: center;
  }

  .hero-image,
  .buy-image,
  .image-panel {
    width: min(100%, 520px);
    margin: 0 auto;
    min-height: 360px;
  }

  .image-panel {
    padding: 24px;
  }

  .card-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-image,
  .buy-image,
  .image-panel {
    min-height: 300px;
  }

  .product-meta p,
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
