/* ═══════════════════════════════════════════════════════════
   FINANCE IN HEELS · HerMoney Community Launch
   styles.css · shared stylesheet for index.html
   Palette: pink/plum lifted from the landing page
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --accent: #E51D88;
  --accent-d: #c91877;
  --accent-l: #f73a9d;
  --cream: #f4ead9;
  --pink-light: #e5d2d4;
  --pink-mid: #c296a3;
  --pink-deep: #5a1841;
  --plum: #2d0c22;
  --plum-d: #1a0714;
  --plum-dd: #0f0410;
  --white: #ffffff;
  --body: rgba(255, 255, 255, 0.85);
  --muted: rgba(255, 255, 255, 0.6);
  --faint: rgba(255, 255, 255, 0.4);
  --line: rgba(255, 255, 255, 0.12);
  --line-accent: rgba(229, 29, 136, 0.4);
  --glow: rgba(229, 29, 136, 0.28);
  --gold: #c9a66b;
  --gold-f: rgba(201, 166, 107, 0.5);

  /* Status */
  --grn: #4ade80;
  --grn-f: rgba(74, 222, 128, 0.1);
  --red: #f87171;
  --red-f: rgba(248, 113, 113, 0.1);

  /* Type scale */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--body);
  min-height: 100vh;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(180deg,
    #e5d2d4 0%,
    #d8bbc0 8%,
    #c296a3 20%,
    #9e5775 36%,
    #5a1841 58%,
    #2d0c22 82%,
    #0f0410 100%
  );
  background-attachment: fixed;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ═══ A11y & utilities ═══ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ═══ INVÉ bar ═══ */
.inve-bar {
  background: var(--plum-d);
  padding: 0.55rem 1.5rem;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.inve-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.inve-bar a:hover { color: var(--accent-l); }

/* ═══ Nav ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 7, 20, 0.7);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
}
.nav-brand em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}
.nav-a {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-a:hover { color: var(--accent-l); }
.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-left: 0.6rem;
}
.nav-cta:hover {
  background: var(--accent-l);
  box-shadow: 0 6px 20px var(--glow);
}
.bell-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.75);
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  margin-left: 0.4rem;
}
.bell-btn:hover {
  border-color: var(--line-accent);
  color: var(--white);
}
.bell-btn.on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(229, 29, 136, 0.45);
}
.bell-btn.on:hover {
  background: var(--accent-l);
  border-color: var(--accent-l);
  box-shadow: 0 6px 18px rgba(229, 29, 136, 0.55);
}
.bell-btn .icon-off { display: block; }
.bell-btn .icon-on { display: none; }
.bell-btn.on .icon-off { display: none; }
.bell-btn.on .icon-on { display: block; }
.bell-dot {
  display: none;
  position: absolute;
  top: 4px; right: 4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  border: 1.5px solid var(--plum-d);
  box-shadow: 0 0 0 2px rgba(201, 166, 107, 0.35);
}
.bell-btn.has-new .bell-dot { display: block; animation: pulse 1.8s ease-in-out infinite; }

/* Toast shown briefly when bell is toggled */
.bell-toast {
  position: fixed;
  top: 5.2rem;
  right: 1.2rem;
  z-index: 200;
  background: var(--plum-d);
  border: 1px solid var(--line-accent);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.1rem;
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 0.04em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(10, 3, 14, 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.bell-toast.show { opacity: 1; transform: translateY(0); }
.bell-toast-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.bell-toast.on .bell-toast-icon { background: var(--accent); }
.bell-toast.off .bell-toast-icon { background: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.7); }

@media (max-width: 420px) {
  .bell-toast { top: 4.2rem; right: 0.6rem; font-size: 0.72rem; padding: 0.6rem 0.9rem; }
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1.4rem;
}

/* ═══ Push banner ═══ */
.push-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  max-width: 420px;
  background: var(--plum-d);
  border: 1px solid var(--line-accent);
  border-left: 3px solid var(--accent);
  padding: 1.1rem 1.2rem;
  z-index: 90;
  display: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.push-banner.show { display: block; animation: slideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.push-banner-title {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.push-banner-body {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.push-banner-actions {
  display: flex;
  gap: 0.6rem;
}
.push-banner-actions button {
  flex: 1;
  padding: 0.55rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--f-sans);
  border: none;
  transition: all 0.3s;
}
.push-banner-actions .yes { background: var(--accent); color: var(--white); }
.push-banner-actions .yes:hover { background: var(--accent-l); }
.push-banner-actions .no {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}
.push-banner-actions .no:hover { color: var(--white); border-color: var(--line-accent); }

/* ═══ Hero ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  animation: portraitSlide 2.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s both;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: saturate(1.06) contrast(1.03);
  animation: imgZoom 12s ease-out 0.15s both;
}
.hero-content { position: relative; padding: 1rem 0; }
.hero-presents {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1.8rem;
  opacity: 0.9;
}
.hero-h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.hero-h1 .in {
  display: inline-block;
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 0.48em;
  color: var(--accent);
  vertical-align: 0.9em;
  margin: 0 0.12em;
  letter-spacing: 0.04em;
}
.hero-h1 .heels {
  color: var(--accent);
  font-weight: 400;
  font-style: italic;
}
.hero-tagline {
  font-size: 0.74rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2.2rem;
  opacity: 0.85;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--body);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.8rem;
}

/* Hero facts */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.fact { padding: 1rem 1.5rem 1rem 0; border-right: 1px solid var(--line); }
.fact:nth-child(2) { padding-left: 1.5rem; border-right: none; }
.fact:nth-child(3) {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  border-right: none;
  padding-right: 0;
}
.fact-lbl {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.fact-val {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1;
}
.fact-val b { color: var(--accent); font-weight: 700; }

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.15rem 2.4rem;
  font-family: var(--f-sans);
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--white);
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--plum-d);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px var(--glow); }
.btn:hover::before { transform: translateX(0); }
.btn .arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.4s;
}
.btn:hover .arrow { transform: translateX(6px); }

.btn-o {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-accent);
}
.btn-o::before { background: var(--accent); }
.btn-o:hover { color: var(--white); box-shadow: 0 8px 24px var(--glow); }

.hero-slots {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ═══ Section base ═══ */
section { padding: 6rem 2rem; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }

.slabel {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.slabel::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: 0.8;
}

.stitle {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.stitle em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.sub {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 620px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.sec-dark {
  background: rgba(45, 12, 34, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.sec-darker {
  background: rgba(26, 7, 20, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ═══ Countdown (minimal) ═══ */
.countdown {
  padding: 3rem 2rem;
  background: transparent;
}
.countdown-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.countdown-lbl {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.countdown-strip {
  display: inline-flex;
  align-items: baseline;
  gap: 1.3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cd-pair {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}
.cd-num {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.cd-sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  align-self: center;
}

/* ═══ Coordinator ═══ */
.coord-card {
  max-width: 580px;
  margin: 0 auto;
  background: rgba(26, 7, 20, 0.7);
  border: 1px solid var(--line);
  padding: 2.5rem 2.2rem;
  text-align: center;
}
.coord-role {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.coord-name {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.coord-phone {
  font-size: 1rem;
  color: var(--body);
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
  font-variant-numeric: tabular-nums;
}
.coord-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.coord-actions .btn { padding: 0.95rem 1.8rem; }

/* ═══ Wishes ═══ */
.wishes-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.wishes-head-text { max-width: 560px; }
.wishes-head-text .sub { margin-bottom: 0; }

.wishes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.wish-card {
  background: rgba(26, 7, 20, 0.6);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem;
  position: relative;
}
.wish-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.wish-name {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.wish-msg {
  font-size: 0.98rem;
  color: var(--body);
  line-height: 1.8;
  font-style: italic;
}
.wish-msg::before {
  content: '“';
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: var(--accent);
  vertical-align: -0.4em;
  margin-right: 0.1rem;
  line-height: 0;
}
.wish-msg::after {
  content: '”';
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: var(--accent);
  vertical-align: -0.4em;
  margin-left: 0.1rem;
  line-height: 0;
}
.wish-date {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.9rem;
  font-weight: 600;
}
.wishes-empty {
  padding: 2.5rem;
  border: 1px dashed var(--line);
  text-align: center;
  color: var(--muted);
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-style: italic;
  grid-column: 1 / -1;
}

.wish-form {
  background: rgba(26, 7, 20, 0.6);
  border: 1px solid var(--line);
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}
.wish-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fld { display: flex; flex-direction: column; gap: 0.5rem; }
.fld label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.fld input, .fld select, .fld textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--f-sans);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border 0.25s, background 0.25s;
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.fld input::placeholder, .fld textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-msg {
  display: none;
  padding: 0.8rem 1.1rem;
  font-size: 0.88rem;
  border-left: 3px solid var(--accent);
  background: rgba(229, 29, 136, 0.1);
  color: var(--white);
  line-height: 1.6;
}
.form-msg.show { display: block; }
.form-msg.error {
  border-left-color: var(--red);
  background: var(--red-f);
  color: var(--red);
}
.form-msg.success {
  border-left-color: var(--grn);
  background: var(--grn-f);
  color: var(--grn);
}

.wishes-foot { text-align: center; margin-top: 1.5rem; }

/* ═══ Updates ═══ */
.updates-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.updates-pulse {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line-accent);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-l);
  font-weight: 700;
  background: rgba(229, 29, 136, 0.08);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(229, 29, 136, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}
.update-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.update-card {
  background: rgba(45, 12, 34, 0.7);
  padding: 1.8rem 2rem;
  position: relative;
  transition: background 0.4s;
}
.update-card:hover { background: rgba(71, 20, 51, 0.75); }
.update-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.update-card-title {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.update-card-body {
  font-size: 0.98rem;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.update-card-time {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.updates-empty {
  padding: 3rem 2rem;
  background: rgba(45, 12, 34, 0.5);
  border: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-style: italic;
}
.updates-foot { text-align: center; margin-top: 1.5rem; }

.new-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  margin-left: 0.55rem;
  font-weight: 700;
  animation: pulse 1.5s ease infinite;
}

/* ═══ Memory book teaser ═══ */
.memory-teaser {
  background: rgba(26, 7, 20, 0.7);
  border: 1px solid var(--line);
  padding: 3.5rem 2.5rem;
  text-align: center;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}
.memory-teaser-icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--f-serif);
  font-size: 1.8rem;
}
.memory-teaser-title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.15;
}
.memory-teaser-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.memory-teaser-body {
  font-size: 1rem;
  color: var(--body);
  max-width: 520px;
  line-height: 1.8;
}

/* ═══ RSVP embedded ═══ */
.rsvp-sec {
  background: rgba(15, 4, 16, 0.8);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rsvp-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(26, 7, 20, 0.6);
  border: 1px solid var(--line-accent);
  padding: 3rem 2.5rem;
}
.rsvp-wrap .slabel { justify-content: center; }
.rsvp-wrap .stitle { text-align: center; }
.rsvp-wrap .sub { text-align: center; margin: 0 auto 2.5rem; }
.rsvp-form {
  display: grid;
  gap: 1.2rem;
}
.rsvp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.diet-toggle {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.diet-toggle button {
  padding: 0.8rem 1.4rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.diet-toggle button.on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.diet-toggle button:hover { border-color: var(--accent); }
.diet-text { display: none; }
.diet-text.show { display: flex; }

.attending-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.attending-row button {
  padding: 1rem 1rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--body);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.attending-row button:hover { border-color: var(--accent); color: var(--accent-l); }
.attending-row button.on { background: var(--accent); border-color: var(--accent); color: var(--white); }

.rsvp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.rsvp-note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.2rem;
  line-height: 1.7;
}
.rsvp-note b { color: var(--accent); font-weight: 600; }

/* ═══ Reveal ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══ Footer ═══ */
footer {
  background: rgba(15, 4, 16, 0.92);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-brand {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.8rem;
}
.footer-brand em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85em;
}
.footer-div {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2rem;
  opacity: 0.6;
}
.footer-meta {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.footer-inve {
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.footer-inve a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* ═══ What Awaits ═══ */
.awaits {
  padding: 5rem 2rem;
}
.awaits .container { max-width: 1000px; }
.awaits-panel {
  background: rgba(26, 7, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 2.8rem 2.8rem 2.5rem;
  margin-bottom: 3rem;
}
.awaits-lede {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}
.awaits-intro {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.awaits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.awaits-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.6;
}
.awaits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.awaits-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

@media (max-width: 768px) {
  .awaits { padding: 3rem 1.3rem; }
  .awaits-panel { padding: 1.8rem 1.5rem; margin-bottom: 2rem; }
  .awaits-lede { font-size: 0.95rem; }
  .awaits-list li { font-size: 0.98rem; padding-left: 1.5rem; }
  .awaits-tag { font-size: 0.78rem; letter-spacing: 0.16em; }
}

/* ═══ Animations ═══ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes highlight {
  0% { background: rgba(229, 29, 136, 0.2); }
  100% { background: rgba(45, 12, 34, 0.7); }
}
@keyframes portraitSlide {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes imgZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-portrait {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 4 / 5;
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.7rem 0.9rem;
    gap: 0.4rem;
    flex-wrap: nowrap;
  }
  .nav-brand { font-size: 1.1rem; }
  .nav-links {
    display: flex;
    position: static;
    background: transparent;
    flex-direction: row;
    gap: 0;
    padding: 0;
    border-bottom: none;
    align-items: center;
  }
  .nav-a {
    padding: 0.55rem 0.55rem;
    border-bottom: none;
    width: auto;
    font-size: 0.56rem;
    letter-spacing: 0.2em;
  }
  .nav-cta {
    margin-left: 0.2rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }
  .bell-btn {
    margin-left: 0.3rem;
    width: 32px;
    height: 32px;
  }
  .bell-btn svg { width: 15px; height: 15px; }
  .nav-toggle { display: none; }
  body { background-attachment: scroll; }
  .hero { padding: 7rem 1.3rem 4rem; min-height: auto; }
  .facts { grid-template-columns: 1fr; max-width: 100%; }
  .fact {
    border-right: none;
    border-top: 1px solid var(--line);
    padding: 1rem 0 !important;
  }
  .fact:first-child { border-top: none; }
  .countdown { padding: 2.5rem 1.3rem; }
  .countdown-strip { gap: 0.9rem; }
  .cd-pair { gap: 0.3rem; }
  section { padding: 4rem 1.3rem; }
  .wishes-grid { grid-template-columns: 1fr; }
  .wish-form-row, .rsvp-row { grid-template-columns: 1fr; }
  .rsvp-wrap { padding: 2rem 1.4rem; }
  .coord-card { padding: 2rem 1.5rem; }
  .memory-teaser { padding: 2.5rem 1.5rem; }
}

@media (max-width: 420px) {
  .nav { padding: 0.6rem 0.6rem; }
  .nav-brand { font-size: 0.95rem; }
  .nav-a { padding: 0.45rem 0.35rem; font-size: 0.5rem; letter-spacing: 0.14em; }
  .nav-cta { padding: 0.5rem 0.6rem; font-size: 0.5rem; letter-spacing: 0.14em; }
  .bell-btn { width: 28px; height: 28px; margin-left: 0.2rem; }
  .bell-btn svg { width: 13px; height: 13px; }
  .hero-h1 { font-size: 3.6rem; }
  .hero-cta-wrap { flex-direction: column; align-items: stretch; gap: 1rem; }
  .hero-cta-wrap .btn { width: 100%; }
  .coord-actions { flex-direction: column; }
  .coord-actions .btn { width: 100%; }
  .attending-row { grid-template-columns: 1fr; }
  .rsvp-submit { flex-direction: column; align-items: stretch; }
  .rsvp-submit .btn { width: 100%; }
}
