:root {
  color-scheme: light;
  --ink: #241917;
  --muted: #6e605a;
  --paper: #fbf7ef;
  --cream: #fffaf1;
  --sage: #34483a;
  --sage-soft: #e5ebe1;
  --wine: #74392f;
  --clay: #c67b50;
  --line: rgba(36, 25, 23, 0.14);
  --shadow: 0 26px 80px rgba(36, 25, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.hero {
  position: relative;
  min-height: 88svh;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: #2f241d;
  color: #fffaf1;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background-image: url("assets/kaarsenhuisje-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 18, 14, 0.86), rgba(28, 18, 14, 0.48) 42%, rgba(28, 18, 14, 0.18) 78%),
    linear-gradient(0deg, rgba(28, 18, 14, 0.46), transparent 36%);
}

.topbar {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__logo {
  display: block;
  width: min(154px, 42vw);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.24));
}

.nav {
  gap: 6px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 250, 241, 0.84);
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 250, 241, 0.13);
  color: #fffaf1;
}

.hero__content {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
  padding: 52px 0 78px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b179;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 14vw, 9.6rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0;
  min-width: 0;
}

h2 {
  max-width: 680px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

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

.button--primary {
  background: #fffaf1;
  color: var(--ink);
}

.button--secondary {
  border-color: rgba(255, 250, 241, 0.5);
  color: #fffaf1;
}

.button--dark {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.hero__facts {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero__facts > div {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.11);
  backdrop-filter: blur(14px);
}

.fact-label,
.hero__facts span {
  display: block;
}

.fact-label {
  margin-bottom: 8px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__facts strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.hero__facts span:last-child {
  color: rgba(255, 250, 241, 0.76);
}

.section {
  padding: 82px 0;
}

.section__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.section-copy p,
.order-band p,
.offer-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hours {
  border-top: 1px solid var(--line);
}

.hours__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hours__row span {
  color: var(--muted);
}

.hours__row strong {
  font-size: 1rem;
  text-align: right;
}

.hours__row--open strong {
  color: var(--sage);
}

.section--shop {
  padding-top: 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: start;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  min-height: 184px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.76);
}

.offer-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--clay);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
}

.offer-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.offer-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.section--order {
  padding-top: 0;
}

.order-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(229, 235, 225, 0.95), rgba(255, 250, 241, 0.98)),
    radial-gradient(circle at 12% 20%, rgba(116, 57, 47, 0.18), transparent 34%);
  border: 1px solid var(--line);
}

.order-band h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

@media (max-width: 780px) {
  .hero {
    min-height: 84svh;
  }

  .topbar,
  .hero__content,
  .hero__facts,
  .section__inner {
    width: calc(100% - 28px);
  }

  .topbar {
    padding: 18px 0;
  }

  .nav {
    display: none;
  }

  .hero__content {
    padding: 42px 0 46px;
  }

  .brand__logo {
    width: min(136px, 42vw);
  }

  h1 {
    font-size: clamp(2.3rem, 9.8vw, 3rem);
  }

  .hero__actions,
  .order-band {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero__facts,
  .visit-grid,
  .shop-layout,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero__facts {
    margin-bottom: 18px;
  }

  .section {
    padding: 58px 0;
  }

  .visit-grid {
    gap: 28px;
  }

  .shop-layout {
    gap: 26px;
  }

  .offer-card {
    min-height: 0;
    padding: 22px;
  }

  .hours__row {
    grid-template-columns: minmax(92px, 1fr) auto;
    gap: 12px;
  }

  .hours__row strong {
    text-align: right;
  }

  .order-band {
    flex-direction: column;
    padding: 26px;
  }
}
