/* =========================================================
   $MOMS Mother's Day Crypto Site
   Soft, modern, romantic. Blush, cream, champagne, deep rose.
   ========================================================= */

:root {
  --blush:        #ffe2ec;
  --blush-2:      #ffd1dd;
  --rose:         #f7a3b8;
  --rose-deep:    #e75480;
  --burgundy:     #8b3a62;
  --gold:         #d4af7c;
  --gold-deep:    #b48a4a;
  --cream:        #fff8f5;
  --cream-2:      #fdf2f8;
  --ink:          #3a2230;
  --ink-soft:     #6b4757;
  --white:        #ffffff;

  --shadow-sm:    0 2px 10px rgba(231, 84, 128, 0.08);
  --shadow-md:    0 10px 30px rgba(139, 58, 98, 0.10);
  --shadow-lg:    0 25px 60px rgba(139, 58, 98, 0.18);

  --radius-sm:    14px;
  --radius-md:    22px;
  --radius-lg:    32px;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Quicksand', 'Inter', system-ui, -apple-system, sans-serif;
  --script:'Dancing Script', 'Brush Script MT', cursive;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 10% 0%, #ffe7f1 0%, transparent 45%),
    radial-gradient(ellipse at 90% 30%, #fff1e0 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, #ffe7f1 0%, transparent 55%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.eyebrow {
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--rose-deep);
  margin: 0 0 .4rem;
  letter-spacing: .5px;
}
.eyebrow.center { text-align: center; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--burgundy);
  margin: 0 0 .8em;
  letter-spacing: -.01em;
}
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1; }
h2.center { text-align: center; }
h3 { font-size: 1.4rem; line-height: 1.3; }
.script {
  font-family: var(--script);
  font-weight: 700;
  color: var(--rose-deep);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.btn--primary {
  background: linear-gradient(135deg, #ff8fab 0%, #e75480 60%, #b73a64 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(231,84,128,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(231,84,128,.45);
}
.btn--ghost {
  background: rgba(255,255,255,.6);
  color: var(--burgundy);
  border-color: rgba(231,84,128,.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--rose-deep);
  transform: translateY(-2px);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 245, .75);
  border-bottom: 1px solid rgba(231,84,128,.10);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--burgundy);
  letter-spacing: .02em;
}
.brand__heart {
  width: 28px; height: 28px;
  display: inline-flex;
  filter: drop-shadow(0 2px 6px rgba(231,84,128,.4));
  animation: heartbeat 2.4s ease-in-out infinite;
}
.brand__heart svg { width: 100%; height: 100%; fill: var(--rose-deep); }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  20%      { transform: scale(1.18); }
  40%      { transform: scale(.96); }
  60%      { transform: scale(1.10); }
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: .96rem;
  font-weight: 500;
  color: var(--ink);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: var(--rose-deep);
  transition: width .25s ease, left .25s ease;
}
.nav__links a:hover { color: var(--rose-deep); }
.nav__links a:hover::after { width: 100%; left: 0; }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 130px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,248,245,.55) 0%, rgba(255,248,245,.85) 60%, var(--cream) 100%),
    linear-gradient(135deg, rgba(255, 200, 220, .35), rgba(255, 230, 200, .35));
}

.hero__inner {
  text-align: center;
  position: relative;
}
.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: .35em;
  letter-spacing: -.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-weight: 600;
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.05em;
  height: .12em;
  background: linear-gradient(90deg, transparent, var(--rose) 20%, var(--rose) 80%, transparent);
  border-radius: 2px;
}
.hero__sub {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 32px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(231,84,128,.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero__stats li {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.hero__stats strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--burgundy);
  font-weight: 600;
}
.hero__stats span {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

.hero__quote {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--burgundy);
  opacity: .8;
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.hero__quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--rose);
  line-height: 0;
  position: relative;
  top: 12px;
}

/* ---------- FALLING PETALS ---------- */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -40px;
  width: 18px; height: 18px;
  background: radial-gradient(circle at 30% 30%, #ffd6e2 0%, #f7a3b8 60%, #e75480 100%);
  border-radius: 150% 0 150% 0;
  opacity: .85;
  filter: drop-shadow(0 2px 4px rgba(231,84,128,.25));
  animation: petal-fall linear infinite;
}
@keyframes petal-fall {
  0%   { transform: translate(0, -10vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: .85; }
  100% { transform: translate(var(--drift, 60px), 110vh) rotate(720deg); opacity: 0; }
}

/* ---------- STORY ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__media {
  position: relative;
  aspect-ratio: 4/5;
}
.story__img {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  object-fit: cover;
}
.story__img--1 {
  width: 75%;
  height: 75%;
  top: 0; left: 0;
  z-index: 1;
}
.story__img--2 {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  z-index: 2;
  border: 8px solid var(--cream);
}
.story__badge {
  position: absolute;
  top: 12%;
  right: 0;
  background: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--script);
  font-size: 1.2rem;
  color: var(--rose-deep);
  box-shadow: var(--shadow-md);
  z-index: 3;
  transform: rotate(6deg);
  animation: float 5s ease-in-out infinite;
}
.story__badge svg { width: 22px; height: 22px; fill: var(--rose-deep); }
@keyframes float {
  0%,100% { transform: rotate(6deg) translateY(0); }
  50%     { transform: rotate(6deg) translateY(-8px); }
}

.story__text blockquote {
  margin: 2rem 0 0;
  padding: 22px 28px;
  border-left: 3px solid var(--rose-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--burgundy);
  background: linear-gradient(135deg, var(--blush) 0%, transparent 100%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; gap: 50px; }
  .story__media { max-width: 460px; margin: 0 auto; }
}

/* ---------- VALUES ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(231,84,128,.10);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  text-align: center;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(231,84,128,.25);
}
.value-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--blush-2));
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.6);
}
.value-card__icon svg {
  width: 28px; height: 28px;
  fill: var(--rose-deep);
}
.value-card h3 { color: var(--burgundy); margin-bottom: .5rem; }
.value-card p  { font-size: .95rem; margin: 0; }

@media (max-width: 980px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values__grid { grid-template-columns: 1fr; } }

/* ---------- TOKENOMICS ---------- */
.tokenomics {
  background:
    radial-gradient(ellipse at 0% 50%, #ffe7f1 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, #fff1e0 0%, transparent 50%);
}
.tokenomics__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.contract {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
  padding: 14px 18px;
  background: #fff;
  border-radius: 999px;
  border: 1px dashed var(--rose);
  box-shadow: var(--shadow-sm);
  max-width: 520px;
  font-size: .95rem;
}
.contract__label {
  font-family: var(--script);
  color: var(--rose-deep);
  font-size: 1.1rem;
}
.contract code {
  font-family: 'Courier New', monospace;
  flex: 1;
  color: var(--burgundy);
  font-size: .85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contract__copy {
  background: var(--blush);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.contract__copy:hover { background: var(--rose); transform: scale(1.1); }
.contract__copy svg {
  width: 16px; height: 16px;
  fill: none; stroke: var(--burgundy); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

.tokenomics__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tk-card {
  background: #fff;
  padding: 32px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(231,84,128,.1);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tk-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  border-radius: 50%;
  opacity: .6;
}
.tk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tk-card--accent {
  background: linear-gradient(135deg, #fff 0%, var(--blush) 100%);
  border-color: var(--rose);
}
.tk-card__pct {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: .5rem;
  position: relative;
}
.tk-card h4 {
  font-size: 1.05rem;
  margin: 0 0 .4rem;
  color: var(--burgundy);
}
.tk-card p { font-size: .9rem; margin: 0; }

@media (max-width: 980px) {
  .tokenomics__grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 540px) {
  .tokenomics__cards { grid-template-columns: 1fr; }
}

/* ---------- HOW TO BUY ---------- */
.howto__lede {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 540px;
}
.howto__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.howto__steps li {
  background: #fff;
  padding: 36px 28px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(231,84,128,.1);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.howto__steps li:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--rose-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.howto__steps h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.howto__steps p  { font-size: .92rem; margin: 0; }

@media (max-width: 980px) { .howto__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .howto__steps { grid-template-columns: 1fr; } }

/* ---------- JOURNEY / ROADMAP ---------- */
.journey {
  background: linear-gradient(180deg, transparent 0%, var(--cream-2) 50%, transparent 100%);
}
.journey__timeline {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}
.journey__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--rose) 20%, var(--rose) 80%, transparent);
  transform: translateX(-50%);
}
.journey__timeline li {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(231,84,128,.12);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s ease;
}
.journey__timeline li:hover { transform: translateY(-4px); }
.journey__timeline li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--rose-deep);
  border: 4px solid var(--cream-2);
  border-radius: 50%;
  position: absolute;
  top: 36px;
  box-shadow: 0 0 0 3px var(--rose-deep);
}
.journey__timeline li:nth-child(odd)::before  { right: -52px; }
.journey__timeline li:nth-child(even)::before { left: -52px; }
.journey__timeline li:nth-child(even) {
  margin-top: 60px;
}
.phase {
  display: inline-block;
  font-family: var(--script);
  color: var(--rose-deep);
  font-size: 1.2rem;
  margin-bottom: .8rem;
}
.journey__timeline ul {
  margin-top: 14px;
}
.journey__timeline ul li {
  background: none;
  border: none;
  box-shadow: none;
  padding: 4px 0 4px 26px;
  position: relative;
  font-size: .95rem;
  color: var(--ink-soft);
}
.journey__timeline ul li:hover { transform: none; }
.journey__timeline ul li::before {
  content: '♥';
  position: absolute;
  left: 0; top: 4px;
  width: auto; height: auto;
  background: none; border: none;
  box-shadow: none;
  color: var(--rose);
  font-size: .9rem;
}

@media (max-width: 880px) {
  .journey__timeline { grid-template-columns: 1fr; }
  .journey__timeline::before { left: 10px; }
  .journey__timeline li:nth-child(even) { margin-top: 0; }
  .journey__timeline li::before,
  .journey__timeline li:nth-child(odd)::before,
  .journey__timeline li:nth-child(even)::before {
    left: -36px; right: auto;
  }
}

/* ---------- TRIBUTE GALLERY ---------- */
.tribute__lede {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 60px;
}
.tribute__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tribute__grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease;
  aspect-ratio: 4/5;
}
.tribute__grid figure:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.tribute__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.tribute__grid figure:hover img { transform: scale(1.08); }
.tribute__grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(58,34,48,.85) 100%);
}

@media (max-width: 880px) { .tribute__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tribute__grid { grid-template-columns: 1fr; } }

/* ---------- CHARITY CTA ---------- */
.charity {
  padding: 90px 0;
}
.charity__inner {
  background: linear-gradient(135deg, #fff 0%, var(--blush) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(231,84,128,.15);
  position: relative;
  overflow: hidden;
}
.charity__inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,.6), transparent 70%);
  border-radius: 50%;
}
.charity__art {
  width: 280px;
  animation: float-soft 6s ease-in-out infinite;
}
.charity__art svg { width: 100%; height: auto; }
@keyframes float-soft {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.charity__text { position: relative; z-index: 1; }
.charity__text p { color: var(--ink); }

@media (max-width: 880px) {
  .charity__inner { grid-template-columns: 1fr; padding: 50px 32px; gap: 30px; text-align: center; }
  .charity__art { margin: 0 auto; width: 200px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, transparent 0%, #f5e1e9 100%);
  padding: 80px 0 30px;
  margin-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(231,84,128,.15);
}
.footer__brand .brand__heart { width: 32px; height: 32px; }
.footer__brand .brand__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--burgundy);
  font-weight: 700;
  margin-left: .5rem;
}
.footer__tag {
  margin-top: 1rem;
  font-family: var(--script);
  color: var(--rose-deep);
  font-size: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .95rem;
}
.footer__links a { transition: color .2s; }
.footer__links a:hover { color: var(--rose-deep); }
.footer__social {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer__social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(231,84,128,.15);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, background .25s;
}
.footer__social a:hover {
  transform: translateY(-3px) rotate(-6deg);
  background: var(--rose-deep);
}
.footer__social a:hover svg { fill: #fff; stroke: #fff; }
.footer__social svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--burgundy); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  transition: fill .25s, stroke .25s;
}
.footer__legal {
  margin-top: 30px;
  font-size: .82rem;
  color: var(--ink-soft);
  text-align: center;
  opacity: .8;
}

@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__links { align-items: center; }
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--rose-deep);
  color: #fff;
}
