:root {
  --color-primary: #3e482d;
  --color-primary-deep: #2f3922;
  --color-accent: #d0d0a1;
  --color-accent-soft: #ecebcf;
  --color-surface: #f6f2e8;
  --color-surface-strong: #ebe3d3;
  --color-text: #23301a;
  --color-text-soft: rgba(35, 48, 26, 0.78);
  --color-white: #fffdf7;
  --shadow-soft: 0 24px 60px rgba(47, 57, 34, 0.18);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(208, 208, 161, 0.7), transparent 34%),
    radial-gradient(circle at right center, rgba(62, 72, 45, 0.16), transparent 28%),
    linear-gradient(135deg, #f7f3e9 0%, #efe7d8 45%, #f9f6ef 100%);
}

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

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.hero__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero__content {
  padding: 56px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(47, 57, 34, 0.12) 0%, rgba(47, 57, 34, 0.72) 100%),
    linear-gradient(135deg, rgba(62, 72, 45, 0.2), rgba(62, 72, 45, 0.85)),
    url("../images/Achtergrondafbeelding-Posthuis-Bistro.jpg")
      center / cover;
  color: var(--color-white);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 600;
}

.intro {
  max-width: 32rem;
  margin: 28px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.body-copy {
  max-width: 34rem;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.85);
  line-height: 1.8;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.hero__contact-actions {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 14px;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.button--primary {
  background: var(--color-accent);
  color: var(--color-primary-deep);
}

.button--secondary {
  border: 1px solid rgba(255, 253, 247, 0.45);
  background: rgba(255, 253, 247, 0.08);
  color: var(--color-white);
}

.hero__card {
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.76), rgba(255, 253, 247, 0.96)),
    linear-gradient(135deg, rgba(208, 208, 161, 0.45), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(62, 72, 45, 0.08);
}

.hero__card h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--color-primary);
}

.hero__card p {
  margin: 18px 0 0;
  line-height: 1.8;
  color: var(--color-text-soft);
}

.contact-list {
  display: grid;
  gap: 20px;
  margin: 0 0 0;
}

.contact-list div {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid rgba(62, 72, 45, 0.08);
}

.contact-list dt {
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(62, 72, 45, 0.64);
}

.contact-list dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero__logo-placeholder {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50rem;
  border: 0;
  text-transform: uppercase;
  background: url('../images/Logo-Posthuis-Bistro.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story {
  padding: 26px 0 0;
}

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

.story-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(62, 72, 45, 0.1);
  box-shadow: 0 20px 40px rgba(47, 57, 34, 0.08);
  backdrop-filter: blur(10px);
}§

.contact-list--cards {
  margin-top: 0;
}

.contact-list--cards div {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(62, 72, 45, 0.1);
  box-shadow: 0 20px 40px rgba(47, 57, 34, 0.08);
  backdrop-filter: blur(10px);
}

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

  .hero__content {
    min-height: 560px;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 8px;
  }

  .hero__content,
  .hero__card {
    border-radius: 24px;
  }

  .hero__content,
  .hero__card,
  .contact-list--cards div {
    padding: 24px;
  }

  h1 {
    max-width: none;
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__content {
    min-height: 500px;
  }

  .hero__logo-placeholder {
    left: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
  }
}
