/* ============================================================
   BRASSERIE DE BEEMSTER — coming soon
   Zelfstandige pagina · landelijk donker · crème/olijf/goud
   ============================================================ */
:root {
  --ink:      #181510;
  --cream:    #efe6d2;
  --gold:     #ad8a47;
  --gold-deep:#8c6d31;
  --gold-soft:#cdb079;
  --olive:    #5e6e43;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --e1: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  min-height: 100svh; display: flex; flex-direction: column;
  background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  position: relative; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* background image + overlay (degrades to dark) */
.bg {
  position: fixed; inset: 0; z-index: 0; background: var(--ink);
  background-image: url("https://images.unsplash.com/photo-1592861956120-e524fc739696?auto=format&fit=crop&w=1900&q=80");
  background-size: cover; background-position: center;
  transform: scale(1.05); animation: kb 20s ease-out forwards;
}
@keyframes kb { to { transform: scale(1.14); } }
.veil {
  position: fixed; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 28%, rgba(24,21,16,.55), rgba(24,21,16,.86) 72%),
    linear-gradient(to bottom, rgba(24,21,16,.7), rgba(24,21,16,.55) 40%, rgba(24,21,16,.95));
}

/* layout */
.wrap {
  position: relative; z-index: 2; flex: 1;
  width: 100%; max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(48px, 9vh, 96px) clamp(22px, 5vw, 40px) 40px;
  justify-content: center; gap: 0;
}

/* staggered entrance */
.head, .ornament, .status, .title, .lead, .cta, .info, .socials {
  opacity: 0; transform: translateY(22px);
  animation: rise .9s var(--e1) forwards;
}
.head     { animation-delay: .10s; }
.ornament { animation-delay: .22s; }
.status   { animation-delay: .30s; }
.title    { animation-delay: .38s; }
.lead     { animation-delay: .48s; }
.cta      { animation-delay: .58s; }
.info     { animation-delay: .68s; }
.socials  { animation-delay: .78s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce){
  .head,.ornament,.status,.title,.lead,.cta,.info,.socials{opacity:1;transform:none;animation:none;}
  .bg{animation:none;transform:none;}
}

.logo { width: clamp(230px, 50vw, 360px); height: auto; }

.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold); margin: 26px 0 22px; }
.ornament span { width: clamp(40px, 14vw, 90px); height: 1px; background: linear-gradient(90deg, transparent, currentColor); }
.ornament span:last-child { background: linear-gradient(270deg, transparent, currentColor); }

.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .22em; color: var(--gold-soft);
}
.status i { width: 8px; height: 8px; border-radius: 50%; background: #7cae53; box-shadow: 0 0 0 0 rgba(124,174,83,.55); animation: pulse 2.4s infinite; }
.status.closed { color: rgba(239,230,210,.6); }
.status.closed i { background: var(--gold); animation: none; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(124,174,83,.5);} 70%{box-shadow:0 0 0 7px rgba(124,174,83,0);} 100%{box-shadow:0 0 0 0 rgba(124,174,83,0);} }

.title {
  font-family: var(--serif); font-weight: 500; line-height: 1.04;
  font-size: clamp(2.2rem, 6.5vw, 4.2rem); letter-spacing: -.01em; margin-top: 18px;
}
.title em { color: var(--gold-soft); }
.lead { margin: 22px auto 0; max-width: 48ch; color: rgba(239,230,210,.84); font-size: clamp(1rem, 1.5vw, 1.15rem); }

.cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; letter-spacing: .03em;
  padding: 15px 28px; border-radius: 2px; border: 1px solid transparent;
  transition: background .35s var(--e1), color .35s var(--e1), border-color .35s var(--e1);
}
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); }
.btn--line { border-color: rgba(239,230,210,.45); color: var(--cream); }
.btn--line:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.info {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  width: 100%; margin-top: clamp(44px, 7vh, 70px);
  padding-top: clamp(34px, 5vh, 50px); border-top: 1px solid rgba(239,230,210,.16);
  text-align: left;
}
@media (max-width: 640px){ .info { grid-template-columns: 1fr; gap: 24px; text-align: center; } }
.info__col { display: flex; flex-direction: column; gap: 7px; }
.info__lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold-soft); margin-bottom: 6px; }
.info__col a, .info__col p { color: rgba(239,230,210,.85); font-size: .96rem; }
.info__col a:hover { color: var(--gold-soft); }
.info__col strong { font-weight: 600; color: var(--cream); }
.info__col .muted { color: rgba(239,230,210,.55); }
.info__col p + p { margin-top: 8px; }

.socials { margin-top: 34px; display: flex; align-items: center; gap: 14px; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }
.socials a { color: rgba(239,230,210,.8); }
.socials a:hover { color: var(--gold-soft); }
.socials .dot { color: var(--gold); }

.foot {
  position: relative; z-index: 2; text-align: center;
  padding: 22px; font-size: .78rem; letter-spacing: .04em;
  color: rgba(239,230,210,.45);
}
