/* =========================================================================
   In Loving Memory — memorial stylesheet
   Palette: warm ivory ground, deep aubergine ink, muted antique gold.
   Type: Cormorant Garamond (display) + Inter (body/UI).
   ========================================================================= */

:root {
  --ivory:      #F6F1E7;
  --ivory-deep: #EFE7D7;
  --ink:        #2E2438;   /* deep aubergine */
  --ink-soft:   #5A5064;
  --gold:       #B08A46;
  --gold-soft:  #CBAE77;
  --line:       #D9CEBB;
  --white:      #FFFFFF;
  --ok:         #4C7A5A;
  --warn:       #A5603E;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1080px;
  --shadow: 0 24px 60px -30px rgba(46, 36, 56, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

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

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }

/* ---- eyebrow / small caps label ---------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 .9rem;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--ink); }

/* =========================================================================
   Top navigation
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 231, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(176,138,70,.25);
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 62px;
}
.nav__brand {
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: .02em;
  color: var(--ink); white-space: nowrap;
}
.nav__brand span { color: var(--gold); font-style: italic; }
.nav__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.nav__links a {
  font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft);
  text-transform: uppercase; font-weight: 500;
}
.nav__links a:hover { color: var(--gold); text-decoration: none; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .3rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 62px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--ivory);
    border-bottom: 1px solid var(--line); padding: .5rem 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav__links.open { max-height: 420px; }
  .nav__links a { padding: .8rem 4vw; border-top: 1px solid var(--line); }
}

/* =========================================================================
   Hero — arched portrait, the signature element
   ========================================================================= */
.hero { padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem); }
.hero .wrap {
  display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__portrait { position: relative; justify-self: center; }
.hero__portrait figure {
  margin: 0; width: min(340px, 74vw); aspect-ratio: 3 / 4;
  border-radius: 999px 999px 12px 12px;   /* arched top */
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero__portrait figure img { width: 100%; height: 100%; object-fit: cover; }
.hero__portrait::after {
  content: ""; position: absolute; inset: -14px -14px 10px -14px;
  border: 1px solid var(--gold-soft); border-radius: 999px 999px 18px 18px;
  z-index: -1; opacity: .6;
}

.hero__tribute { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink-soft); margin: 0 0 1rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.1rem); margin: 0 0 1.1rem; }
.hero__dates {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero__dates .dash { width: 42px; height: 1px; background: var(--gold-soft); }
.hero__age {
  display: inline-block; font-family: var(--sans); font-size: .74rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: .4rem 1.1rem; margin-bottom: 1.6rem;
}
.hero__verse { max-width: 42ch; color: var(--ink-soft); }
.hero__verse cite { display: block; margin-top: .4rem; font-style: normal; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

@media (max-width: 780px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero__dates, .hero__verse { margin-inline: auto; }
  .hero__age { margin-inline: auto; }
}

/* =========================================================================
   Generic section rhythm
   ========================================================================= */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--ivory-deep); }
.section__head { max-width: 60ch; margin-bottom: 2.6rem; }
.section__head.center { margin-inline: auto; text-align: center; }
.section h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin: 0; }
.section__lead { color: var(--ink-soft); margin-top: .9rem; }

.divider { width: 54px; height: 1px; background: var(--gold-soft); margin: 1.2rem 0; }
.section__head.center .divider { margin-inline: auto; }

/* Golden line motif — a thin gilt rule with a centred diamond node. */
.goldline { display: flex; align-items: center; gap: .8rem; margin: 1.2rem 0; }
.goldline::before, .goldline::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 40%, var(--gold-soft) 60%, transparent);
}
.goldline i { width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); flex: none; }
.section__head.center .goldline { max-width: 220px; margin-inline: auto; }

/* Hairline gilt accents at the top of alternating sections. */
.section { position: relative; }
.gilt-top::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(var(--wrap), 92vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: .7;
}

/* ---- Life history ------------------------------------------------------ */
.history { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.history__body p { margin: 0 0 1.2rem; }
.history__body p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.4rem; float: left; line-height: .82;
  padding: .35rem .55rem 0 0; color: var(--gold);
}
.history__aside figure { margin: 0; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.history__aside figcaption { font-size: .78rem; color: var(--ink-soft); text-align: center; padding: .7rem; font-style: italic; }
@media (max-width: 760px) { .history { grid-template-columns: 1fr; } }

/* ---- Arrangements timeline -------------------------------------------- */
.arrange__meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.5rem; margin-bottom: 2.4rem;
  padding-bottom: 1.8rem; border-bottom: 1px solid var(--line);
}
.arrange__meta div .k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.arrange__meta div .v { font-family: var(--serif); font-size: 1.35rem; }

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: grid; grid-template-columns: 190px 1fr; gap: 1.5rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--line); position: relative;
}
.timeline li:last-child { border-bottom: 0; }
.timeline .t { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }
.timeline .d h3 { font-size: 1.3rem; margin: 0 0 .3rem; }
.timeline .d p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 640px) { .timeline li { grid-template-columns: 1fr; gap: .3rem; } }

/* ---- Gallery ----------------------------------------------------------- */
.gallery { columns: 3 220px; column-gap: 14px; }
.gallery figure {
  margin: 0 0 14px; break-inside: avoid; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 12px 30px -22px rgba(46,36,56,.5);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery figure:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery img { width: 100%; }

/* ---- Messages / condolences ------------------------------------------- */
.msg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.msg-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 1.6rem 1.7rem; box-shadow: 0 14px 34px -28px rgba(46,36,56,.55);
  display: flex; flex-direction: column;
}
.msg-card__quote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: var(--ink); margin: 0 0 1.2rem; position: relative; }
.msg-card__quote::before { content: "\201C"; font-family: var(--serif); font-size: 2.6rem; color: var(--gold-soft); position: absolute; top: -.9rem; left: -.4rem; opacity: .5; }
.msg-card__foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.msg-card__name { font-family: var(--serif); font-size: 1.15rem; }
.msg-card__rel { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.msg-card__socials { display: flex; gap: .9rem; margin-top: .7rem; }
.msg-card__socials a { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.msg-card__socials a:hover { color: var(--gold); text-decoration: none; }

.empty { text-align: center; color: var(--ink-soft); font-style: italic; padding: 3rem 0; }

/* ---- Forms ------------------------------------------------------------- */
.form { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .45rem; font-weight: 600; }
.field label .opt { color: var(--gold-soft); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: .82rem; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 8px;
  padding: .8rem .95rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,138,70,.15);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; border-radius: 999px; padding: .85rem 2rem;
  border: 1px solid var(--ink); background: var(--ink); color: var(--ivory);
  transition: background .2s ease, color .2s ease, transform .1s ease;
}
.btn:hover { background: transparent; color: var(--ink); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--gold { border-color: var(--gold); background: var(--gold); color: var(--white); }
.btn--gold:hover { background: transparent; color: var(--gold); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--sm { padding: .5rem 1rem; font-size: .72rem; }

/* ---- Notices ----------------------------------------------------------- */
.notice { border-radius: 10px; padding: 1rem 1.3rem; margin-bottom: 1.6rem; font-size: .95rem; }
.notice--ok   { background: #E9F1EB; border: 1px solid #BFD8C7; color: #33553F; }
.notice--warn { background: #F5E9E1; border: 1px solid #E1C4B1; color: #7A4326; }

/* =========================================================================
   Call-to-action band
   ========================================================================= */
.cta-band { background: var(--ink); color: var(--ivory); text-align: center; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-band h2 { color: var(--ivory); font-size: clamp(1.9rem, 4vw, 2.7rem); }
.cta-band p { color: #C9BFD1; max-width: 46ch; margin: .8rem auto 1.8rem; }
.cta-band .eyebrow { color: var(--gold-soft); }
.cta-band .divider { background: var(--gold-soft); margin: 1.2rem auto; }
.cta-band .goldline { max-width: 220px; margin-inline: auto; }
.cta-band .goldline::before, .cta-band .goldline::after { background: linear-gradient(90deg, transparent, var(--gold-soft) 40%, var(--gold-soft) 60%, transparent); }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--ivory-deep); border-top: 1px solid var(--line); padding: 3rem 0 2.4rem; text-align: center; }
.footer__name { font-family: var(--serif); font-size: 1.5rem; }
.footer__dates { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; margin: .3rem 0 1rem; }
.footer__verse { color: var(--ink-soft); font-style: italic; max-width: 44ch; margin: 0 auto 1.4rem; font-family: var(--serif); font-size: 1.05rem; }
.footer__meta { font-size: .78rem; color: var(--ink-soft); letter-spacing: .04em; }
.footer__meta a { color: var(--ink-soft); }

/* =========================================================================
   Admin
   ========================================================================= */
.admin-bar { background: var(--ink); color: var(--ivory); }
.admin-bar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 58px; gap: 1rem; }
.admin-bar a, .admin-bar span { color: var(--ivory); font-size: .82rem; letter-spacing: .08em; }
.admin-bar .brand { font-family: var(--serif); font-size: 1.1rem; }

.admin-wrap { width: min(1180px, 94vw); margin: 2.4rem auto; }
.admin-tabs { display: flex; gap: .5rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.admin-tabs a { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: .5rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); }
.admin-tabs a.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.admin-tabs a:hover { text-decoration: none; }

.admin-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 1.3rem 1.5rem; margin-bottom: 1rem; display: grid;
  grid-template-columns: 1fr auto; gap: 1rem; align-items: start;
}
.admin-card.pending { border-left: 3px solid var(--warn); }
.admin-card.live    { border-left: 3px solid var(--ok); }
.admin-card__msg { font-family: var(--serif); font-size: 1.15rem; margin: 0 0 .7rem; }
.admin-card__meta { font-size: .82rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; }
.admin-card__meta b { color: var(--ink); font-weight: 600; }
.admin-status { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; padding: .2rem .7rem; border-radius: 999px; display: inline-block; margin-bottom: .6rem; }
.admin-status.pending { background: #F5E9E1; color: var(--warn); }
.admin-status.live { background: #E9F1EB; color: var(--ok); }
.admin-actions { display: flex; flex-direction: column; gap: .5rem; min-width: 140px; }
.admin-actions form { margin: 0; }
.admin-actions .btn { width: 100%; }
.order-btns { display: flex; gap: .4rem; }
.order-btns .btn { flex: 1; }

.login-box { width: min(400px, 92vw); margin: 12vh auto; }
.login-box .form { text-align: left; }
.login-box h1 { font-size: 2rem; text-align: center; margin-bottom: .3rem; }
.login-box p { text-align: center; color: var(--ink-soft); margin-bottom: 1.6rem; }

@media (max-width: 620px) {
  .admin-card { grid-template-columns: 1fr; }
  .admin-actions { flex-direction: row; flex-wrap: wrap; }
  .admin-actions .btn { width: auto; }
}

/* =========================================================================
   Tribute images (incl. scanned condolence-book pages)
   ========================================================================= */
.msg-card__img {
  margin: 0 0 1.1rem; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line);
}
.msg-card__img img { width: 100%; display: block; }
.msg-card.is-scan .msg-card__quote { font-size: 1.05rem; color: var(--ink-soft); font-style: italic; }

/* Lightbox (pure CSS via :target) */
.lightbox { position: fixed; inset: 0; background: rgba(46,36,56,.9); display: none; align-items: center; justify-content: center; z-index: 200; padding: 4vw; }
.lightbox:target { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox a.close { position: absolute; top: 3vh; right: 4vw; color: var(--ivory); font-size: 2rem; text-decoration: none; line-height: 1; }

/* =========================================================================
   Brochure / QR download block
   ========================================================================= */
.brochure {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; justify-content: center;
  background: var(--white); border: 1px solid var(--gold-soft); border-radius: 12px;
  padding: 1.4rem 1.8rem; box-shadow: var(--shadow); max-width: 560px; margin: 0 auto;
}
.brochure__qr { width: 132px; height: 132px; flex: none; border-radius: 8px; background: var(--ivory); padding: 8px; border: 1px solid var(--line); }
.brochure__qr img, .brochure__qr canvas { width: 100%; height: 100%; display: block; }
.brochure__text { text-align: left; min-width: 200px; flex: 1; }
.brochure__text h3 { font-size: 1.4rem; margin: 0 0 .4rem; }
.brochure__text p { margin: 0 0 .9rem; color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 480px) { .brochure { flex-direction: column; text-align: center; } .brochure__text { text-align: center; } }

/* =========================================================================
   Donations details
   ========================================================================= */
.give-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; max-width: 640px; margin: 1.8rem auto 0; }
.give-card { background: rgba(255,255,255,.06); border: 1px solid rgba(203,174,119,.4); border-radius: 10px; padding: 1.1rem 1.3rem; text-align: left; }
.give-card .k { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .35rem; }
.give-card .v { font-family: var(--serif); font-size: 1.25rem; color: var(--ivory); }
.give-card .sub { font-size: .82rem; color: #C9BFD1; margin-top: .2rem; }

/* =========================================================================
   Gallery page grid (dedicated page)
   ========================================================================= */
.gallery-page { columns: 3 260px; column-gap: 16px; }
.gallery-page figure {
  margin: 0 0 16px; break-inside: avoid; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 12px 30px -22px rgba(46,36,56,.5);
  position: relative; transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-page figure:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-page img { width: 100%; }
.gallery-page figcaption { font-size: .82rem; color: var(--ink-soft); padding: .6rem .8rem; font-style: italic; }

/* =========================================================================
   Admin: settings & uploads
   ========================================================================= */
.admin-panel { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.8rem 2rem; margin-bottom: 1.4rem; }
.admin-panel h2 { font-size: 1.5rem; margin: 0 0 .3rem; }
.admin-panel .hint { color: var(--ink-soft); font-size: .88rem; margin: 0 0 1.4rem; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .admin-grid { grid-template-columns: 1fr; } }

.admin-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 1rem; }
.admin-thumb { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--ivory); }
.admin-thumb img { width: 100%; height: 130px; object-fit: cover; display: block; }
.admin-thumb .row { display: flex; gap: .3rem; padding: .5rem; }
.admin-thumb .row form { flex: 1; margin: 0; }
.admin-thumb .row .btn { width: 100%; }
.admin-thumb input.cap { width: 100%; border: 0; border-top: 1px solid var(--line); padding: .5rem; font-size: .8rem; font-family: var(--sans); background: var(--white); }

/* =========================================================================
   Background hymn player
   ========================================================================= */
.hymn {
  position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px);
  z-index: 120; display: flex; align-items: center; gap: .7rem;
  background: rgba(46, 36, 56, .92); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-soft); border-radius: 999px;
  padding: .5rem .95rem .5rem .55rem; box-shadow: 0 14px 34px -18px rgba(46,36,56,.7);
  max-width: min(78vw, 320px);
}
.hymn__btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  border: 0; background: none; color: var(--ivory); padding: 0;
}
.hymn__icon { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold); color: #2E2438; flex: none; transition: background .2s ease; }
.hymn__btn:hover .hymn__icon { background: var(--gold-soft); }
.hymn__title { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ivory);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

/* equalizer bars — only animate while playing */
.hymn__wave { display: none; align-items: flex-end; gap: 3px; height: 18px; margin-left: .1rem; }
.hymn.is-playing .hymn__wave { display: inline-flex; }
.hymn__wave i { width: 3px; background: var(--gold-soft); border-radius: 2px; height: 40%; animation: hymnBar 1s ease-in-out infinite; }
.hymn__wave i:nth-child(2){ animation-delay:.2s } .hymn__wave i:nth-child(3){ animation-delay:.4s } .hymn__wave i:nth-child(4){ animation-delay:.6s }
@keyframes hymnBar { 0%,100%{ height:35% } 50%{ height:100% } }
@media (prefers-reduced-motion: reduce) { .hymn__wave i { animation: none; height: 60%; } }
@media (max-width: 560px) { .hymn__title { display: none; } }
