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

:root {
  --blush:    #f5e6e0;
  --rose:     #c97b84;
  --deep:     #7a3d45;
  --cream:    #fdf8f5;
  --warm:     #e8d5c4;
  --text:     #3a2a2e;
  --muted:    #8a6f72;
  --gold:     #c9a96e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253,248,245,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,123,132,.12);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(122,61,69,.08); }
nav .nav-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep);
  text-decoration: none;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav ul a {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
nav ul a:hover { color: var(--rose); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  background: radial-gradient(ellipse at 30% 20%, #f9ece8 0%, #fdf3ef 40%, #f5e9e2 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,123,132,.18) 0%, transparent 70%);
  top: -120px; right: -100px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,169,110,.13) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-24px) scale(1.04); }
}

.hero-badge {
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(201,123,132,.1);
  border: 1px solid rgba(201,123,132,.3);
  padding: .45rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--deep);
  opacity: 0;
  animation: fadeUp .9s .15s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero-sub {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  margin: 1.5rem auto 0;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 1s .3s ease forwards;
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeUp 1.2s .6s ease forwards;
}
.scroll-hint span {
  font-family: 'Nunito', sans-serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DECORATIVE DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.divider-line { flex: 1; height: 1px; background: var(--warm); }
.divider-icon { color: var(--gold); font-size: 1.1rem; }

/* ── SECTIONS ── */
section {
  padding: 5rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
h2 em { font-style: italic; color: var(--rose); }
p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.2rem;
}

/* ── PHOTO PLACEHOLDER ── */
.photo-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 3px 40% 3px 40% / 40% 3px 40% 3px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--warm) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
  border: 2px dashed rgba(201,123,132,.35);
  position: relative;
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
}

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 3px solid var(--rose);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: rgba(201,123,132,.06);
  border-radius: 0 12px 12px 0;
}
.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--deep);
  margin: 0;
  line-height: 1.7;
}
.quote-attribution {
  margin-top: .75rem !important;
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), var(--warm));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: .4rem;
  width: 12px; height: 12px;
  background: var(--rose);
  border: 3px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--rose);
}
.timeline-date {
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.timeline-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--deep);
  margin-bottom: .5rem;
}
.timeline-item p { margin: 0; font-size: .97rem; color: var(--muted); line-height: 1.7; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--deep) 0%, #5c2b33 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  margin: 2rem auto 5rem;
  max-width: 820px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,.15) 0%, transparent 70%);
  top: -80px; right: -60px;
  border-radius: 50%;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 2rem; }
.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-primary { background: var(--gold); color: var(--deep); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.4); color: #fff; }

/* ── UPDATES ── */
.updates-grid { display: grid; gap: 1.5rem; }
.update-card {
  background: #fff;
  border: 1px solid var(--warm);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.update-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(122,61,69,.08); }
.update-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--rose), var(--gold));
  border-radius: 4px 0 0 4px;
}
.update-date {
  font-family: 'Nunito', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.update-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--deep);
  margin-bottom: .6rem;
}
.update-card p { margin: 0; font-size: .95rem; color: var(--muted); line-height: 1.7; }

/* ── SUPPORT ── */
.support-box {
  background: var(--blush);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(201,123,132,.2);
}
.support-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep);
  margin-bottom: 1rem;
}
.support-box p { max-width: 480px; margin: 0 auto 1.8rem; color: var(--muted); }
.contact-link {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--rose);
  border-bottom: 2px solid rgba(201,123,132,.3);
  text-decoration: none;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.contact-link:hover { border-color: var(--rose); }
.help-list {
  font-size: .88rem;
  color: var(--muted);
  line-height: 2;
  margin: 0;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--warm);
}
footer .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--deep);
  margin-bottom: .75rem;
}
footer p {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .06em;
  margin: 0;
  line-height: 1.9;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav ul { display: none; }
  .cta-section { padding: 3rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
}

/* ── PHOTO COMPARISON ── */
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 2.5rem 0;
}
.comparison-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.comparison-label {
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 40px;
}
.comparison-label.safe {
  background: rgba(100,180,120,.12);
  color: #3a7a50;
  border: 1px solid rgba(100,180,120,.3);
}
.comparison-label.danger {
  background: rgba(200,80,80,.1);
  color: #8a3030;
  border: 1px solid rgba(200,80,80,.25);
}
.comparison-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.comparison-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.comparison-caption {
  font-family: 'Nunito', sans-serif;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-vs {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--muted);
  opacity: .5;
}

@media (max-width: 600px) {
  .comparison {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .comparison-divider { padding: .5rem 0; }
}

/* ── ALERT BOX ── */
.alert-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(200,80,80,.06);
  border: 1px solid rgba(200,80,80,.2);
  border-left: 4px solid #c05050;
  border-radius: 0 12px 12px 0;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}
.alert-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.alert-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.alert-content strong { color: #8a3030; }

/* ── LINK CARD ── */
.link-card {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--warm);
  border-radius: 16px;
  padding: 1.6rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(122,61,69,.06);
}
.link-card-icon { font-size: 2rem; flex-shrink: 0; }
.link-card-content { display: flex; flex-direction: column; gap: .4rem; }
.link-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
}
.link-card-sub {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  color: var(--muted);
}
.link-card-btn {
  display: inline-block;
  margin-top: .4rem;
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--rose);
  text-decoration: none;
  border-bottom: 2px solid rgba(201,123,132,.3);
  padding-bottom: 2px;
  transition: border-color .2s;
  width: fit-content;
}
.link-card-btn:hover { border-color: var(--rose); }

/* ── EVENT CARD ── */
.event-card {
  background: #fff;
  border: 1px solid var(--warm);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 24px rgba(122,61,69,.07);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--rose), var(--gold));
}
.event-details {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.event-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.event-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.event-detail-label {
  font-family: 'Nunito', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.event-detail-value {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

/* ── FLYER ── */
.flyer-frame {
  width: 100%;
  max-width: 480px;
  margin: 2.5rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.flyer-frame img {
  width: 100%;
  height: auto;
  display: block;
}
