/* ============================================================
   모바일 청첩장 — 모던 매거진 톤
   팔레트: warm ivory + 차분한 모카 + 깊은 차콜
============================================================ */

:root {
  --bg: #fbfaf6;
  --bg-alt: #efece2;
  --text: #1d1b18;
  --text-soft: #807d72;
  --text-mute: #b3aea3;
  --line: #e6e2d3;
  --line-soft: #f1ede0;
  --accent: #5e6f58;        /* 진한 세이지 (대비 강화) */
  --accent-deep: #4a5a45;
  --accent-soft: #a8b5a0;
  --sun: #c98c8c;
  --sat: #6b8db8;
  --shadow-sm: 0 1px 3px rgba(40, 38, 30, 0.04);
  --shadow-md: 0 4px 16px rgba(40, 38, 30, 0.06);

  --serif-en: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --serif-en-it: 'Cormorant Garamond', serif;
  --serif-display: 'Prata', 'Cormorant Garamond', serif;
  --serif-kr: 'Noto Serif KR', serif;
  --sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

[hidden] { display: none !important; }

html, body {
  background: #ebe6dc;
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

a { color: inherit; text-decoration: none; }

/* ----- Layout ----- */
.invitation {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0,0,0,0.06);
  overflow: hidden;
}

.section {
  padding: 100px 32px;
  text-align: center;
  position: relative;
}

.section + .section { border-top: 1px solid var(--line-soft); }
.savedate + .section { border-top: none; }

.section__eyebrow {
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: 0.45em;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 0.45em;
}
.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section__title {
  font-family: var(--serif-kr);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.18em;
  margin-bottom: 52px;
  color: var(--text);
}
.greeting .section__title { font-size: 24px; }

/* ----- 1. 메인 커버 ----- */
.cover {
  min-height: 100vh;
  padding: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.cover__photo {
  width: 75%;
  max-width: 320px;
  margin: 40px auto 0;
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(40, 38, 30, 0.08);
}
.cover__photo img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.96) saturate(0.92) contrast(1.03);
  will-change: transform;
  transform: translateY(0) scale(1.02);
  transition: transform 0s;
}

.cover__inner {
  width: 100%;
  padding: 56px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover__date-eng {
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 38px;
  font-weight: 400;
}

.cover__names {
  font-family: var(--serif-display);
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cover__name { display: block; }
.cover__amp {
  font-family: var(--serif-en-it);
  font-style: italic;
  font-size: 50px;
  color: var(--accent);
  font-weight: 400;
  margin: 4px 0;
  letter-spacing: 0;
}

.cover__korean {
  font-family: var(--serif-kr);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--text);
  margin-bottom: 30px;
  padding-left: 0.5em;
}

.cover__deco {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 30px;
}
.cover__dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.cover__line {
  width: 56px;
  height: 1px;
  background: var(--accent);
}

.cover__sub {
  font-family: var(--serif-en);
  font-size: 13.5px;
  color: var(--text-soft);
  letter-spacing: 0.25em;
  line-height: 2;
  font-weight: 400;
}

.cover__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: rgba(156, 126, 110, 0.2);
  overflow: hidden;
}
.cover__scroll span {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--accent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ----- 1.5 SAVE THE DATE ----- */
.savedate {
  padding: 90px 32px 100px;
  text-align: center;
  background: var(--bg-alt);
  position: relative;
}
.savedate::before,
.savedate::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.savedate::before { top: 28px; }
.savedate::after { bottom: 28px; }

.savedate__label {
  font-family: var(--serif-en);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.55em;
  color: var(--accent);
  margin-bottom: 28px;
  padding-left: 0.55em;
}
.savedate__year {
  font-family: var(--serif-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
  padding-left: 0.2em;
}
.savedate__date {
  font-family: var(--serif-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.savedate__date em {
  font-style: normal;
  color: var(--accent);
  font-size: 32px;
  margin-bottom: 4px;
}
.savedate__sub {
  font-family: var(--serif-en);
  font-size: 13.5px;
  letter-spacing: 0.3em;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-weight: 400;
}
.savedate__venue {
  font-family: var(--serif-en);
  font-size: 12.5px;
  letter-spacing: 0.45em;
  color: var(--accent);
  font-weight: 400;
  padding-left: 0.45em;
}

/* ----- 2. 인사말 ----- */
.greeting__body {
  font-family: var(--serif-kr);
  font-size: 17px;
  font-weight: 300;
  line-height: 2.4;
  color: var(--text);
  letter-spacing: 0.05em;
}

/* ----- 3. 신랑 신부 ----- */
.family__row { padding: 8px 0; }

.family__parents {
  font-family: var(--serif-kr);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-soft);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}
.family__parents em {
  font-style: normal;
  margin-left: 6px;
  color: var(--text-mute);
}

.family__name {
  font-family: var(--serif-kr);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.family__name strong { font-weight: 500; }

.family__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--accent);
  transition: all .25s;
}
.family__call:active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.family__divider {
  width: 1px;
  height: 16px;
  background: var(--line);
  margin: 12px auto;
}

/* ----- 4. 캘린더 ----- */
.calendar__date {
  margin-bottom: 36px;
  padding: 0;
}
.calendar__year {
  font-family: var(--serif-en);
  font-size: 32px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.2;
}
.calendar__big {
  font-family: var(--serif-en);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--accent);
  letter-spacing: 0.2em;
}
.calendar__time {
  font-family: var(--serif-en);
  font-size: 14.5px;
  color: var(--text-soft);
  letter-spacing: 0.25em;
  font-weight: 400;
}
.calendar__time::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--text-mute);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}
.calendar__time::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--text-mute);
  vertical-align: middle;
  margin-left: 12px;
  margin-bottom: 3px;
}

.calendar__table {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 36px;
  border-collapse: collapse;
  font-size: 15px;
  font-family: var(--serif-en);
  font-weight: 400;
}
.calendar__table th,
.calendar__table td {
  padding: 11px 0;
  text-align: center;
  font-weight: 400;
  color: var(--text);
}
.calendar__table th {
  color: var(--text-mute);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  padding-bottom: 14px;
  text-transform: uppercase;
}
.calendar__table .sun { color: var(--sun); }
.calendar__table .sat { color: var(--sat); }
.calendar__table .is-wed {
  position: relative;
  color: var(--text);
  font-weight: 500;
}
.calendar__table .is-wed::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: transparent;
}
.calendar__table td { position: relative; }

.calendar__dday {
  display: inline-block;
  font-family: var(--serif-kr);
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  padding: 12px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ----- 5. 갤러리 ----- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery__item {
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  grid-column: span 2;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40, 38, 30, 0.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.gallery__item:hover {
  box-shadow: 0 6px 20px rgba(40, 38, 30, 0.12);
  transform: translateY(-2px);
}
.gallery__item:nth-child(1) {
  grid-column: span 6;
  aspect-ratio: 3 / 4;
}
.gallery__item:nth-child(2),
.gallery__item:nth-child(3) {
  grid-column: span 3;
  aspect-ratio: 3 / 4;
}
.gallery__item:nth-child(14) {
  grid-column: span 6;
  aspect-ratio: 3 / 4;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(0.96) saturate(0.92) contrast(1.03);
}
.gallery__item[data-num="01"] img { object-position: center 25%; }
.gallery__item[data-num="02"] img { object-position: center 35%; }
.gallery__item[data-num="03"] img { object-position: center 45%; }
.gallery__item[data-num="04"] img { object-position: center 25%; }
.gallery__item[data-num="05"] img { object-position: center 22%; }
.gallery__item[data-num="06"] img { object-position: center 25%; }
.gallery__item[data-num="07"] img { object-position: center 28%; }
.gallery__item[data-num="08"] img { object-position: center 40%; }
.gallery__item[data-num="09"] img { object-position: center 30%; }
.gallery__item[data-num="10"] img { object-position: center 28%; }
.gallery__item[data-num="11"] img { object-position: center 28%; }
.gallery__item[data-num="12"] img { object-position: center 22%; }
.gallery__item[data-num="13"] img { object-position: center 30%; }
.gallery__item[data-num="14"] img { object-position: center 18%; }
.gallery__item:active img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1) contrast(1);
}

.gallery__item--placeholder::after {
  content: attr(data-num);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-en);
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

/* ----- 6. 오시는 길 ----- */
.location__hall { margin-bottom: 28px; }
.location__name {
  font-family: var(--serif-kr);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.location__addr {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.location__map {
  display: block;
  width: 100%;
  background: var(--bg-alt);
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  position: relative;
}
.location__map img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .25s, filter .25s;
  filter: brightness(0.97);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-composite: intersect;
}
.location__map::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 32px 14px var(--bg-alt);
}
.location__map:active img {
  opacity: 0.85;
  filter: brightness(1);
}

.location__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
.map-btn {
  display: block;
  padding: 15px 0;
  font-size: 13.5px;
  letter-spacing: 0.15em;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 400;
  transition: all .2s;
}
.map-btn:active {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.location__info {
  list-style: none;
  text-align: left;
  padding: 0;
}
.location__info li {
  padding: 22px 4px;
  border-top: 1px solid var(--line);
}
.location__info li:last-child { border-bottom: 1px solid var(--line); }
.location__info h3 {
  font-family: var(--serif-en);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.location__info p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.location__info strong { color: var(--text); font-weight: 500; }

/* ----- 7. 계좌 ----- */
.account__lead {
  font-family: var(--serif-kr);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-soft);
  margin-bottom: 34px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.account__group { margin-bottom: 10px; }

.account__toggle {
  width: 100%;
  padding: 20px 24px;
  background: #ddd6c2;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif-kr);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text);
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.account__toggle:active { background: #d2cab3; }
.account__arrow {
  color: var(--accent);
  transition: transform .3s;
  font-size: 11px;
}
.account__toggle.is-open .account__arrow { transform: rotate(180deg); }
.account__toggle.is-open {
  border-bottom-color: transparent;
  border-radius: 14px 14px 0 0;
}

.account__list {
  background: #ddd6c2;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 4px 22px 18px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.account__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.account__item:last-child { border-bottom: none; }
.account__role {
  display: inline-block;
  font-family: var(--serif-en);
  font-size: 11.5px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-right: 8px;
}
.account__item p:first-child {
  font-family: var(--serif-kr);
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.account__no {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-soft);
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.account__copy {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif-en);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 15px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  transition: all .2s;
}
.account__copy:active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ----- 8. 공유 ----- */
.share__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
  margin: 0 auto;
}
.share__btn {
  padding: 18px 0;
  background: var(--text);
  color: var(--bg);
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all .25s;
}
.share__btn:active {
  opacity: 0.85;
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}
.share__btn--ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

/* ----- Footer ----- */
.footer {
  text-align: center;
  padding: 60px 32px 80px;
  color: var(--text-soft);
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.footer__names {
  font-family: var(--serif-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer__amp {
  font-family: var(--serif-en-it);
  font-style: italic;
  color: var(--accent);
  font-size: 30px;
  font-weight: 400;
}
.footer__date {
  font-family: var(--serif-en);
  font-size: 12.5px;
  letter-spacing: 0.4em;
  color: var(--accent);
  font-weight: 400;
}

/* ----- 라이트박스 ----- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 10, 0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #fff;
  font-weight: 200;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 200;
}
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }
.lightbox__count {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-family: var(--serif-en);
  font-weight: 400;
}

/* ----- 토스트 ----- */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29, 27, 24, 0.94);
  color: var(--bg);
  padding: 14px 24px;
  font-family: var(--serif-kr);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  z-index: 2000;
  animation: toastIn .25s;
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ----- 스크롤 등장 애니메이션 ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- 배경음악 토글 버튼 ----- */
.music-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1500;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.music-toggle:hover { background: #fff; }
.music-toggle__bars {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  height: 16px;
  position: relative;
}
.music-toggle__bars span {
  width: 3px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: center;
  transition: height .2s;
}
.music-toggle.is-playing .music-toggle__bars span {
  animation: bgmBars 0.9s ease-in-out infinite;
}
.music-toggle.is-playing .music-toggle__bars span:nth-child(1) { animation-delay: 0s; }
.music-toggle.is-playing .music-toggle__bars span:nth-child(2) { animation-delay: 0.18s; }
.music-toggle.is-playing .music-toggle__bars span:nth-child(3) { animation-delay: 0.36s; }
@keyframes bgmBars {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}
.music-toggle:not(.is-playing) .music-toggle__bars::after {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 1.5px;
  background: var(--accent);
  transform: rotate(-45deg);
  border-radius: 2px;
}

@media (max-width: 360px) {
  .section { padding: 80px 24px; }
  .cover__inner { padding: 48px 24px 0; }
  .cover__names { font-size: 50px; }
  .cover__amp { font-size: 42px; }
  .calendar__big { font-size: 28px; }
  .footer__names { font-size: 28px; }
  .family__name { font-size: 25px; }
}
