/* ------------------------------------------------------------------
   Ellen & Jonathan — the-wedding-at-bens-falls.com
   Shared stylesheet. Cream & black palette, Cormorant Garamond throughout.
   Light theme only — deliberately NO prefers-color-scheme: dark override
   (a dark-mode flip made body text unreadable on mobile; see DECISIONS.md).
   ------------------------------------------------------------------ */

:root {
  /* Cream & black */
  --cream:        #F5F0E6;   /* page background — warm ivory, aged paper */
  --cream-deep:   #ECE5D7;   /* cards, alternating bands */
  --cream-line:   #DED5C3;   /* soft borders */
  --ink:          #1B1917;   /* near-black — headings, buttons, footer */
  --charcoal:     #2E2B27;   /* body text */
  --stone:        #6E685E;   /* muted text, captions, labels */
  --stone-light:  #A39C90;   /* placeholders, hairlines on dark */
  --hairline:     rgba(27, 25, 23, 0.14);
  --hairline-strong: rgba(27, 25, 23, 0.32);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --script: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --script-cursive: 'Herr Von Muellerhoff', 'Brush Script MT', cursive;

  --radius: 12px;
  --radius-lg: 16px;
  --measure: 720px;
  --wide: 1040px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { opacity: 0.8; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

img { max-width: 100%; }

p { margin: 0 0 16px; }
strong { font-weight: 600; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

.eyebrow {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}

.lede {
  font-size: 22px;
  line-height: 1.55;
  color: var(--charcoal);
}

.muted { color: var(--stone); }
.small { font-size: 15px; }
.center { text-align: center; }

/* ---------- Site header / nav ---------- */

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.site-header .inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 14px 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.brand .amp {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 6px;
  color: var(--stone);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  display: inline-block;
  padding: 6px 2px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav a:hover { opacity: 1; border-bottom-color: var(--hairline-strong); }

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--ink);
}

.nav a.nav-rsvp {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 5px 14px;
}

.nav a.nav-rsvp:hover,
.nav a.nav-rsvp[aria-current="page"] {
  background: var(--ink);
  color: var(--cream);
}

@media (min-width: 900px) {
  .site-header { position: sticky; top: 0; }
  .site-header .inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 32px;
  }
  .nav { gap: 4px 26px; }
}

@media (max-width: 480px) {
  .nav { gap: 2px 16px; }
  .nav a { font-size: 13px; letter-spacing: 0.12em; }
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  text-align: center;
  padding: 72px 24px 40px;
  max-width: var(--measure);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 500;
}

.page-hero .lede { margin: 20px auto 0; max-width: 560px; }

@media (min-width: 640px) {
  .page-hero { padding: 96px 24px 48px; }
  .page-hero h1 { font-size: 60px; }
}

.rule {
  width: 56px;
  height: 1px;
  background: var(--ink);
  margin: 28px auto 0;
  opacity: 0.7;
}

/* ---------- Layout ---------- */

main { display: block; }

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-wide {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 56px 0; }

section + section { border-top: 1px solid var(--hairline); }

@media (min-width: 640px) {
  section { padding: 80px 0; }
}

section h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 22px;
}

section h3 {
  font-size: 25px;
  font-weight: 600;
  margin: 30px 0 10px;
}

section h3:first-child { margin-top: 0; }

.band {
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

section.band + section { border-top: 0; }

/* ---------- Home hero ---------- */

.hero {
  position: relative;
  text-align: center;
  padding: 110px 24px 72px;
  background-image: url('/img/waterfall-hero.jpg');
  background-size: cover;
  background-position: center 55%;
  color: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.6) 0%, rgba(20,18,15,0.56) 30%, rgba(20,18,15,0.74) 70%, rgba(20,18,15,0.92) 100%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero h1.names {
  display: block;
  margin: 0;
  overflow-wrap: break-word;
  max-width: 100%;
  color: var(--cream);
}

.hero .script-name {
  display: block;
  font-family: var(--script-cursive);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.35;
  color: var(--cream);
  text-shadow: 0 2px 6px rgba(0,0,0,0.55), 0 4px 24px rgba(0,0,0,0.5);
}

.hero .script-amp {
  display: block;
  font-family: var(--script-cursive);
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  margin: -14px 0;
  color: var(--cream);
  opacity: 0.92;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55), 0 4px 24px rgba(0,0,0,0.5);
}

.hero .getting-married {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.92;
  margin: 14px 0 0;
  text-shadow: 0 1px 5px rgba(0,0,0,0.6);
}

@media (min-width: 640px) {
  .hero { padding: 140px 24px 88px; }
  .hero .script-name { font-size: 92px; }
  .hero .script-amp { font-size: 44px; margin: -18px 0; }
  .hero .getting-married { font-size: 19px; }
}

.hero .date-venue {
  font-size: 19px;
  color: var(--cream);
  margin: 36px 0 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 2px 12px rgba(0,0,0,0.6);
  font-variant-numeric: lining-nums;
}

.hero .date-venue strong { font-weight: 700; }

.hero .date-venue .dot { opacity: 0.6; margin: 0 8px; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 8px;
  flex-wrap: wrap;
}

.countdown .unit {
  background: rgba(20, 18, 15, 0.32);
  border: 1px solid rgba(245, 240, 230, 0.45);
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 96px;
  backdrop-filter: blur(3px);
}

.countdown .unit .num {
  font-size: 34px;
  font-weight: 700;
  color: var(--cream);
  display: block;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.countdown .unit .label {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  text-align: center;
  padding: 13px 30px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 20px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { opacity: 0.86; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--cream); opacity: 1; }

.hero .btn-ghost { color: var(--cream); border-color: rgba(245,240,230,0.7); }
.hero .btn-ghost:hover { background: var(--cream); color: var(--ink); }
.hero .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero .btn.btn-ghost { background: transparent; color: var(--cream); }

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 480px) {
  .btn-row .btn { flex: 1 1 100%; }
}

.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* ---------- Cards ---------- */

.card {
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 16px;
}

.band .card { background: var(--cream); }

.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.card-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.grid-2 .card, .grid-3 .card { margin-bottom: 0; }

/* Link tiles (home page section index) */
.tile {
  display: block;
  text-decoration: none;
  color: var(--charcoal);
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.tile:hover { opacity: 1; border-color: var(--ink); transform: translateY(-2px); }

.tile h3 { margin: 0 0 8px; font-size: 26px; font-weight: 500; }
.tile p { margin: 0 0 14px; color: var(--stone); font-size: 17px; }
.tile .more {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Tags / notes ---------- */

.tbc {
  display: inline-block;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: 1px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: 0.1em;
  line-height: 1.6;
}

.placeholder {
  display: inline-block;
  color: var(--stone);
  font-style: italic;
  border-bottom: 1px dashed var(--stone-light);
}

.note {
  background: var(--cream-deep);
  border-left: 2px solid var(--ink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 17px;
}

.band .note { background: var(--cream); }

.deadline {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 20px 0 0;
  font-size: 17px;
}

.deadline strong { color: var(--cream); }

/* ---------- Lists ---------- */

ul.plain, ol.steps {
  padding-left: 22px;
  margin: 0 0 16px;
}

ul.plain li, ol.steps li { margin-bottom: 9px; }

ul.check {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

ul.check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

ul.check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

a.tel { font-weight: 600; white-space: nowrap; }

/* ---------- Timeline ---------- */

.timeline {
  list-style: none;
  padding: 0 0 0 28px;
  margin: 0;
  border-left: 1px solid var(--hairline-strong);
}

.timeline li {
  position: relative;
  margin-bottom: 34px;
}

.timeline li:last-child { margin-bottom: 0; }

.timeline li::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--ink);
}

.timeline .day {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-variant-numeric: lining-nums;
}

.timeline .time {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

/* Schedule page — day blocks */
.day-block { margin-bottom: 48px; }
.day-block:last-child { margin-bottom: 0; }

.day-block header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.day-block header h3 { margin: 0; font-size: 30px; font-weight: 600; font-variant-numeric: lining-nums; }
.day-block header .sub { color: var(--stone); font-style: italic; }

.sched {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sched li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}

.sched li:last-child { border-bottom: 0; }

.sched .t {
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.sched .t .tbc {
  display: inline-block;
  margin-top: 4px;
}

.sched .what strong { display: block; color: var(--ink); }
.sched .what span { color: var(--stone); font-size: 17px; }

@media (max-width: 560px) {
  .sched li { grid-template-columns: 1fr; gap: 4px; }
  .sched .t .tbc { margin-top: 0; margin-left: 6px; }
}

table.data td.num, table.data th.num { white-space: nowrap; }

.faq summary::after { font-size: 30px; }

/* ---------- Photos ---------- */

.section-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 24px 0;
  display: block;
  object-fit: cover;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}

@media (min-width: 640px) {
  .photo-pair { grid-template-columns: 1fr 1fr; }
}

.photo-pair img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.photo-caption {
  text-align: center;
  font-size: 14px;
  color: var(--stone);
  margin-top: -12px;
  margin-bottom: 24px;
  font-style: italic;
}

/* ---------- Tables ---------- */

.table-wrap { overflow-x: auto; margin: 20px 0; -webkit-overflow-scrolling: touch; }

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
}

table.data th, table.data td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}

table.data th {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  border-bottom: 1px solid var(--hairline-strong);
}

table.data td strong { color: var(--ink); }

/* ---------- FAQ (details) ---------- */

.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
}

.faq details:first-of-type { border-top: 1px solid var(--hairline); }

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  flex: 0 0 auto;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--stone);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq .answer { padding: 0 0 20px; max-width: 640px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Map ---------- */

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-line);
  filter: grayscale(1) contrast(1.02);
}

.map-embed iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ---------- Forms (RSVP) ---------- */

.form {
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

@media (min-width: 640px) {
  .form { padding: 44px 48px; }
}

.field { margin-bottom: 26px; }

.field label,
.field .legend {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}

.field .hint {
  display: block;
  font-size: 16px;
  color: var(--stone);
  font-style: italic;
  margin: -4px 0 10px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--hairline-strong);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%231B1917' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input::placeholder, .field textarea::placeholder { color: var(--stone-light); font-style: italic; }

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(27,25,23,0.08);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choices.three { grid-template-columns: 1fr; }

@media (min-width: 560px) {
  .choices.three { grid-template-columns: 1fr 1fr 1fr; }
}

.choice { position: relative; }

.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.choice span {
  display: block;
  text-align: center;
  padding: 13px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.choice input:checked + span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
}

@media (min-width: 560px) {
  .row-2 { grid-template-columns: 1fr 1fr; }
}

.form .actions {
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.form .actions .btn { width: 100%; padding: 17px 40px; font-size: 18px; }

@media (min-width: 560px) {
  .form .actions .btn { width: auto; min-width: 260px; }
}

.form-status {
  margin-top: 18px;
  text-align: center;
  font-size: 17px;
  min-height: 1.5em;
}

.form-status.error { color: #7A2E1F; }

.hidden { display: none !important; }

.success {
  text-align: center;
  padding: 24px 0 8px;
}

.success h2 { font-size: 38px; font-weight: 500; margin-bottom: 12px; }
.success p { max-width: 480px; margin: 0 auto 16px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 56px 24px 64px;
  margin-top: 40px;
}

.site-footer .names {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--cream);
}

.site-footer .names .amp {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 8px;
  opacity: 0.7;
}

.site-footer p {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.site-footer .foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.site-footer .foot-nav li { line-height: 2; }

.site-footer .foot-nav a {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.75;
}

.site-footer .foot-nav a:hover { opacity: 1; }

/* ---------- Motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  .fade-in { animation: fadeRise 0.35s ease-out both; }
}

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
