/* ============================================
   Romantic Flower - Mobile Wedding Invitation
   ============================================ */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #f5e6e0;
  --pink-light: #fdf2ef;
  --pink-mid: #f0d4cc;
  --rose: #b76e79;
  --rose-dark: #9c5663;
  --rose-light: #d4a0a8;
  --ivory: #faf8f5;
  --ivory-dark: #f0ece6;
  --gold: #c8a96e;
  --gold-light: #dcc9a0;
  --text: #4a3f3f;
  --text-light: #7a6e6e;
  --text-muted: #a89e9e;
  --white: #ffffff;
  --shadow-soft: 0 2px 16px rgba(183, 110, 121, 0.1);
  --shadow-card: 0 4px 24px rgba(183, 110, 121, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif KR', 'Batang', serif;
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--safe-top);
  padding-bottom: var(--safe-bottom);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

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

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

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

.script-font {
  font-family: 'Great Vibes', 'Cormorant Garamond', cursive;
  font-weight: 400;
}

/* ── Curtain / Veil ── */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.curtain__left,
.curtain__right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(
    135deg,
    rgba(250, 248, 245, 0.97) 0%,
    rgba(245, 230, 224, 0.97) 50%,
    rgba(240, 212, 204, 0.95) 100%
  );
  backdrop-filter: blur(8px);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain__left {
  left: 0;
  border-right: 1px solid var(--pink-mid);
}

.curtain__right {
  right: 0;
  border-left: 1px solid var(--pink-mid);
}

.curtain.is-open .curtain__left {
  transform: translateX(-100%);
}

.curtain.is-open .curtain__right {
  transform: translateX(100%);
}

.curtain.is-open .curtain__content {
  opacity: 0;
  transform: scale(0.9);
}

.curtain.is-hidden {
  pointer-events: none;
  visibility: hidden;
}

.curtain__content {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.curtain__names {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--rose);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.curtain__msg {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  letter-spacing: 0.15em;
}

.curtain__btn {
  display: inline-block;
  padding: 14px 48px;
  border: 1px solid var(--rose-light);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--rose);
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.curtain__btn:hover {
  background: var(--rose);
  color: var(--white);
}

/* Floral decoration on curtain */
.curtain__content::before,
.curtain__content::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.25;
  pointer-events: none;
}

.curtain__content::before {
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── Petals Canvas ── */
#petals-canvas {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: calc(80px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(74, 63, 63, 0.9);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Sections ── */
.section {
  position: relative;
  padding: 20px 24px;
}

.section__inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.section__title {
  font-size: 2.2rem;
  color: var(--rose);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

/* ── Floral Divider ── */
.floral-divider {
  text-align: center;
  margin-top: 48px;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floral-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--pink-mid) 30%,
    var(--rose-light) 50%,
    var(--pink-mid) 70%,
    transparent 100%
  );
}

.floral-divider::after {
  content: '\273F';
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 1.4rem;
  color: var(--rose-light);
  background: var(--ivory);
  padding: 0 16px;
  letter-spacing: 8px;
}

/* alternate divider styles per section */
.greeting .floral-divider::after {
  content: '\2740';
}

.calendar-section .floral-divider::after {
  content: '\2741';
}

.story .floral-divider::after {
  content: '\273E';
}

.gallery .floral-divider::after {
  content: '\2743';
}

.location .floral-divider::after {
  content: '\2742';
}

/* ── Hero Section ── */
.hero {
  padding-top: 40px;
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    var(--pink-light) 40%,
    var(--ivory) 100%
  );
}

.floral-frame {
  position: relative;
  max-width: 480px;
  margin: 0 auto 32px;
  padding: 16px;
}

/* Floral corner decorations */
.floral-frame::before,
.floral-frame::after {
  content: '\2740 \2740';
  position: absolute;
  font-size: 1.3rem;
  color: var(--rose-light);
  opacity: 0.6;
  letter-spacing: 4px;
}

.floral-frame::before {
  top: 0;
  left: 0;
}

.floral-frame::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.hero__photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid rgba(183, 110, 121, 0.15);
}

.hero__photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero__photo-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero__info {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.hero__label {
  font-size: 1.6rem;
  color: var(--rose-light);
  margin-bottom: 8px;
}

.hero__names {
  font-family: 'Noto Serif KR', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.hero__names .ampersand {
  display: inline-block;
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--rose);
  margin: 0 8px;
  vertical-align: middle;
}

.hero__date {
  font-size: 0.95rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hero__venue {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Countdown ── */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  border: 1px solid rgba(183, 110, 121, 0.1);
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.countdown__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 4px;
}

.countdown__label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Greeting ── */
.greeting {
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    rgba(245, 230, 224, 0.3) 50%,
    var(--ivory) 100%
  );
}

.greeting__text {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--text);
  white-space: pre-line;
  margin-bottom: 36px;
  word-break: keep-all;
}

.greeting__parents {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 2;
}

.greeting__parents .parent-line {
  display: block;
}

.greeting__parents .parent-dot {
  margin: 16px 0 8px;
  color: var(--rose-light);
  font-size: 1.2rem;
}

.greeting__parents .deceased {
  position: relative;
}

.greeting__parents .deceased::before {
  content: '故';
  font-size: 0.7em;
  vertical-align: super;
  margin-right: 2px;
  color: var(--text-muted);
}

/* ── Calendar Section ── */
.calendar-section {
  background: var(--ivory);
}

.calendar {
  max-width: 340px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(183, 110, 121, 0.08);
}

.calendar__header {
  text-align: center;
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--rose);
  letter-spacing: 0.05em;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
}

.calendar__weekday {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 4px 0;
}

.calendar__weekday:first-child {
  color: var(--rose);
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar__day {
  text-align: center;
  font-size: 0.85rem;
  padding: 6px 0;
  color: var(--text-light);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar__day:nth-child(7n+1) {
  color: var(--rose-light);
}

.calendar__day.is-today {
  background: var(--rose);
  color: var(--white);
  font-weight: 500;
}

.calendar__day.is-empty {
  visibility: hidden;
}

.calendar-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Story ── */
.story {
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    var(--pink-light) 50%,
    var(--ivory) 100%
  );
}

.story__text {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--text);
  white-space: pre-line;
  margin-bottom: 32px;
  word-break: keep-all;
}

.story__images {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story__img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.story__img-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story__img-caption {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* ── Gallery ── */
.gallery {
  background: var(--ivory);
}

.gallery__grid {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.gallery__item:hover {
  transform: scale(1.03);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ── Location ── */
.location {
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    rgba(245, 230, 224, 0.25) 50%,
    var(--ivory) 100%
  );
}

.location__venue {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.location__hall {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.location__address {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.location__tel {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.location__map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  border: 1px solid rgba(183, 110, 121, 0.08);
}

.location__map-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.location__buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Account ── */
.account {
  background: var(--ivory);
  padding-bottom: 40px;
}

.account__subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* Accordion */
.accordion {
  max-width: 400px;
  margin: 0 auto 12px;
  border: 1px solid rgba(183, 110, 121, 0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.accordion__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
  transition: background 0.2s;
}

.accordion__toggle:hover {
  background: var(--pink-light);
}

.accordion__arrow {
  transition: transform 0.3s ease;
  color: var(--rose-light);
}

.accordion.is-open .accordion__arrow {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion.is-open .accordion__body {
  max-height: 600px;
}

.account-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid rgba(183, 110, 121, 0.08);
}

.account-item__info {
  text-align: left;
}

.account-item__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.account-item__detail {
  font-size: 0.85rem;
  color: var(--text);
}

.account-item__name {
  font-weight: 400;
  margin-right: 4px;
}

.account-item__copy {
  padding: 8px 16px;
  font-size: 0.78rem;
  border: 1px solid var(--rose-light);
  border-radius: 50px;
  color: var(--rose);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}

.account-item__copy:hover {
  background: var(--rose);
  color: var(--white);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  font-size: 0.82rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--rose {
  background: var(--rose);
  color: var(--white);
  border: 1px solid var(--rose);
}

.btn--rose:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.btn--outline {
  background: var(--white);
  color: var(--rose);
  border: 1px solid var(--rose-light);
}

.btn--outline:hover {
  background: var(--pink-light);
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 40px 24px calc(40px + var(--safe-bottom));
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    var(--pink) 100%
  );
}

.footer__text {
  font-size: 2rem;
  color: var(--rose-light);
}

/* ── Photo Viewer Modal ── */
.viewer {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.viewer.is-active {
  opacity: 1;
  pointer-events: auto;
}

.viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.viewer__close {
  position: absolute;
  top: calc(16px + var(--safe-top));
  right: calc(16px + var(--safe-right));
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.viewer__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.viewer__counter {
  position: absolute;
  top: calc(16px + var(--safe-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1em;
}

.viewer__track {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  touch-action: pan-y;
}

.viewer__slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}

.viewer__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}

.viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.viewer__nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.viewer__nav--prev {
  left: calc(8px + var(--safe-left));
}

.viewer__nav--next {
  right: calc(8px + var(--safe-right));
}

/* ── Scroll Animations ── */
.anim-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item,
.story__img-card {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery__item.is-visible,
.story__img-card.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger gallery items */
.gallery__item:nth-child(1) { transition-delay: 0.0s; }
.gallery__item:nth-child(2) { transition-delay: 0.08s; }
.gallery__item:nth-child(3) { transition-delay: 0.16s; }
.gallery__item:nth-child(4) { transition-delay: 0.24s; }
.gallery__item:nth-child(5) { transition-delay: 0.32s; }
.gallery__item:nth-child(6) { transition-delay: 0.40s; }
.gallery__item:nth-child(7) { transition-delay: 0.48s; }
.gallery__item:nth-child(8) { transition-delay: 0.56s; }
.gallery__item:nth-child(9) { transition-delay: 0.64s; }

/* ── Watercolor Background Elements ── */
.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    ellipse,
    rgba(183, 110, 121, 0.06) 0%,
    rgba(183, 110, 121, 0.03) 40%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    ellipse,
    rgba(200, 169, 110, 0.06) 0%,
    rgba(200, 169, 110, 0.02) 50%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.greeting::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    ellipse,
    rgba(183, 110, 121, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.story::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    ellipse,
    rgba(212, 160, 168, 0.07) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* ── Section Loading Indicator ── */
.section-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}

.section-loading__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-light);
  opacity: 0.4;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.section-loading__dot:nth-child(2) {
  animation-delay: 0.2s;
}

.section-loading__dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loadingPulse {
  0%, 80%, 100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  40% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* ── Responsive ── */
/* Tablet */
@media (min-width: 768px) {
  .section {
    padding: 20px 40px;
  }

  .hero__photo-wrap img {
    aspect-ratio: 3 / 3.5;
  }

  .floral-frame {
    max-width: 440px;
  }

  .gallery__grid {
    max-width: 600px;
    gap: 10px;
  }

  .section__title {
    font-size: 2.6rem;
  }

  .hero__names {
    font-size: 1.7rem;
  }

  .countdown__num {
    font-size: 2.4rem;
  }

  .story__images {
    flex-direction: row;
    max-width: 600px;
    padding: 0 40px;
  }

  .story__img-card {
    flex: 1;
  }

  .story__img-card img {
    aspect-ratio: 3 / 4;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .invitation {
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(183, 110, 121, 0.08);
    border-left: 1px solid rgba(183, 110, 121, 0.06);
    border-right: 1px solid rgba(183, 110, 121, 0.06);
    min-height: 100vh;
    background: var(--ivory);
  }

  body {
    background: var(--pink-light);
  }

  .gallery__grid {
    max-width: 500px;
  }

  .story__images {
    max-width: 500px;
  }
}
