/* ============================================================
   NJ First Dates — homepage redesign ("modern romantic editorial")
   Scoped under .njfd-home so it never touches other pages.
   Fraunces (display) + Instrument Sans (body). 2026-07-28.
   ============================================================ */
.njfd-home {
    --ink: #150a10;          /* near-black, warm */
    --ink-2: #1f0f16;
    --rose: #e8356d;         /* vivid romantic pink */
    --rose-deep: #b0224f;
    --rose-soft: #ff86ab;
    --blush: #fbe6ee;
    --cream: #fdf5ef;        /* warm paper */
    --paper: #fffaf6;
    --gold: #c69b57;         /* champagne hairline */
    --muted: #7c6b72;
    --line: rgba(21,10,16,.12);
    --display: "Fraunces", Georgia, "Times New Roman", serif;
    --body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.njfd-home h1, .njfd-home h2, .njfd-home h3 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -.015em; }
.njfd-home p { margin: 0; }

/* section frame + editorial eyebrow */
.njfd-sec { padding: clamp(64px, 9vw, 132px) 24px; }
.njfd-wrap { max-width: 1180px; margin: 0 auto; }
.njfd-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--body);
    font-size: 12.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep); }
.njfd-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.njfd-sec--dark .njfd-eyebrow { color: var(--gold); }
.njfd-sec--dark .njfd-eyebrow::before { background: var(--gold); }

/* buttons */
.njfd-btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--body); font-weight: 600;
    font-size: 15.5px; letter-spacing: .01em; padding: 15px 30px; border-radius: 999px; cursor: pointer;
    text-decoration: none; border: 1.5px solid transparent; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s; }
.njfd-btn--primary { background: var(--rose); color: #fff; box-shadow: 0 12px 30px -10px rgba(232,53,109,.6); }
.njfd-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(232,53,109,.7); }
.njfd-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.njfd-btn--ghost:hover { border-color: #fff; transform: translateY(-3px); }
.njfd-btn--dark { background: var(--ink); color: #fff; }
.njfd-btn--dark:hover { background: var(--rose); transform: translateY(-3px); }

/* ---------- HERO ---------- */
.njfd-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden;
    padding: clamp(90px, 13vw, 168px) 24px clamp(80px, 11vw, 150px); }
.njfd-hero::before { /* warm rose + gold glow mesh */
    content: ""; position: absolute; inset: -30% -10% auto -10%; height: 130%;
    background:
      radial-gradient(60% 55% at 78% 18%, rgba(232,53,109,.42), transparent 60%),
      radial-gradient(45% 45% at 12% 8%, rgba(198,155,87,.22), transparent 60%),
      radial-gradient(70% 60% at 55% 115%, rgba(176,34,79,.5), transparent 60%);
    filter: saturate(1.05); pointer-events: none; }
.njfd-hero::after { /* fine grain */
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
.njfd-hero__inner { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; }
.njfd-hero__eyebrow { color: var(--gold); }
.njfd-hero h1 { font-size: clamp(2.8rem, 7.5vw, 6rem); font-weight: 600; margin: 26px 0 22px; max-width: 15ch; }
.njfd-hero h1 em { font-style: italic; color: var(--rose-soft); }
.njfd-hero__lead { font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: rgba(255,255,255,.78); max-width: 46ch; line-height: 1.55; }
.njfd-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.njfd-hero__meta { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 32px 44px; align-items: center;
    border-top: 1px solid rgba(255,255,255,.14); padding-top: 30px; }
.njfd-stat__n { font-family: var(--display); font-size: 2.1rem; line-height: 1; color: #fff; }
.njfd-stat__l { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; letter-spacing: .02em; }

/* staggered load reveal */
@keyframes njfdUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.njfd-hero__inner > * { opacity: 0; animation: njfdUp .9s cubic-bezier(.2,.8,.2,1) forwards; }
.njfd-hero__inner > *:nth-child(1) { animation-delay: .05s; }
.njfd-hero__inner > *:nth-child(2) { animation-delay: .16s; }
.njfd-hero__inner > *:nth-child(3) { animation-delay: .27s; }
.njfd-hero__inner > *:nth-child(4) { animation-delay: .38s; }
.njfd-hero__inner > *:nth-child(5) { animation-delay: .5s; }
@media (prefers-reduced-motion: reduce) { .njfd-hero__inner > * { animation: none; opacity: 1; } }

/* ---------- CITY MARQUEE (ties to the 553 location pages) ---------- */
.njfd-marquee { background: var(--ink-2); color: rgba(255,255,255,.55); border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08); overflow: hidden; padding: 16px 0; }
.njfd-marquee__track { display: inline-flex; gap: 40px; white-space: nowrap; animation: njfdMarq 42s linear infinite; }
.njfd-marquee span { font-family: var(--display); font-style: italic; font-size: 1.25rem; }
.njfd-marquee span::after { content: "•"; margin-left: 40px; color: var(--gold); font-style: normal; }
@keyframes njfdMarq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.njfd-home .njfd-marquee:hover .njfd-marquee__track { animation-play-state: paused; }

/* ---------- INTRO / SPLIT ---------- */
.njfd-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.njfd-split h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); margin: 20px 0 20px; }
.njfd-split p + p { margin-top: 16px; color: #4a3d43; }
.njfd-figure { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
    background: linear-gradient(150deg, var(--blush), #f7d7e3); box-shadow: 0 40px 80px -40px rgba(176,34,79,.5); }
.njfd-figure img { width: 100%; height: 100%; object-fit: cover; }
.njfd-figure__tag { position: absolute; left: 18px; bottom: 18px; background: rgba(21,10,16,.75); color: #fff;
    backdrop-filter: blur(6px); padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .04em; }

/* ---------- STEPS ---------- */
.njfd-sec--cream { background: var(--cream); }
.njfd-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 66px); }
.njfd-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-top: 16px; }
.njfd-head p { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }
.njfd-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.njfd-step { position: relative; padding: 34px 30px 32px; background: var(--paper); border: 1px solid var(--line);
    border-radius: 18px; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s; }
.njfd-step:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(176,34,79,.3); }
.njfd-step__n { font-family: var(--display); font-size: 3.4rem; line-height: 1; color: var(--rose);
    font-style: italic; opacity: .9; }
.njfd-step h3 { font-size: 1.4rem; margin: 14px 0 10px; }
.njfd-step p { color: #57484e; font-size: .98rem; }

/* ---------- FEATURES (dark editorial) ---------- */
.njfd-sec--dark { background: var(--ink); color: #fff; }
.njfd-sec--dark .njfd-head h2 { color: #fff; }
.njfd-sec--dark .njfd-head p { color: rgba(255,255,255,.6); }
.njfd-feat { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.1); border-radius: 20px; overflow: hidden; }
.njfd-fcard { background: var(--ink); padding: 40px 36px; transition: background .35s; }
.njfd-fcard:hover { background: var(--ink-2); }
.njfd-fcard__i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
    background: rgba(232,53,109,.16); color: var(--rose-soft); margin-bottom: 20px; }
.njfd-fcard__i svg { width: 22px; height: 22px; }
.njfd-fcard h3 { font-size: 1.5rem; margin-bottom: 10px; }
.njfd-fcard p { color: rgba(255,255,255,.66); font-size: 1rem; }

/* ---------- TESTIMONIALS ---------- */
.njfd-sec--blush { background: linear-gradient(180deg, var(--blush), var(--cream)); }
.njfd-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.njfd-quote { background: var(--paper); border-radius: 18px; padding: 34px 30px; border: 1px solid var(--line);
    position: relative; }
.njfd-quote::before { content: "\201C"; font-family: var(--display); font-size: 5rem; line-height: 1; color: var(--rose);
    opacity: .28; position: absolute; top: 6px; right: 22px; }
.njfd-quote p { font-size: 1.05rem; color: #3c3036; line-height: 1.55; }
.njfd-quote__by { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.njfd-quote__av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--gold));
    display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 600; }
.njfd-quote__by strong { display: block; font-size: .98rem; }
.njfd-quote__by span { font-size: .82rem; color: var(--muted); }

/* ---------- LOCATION CHIPS ---------- */
.njfd-locs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.njfd-chip { font-family: var(--body); font-size: 14.5px; font-weight: 500; padding: 11px 20px; border-radius: 999px;
    background: var(--paper); border: 1px solid var(--line); color: var(--ink); text-decoration: none;
    transition: all .25s cubic-bezier(.2,.8,.2,1); }
.njfd-chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.njfd-chip--all { background: var(--rose); color: #fff; border-color: var(--rose); }
.njfd-chip--all:hover { background: var(--rose-deep); border-color: var(--rose-deep); }

/* ---------- UPCOMING EVENTS ---------- */
.njfd-evs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.njfd-ev { display: block; border-radius: 18px; overflow: hidden; background: var(--paper); border: 1px solid var(--line);
    text-decoration: none; color: var(--ink); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s; }
.njfd-ev:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(176,34,79,.35); }
.njfd-ev__img { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.njfd-ev__badge { position: absolute; top: 12px; left: 12px; background: var(--rose); color: #fff; font-size: 11.5px;
    font-weight: 700; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px; text-transform: uppercase; }
.njfd-ev__b { padding: 18px 20px 22px; }
.njfd-ev__t { font-family: var(--display); font-size: 1.2rem; line-height: 1.2; }
.njfd-ev__m { color: var(--muted); font-size: .9rem; margin-top: 8px; }

/* ---------- FINAL CTA ---------- */
.njfd-cta { background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.njfd-cta::before { content: ""; position: absolute; inset: -40% -10% auto -10%; height: 160%;
    background: radial-gradient(50% 60% at 50% 0%, rgba(232,53,109,.4), transparent 62%); pointer-events: none; }
.njfd-cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.njfd-cta h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.njfd-cta h2 em { font-style: italic; color: var(--rose-soft); }
.njfd-cta p { color: rgba(255,255,255,.72); font-size: 1.1rem; margin: 18px 0 34px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .njfd-split { grid-template-columns: 1fr; }
    .njfd-figure { max-width: 460px; }
    .njfd-steps, .njfd-quotes, .njfd-evs { grid-template-columns: 1fr; }
    .njfd-feat { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .njfd-hero__meta { gap: 22px 30px; }
    .njfd-stat__n { font-size: 1.7rem; }
}
