/* ============================================================
   Whiskey Daru — styles
   Self-contained. No external fonts or assets (CSP-friendly).
   ============================================================ */

:root {
  --bg:        #140d05;
  --bg-2:      #1a1206;
  --panel:     #20160a;
  --panel-2:   #2a1d0d;
  --ink:       #f4e9d6;
  --ink-soft:  #c9b896;
  --ink-mute:  #8f7d5e;
  --amber:     #e0a83a;
  --amber-hi:  #f4c95d;
  --copper:    #b5662b;
  --army:      #5d6636;   /* army / olive green — secondary accent */
  --army-hi:   #9aa35c;   /* lighter olive, legible on dark */
  --army-deep: #3a401f;   /* deep olive for tints */
  --line:      rgba(224,168,58,0.18);
  --line-soft: rgba(224,168,58,0.10);
  --line-army: rgba(154,163,92,0.22);
  --shadow:    0 20px 50px rgba(0,0,0,0.45);
  --serif:     Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --sans:      system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw:      1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Ambient background ---------- */
.bg-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -2; pointer-events: none; opacity: .9;
}
.bg-veil {
  position: fixed; inset: -12% -6% 0 -6%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1200px 760px at 78% 12%, rgba(224,168,58,0.16), transparent 62%),
    radial-gradient(1000px 720px at 12% 32%, rgba(181,102,43,0.15), transparent 60%),
    radial-gradient(1100px 820px at 18% 100%, rgba(93,102,54,0.15), transparent 60%),
    radial-gradient(900px 700px at 92% 86%, rgba(154,163,92,0.08), transparent 60%);
  transform: translate3d(0, calc(var(--scroll, 0) * -50px), 0);
  animation: veilDrift 32s ease-in-out infinite alternate;
  will-change: transform, background-position;
}
@keyframes veilDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to   { background-position: 46px -34px, -34px 24px, 26px -44px, -24px 32px; }
}

/* ---------- Scroll reveal (added by JS; no-JS shows everything) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

a { color: var(--amber-hi); text-decoration: none; }
a:hover { color: var(--ink); }

em { color: var(--amber-hi); font-style: italic; }
.amber { color: var(--amber); }

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  font-family: var(--sans);
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(180deg, var(--amber-hi), var(--amber));
  color: #2a1a04;
  box-shadow: 0 8px 24px rgba(224,168,58,0.25);
}
.btn--gold:hover { color: #2a1a04; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber-hi); }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,5,2,0.92);
  backdrop-filter: blur(6px);
  padding: 1.25rem;
}
.age-gate[hidden] { display: none; }
.age-gate__card {
  max-width: 420px; width: 100%;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-gate__mark {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--amber-hi), var(--copper));
  color: #2a1a04; font-family: var(--serif); font-weight: 700; font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.age-gate__card h2 { margin: 0 0 .5rem; font-size: 1.6rem; }
.age-gate__card p { color: var(--ink-soft); margin: 0 0 1.4rem; }
.age-gate__actions { display: flex; flex-direction: column; gap: .7rem; }
.age-gate__fine { font-size: .82rem; color: var(--ink-mute); margin: 1.2rem 0 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(20,13,5,0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: flex; align-items: center; gap: .6rem; color: var(--ink); font-family: var(--serif); font-weight: 700; }
.nav__mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--amber-hi), var(--copper));
  color: #2a1a04; font-size: .85rem; letter-spacing: .02em;
}
.nav__name { font-size: 1.1rem; }
.nav__links { display: flex; gap: 1.4rem; }
.nav__links a { color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
.nav__links a:hover { color: var(--amber-hi); }
.nav__toggle {
  display: none; background: none; border: 0; color: var(--ink);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 86vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem clamp(1rem, 4vw, 2.4rem) 3rem;
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(620px 620px at 78% 30%, rgba(224,168,58,0.22), transparent 60%),
    radial-gradient(420px 420px at 20% 80%, rgba(181,102,43,0.20), transparent 65%);
  filter: blur(8px);
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; width: 100%; }
.hero__kicker {
  font-size: .95rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--amber); margin: 0 0 1rem;
}
.hero__title { font-size: clamp(3.2rem, 11vw, 6.4rem); margin: 0; }
.hero__tag { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 4vw, 1.9rem); color: var(--ink-soft); margin: .6rem 0 1.4rem; }
.hero__sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 600px; margin: 0 0 2rem; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  z-index: 1; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute);
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.4rem); }
.section--alt {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(93,102,54,0.12), transparent 60%),
    linear-gradient(180deg, rgba(12,8,3,0.55), rgba(20,13,5,0.72));
  border-top: 1px solid var(--line-army);
  border-bottom: 1px solid var(--line-army);
}
.section__head { max-width: var(--maxw); margin: 0 auto 2.6rem; }
.section__head h2 { font-size: clamp(2rem, 6vw, 3rem); margin: .3rem 0 0; }
.section__lead { color: var(--ink-soft); max-width: 620px; margin: .9rem 0 0; }
.eyebrow {
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase; color: var(--copper);
  font-weight: 700;
}

/* ---------- Story ---------- */
.story-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.4rem; }
.story-copy p { color: var(--ink-soft); font-size: 1.06rem; }
.story-copy strong { color: var(--ink); }
.signoff { font-family: var(--serif); font-style: italic; color: var(--amber-hi) !important; font-size: 1.15rem; }
.story-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem;
  align-self: start;
}
.story-card h3 { margin: 0 0 1rem; color: var(--amber); }
.pron { margin: 0; }
.pron dt { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.pron dd { margin: 0 0 .9rem; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Drams ---------- */
.dram-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem;
}
.dram {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 1.5rem; position: relative; overflow: hidden;
  transition: transform .18s ease, border-color .2s ease;
}
.dram:hover { transform: translateY(-4px); border-color: var(--amber); }
.dram__top { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.dram__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; margin: 0; }
.dram__score {
  flex: none; font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
  color: #2a1a04; background: linear-gradient(180deg, var(--amber-hi), var(--amber));
  border-radius: 8px; padding: .15rem .55rem;
}
.dram__meta { color: var(--copper); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin: .35rem 0 .9rem; font-weight: 700; }
.dram__peat {
  display: flex; align-items: center; gap: .6rem;
  margin: 0 0 1.1rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.dram__peat-label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--army-hi);
}
.dram__peat-meter { font-size: .95rem; letter-spacing: .12em; color: var(--ink-soft); }
.dram__npf { margin: 0 0 1rem; }
.dram__npf div { display: flex; gap: .6rem; margin-bottom: .45rem; font-size: .95rem; }
.dram__npf b { flex: none; width: 58px; color: var(--amber); font-family: var(--serif); font-weight: 700; }
.dram__npf span { color: var(--ink-soft); }
.dram__quip { font-family: var(--serif); font-style: italic; color: var(--ink); margin: 0; border-top: 1px solid var(--line-soft); padding-top: .9rem; }
.dram-foot { text-align: center; color: var(--ink-mute); font-size: .9rem; margin: 2rem 0 0; }

/* ---------- FAQ / 101 ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq__item { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; color: var(--ink);
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  padding: 1.1rem 1.3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q:hover { color: var(--amber-hi); }
.faq__sign { flex: none; color: var(--army-hi); font-size: 1.4rem; transition: transform .2s ease; }
.faq__item.open .faq__sign { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { color: var(--ink-soft); padding: 0 1.3rem 1.2rem; margin: 0; }

/* ---------- Serves ---------- */
.serve-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem;
}
.serve-card { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.5rem; }
.serve-card h3 { margin: 0 0 .6rem; color: var(--amber); display: flex; align-items: baseline; gap: .6rem; }
.serve-card p { color: var(--ink-soft); margin: 0 0 .6rem; }
.serve-card ul { margin: .4rem 0 .8rem; padding-left: 1.1rem; color: var(--ink-soft); }
.serve-card li { margin-bottom: .25rem; }
.serve-tag { font-family: var(--sans); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); border: 1px solid var(--line); border-radius: 999px; padding: .1rem .5rem; }
.serve-method { font-size: .92rem; font-style: italic; color: var(--ink-mute) !important; }

/* ---------- Quiz ---------- */
.quiz { max-width: 680px; margin: 0 auto; background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.quiz__progress { font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--copper); font-weight: 700; margin: 0 0 1rem; }
.quiz__q { font-family: var(--serif); font-size: clamp(1.4rem, 4vw, 1.9rem); margin: 0 0 1.4rem; }
.quiz__opts { display: flex; flex-direction: column; gap: .7rem; }
.quiz__opt {
  text-align: left; cursor: pointer;
  background: rgba(224,168,58,0.05); border: 1px solid var(--line-soft);
  color: var(--ink); border-radius: 12px; padding: 1rem 1.2rem; font-size: 1.02rem;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
  font-family: var(--sans);
}
.quiz__opt:hover { border-color: var(--amber); background: rgba(224,168,58,0.12); transform: translateX(4px); }
.quiz__bar { height: 6px; background: rgba(224,168,58,0.12); border-radius: 999px; margin-bottom: 1.6rem; overflow: hidden; }
.quiz__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--copper), var(--amber-hi)); transition: width .3s ease; }
.quiz__result h3 { font-size: clamp(1.6rem, 5vw, 2.3rem); margin: .2rem 0 .3rem; color: var(--amber); }
.quiz__result .quiz__style { color: var(--copper); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; margin: 0 0 1rem; }
.quiz__result p { color: var(--ink-soft); }
.quiz__picks { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.quiz__picks li { background: rgba(224,168,58,0.1); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; font-size: .95rem; color: var(--ink); }
.quiz__again { margin-top: .4rem; }

/* ---------- Story library ---------- */
.library {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem;
}
.book {
  position: relative; text-align: left; cursor: pointer;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--army-hi);
  border-radius: 14px;
  padding: 1.6rem 1.7rem 1.5rem;
  color: var(--ink); font-family: var(--sans);
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.book::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 200px at 120% -20%, rgba(224,168,58,0.12), transparent 60%);
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.book:hover { transform: translateY(-4px); border-left-color: var(--amber); box-shadow: var(--shadow); }
.book:hover::after { opacity: 1; }
.book:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.book__num { font-family: var(--serif); font-size: .8rem; letter-spacing: .25em; color: var(--army-hi); text-transform: uppercase; }
.book__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin: .5rem 0 .7rem; line-height: 1.15; }
.book__teaser { font-family: var(--serif); font-style: italic; color: var(--ink-soft); margin: 0 0 1.2rem; }
.book__foot { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--ink-mute); letter-spacing: .04em; }
.book__read { color: var(--amber-hi); font-weight: 600; }

/* ---------- Immersive reader ---------- */
.reader {
  position: fixed; inset: 0; z-index: 900;
  background:
    radial-gradient(1000px 700px at 50% -10%, rgba(181,102,43,0.16), transparent 60%),
    #0e0903;
  display: flex; flex-direction: column;
  animation: readerIn .45s ease;
}
.reader[hidden] { display: none; }
@keyframes readerIn { from { opacity: 0; } to { opacity: 1; } }
.reader__bar { height: 3px; background: rgba(224,168,58,0.12); flex: none; }
.reader__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--army-hi), var(--amber-hi)); transition: width .1s linear; }
.reader__top {
  flex: none; display: flex; align-items: center; justify-content: space-between;
  padding: .9rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(14,9,3,0.6); backdrop-filter: blur(8px);
}
.reader__close { background: none; border: 0; color: var(--ink-soft); cursor: pointer; font-family: var(--sans); font-size: .98rem; padding: .3rem .2rem; }
.reader__close:hover { color: var(--amber-hi); }
.reader__count { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--army-hi); }
.reader__scroll { flex: 1; overflow-y: auto; scroll-behavior: smooth; }
.reader__inner { max-width: 640px; margin: 0 auto; padding: clamp(2.4rem, 7vw, 5rem) clamp(1.2rem, 5vw, 2rem) 5rem; }
.reader__kicker { text-align: center; letter-spacing: .35em; text-transform: uppercase; font-size: .78rem; color: var(--copper); margin: 0 0 1rem; }
.reader__title { text-align: center; font-size: clamp(2rem, 6vw, 3rem); margin: 0; line-height: 1.1; }
.reader__meta { text-align: center; color: var(--ink-mute); font-size: .9rem; margin: .9rem 0 0; }
.reader__rule { text-align: center; color: var(--army-hi); margin: 1.6rem 0 2rem; letter-spacing: .5em; }
.reader__body p {
  font-family: var(--serif); color: var(--ink); font-size: 1.2rem; line-height: 1.95;
  margin: 0 0 1.5rem; text-wrap: pretty;
}
.reader__body p:first-of-type::first-letter {
  font-size: 3.6rem; line-height: .82; float: left;
  padding: .35rem .6rem 0 0; color: var(--amber-hi); font-weight: 700;
}
.reader__end { text-align: center; font-family: var(--serif); font-style: italic; color: var(--ink-mute); letter-spacing: .15em; margin: 2.4rem 0 0; }
.reader__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; border-top: 1px solid var(--line-soft); padding-top: 1.6rem; }
.reader__navbtn {
  background: rgba(224,168,58,0.06); border: 1px solid var(--line-soft); color: var(--ink);
  border-radius: 999px; padding: .7rem 1.3rem; cursor: pointer; font-family: var(--sans); font-size: .95rem;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.reader__navbtn:hover:not(:disabled) { border-color: var(--amber); color: var(--amber-hi); background: rgba(224,168,58,0.12); }
.reader__navbtn:disabled { opacity: .35; cursor: default; }
@media (prefers-reduced-motion: reduce) { .reader { animation: none; } .reader__scroll { scroll-behavior: auto; } }

/* ---------- Jokes / one for the road ---------- */
.joke-band { display: flex; justify-content: center; }
.joke-card {
  max-width: 680px; width: 100%; text-align: center;
  background:
    radial-gradient(420px 220px at 50% 0%, rgba(224,168,58,0.12), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.8rem, 5vw, 2.8rem);
  box-shadow: var(--shadow);
}
.joke-card .eyebrow { display: block; margin-bottom: 1rem; }
.joke-text {
  font-family: var(--serif); font-size: clamp(1.3rem, 4vw, 1.8rem);
  line-height: 1.4; color: var(--ink); min-height: 3.2em;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 1.6rem;
}

/* ---------- Footer ---------- */
.footer { padding: 3.5rem clamp(1rem, 4vw, 2.4rem); border-top: 1px solid var(--line-army); background: var(--bg-2); }
.footer__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.footer__mark { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--amber-hi), var(--copper)); color: #2a1a04; font-family: var(--serif); font-weight: 700; }
.footer__name { font-family: var(--serif); font-size: 1.3rem; margin: .8rem 0 .2rem; }
.footer__line { color: var(--ink-soft); margin: 0 0 1.4rem; }
.footer__responsible { color: var(--ink-mute); font-size: .9rem; border-top: 1px solid var(--line-soft); padding-top: 1.2rem; }
.footer__copy { color: var(--ink-mute); font-size: .82rem; margin-top: 1.2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav__links {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; gap: 0;
    background: rgba(20,13,5,0.97); border-bottom: 1px solid var(--line);
    padding: .5rem 0; display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .8rem clamp(1rem, 4vw, 2.4rem); }
  .nav__toggle { display: block; }
  .story-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 3rem; padding-bottom: 3.5rem; }
  .hero__scroll { display: none; }
}

/* Hide the scroll hint when the viewport is too short to fit it cleanly */
@media (max-height: 720px) {
  .hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .bg-veil { animation: none !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Utilities (used by 404 page; keeps CSP strict, no inline styles) ---------- */
.u-center { text-align: center; }
.u-mxauto { margin-left: auto; margin-right: auto; }
.u-jcenter { justify-content: center; }
.hero--full { min-height: 100vh; }
