/* Homingpost — Established 1847.
   "Send your hopes. Let the rest go." */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0a1b35;
  --navy-2: #142b4d;
  --parchment: #f4ebd0;
  --parchment-2: #fcf7e8;
  --oxblood: #7b1e1e;
  --gold: #c9a456;
  --gold-2: #e6c87a;
  --ink: #1a1410;
  --smoke: #6b6258;
  --line: rgba(201, 164, 86, 0.32);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--parchment-2);
  background-image:
    radial-gradient(at 0% 0%, rgba(201, 164, 86, 0.10) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(123, 30, 30, 0.05) 0px, transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle parchment grain for the whole body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.7  0 0 0 0 0.6  0 0 0 0 0.4  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

a { color: var(--oxblood); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; max-width: 65ch; }

.mono { font-family: 'IBM Plex Mono', ui-monospace, monospace; }
.serif { font-family: 'Playfair Display', Georgia, serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

/* ------- NAV ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 27, 53, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 164, 86, 0.18);
  color: var(--parchment);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--parchment);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--gold-2); }
.brand-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 86, 0.08);
}
.brand-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--parchment);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.18s;
  box-shadow: 0 2px 0 var(--oxblood);
}
.nav-cta:hover {
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--oxblood);
}
.nav-toggle { display: none; background: none; border: 0; color: var(--parchment); cursor: pointer; padding: 8px; }

@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--navy); padding: 8px 0; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; border-top: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle { display: block; }
}

/* ------- HERO ------- */
.hero {
  position: relative;
  padding: 120px 0 140px;
  background: var(--navy);
  color: var(--parchment);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(201, 164, 86, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(123, 30, 30, 0.20) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(201, 164, 86, 0.018) 28px, rgba(201, 164, 86, 0.018) 56px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  color: var(--parchment);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  color: var(--gold-2);
  font-style: italic;
  font-weight: 400;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(244, 235, 208, 0.78);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

/* Animated flock — SVG overlay */
.flock {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}
.flock-bird {
  position: absolute;
  width: 36px;
  height: 22px;
  color: var(--gold);
  animation: drift 24s linear infinite;
}
@keyframes drift {
  0%   { transform: translate(-10vw, 0) rotate(2deg); opacity: 0; }
  10%  { opacity: 0.6; }
  50%  { transform: translate(50vw, -40px) rotate(-3deg); opacity: 0.8; }
  90%  { opacity: 0.5; }
  100% { transform: translate(110vw, 30px) rotate(5deg); opacity: 0; }
}

/* ------- BUTTONS ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  border: 0;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 3px 0 var(--oxblood);
  position: relative;
}
.btn:hover {
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--oxblood);
}
.btn:active { transform: translateY(0); box-shadow: 0 1px 0 var(--oxblood); }
.btn-ghost {
  background: transparent;
  color: var(--parchment);
  border: 1px solid var(--gold);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(201, 164, 86, 0.12);
  color: var(--gold-2);
  box-shadow: none;
  transform: none;
}
.btn-large { padding: 18px 36px; font-size: 1.08rem; }

/* ------- TICKER ------- */
.ticker {
  background: var(--oxblood);
  color: var(--parchment);
  padding: 10px 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(201, 164, 86, 0.3);
  border-bottom: 1px solid rgba(201, 164, 86, 0.3);
}
.ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: tick 50s linear infinite;
}
.ticker-track span { padding: 0 28px; opacity: 0.85; }
.ticker-track .dot { color: var(--gold-2); padding: 0 6px; }
@keyframes tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ------- SECTIONS ------- */
section { padding: 100px 0; position: relative; }
section.dark {
  background: var(--navy);
  color: var(--parchment);
}
section.dark h1, section.dark h2, section.dark h3 { color: var(--parchment); }
section.parchment { background: var(--parchment); }

.section-header { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 18px;
}
section.dark .section-label { color: var(--gold-2); }
.section-header h2 { margin-bottom: 16px; }
.section-header .lede { color: var(--smoke); font-size: 1.08rem; max-width: 560px; margin: 0 auto; }
section.dark .section-header .lede { color: rgba(244, 235, 208, 0.7); }

/* Decorative divider */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 24px 0;
}
.flourish::before, .flourish::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--line);
}
.flourish span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ------- CARDS ------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--parchment-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 27, 53, 0.12);
}
.card-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 10px;
}

/* ------- STAT BIG ------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
@media (max-width: 820px) {
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--oxblood);
  line-height: 1;
  display: block;
}
section.dark .stat-num { color: var(--gold-2); }
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 10px;
}
section.dark .stat-label { color: rgba(244, 235, 208, 0.6); }

/* ------- PRICING ------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--parchment-2);
}
@media (max-width: 1000px) { .pricing { grid-template-columns: 1fr; } }

.tier {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier:last-child { border-right: 0; }
@media (max-width: 1000px) {
  .tier { border-right: 0; border-bottom: 1px solid var(--line); }
  .tier:last-child { border-bottom: 0; }
}
.tier-featured {
  background: var(--navy);
  color: var(--parchment);
  position: relative;
}
.tier-featured h3, .tier-featured .tier-price { color: var(--parchment); }
.tier-featured .tier-price em { color: var(--gold-2); }
.tier-featured .tier-features li::before { color: var(--gold); }
.tier-featured ::selection { background: var(--gold-2); color: var(--navy); }
.tier-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--oxblood);
  color: var(--parchment);
  padding: 4px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
}
.tier h3 { font-size: 1.6rem; margin-bottom: 6px; }
.tier-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 24px;
}
.tier-featured .tier-sub { color: rgba(244,235,208,0.6); }
.tier-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.tier-price em {
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  color: var(--smoke);
  margin-left: 4px;
}
.tier-blurb {
  color: var(--smoke);
  font-size: 0.92rem;
  margin-bottom: 24px;
  min-height: 56px;
}
.tier-featured .tier-blurb { color: rgba(244,235,208,0.7); }
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 0.92rem;
  flex: 1;
}
.tier-features li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.tier-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
}
.tier-featured .tier-features li { border-bottom: 1px dashed rgba(255,255,255,0.08); }
.tier-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: var(--oxblood);
  color: var(--parchment);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.18s;
}
.tier-cta:hover { opacity: 0.92; color: var(--parchment); }
.tier-featured .tier-cta {
  background: var(--gold);
  color: var(--navy);
}

/* ------- TESTIMONIALS ------- */
.testimonial {
  background: var(--parchment-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--smoke); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.2em; }

/* ------- PIGEON CARDS ------- */
.pigeon-card {
  background: var(--parchment-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pigeon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 27, 53, 0.12);
}
.pigeon-portrait {
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(201, 164, 86, 0.25), transparent 55%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.pigeon-portrait::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 164, 86, 0.25);
  border-radius: 50%;
  pointer-events: none;
}
.pigeon-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 22px, rgba(201, 164, 86, 0.03) 22px, rgba(201, 164, 86, 0.03) 23px),
    radial-gradient(circle at center, transparent 30%, rgba(10,27,53,0.55) 100%);
  pointer-events: none;
}
.pigeon-portrait svg {
  width: 78%;
  height: 78%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
.pigeon-meta { padding: 22px 24px 24px; }
.pigeon-meta h3 { margin-bottom: 4px; }
.pigeon-meta .role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 12px;
}
.pigeon-bio { font-size: 0.92rem; color: var(--smoke); margin-bottom: 18px; }
.pigeon-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.pigeon-stat { font-size: 0.78rem; }
.pigeon-stat strong { display: block; color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.pigeon-stat span { color: var(--smoke); font-family: 'IBM Plex Mono', monospace; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ------- FOOTER ------- */
footer {
  background: var(--navy);
  color: var(--parchment);
  padding: 80px 0 32px;
  position: relative;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.footer-grid h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.92rem; }
.footer-grid a { color: rgba(244, 235, 208, 0.75); }
.footer-grid a:hover { color: var(--gold-2); }
.footer-credo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(244, 235, 208, 0.78);
  margin-top: 18px;
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(244, 235, 208, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(244, 235, 208, 0.55);
}
.footer-disclaimer {
  margin-top: 32px;
  padding: 18px 22px;
  border: 1px dashed rgba(244, 235, 208, 0.2);
  border-radius: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(244, 235, 208, 0.55);
  text-align: center;
}

/* ------- UTILS ------- */
.center { text-align: center; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mb-8 { margin-bottom: 64px; }
.spacer { height: 80px; }

.live-counter {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-2);
  padding: 4px 14px;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--gold);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ------- STORY ------- */
.story {
  max-width: 720px;
  margin: 0 auto;
}
.story-chapter {
  margin-bottom: 60px;
  position: relative;
  padding-left: 60px;
}
@media (max-width: 700px) { .story-chapter { padding-left: 0; } }
.chapter-num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
@media (max-width: 700px) {
  .chapter-num { position: static; display: block; margin-bottom: 8px; font-size: 2rem; }
}
.story-chapter h3 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.story-chapter p {
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 14px;
}
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 24px;
  margin: 28px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
}

/* ------- FORM ------- */
.form-wrap {
  background: var(--parchment-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 44px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) { .form-wrap { padding: 28px 22px; } }
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 86, 0.18);
}
.field textarea { min-height: 140px; resize: vertical; font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field-hint { font-size: 0.78rem; color: var(--smoke); margin-top: 6px; }
.form-confirm {
  display: none;
  background: var(--navy);
  color: var(--parchment);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 36px;
  text-align: center;
}
.form-confirm.show { display: block; }
.form-confirm h3 { color: var(--parchment); margin-bottom: 12px; }
.form-confirm .order-id {
  display: inline-block;
  background: rgba(201, 164, 86, 0.1);
  border: 1px dashed var(--gold);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.92rem;
  color: var(--gold-2);
  margin: 14px 0;
}

/* ------- FAQ ------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item-content { padding-top: 14px; color: var(--smoke); line-height: 1.7; }
.faq-item-content p { margin-bottom: 12px; }

/* ------- LOVE LETTER BANNER ------- */
.romance-banner {
  background:
    linear-gradient(135deg, rgba(123, 30, 30, 0.04), rgba(201, 164, 86, 0.08)),
    var(--parchment);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.romance-banner::before,
.romance-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 164, 86, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.romance-banner::before { left: -80px; }
.romance-banner::after { right: -80px; }
.romance-eyebrow {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 28px;
  padding: 6px 18px;
  border: 1px solid var(--oxblood);
  border-radius: 999px;
}
.romance-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 0 auto 24px;
  max-width: 14ch;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.romance-tagline em {
  color: var(--oxblood);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.romance-tagline em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: var(--gold);
  opacity: 0.45;
  z-index: -1;
}
.romance-sub {
  font-size: 1.08rem;
  color: var(--smoke);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
.romance-pair {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.romance-pair svg { width: 92px; height: auto; color: var(--oxblood); opacity: 0.78; }
.romance-pair .heart {
  font-size: 2rem;
  color: var(--oxblood);
  animation: heartPulse 2s ease-in-out infinite;
}
@keyframes heartPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.18); opacity: 1; }
}
.romance-stat {
  display: inline-block;
  padding: 16px 28px;
  border: 1px dashed var(--oxblood);
  border-radius: 6px;
  background: rgba(244, 235, 208, 0.6);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.romance-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--oxblood);
  display: block;
  line-height: 1;
}
.romance-stat span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  display: block;
  margin-top: 8px;
}

/* ------- MAP ------- */
.map-section { background: var(--navy); }
.map-section .section-header { margin-bottom: 28px; }
.map-frame {
  background: linear-gradient(180deg, #112a4f 0%, #0a1b35 100%);
  border: 1px solid rgba(201, 164, 86, 0.3);
  border-radius: 8px;
  padding: 36px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(at 50% 0%, rgba(201, 164, 86, 0.08), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(201, 164, 86, 0.04) 39px, rgba(201, 164, 86, 0.04) 40px),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(201, 164, 86, 0.04) 39px, rgba(201, 164, 86, 0.04) 40px);
  pointer-events: none;
}
.map-frame svg { width: 100%; height: auto; display: block; position: relative; z-index: 2; }
.map-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
  z-index: 3;
}
.map-corner.tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.map-corner.tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.map-corner.bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.map-corner.br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.map-legend {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: rgba(244, 235, 208, 0.75);
}
.map-legend-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(201, 164, 86, 0.18);
}
.map-legend-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-2);
  flex-shrink: 0;
  transform: translateY(2px);
}
.map-legend-item .who { color: var(--gold-2); font-weight: 600; }
.map-legend-item .where { color: rgba(244, 235, 208, 0.85); }

/* ------- 404 ------- */
.lost {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 28px;
  background: var(--navy);
  color: var(--parchment);
}
.lost h1 { color: var(--parchment); font-size: clamp(3rem, 8vw, 6rem); }
.lost p { max-width: 540px; margin: 24px auto; color: rgba(244,235,208,0.7); }
