/* ─── Custom Properties ─────────────────────────────────────────── */
:root {
  --cream:     #f5f2ee;
  --ink:       #1a1a1a;
  --accent:    #c0392b;
  --white:     #ffffff;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --script:    'Dancing Script', cursive;
  --sans:      'Inter', system-ui, sans-serif;
  --header-h:  80px;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; color-scheme: dark; }
body  { font-family: var(--sans); color: var(--ink); background: var(--ink); }
img   { display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; }

/* ─── Dark scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 8px; height: 8px; }
::-webkit-scrollbar-track        { background: #0a0a0a; }
::-webkit-scrollbar-thumb        { background: #2a2a2a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover  { background: #3a3a3a; }

/* ─── Header ────────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--serif);
  font-size: 1.92rem;
  letter-spacing: 0.22em;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--white);
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  opacity: 0.9;
}

.site-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.975rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.site-nav a:hover { opacity: 1; }

.btn-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.975rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}
.btn-follow:hover { opacity: 1; }

.btn-support {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--white);
  padding: 0;
  opacity: 0.65;
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
  cursor: pointer;
}
.btn-support:hover { opacity: 1; transform: scale(1.08); }

.support-icon {
  display: block;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.btn-support__label { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
  width: 28px;
  height: 28px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero — full-width dark image, content overlaid ────────────── */
#hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - var(--header-h));
}

/* Left: content floats over the dark image */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 52%;
  min-width: 380px;
  padding: 4rem 5rem 3.5rem;
  color: var(--white);
}

/* Right area: image fills the entire hero as background */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Dark gradient: deep on the left (behind text), fades to transparent on the right */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.72) 38%,
      rgba(8, 8, 8, 0.25) 62%,
      rgba(8, 8, 8, 0.0)  82%
    );
  z-index: 2;
  pointer-events: none;
}

/* ─── Hero Image layers ──────────────────────────────────────────── */

/* Make <picture> fill the absolute-positioned image-wrap */
#hero picture {
  position: absolute;
  inset: 0;
  display: block;
}

/* LQIP blur layer */
.hero-lqip {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50% center;
  filter: blur(14px);
  transform: scale(1.06);
  transition: opacity 0.5s ease;
  z-index: 0;
}
.hero-lqip.lqip-out { opacity: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  position: relative;
  z-index: 1;
}

/* Desktop-only background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* ─── Hero graphic overlay — add .hero-overlay img rule here when asset is ready ── */

/* ─── Hero Content elements ──────────────────────────────────────── */
.eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.ornament { color: var(--accent); }

.hero-display {
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 10rem);
  font-weight: 300;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.display-line { display: block; }

.heart-sep {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.6rem;
}

.hero-body {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.25rem;
}

/* ─── CTA Buttons ────────────────────────────────────────────────── */
.hero-ctas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.btn-primary,
.btn-outline,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.8rem 1.4rem;
  border-radius: 2px;
  border: 1.5px solid var(--white);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-icon { width: 13px; height: 13px; flex-shrink: 0; }

.btn-primary {
  background: var(--white);
  color: var(--ink);
}
.btn-primary:hover { background: rgba(255,255,255,0.88); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-dark {
  background: rgba(0,0,0,0.75);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-dark:hover { background: rgba(0,0,0,0.9); border-color: var(--white); }

/* ─── Pillar Icons ───────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pillar-icon {
  font-size: 1rem;
  color: var(--accent);
  line-height: 1;
}

.pillar-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1400px) {
  .hero-content { padding: 3.5rem 3.5rem 3rem; width: 58%; }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-content { width: 72%; padding: 3rem 2.5rem; }
  .hero-ctas { gap: 0.55rem; }
  .pillars  { gap: 0.55rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  /* Full-height hero, content at bottom */
  #hero {
    min-height: calc(100svh - var(--header-h));
    align-items: flex-end;
  }

  .hero-content {
    width: 100%;
    min-width: unset;
    padding: 4.5rem 1.5rem 3rem;
    /* Subtle dark vignette from bottom so text is always readable */
  }

  /* Mobile gradient: dark from bottom up */
  .hero-image-wrap::before {
    background:
      linear-gradient(
        to top,
        rgba(8, 8, 8, 0.96) 0%,
        rgba(8, 8, 8, 0.75) 35%,
        rgba(8, 8, 8, 0.2)  65%,
        rgba(8, 8, 8, 0.0)  100%
      );
  }

  .hero-img { object-position: 60% 20%; }
  .hero-video { display: none; }

  .hero-display { font-size: clamp(3.2rem, 13vw, 5.5rem); margin-bottom: 0.9rem; }
  .hero-body { margin-bottom: 1.75rem; }

  .hero-quote { display: none; }

  .hero-ctas { grid-template-columns: 1fr; }

  .pillars { gap: 0.4rem; }
  .pillar  { align-items: flex-start; overflow: hidden; }
  .pillar-label { font-size: 0.5rem; letter-spacing: 0.05em; white-space: nowrap; }

  /* Mobile nav */
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 0;
  }
  .site-nav.nav-open { display: flex; }
  .site-nav a {
    padding: 0.9rem 2rem;
    font-size: 0.7rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    opacity: 0.8;
  }
  .site-nav .btn-follow {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.9rem 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    opacity: 1;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: none;
    color: var(--accent);
    cursor: pointer;
  }
  .site-nav .btn-support {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    text-align: left;
    padding: 0.9rem 2rem;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: transparent;
    box-shadow: none;
    color: var(--white);
    cursor: pointer;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    font-family: var(--sans);
    text-transform: uppercase;
    opacity: 0.8;
  }
  .site-nav .btn-support { justify-content: flex-start; }
  .site-nav .btn-support .support-icon { width: 13px; height: 13px; }
  .site-nav .btn-support:hover { opacity: 1; transform: none; }
  .site-nav .btn-support .btn-support__label { display: inline; }

  .nav-toggle { display: flex; }
  .header-inner { position: relative; padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 2rem 1.25rem 2.5rem; }
  .logo-icon { width: 30px; height: 30px; }
  .logo span  { font-size: 1.44rem; }
}

/* ─── Follow Modal ───────────────────────────────────────────────── */
#follow-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#follow-modal[hidden] { display: none; }

.follow-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.follow-modal__box {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2.25rem 2rem 2rem;
  width: 100%;
  max-width: 360px;
  z-index: 1;
}

.follow-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0.2rem 0.4rem;
}
.follow-modal__close:hover { color: var(--white); }

.follow-modal__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.follow-modal__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.follow-modal__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.follow-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.follow-option:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
.follow-option--tiktok:hover { border-color: rgba(255, 255, 255, 0.25); }
.follow-option--youtube:hover { border-color: rgba(192, 57, 43, 0.5); }

.follow-option__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.follow-option__icon svg { width: 18px; height: 18px; }
.follow-option--youtube .follow-option__icon { background: rgba(192, 57, 43, 0.12); }
.follow-option--youtube .follow-option__icon svg { color: var(--accent); }

.follow-option__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.follow-option__text strong {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.follow-option__text span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.follow-option__arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s, transform 0.2s;
}
.follow-option:hover .follow-option__arrow {
  color: rgba(255, 255, 255, 0.6);
  transform: translate(2px, -2px);
}

/* ─── Support Modal ──────────────────────────────────────────────── */
#support-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#support-modal[hidden] { display: none; }

.support-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.support-modal__box {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2.25rem 2rem 2rem;
  width: 100%;
  max-width: 360px;
  z-index: 1;
}

.support-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0.2rem 0.4rem;
}
.support-modal__close:hover { color: var(--white); }

.support-modal__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8956a;
  margin-bottom: 0.4rem;
}

.support-modal__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.support-modal__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-modal__empty {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 1rem 0;
}

.support-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.support-option:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
.support-option--kofi:hover   { border-color: rgba(200, 149, 106, 0.4); }
.support-option--paypal:hover { border-color: rgba(0, 156, 222, 0.35); }

.support-option__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-option__icon svg { width: 18px; height: 18px; }
.support-option--kofi   .support-option__icon { background: rgba(200, 149, 106, 0.12); color: #c8956a; }
.support-option--paypal .support-option__icon { background: rgba(0, 156, 222, 0.1);    color: #29abe0; }

.support-option__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.support-option__text strong {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.support-option__text span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.support-option__arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s, transform 0.2s;
}
.support-option:hover .support-option__arrow {
  color: rgba(255, 255, 255, 0.6);
  transform: translate(2px, -2px);
}

/* ─── Birthday Prompt ────────────────────────────────────────────── */
#bday-prompt {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2.5rem));
  z-index: 200;
  width: calc(100% - 3rem);
  max-width: 440px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s;
  opacity: 0;
  pointer-events: none;
}
#bday-prompt[hidden] { display: none; }
#bday-prompt.bday-prompt--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.bday-prompt__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(14, 14, 14, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
.bday-prompt__close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.3rem;
  transition: color 0.15s;
}
.bday-prompt__close:hover { color: rgba(255, 255, 255, 0.7); }
.bday-prompt__icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.bday-prompt__text {
  flex: 1;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}
.bday-prompt__cta {
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  background: #c0392b;
  border: none;
  color: #fff;
  font-size: 0.7rem;
  font-family: inherit;
  letter-spacing: 0.04em;
  padding: 0.38rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.bday-prompt__cta:hover { background: #a93226; }
