/* ============================================================
   Aerin & Mai — Wedding Site
   Design system per brand kit (Espresso Burgundy / Warm Cream)
   ============================================================ */

:root {
  /* Color */
  --burgundy:   #472222;  /* primary text, headings, accents */
  --burgundy-2: #6B3636;  /* hover / lighter accent */
  --cream:      #F6F0E3;  /* page background, text on photos */
  --cream-2:    #FBF7EE;  /* lifted cards on cream */
  --sage-mist:  #D9E1E0;  /* secondary background, cards */
  --olive:      #222420;  /* footer, overlays, deep shadow */
  --sand:       #C9B79C;  /* dividers, borders */
  --sage:       #A9B4A6;  /* muted accents */

  /* Type */
  --font-display: 'Ephesis', cursive;
  --font-body:    'Cormorant Garamond', 'Cormorant', Georgia, serif;

  /* Layout */
  --maxw: 1120px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--burgundy);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* Filmic photo treatment from brand kit */
.photo, .film img { filter: saturate(0.94) contrast(1.02); }

/* ---------- Typography ---------- */
h1, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
}
h2 { font-size: clamp(30px, 4.4vw, 42px); font-weight: 600; line-height: 1.12; letter-spacing: 0.01em; }
h3 { font-size: 24px; font-weight: 600; letter-spacing: 0.01em; }

p { max-width: 66ch; }

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.72;
}

.script { font-family: var(--font-display); font-weight: 400; }

.italic { font-style: italic; }

a { color: var(--burgundy); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--burgundy-2); }

/* Ornamental rule — thin line with center diamond */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--sand);
  margin: 22px 0;
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  width: 46px;
  background: currentColor;
}
.rule span { font-size: 10px; letter-spacing: 0.2em; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 780px; margin: 0 auto; padding: 0 28px; }
section { padding: clamp(64px, 9vw, 120px) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid var(--burgundy);
  background: var(--burgundy);
  color: var(--cream);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--burgundy-2); border-color: var(--burgundy-2); color: var(--cream); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: var(--cream); }
.btn-light { background: var(--cream); border-color: var(--cream); color: var(--burgundy); }
.btn-light:hover { background: #fff; border-color: #fff; color: var(--burgundy); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  color: var(--burgundy);
}
.nav.solid {
  background: var(--cream);
  color: var(--burgundy);
  box-shadow: 0 1px 0 rgba(71,34,34,0.10);
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: inherit;
}
.nav__brand:hover { color: inherit; opacity: .85; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav__links a {
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { opacity: 1; }
.nav__cta {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  padding: 9px 20px !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }

/* "Coming soon" — non-clickable RSVP entries */
.nav__cta--soon { cursor: default; opacity: .5; }
.nav__cta--soon:hover { background: transparent; border-color: currentColor; color: inherit; }
.btn--soon { cursor: default; opacity: .55; }
.btn--soon:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); transform: none; }
.is-soon { opacity: .5; cursor: default; }
.is-soon:hover::after { width: 0 !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
  color: var(--burgundy);
  -webkit-appearance: none; appearance: none;
}
.nav__toggle span { width: 26px; height: 1.5px; background: var(--burgundy); transition: .3s var(--ease); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  color: var(--burgundy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.mobile-menu .script { font-size: 44px; letter-spacing: 0; text-transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 42%;
  filter: saturate(0.94) contrast(1.02);
  z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(246,240,227,0.55) 0%, rgba(246,240,227,0.12) 12%, rgba(246,240,227,0) 24%),
    linear-gradient(to top, rgba(34,36,32,0.66) 0%, rgba(34,36,32,0.30) 42%, rgba(34,36,32,0.05) 68%, rgba(34,36,32,0) 82%);
}
/* film grain + dust overlays */
.grain-layer, .dust-layer { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.grain-layer { background-image: url('../images/grain.jpg'); background-size: cover; mix-blend-mode: overlay; opacity: 0.30; }
.dust-layer  { background-image: url('../images/dust.png');  background-size: cover; mix-blend-mode: screen;  opacity: 0.28; }

.hero__inner {
  position: relative; z-index: 3;
  padding: 0 24px 15vh;
  width: 100%;
}
.hero__eyebrow {
  font-size: 14px; letter-spacing: 0.5em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0 1px 3px rgba(34,36,32,0.45), 0 2px 16px rgba(34,36,32,0.6);
}
.hero__names {
  font-family: var(--font-display);
  font-size: clamp(72px, 15vw, 190px);
  line-height: 0.86;
  text-shadow: 0 2px 24px rgba(34,36,32,0.5), 0 1px 4px rgba(34,36,32,0.3);
}
.hero__names .amp { font-size: 0.6em; font-style: italic; padding: 0 0.1em; opacity: 0.92; }
.hero__meta {
  margin-top: 22px;
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(34,36,32,0.4), 0 2px 14px rgba(34,36,32,0.55);
}
.hero__meta .dot { opacity: 0.6; padding: 0 6px; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; color: var(--cream);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 7px; opacity: 0.8;
}
.scroll-cue::after { content: ""; width: 1px; height: 34px; background: currentColor; animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100%{ transform: scaleY(0.3); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown { display: flex; justify-content: center; gap: clamp(18px, 5vw, 60px); margin-top: 30px; }
.count__unit { text-align: center; min-width: 62px; }
.count__num { font-family: var(--font-display); font-size: clamp(48px, 7vw, 78px); line-height: 1; color: var(--burgundy); }
.count__lbl { font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600; opacity: 0.62; margin-top: 8px; }

/* ============================================================
   DETAILS / VENUE
   ============================================================ */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.detail-grid .eyebrow { margin-bottom: 12px; }
.detail-grid h3 { font-weight: 600; margin-bottom: 4px; }
.detail-item p { margin: 0 auto; }
.placeholder-tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--burgundy-2);
  background: var(--sand); opacity: .9; padding: 3px 10px; border-radius: 2px; margin-top: 8px;
}

/* ============================================================
   SPLIT / FEATURE BANDS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 6vw, 80px); }
.split.alt .split__media { order: 2; }
.split__media { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body { max-width: 500px; }
.on-sage { background: var(--sage-mist); }
.on-olive { background: var(--olive); color: var(--cream); }
.on-olive .eyebrow, .on-olive .rule { color: var(--sand); opacity: .9; }
.on-olive a { color: var(--cream); }

/* Full-bleed image band */
.band { position: relative; height: 62vh; min-height: 420px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--cream); text-align: center; }
.band__bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; filter: saturate(0.94) contrast(1.02); }
.band__scrim { position: absolute; inset: 0; background: rgba(34,36,32,0.34); }
.band__inner { position: relative; z-index: 2; padding: 0 24px; }
.band .script { font-size: clamp(48px, 9vw, 96px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery a { overflow: hidden; display: block; aspect-ratio: 3/4; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery .tall { grid-row: span 2; aspect-ratio: 3/5; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 4vmin;
  background: rgba(34,36,32,0);
  visibility: hidden; opacity: 0;
  transition: opacity .35s var(--ease), visibility .35s var(--ease), background .35s var(--ease);
}
.lightbox.open { visibility: visible; opacity: 1; background: rgba(34,36,32,0.9); }
.lightbox__img {
  max-width: 92vw; max-height: 90vh; object-fit: contain;
  transform: scale(.9); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  box-shadow: 0 30px 90px -20px rgba(0,0,0,.6);
  filter: saturate(0.94) contrast(1.02);
}
.lightbox.open .lightbox__img { transform: scale(1); opacity: 1; }
.lightbox__close {
  position: absolute; top: 18px; right: 26px;
  background: none; border: none; color: var(--cream);
  font-size: 42px; line-height: 1; cursor: pointer; opacity: .8;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.lightbox__close:hover { opacity: 1; transform: scale(1.08); }

/* ============================================================
   CARDS (travel / registry)
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card-grid.hotels { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card-grid.hotels .card { background: var(--sage-mist); border-color: var(--sage); }
.card__price { font-size: 19px; letter-spacing: 3px; color: var(--burgundy); font-weight: 600; margin-top: 6px; }
.card__grow { flex: 1; min-height: 12px; }
.card {
  background: var(--cream-2);
  border: 1px solid var(--sand);
  padding: 0;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(71,34,34,0.4); }
.card__media { aspect-ratio: 3/2; overflow: hidden; background: var(--sage-mist); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 6px; }
.card__tag { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; opacity: 0.6; margin-bottom: 12px; }
.card__body p { flex: 1; font-size: 16px; opacity: 0.85; }
.card__body .btn { margin-top: 20px; align-self: flex-start; }
.card__meta { font-size: 15px; opacity: 0.72; margin-top: 6px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); color: var(--burgundy);
  font-size: 22px; font-weight: 600;
  padding: 26px 44px 26px 0; position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq__q .ic { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--burgundy-2); transition: transform .35s var(--ease); }
.faq__q .ic::before { top: 9px; left: 0; width: 20px; height: 1.5px; }
.faq__q .ic::after  { left: 9px; top: 0; width: 1.5px; height: 20px; }
.faq__item.open .faq__q .ic::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 0 26px; font-size: 17px; opacity: 0.86; }
.faq__a-inner p + p { margin-top: 12px; }

/* ============================================================
   FORMS (RSVP)
   ============================================================ */
.form { max-width: 620px; margin: 0 auto; }
.field { margin-bottom: 24px; }
.field label { display: block; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; opacity: 0.78; }
.field input[type="text"], .field input[type="email"], .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 18px; color: var(--burgundy);
  background: var(--cream-2);
  border: 1px solid var(--sand);
  padding: 13px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(71,34,34,0.08);
}
.field textarea { min-height: 120px; resize: vertical; }
.choice { display: flex; gap: 14px; flex-wrap: wrap; }
.choice label {
  flex: 1; min-width: 160px; cursor: pointer;
  border: 1px solid var(--sand); background: var(--cream-2);
  padding: 18px 20px; text-align: center;
  letter-spacing: 0.12em; font-size: 15px;
  transition: .25s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.choice input { position: absolute; opacity: 0; }
.choice label:has(input:checked) { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.form__note {
  background: var(--sage-mist); border: 1px solid var(--sage);
  padding: 16px 20px; font-size: 15px; font-style: italic; opacity: 0.9; margin-bottom: 26px;
}
.form__success {
  display: none; text-align: center; background: var(--sage-mist);
  border: 1px solid var(--sage); padding: 40px 30px;
}
.form__success.show { display: block; }

.field-hint { display: block; font-size: 14px; font-style: italic; opacity: 0.62; margin-top: 7px; }

/* RSVP wizard */
.wizard-progress {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 34px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
}
.wp-step { opacity: 0.38; transition: opacity .3s var(--ease); }
.wp-step.is-active { opacity: 1; }
.wp-step.is-done { opacity: 0.68; }
.wp-sep { opacity: 0.3; }
.wizard-lead { text-align: center; margin: 0 auto 24px; opacity: 0.86; }
.wizard-nav { display: flex; gap: 14px; margin-top: 28px; }
.wizard-nav .btn { flex: 1; text-align: center; }

.party-member, .meal-member {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding: 20px 0; border-bottom: 1px solid var(--sand);
}
.party-member:first-child, .meal-member:first-child { border-top: 1px solid var(--sand); }
.pm-name, .mm-name { font-size: 21px; font-weight: 500; }
.pm-choice { display: flex; gap: 10px; }
.pm-btn {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; padding: 11px 16px; cursor: pointer;
  border: 1px solid var(--sand); background: var(--cream-2); color: var(--burgundy);
  transition: .2s var(--ease);
}
.pm-btn:hover { border-color: var(--burgundy); }
.pm-btn.is-accept { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.pm-btn.is-decline { background: var(--sage); color: var(--olive); border-color: var(--sage); }
.mm-select {
  font-family: var(--font-body); font-size: 17px; color: var(--burgundy);
  background: var(--cream-2); border: 1px solid var(--sand); padding: 11px 14px; min-width: 210px;
}
.mm-select:focus { outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(71,34,34,0.08); }
@media (max-width: 480px) {
  .pm-choice { width: 100%; }
  .pm-btn { flex: 1; }
  .mm-select { width: 100%; }
}

/* ============================================================
   COMING SOON
   ============================================================ */
.soon { text-align: center; max-width: 640px; margin: 0 auto; }
.soon .script { font-size: clamp(56px, 11vw, 120px); color: var(--burgundy); line-height: 1; }
.timeline-ghost { display: flex; flex-direction: column; gap: 0; max-width: 560px; margin: 46px auto 0; }
.tg-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--sand); text-align: left; align-items: center; }
.tg-time { font-family: var(--font-display); font-size: 30px; color: var(--sage); }
.tg-bar { height: 12px; background: linear-gradient(90deg, var(--sage-mist), transparent); border-radius: 6px; }
.tg-bar.short { max-width: 60%; }
.tg-bar.mid { max-width: 80%; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  padding: calc(var(--nav-h) + clamp(48px, 8vw, 96px)) 0 clamp(40px, 6vw, 72px);
  text-align: center;
}
.page-head .script { font-size: clamp(56px, 10vw, 104px); color: var(--burgundy); line-height: 1; }
.page-head .eyebrow { margin-bottom: 14px; }
.page-head p { margin: 18px auto 0; opacity: 0.82; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--olive); color: var(--cream); text-align: center; padding: 72px 24px 48px; }
.footer .script { font-size: clamp(52px, 8vw, 84px); line-height: 1; }
.footer__meta { margin-top: 18px; font-size: 14px; letter-spacing: 0.34em; text-transform: uppercase; opacity: 0.7; }
.footer__nav { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; }
.footer__nav a { color: var(--cream); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.82; }
.footer__nav a:hover { color: var(--cream); opacity: 1; }
.footer__fine { margin-top: 34px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.45; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split.alt .split__media { order: 0; }
  .split__media { aspect-ratio: 4/3; }
  .detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .tall { grid-row: span 1; aspect-ratio: 3/4; }
  .tg-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .card-grid.hotels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  body { font-size: 17px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .countdown { gap: 14px; }
  .count__unit { min-width: 0; }
  .card-grid.hotels { grid-template-columns: 1fr; }
  .hero__meta .dot--date { display: none; }
  .hero__meta .meta__date { display: block; margin-top: 6px; }
}
