/* Hero */
@font-face {
  font-family: 'Simple Monologue';
  src: url('assets/fonts/SimpleMonologue.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 56px 80px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

/* Floating RSVP CTA — top right */
.hero-rsvp-cta {
  position: absolute;
  top: 96px;
  right: 56px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--paper);
  font-family: var(--sans);
  cursor: pointer;
  box-shadow: 0 12px 28px -8px color-mix(in oklch, var(--accent) 50%, transparent);
  transition: all 0.25s;
}
.hero-rsvp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px color-mix(in oklch, var(--accent) 60%, transparent);
}
.cta-dot {
  width: 8px; height: 8px;
  background: var(--paper);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
.cta-label {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.cta-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.85;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 12px;
}
.cta-arrow { font-size: 14px; }

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31,30,26,0.1);
}
.meta-line { display: flex; align-items: center; gap: 12px; }
.meta-sep { color: var(--ink-mute); }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 25%, transparent);
}

.hero-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-weight: 300;
  margin: 24px 0 12px;
  position: relative;
  z-index: 2;
}
.name-1, .name-2 {
  font-family: var(--serif);
  font-style: italic;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.amp {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.5em;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  display: block;
  margin: 8px 0;
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.tagline-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0;
}

/* Couple photo */
.hero-photo {
  position: relative;
  margin: 32px auto 0;
  max-width: 720px;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.95) contrast(1.02);
}
.hero-photo figcaption {
  position: absolute;
  bottom: 18px; left: 22px;
  padding: 8px 14px;
  background: rgba(31,30,26,0.6);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(31,30,26,0.08);
}
.countdown { justify-self: start; }
.cd-row { display: flex; align-items: center; gap: 12px; }
.cd-num {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cd-sep {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink-mute);
  transform: translateY(-4px);
}
.scroll-cue {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  color: var(--ink);
  padding: 16px 24px;
}
.cue-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cue-arrow {
  font-size: 22px;
  animation: bob 2.4s ease-in-out infinite;
  color: var(--accent);
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.hero-rsvp-quick {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.quick-meta {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

/* Olive branch decorations along page sides */
.olive-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--accent);
  opacity: 0.18;
  width: 220px;
  height: auto;
}
.olive-deco svg, .olive-deco img { width: 100%; height: auto; display: block; }

/* Position presets */
.olive-1-pos { top: 200px; left: -60px; transform: rotate(-15deg); }
.olive-2-pos { top: 1200px; right: -80px; transform: rotate(165deg) scaleX(-1); width: 240px; }
.olive-3-pos { top: 2400px; left: -70px; transform: rotate(20deg); width: 200px; }
.olive-4-pos { top: 3600px; right: -60px; transform: rotate(-160deg); width: 230px; }
.olive-5-pos { top: 4800px; left: -50px; transform: rotate(-25deg) scaleX(-1); }
.olive-6-pos { top: 6000px; right: -70px; transform: rotate(170deg); width: 220px; }
