/* Lijst & Glas — recipe L13 H11 Y02 C08 S04 F21 N21 T20 A21 M14 K24 CB14 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --lg-board: #1c3d2e;
  --lg-board-deep: #132a20;
  --lg-chalk: #e9e4d4;
  --lg-chalk-dim: #c5bfae;
  --lg-dust: #a8c4a0;
  --lg-accent: #d4c48a;
  --lg-line: rgba(233, 228, 212, 0.22);
  --lg-serif: 'Cormorant Garamond', Georgia, serif;
  --lg-sans: 'Source Sans 3', 'Segoe UI', sans-serif;
  --lg-max: 1120px;
  --lg-ease: 0.45s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--lg-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--lg-chalk);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(168, 196, 160, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 196, 138, 0.06), transparent 45%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 3px
    ),
    var(--lg-board);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lg-accent); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--lg-chalk); }
h1, h2, h3, .lg-brand {
  font-family: var(--lg-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.lg-wrap {
  width: min(100% - 2rem, var(--lg-max));
  margin-inline: auto;
}

/* H11 — brand only header */
.lg-header {
  padding: 1.25rem 0 0.35rem;
  border-bottom: 1px solid var(--lg-line);
}
.lg-brand {
  display: block;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  color: var(--lg-chalk);
  text-decoration: none;
  text-align: center;
}
.lg-brand span {
  display: block;
  font-family: var(--lg-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lg-dust);
  margin-top: 0.2rem;
}

/* N21 — horizontal scroll nav chips */
.lg-chips {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.85rem 1rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--lg-dust) transparent;
  -webkit-overflow-scrolling: touch;
}
.lg-chips a {
  flex: 0 0 auto;
  font-family: var(--lg-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--lg-board-deep);
  background: var(--lg-chalk);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background var(--lg-ease), color var(--lg-ease);
}
.lg-chips a:hover,
.lg-chips a[aria-current="page"] {
  background: var(--lg-accent);
  color: var(--lg-board-deep);
}

/* L13 — catalog first */
.lg-catalog {
  padding: 2.5rem 0 1.5rem;
}
.lg-catalog__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lg-dust);
  margin: 0 0 0.75rem;
}
.lg-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lg-line);
}
.lg-filters a {
  font-size: 0.92rem;
  color: var(--lg-chalk-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.lg-filters a:hover { color: var(--lg-chalk); border-bottom-color: var(--lg-accent); }

.lg-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
  column-gap: 2.5rem;
}
@media (min-width: 700px) {
  .lg-item-list { columns: 2; }
}
.lg-item-list li {
  break-inside: avoid;
  padding: 0.55rem 0;
  border-bottom: 1px dotted var(--lg-line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
}
.lg-item-list li strong {
  font-family: var(--lg-serif);
  font-weight: 600;
  font-size: 1.12rem;
}
.lg-item-list li em {
  font-style: normal;
  color: var(--lg-chalk-dim);
  font-size: 0.88rem;
  text-align: right;
}

/* Y02 — hero below fold, text bottom-center */
.lg-hero {
  position: relative;
  min-height: min(78vh, 640px);
  margin: 1.5rem 0 0;
  overflow: hidden;
  background: var(--lg-board-deep);
}
.lg-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.72);
}
.lg-hero__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem 1.25rem 2.25rem;
  text-align: center;
  background: linear-gradient(transparent, rgba(19, 42, 32, 0.92) 55%);
}
.lg-hero__copy h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--lg-chalk);
}
.lg-hero__copy p {
  margin: 0 auto 1.25rem;
  max-width: 36ch;
  color: var(--lg-chalk-dim);
  font-size: 1.05rem;
}
.lg-btn {
  display: inline-block;
  font-family: var(--lg-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lg-board-deep);
  background: var(--lg-accent);
  padding: 0.75rem 1.4rem;
  border: none;
  cursor: pointer;
  transition: filter var(--lg-ease);
}
.lg-btn:hover { filter: brightness(1.08); color: var(--lg-board-deep); }
.lg-btn--ghost {
  background: transparent;
  color: var(--lg-chalk);
  border: 1px solid var(--lg-chalk-dim);
  margin-left: 0.5rem;
}
.lg-btn--ghost:hover { border-color: var(--lg-accent); color: var(--lg-accent); }

/* S04 — full-bleed image breaks */
.lg-break {
  margin: 0;
  width: 100%;
  max-height: 42vh;
  object-fit: cover;
  display: block;
}

/* C08 — definition list services */
.lg-section {
  padding: 3rem 0;
}
.lg-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin: 0 0 0.4rem;
}
.lg-lede {
  color: var(--lg-chalk-dim);
  max-width: 48ch;
  margin: 0 0 2rem;
}
.lg-dl {
  margin: 0;
  max-width: 52rem;
}
.lg-dl dt {
  font-family: var(--lg-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--lg-line);
  color: var(--lg-accent);
}
.lg-dl dt:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.lg-dl dd {
  margin: 0.35rem 0 0;
  color: var(--lg-chalk-dim);
  max-width: 58ch;
}

/* M14 — image swap crossfade */
.lg-swap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--lg-board-deep);
}
.lg-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--lg-ease);
}
.lg-swap img:last-child { opacity: 0; }
.lg-swap:hover img:first-child,
.lg-swap:focus-within img:first-child { opacity: 0; }
.lg-swap:hover img:last-child,
.lg-swap:focus-within img:last-child { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .lg-swap:hover img:first-child,
  .lg-swap:focus-within img:first-child { opacity: 1; }
  .lg-swap:hover img:last-child,
  .lg-swap:focus-within img:last-child { opacity: 0; }
}

.lg-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 0 2rem;
}
@media (min-width: 700px) {
  .lg-gallery { grid-template-columns: 1fr 1fr; }
}
.lg-gallery figcaption {
  font-size: 0.85rem;
  color: var(--lg-chalk-dim);
  margin-top: 0.5rem;
}

/* Inner pages */
.lg-page-head {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--lg-line);
  margin-bottom: 2rem;
}
.lg-page-head h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.lg-page-head p {
  margin: 0;
  color: var(--lg-chalk-dim);
  max-width: 48ch;
}

.lg-prose {
  max-width: 62ch;
}
.lg-prose p,
.lg-prose li { color: var(--lg-chalk-dim); }
.lg-prose ul {
  padding-left: 1.15rem;
  margin: 0.5rem 0 1rem;
}
.lg-prose li { margin: 0.35rem 0; }
.lg-prose h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.5rem;
  color: var(--lg-accent);
}
.lg-prose code {
  font-size: 0.88em;
  color: var(--lg-dust);
}

.lg-frames-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lg-frames-grid { grid-template-columns: 1fr 1fr; }
}
.lg-frames-grid figure { margin: 0; }
.lg-frames-grid figcaption {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--lg-chalk-dim);
}
.lg-frames-grid strong {
  display: block;
  font-family: var(--lg-serif);
  font-size: 1.2rem;
  color: var(--lg-chalk);
  font-weight: 600;
}

/* K24 — legal-adjacent small print + form */
.lg-visit {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--lg-line);
}
.lg-visit__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .lg-visit__grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.lg-legal-note {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--lg-chalk-dim);
  max-width: 42ch;
  margin: 1rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--lg-line);
}
.lg-legal-note a { color: var(--lg-dust); }
.lg-hours {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}
.lg-hours dt {
  font-weight: 600;
  color: var(--lg-accent);
  margin-top: 0.5rem;
}
.lg-hours dd { margin: 0.1rem 0 0; color: var(--lg-chalk-dim); }

.lg-form label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin: 0.85rem 0 0.3rem;
  color: var(--lg-dust);
}
.lg-form input,
.lg-form textarea,
.lg-form select {
  width: 100%;
  font: inherit;
  color: var(--lg-chalk);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--lg-line);
  padding: 0.65rem 0.75rem;
}
.lg-form input:focus,
.lg-form textarea:focus {
  outline: 2px solid var(--lg-accent);
  outline-offset: 1px;
}
.lg-form textarea { min-height: 8rem; resize: vertical; }
.lg-form .lg-btn { margin-top: 1.1rem; }
.lg-form-success {
  display: none;
  padding: 1rem;
  border: 1px solid var(--lg-dust);
  background: rgba(168, 196, 160, 0.12);
  color: var(--lg-chalk);
  margin-top: 1rem;
}
.lg-form-success.is-visible { display: block; }

/* F21 — twin address lines */
.lg-footer {
  margin-top: 2rem;
  padding: 2.25rem 0 6rem;
  border-top: 1px solid var(--lg-line);
  background: var(--lg-board-deep);
}
.lg-footer__twin {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--lg-chalk-dim);
  margin: 0 0 1.25rem;
}
.lg-footer__twin strong {
  display: block;
  font-family: var(--lg-serif);
  font-size: 1.35rem;
  color: var(--lg-chalk);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.lg-footer__twin .lg-line-a,
.lg-footer__twin .lg-line-b {
  display: block;
}
.lg-footer__twin .lg-line-b {
  opacity: 0.72;
  font-style: italic;
}
.lg-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  margin-bottom: 1rem;
}
.lg-footer__nav a {
  font-size: 0.88rem;
  color: var(--lg-dust);
  text-decoration: none;
}
.lg-footer__nav a:hover { color: var(--lg-accent); }
.lg-footer__legal {
  font-size: 0.78rem;
  color: var(--lg-chalk-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.lg-footer__legal a { color: var(--lg-chalk-dim); }

/* CB14 — ticket stub cookie banner */
.lg-cookie {
  position: fixed;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 1000;
  width: min(360px, calc(100vw - 2.2rem));
  background: var(--lg-chalk);
  color: var(--lg-board-deep);
  padding: 1.1rem 1.2rem 1.15rem 1.45rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  clip-path: polygon(
    0 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% 100%,
    14px 100%,
    0 calc(100% - 14px)
  );
  display: none;
}
.lg-cookie.is-visible { display: block; }
.lg-cookie::before {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0.7rem;
  bottom: 0.7rem;
  width: 2px;
  border-left: 2px dotted rgba(28, 61, 46, 0.35);
}
.lg-cookie p {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  line-height: 1.45;
  padding-left: 0.35rem;
}
.lg-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-left: 0.35rem;
}
.lg-cookie__actions button {
  font-family: var(--lg-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--lg-board);
  background: transparent;
  color: var(--lg-board-deep);
  cursor: pointer;
}
.lg-cookie__actions button[data-cookie="accept"] {
  background: var(--lg-board);
  color: var(--lg-chalk);
}
.lg-cookie__settings {
  display: none;
  margin-top: 0.75rem;
  padding: 0.65rem 0.35rem 0;
  border-top: 1px dashed rgba(28, 61, 46, 0.3);
  font-size: 0.8rem;
}
.lg-cookie__settings.is-open { display: block; }
.lg-cookie__settings label {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0.35rem 0;
}

/* Utility */
.lg-muted { color: var(--lg-chalk-dim); }
.lg-map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.92rem;
}
.lg-cta-row { margin-top: 2rem; }
.lg-legal-body { padding-bottom: 3rem; }
