/* ============================================================
   Vanoxis — CINEMATIC BOLD
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;600;700;800&display=swap');

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

:root {
  --orange: #E86237;
  --dark: #0d0d0d;
  --white: #ffffff;
  --cream: #F5F0E8;
  --peach: #EDD5A3;
  --font-heading: 'Anton', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --frame: 10px;
}

html {
  scroll-behavior: smooth;
  background: var(--dark); /* fills area outside frame when toolbar hides */
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding-bottom: var(--frame);
}

/* Orange frame — fixed to viewport on all sides, never moves */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  border: var(--frame) solid var(--orange);
  pointer-events: none;
  z-index: 10000;
}

/* Scroll lock when mobile nav is open */
body.nav-open { overflow: hidden; }

/* BACK button — hidden on desktop */
.nav-back { display: none; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   NAV — smart scroll (hide on down, show on up, border fades in)
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0);
  transition: transform 0.35s ease, background 0.3s, border-color 0.4s;
  border-bottom: 2px solid transparent;
}

.site-header.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--orange);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

@media (min-width: 769px) {
  .site-header.header-hidden + .nav-right {
    transform: translateY(-100%);
  }
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 0.8; }

.nav-right {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  height: 88px; /* matches site-header: 18px + 52px logo + 18px */
  z-index: 1001;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.nav-right a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
.nav-right a:hover { color: var(--orange); opacity: 1; }
.nav-dot { color: var(--orange); font-size: 6px; opacity: 0.5; }

.nav-donate {
  background: var(--orange) !important;
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 8px 18px !important;
  transition: background 0.2s !important;
}
.nav-donate:hover { background: #d0532a !important; }

/* Hamburger (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.52);
}

/* Gradient at the top so logo + nav are always readable */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  width: 100%;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(64px, 11vw, 160px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.hero-sub.bold {
  font-weight: 800;
  font-size: clamp(19px, 2.2vw, 28px);
  color: var(--white);
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-orange {
  display: inline-block;
  padding: 20px 80px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-orange:hover { background: #d0532a; transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 20px 48px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(232,98,55,0.12); transform: translateY(-2px); }

.btn-white {
  display: inline-block;
  padding: 22px 80px;
  background: var(--white);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: rgba(255,255,255,0.88); transform: translateY(-2px); }

.btn-donate-big {
  display: inline-block;
  padding: 24px 80px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-donate-big:hover { background: #d0532a; transform: translateY(-3px); }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */

.section-divider {
  height: 6px;
  background: var(--orange);
  width: 100%;
}

/* ============================================================
   EVEREND SECTION (home)
   ============================================================ */

.everend-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--peach);
}

.everend-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px 64px 64px;
}

.everend-image-frame {
  border: 5px solid var(--orange);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  display: block;
  cursor: pointer;
}
.everend-image-frame img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.everend-image-frame:hover img { transform: scale(1.03); }

.everend-text {
  background: var(--peach);
  color: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 48px;
}
.everend-text .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.everend-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(60px, 8vw, 130px);
  letter-spacing: 0.03em;
  line-height: 0.9;
  margin-bottom: 28px;
  color: var(--dark);
}
.everend-text p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(0,0,0,0.6);
  margin-bottom: 44px;
  max-width: 380px;
}

.arrow-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: gap 0.2s;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 4px;
  width: fit-content;
}
.arrow-link::after { content: '→'; }
.arrow-link:hover { gap: 22px; }

/* ============================================================
   DONATE STRIP (home)
   ============================================================ */

.donate-strip {
  background: var(--dark);
  border-top: 6px solid var(--orange);
  padding: 100px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.donate-strip h3 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
}

.donate-strip .donate-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.75;
}

.donate-reasons {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.donate-reason {
  text-align: center;
  max-width: 200px;
}
.donate-reason-icon { font-size: 28px; margin-bottom: 10px; }
.donate-reason p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ============================================================
   COMING SOON STRIP (home)
   ============================================================ */

/* ============================================================
   HOME — Combined Coming Soon + Subscribe section
   ============================================================ */

.home-combined-section {
  background: var(--peach);
  border-top: 6px solid var(--orange);
  padding: 80px;
}

.home-combined-header {
  text-align: center;
  margin-bottom: 56px;
}

.home-combined-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
}

.home-combined-header p {
  font-size: 16px;
  color: rgba(0,0,0,0.52);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.home-combined-body {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.home-coming-soon-items {
  flex: 1.2;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coming-soon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 2px solid rgba(0,0,0,0.13);
  background: rgba(0,0,0,0.03);
}
.coming-soon-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.coming-soon-item span { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); }
.coming-soon-item .status { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; color: rgba(0,0,0,0.4); text-transform: uppercase; }

.home-subscribe-panel {
  flex: 1;
  min-width: 240px;
}

.home-subscribe-prompt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 14px;
}

.home-subscribe-form {
  display: flex;
  border: 2px solid rgba(0,0,0,0.18);
  overflow: hidden;
}

.home-subscribe-form input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  background: rgba(0,0,0,0.04);
  border: none;
  border-right: 2px solid rgba(0,0,0,0.18);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.home-subscribe-form input::placeholder { color: rgba(0,0,0,0.35); }
.home-subscribe-form button {
  padding: 13px 20px;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.home-subscribe-form button:hover { background: #d0532a; }

/* Founders Wall link strip at bottom of combined section */
.founders-wall-strip {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
  text-align: center;
}
.founders-wall-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 10px;
}
.founders-wall-link-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid rgba(0,0,0,0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  transition: border-color 0.2s, color 0.2s;
}
.founders-wall-link-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   FOOTER — designed, not just text
   ============================================================ */

.site-footer {
  background: #111;
  color: var(--white);
  border-top: 6px solid var(--orange);
}

/* Subscribe banner */
.footer-subscribe-bar {
  background: rgba(232,98,55,0.1);
  border-bottom: 1px solid rgba(232,98,55,0.2);
  padding: 52px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-subscribe-bar-text h4 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-subscribe-bar-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-subscribe-form {
  flex-shrink: 0;
  display: flex;
  min-width: 300px;
}
.footer-subscribe-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.footer-subscribe-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-subscribe-form button {
  padding: 14px 22px;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.footer-subscribe-form button:hover { background: #d0532a; }

/* Footer body */
.footer-body {
  padding: 56px 64px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 52px;
}

.footer-brand {}
.footer-logo-img { height: 46px; margin-bottom: 14px; }
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 28px;
}

/* Socials — no borders */
.social-icons { display: flex; gap: 14px; flex-wrap: wrap; }
.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, transform 0.2s;
}
.social-icon:hover { color: var(--orange); transform: translateY(-2px); }
.social-icon svg { width: 20px; height: 20px; fill: currentColor; }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--white); }
.footer-nav-links a.donate-accent { color: var(--orange); font-weight: 700; }
.footer-nav-links a.donate-accent:hover { color: #ff7a4a; }

.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-info a, .footer-contact-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--orange); }

/* Footer newsletter column */
.footer-mini-subscribe {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-mini-subscribe input[type="email"] {
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-bottom: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.footer-mini-subscribe input::placeholder { color: rgba(255,255,255,0.3); }
.footer-mini-subscribe button {
  padding: 11px 14px;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}
.footer-mini-subscribe button:hover { background: #d0532a; }
.footer-mini-subscribe-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 10px;
  line-height: 1.5;
}

/* Footer bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 64px;
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Header — compact, not full screen */
.about-hero {
  background: var(--peach);
  padding: 160px 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero .story-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.about-hero .brand-title {
  font-family: var(--font-heading);
  font-size: clamp(80px, 14vw, 180px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 0.9;
  margin-bottom: 52px;
}
.about-hero .disclaimer {
  max-width: 540px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(0,0,0,0.55);
  text-align: left;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}
.about-hero .disclaimer strong { font-weight: 700; color: rgba(0,0,0,0.72); }

/* About parts */
.about-part {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}
.about-part--dark { background: var(--dark); flex-direction: row; }
.about-part--light { background: var(--cream); flex-direction: row-reverse; }

/* Image column */
.about-part-image-col {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 48px;
}

.about-img-frame {
  border: 4px solid var(--orange);
  overflow: hidden;
  width: 100%;
  flex: 1;
  min-height: 420px;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-frame.portrait:hover img { transform: scale(1.03); }
.about-img-frame.fit:hover img { transform: translate(-50%, -50%) rotate(90deg) scale(1.03); }

/* Portrait — Adam/Eve apple scene, slight crop */
.about-img-frame.portrait img {
  object-fit: cover;
  object-position: center center;
}

/* Fit — God/Adam creation image (landscape), rotated 90° to fill frame */
.about-img-frame.fit {
  position: relative;
}
.about-img-frame.fit img {
  position: absolute;
  top: 50%;
  left: 65%;
  height: 100%;
  width: auto;
  max-width: none;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Text column */
.about-part-chapters {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
  gap: 72px;
}

.chapter-block-inner { position: relative; }

.chapter-num {
  font-family: var(--font-heading);
  font-size: clamp(90px, 14vw, 200px);
  line-height: 1;
  margin-bottom: -36px;
  letter-spacing: 0.05em;
  pointer-events: none;
  display: block;
}
.about-part--dark .chapter-num { color: rgba(255,255,255,0.07); }
.about-part--light .chapter-num { color: rgba(0,0,0,0.05); }

.chapter-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 5.5vw, 88px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}
.about-part--dark .chapter-title { color: var(--white); }
.about-part--light .chapter-title { color: var(--dark); }

.chapter-body {
  font-size: 16px;
  line-height: 1.95;
  max-width: 440px;
}
.about-part--dark .chapter-body { color: rgba(255,255,255,0.68); }
.about-part--light .chapter-body { color: rgba(0,0,0,0.65); }
.chapter-body strong { font-weight: 700; }
.about-part--dark .chapter-body strong { color: var(--white); }
.about-part--light .chapter-body strong { color: var(--dark); }
.chapter-body em { font-style: italic; }
.chapter-body p { margin-bottom: 16px; }

.about-cta-simple {
  background: var(--orange);
  padding: 120px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.about-cta-simple h2 {
  font-family: var(--font-heading);
  font-size: clamp(64px, 11vw, 160px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.9;
}

/* ============================================================
   EVEREND PAGE
   ============================================================ */

/* Full-bleed image hero — image IS the title */
.everend-image-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 6px solid var(--orange);
  margin: 100px 48px 0;
}

/* Top gradient so nav stays readable on transparent header */
.everend-image-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.everend-image-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.everend-image-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(13,13,13,0.38) 100%);
}

/* Text section below image */
.everend-intro-text {
  background: var(--dark);
  padding: 80px 80px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.everend-page-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.everend-page-h1 {
  font-family: var(--font-heading);
  font-size: clamp(56px, 9vw, 112px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}
.everend-page-tagline {
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.everend-page-tagline strong { font-weight: 800; color: var(--white); }
.everend-page-tagline em { font-style: italic; color: rgba(255,255,255,0.38); }

.everend-dev-tag {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,98,55,0.1);
  margin-top: 8px;
}

/* Description + socials */
.everend-desc {
  background: var(--peach);
  color: var(--dark);
  padding: 100px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.everend-desc h2 {
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.75;
  max-width: 660px;
  margin-bottom: 72px;
  color: rgba(0,0,0,0.65);
}
.everend-desc h2 strong { font-weight: 800; color: var(--dark); }

.social-section-label {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 36px;
}

.social-follow-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.social-follow-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 30px;
  background: var(--orange);
  color: var(--white);
  min-width: 200px;
  transition: all 0.2s;
}
.social-follow-btn:hover { background: #d0532a; transform: translateY(-3px); }
.social-follow-btn svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.social-follow-btn-text { display: flex; flex-direction: column; gap: 1px; text-align: left; }
.social-follow-btn-text .follow-label { font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.75; }
.social-follow-btn-text .follow-handle { font-size: 15px; font-weight: 700; }

.everend-subscribe-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 18px;
}

/* ============================================================
   DONATE PAGE — embedded PayPal
   ============================================================ */

.donate-page {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 80px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-page > * { position: relative; z-index: 1; }

.donate-page .eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 24px;
}
.donate-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(64px, 13vw, 160px);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); line-height: 0.9; margin-bottom: 28px;
}
.donate-page .donate-lead {
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255,255,255,0.65);
  max-width: 600px; line-height: 1.78; margin-bottom: 52px;
}

/* Amount selector */
.donate-amounts {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.donate-amount-btn {
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.donate-amount-btn:hover,
.donate-amount-btn.active {
  border-color: var(--orange);
  background: rgba(232,98,55,0.15);
  color: var(--white);
}
.donate-amount-btn.custom-input {
  min-width: 120px;
  padding: 12px 16px;
}
.donate-amount-btn.custom-input input {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: center;
  width: 80px;
  outline: none;
}
.donate-amount-btn.custom-input input::placeholder { color: rgba(255,255,255,0.35); }

#paypal-button-container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 28px;
}

.donate-note {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  max-width: 400px;
  line-height: 1.7;
}

/* Donate coming soon badge */
.donate-coming-soon-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 40px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.donate-coming-soon-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Donate page — reservation box */
.donate-reserve-box {
  max-width: 560px;
  width: 100%;
  border: 2px solid rgba(232,98,55,0.5);
  padding: 48px;
  background: rgba(232,98,55,0.07);
  text-align: center;
  position: relative;
  z-index: 1;
}

.donate-reserve-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.donate-reserve-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}

.donate-reserve-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto 32px;
}

.donate-reserve-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.donate-reserve-fields input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-bottom: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.donate-reserve-fields input:last-of-type {
  border-bottom: none;
}
.donate-reserve-fields input::placeholder { color: rgba(255,255,255,0.35); }

.donate-reserve-fields button {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.donate-reserve-fields button:hover { background: #d0532a; }

.donate-reserve-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* Founders wall opt-in (pre-payment) — high contrast */
.founders-wall-opt {
  max-width: 480px;
  width: 100%;
  margin-bottom: 28px;
  border: 2px solid rgba(232,98,55,0.65);
  padding: 22px 26px;
  background: rgba(232,98,55,0.12);
}

.founders-opt-label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.founders-opt-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}

.founders-name-field {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.founders-name-field input[type="text"] {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  margin-bottom: 8px;
}

.founders-name-field input::placeholder { color: rgba(255,255,255,0.45); }

.founders-name-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Founders wall display on donate page */
.donate-founders-wall {
  max-width: 680px;
  width: 100%;
  margin-top: 72px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.donate-founders-wall h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.founders-wall-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.founders-wall-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.founder-chip {
  background: rgba(232,98,55,0.1);
  border: 1px solid rgba(232,98,55,0.3);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.founders-empty-msg {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  font-style: italic;
  letter-spacing: 0.04em;
}

.donate-breakdown {
  display: flex;
  gap: 2px;
  max-width: 680px;
  width: 100%;
  margin-bottom: 52px;
  background: rgba(255,255,255,0.04);
}
.donate-breakdown-item {
  flex: 1; padding: 32px 24px; background: rgba(255,255,255,0.02); text-align: center;
}
.donate-breakdown-item h4 {
  font-family: var(--font-heading); font-size: 32px; color: var(--orange); margin-bottom: 10px;
}
.donate-breakdown-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   FOUNDERS WALL PAGE
   ============================================================ */

.founders-wall-page {
  background: var(--dark);
  min-height: 100vh;
  padding: 160px 80px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.founders-wall-page > * { position: relative; z-index: 1; }

.founders-wall-page .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.founders-wall-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(52px, 9vw, 120px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
}

.founders-wall-page .founders-wall-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 64px;
}

.founders-wall-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 860px;
  width: 100%;
  margin-bottom: 72px;
}

.founder-chip {
  background: rgba(232,98,55,0.1);
  border: 1px solid rgba(232,98,55,0.35);
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  transition: background 0.2s, border-color 0.2s;
}
.founder-chip:hover { background: rgba(232,98,55,0.18); border-color: var(--orange); }

.founders-wall-empty {
  padding: 64px;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 480px;
  width: 100%;
  margin-bottom: 72px;
}
.founders-wall-empty p {
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  line-height: 1.7;
}

.founders-wall-cta {
  margin-top: 8px;
  text-align: center;
}
.founders-wall-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  background: var(--cream);
  color: var(--dark);
  min-height: 100vh;
  padding: 160px 80px 100px;
}
.contact-page-inner { max-width: 1100px; margin: 0 auto; }
.contact-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(64px, 12vw, 140px);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--dark); line-height: 0.9; margin-bottom: 14px;
}
.contact-page-inner > p {
  font-size: 18px; color: rgba(0,0,0,0.5);
  margin-bottom: 64px; line-height: 1.6;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  padding: 52px;
  border-top: 4px solid var(--orange);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.07);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 34px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--dark); margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  background: #f8f5f0;
  border: 1px solid rgba(0,0,0,0.1);
  border-bottom: 2px solid rgba(0,0,0,0.14);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 15px; outline: none;
  transition: border-color 0.2s; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); border-bottom-color: var(--orange); }
.form-group textarea { min-height: 120px; }
.contact-form .btn-submit {
  width: 100%; padding: 20px;
  background: var(--orange); border: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.contact-form .btn-submit:hover { background: #d0532a; transform: translateY(-2px); }

.contact-info { display: flex; flex-direction: column; }
.contact-info-item { padding: 30px 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.contact-info-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.contact-info-item h4 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.contact-info-item p,
.contact-info-item a { font-size: 15px; color: rgba(0,0,0,0.65); line-height: 2; display: block; }
.contact-info-item a:hover { color: var(--orange); }

.contact-info-socials { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.contact-info-socials .social-icon { color: rgba(0,0,0,0.5); }
.contact-info-socials .social-icon:hover { color: var(--orange); transform: translateY(-2px); }

/* ============================================================
   STORE / SIMPLE PAGE
   ============================================================ */

.simple-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 160px 80px 100px; text-align: center;
}
.simple-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(56px, 12vw, 140px);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); line-height: 0.9; margin-bottom: 28px;
}
.simple-page p {
  font-size: 17px; color: rgba(255,255,255,0.5);
  max-width: 400px; line-height: 1.8; margin-bottom: 44px;
}
.subscribe-row { display: flex; }
.subscribe-row input[type="email"] {
  flex: 1; padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 13px; outline: none; min-width: 0;
}
.subscribe-row input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-row button {
  padding: 13px 20px; background: var(--orange);
  border: none; color: var(--white); font-size: 16px;
  cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}
.subscribe-row button:hover { background: #d0532a; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1060px) {
  .footer-body { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 960px) {
  :root { --frame: 6px; }

  .everend-section { grid-template-columns: 1fr; min-height: auto; }
  .everend-image-wrap { padding: 48px 32px 0; }
  .everend-text { padding: 48px 40px 64px; }

  .donate-strip { padding: 72px 40px; }

  .home-combined-section { padding: 64px 40px; }
  .home-combined-body { gap: 40px; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 44px; }

  .about-part { flex-direction: column; min-height: auto; }
  .about-part--light { flex-direction: column; }
  .about-part-image-col { padding: 40px 40px 0; min-height: 360px; }
  .about-part-chapters { padding: 60px 40px; gap: 60px; }

  .contact-layout { grid-template-columns: 1fr; }
  .social-follow-grid { flex-direction: column; align-items: center; }

  .footer-body { grid-template-columns: 1fr; gap: 36px; padding: 44px 40px 32px; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 36px; padding: 44px 40px 32px; }
  .footer-bottom { margin: 0 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .nav-hamburger { display: flex; }
  .nav-dot { display: none; }

  .nav-right {
    display: flex;
    position: fixed;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    height: auto !important; /* must override desktop height:88px so top+bottom define height */
    background: #0d0d0d;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99999;
    padding: 0;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .nav-right.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-right a { font-size: 16px; letter-spacing: 0.15em; opacity: 1; }
  .nav-donate {
    background: transparent !important;
    padding: 0 !important;
    font-size: 16px !important;
    letter-spacing: 0.15em !important;
    color: var(--orange) !important;
  }

  .hero-content h1 { font-size: clamp(52px, 14vw, 100px); }

  .about-hero { padding: 120px 28px 64px; }
  .about-hero .brand-title { font-size: clamp(64px, 16vw, 120px); }
  .about-cta-simple { padding: 80px 28px; }
  .about-part-chapters { padding: 48px 28px; gap: 48px; }
  .about-part-image-col { padding: 32px 24px 0; min-height: 300px; }
  /* God/Adam image: regular landscape on mobile, no rotation */
  .about-img-frame.fit { min-height: 0; }
  .about-img-frame.fit img {
    position: static;
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .everend-image-hero { margin: 80px 24px 0; }
  .everend-intro-text { padding: 60px 28px 80px; }
  .everend-desc { padding: 72px 28px; }

  .contact-page { padding: 110px 24px 80px; }
  .contact-form { padding: 36px 24px; }

  .donate-page { padding: 130px 28px 80px; }
  .donate-breakdown { flex-direction: column; gap: 2px; }
  .donate-amounts { gap: 8px; }

  .simple-page { padding: 130px 28px 80px; }

  .home-combined-section { padding: 48px 24px; }
  .home-combined-header { margin-bottom: 36px; }
  .home-combined-body { flex-direction: column; gap: 32px; }
  .founders-wall-page { padding: 130px 24px 80px; }

  .donate-strip { padding: 64px 28px; }
  .donate-reasons { gap: 28px; }

  .footer-body { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px 28px; }
  .footer-bottom { margin: 0 24px; }

  .nav-logo img { height: 42px; }
  .site-header { height: 74px; } /* 16px + 42px logo + 16px */

  /* ── Orange frame: scrolls with page on mobile ── */
  body::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  /* Header fits inside the frame */
  .site-header {
    left: var(--frame);
    right: var(--frame);
    top: calc(env(safe-area-inset-top, 0px) + var(--frame));
  }

  /* Nav overlay fits inside the frame */
  .nav-right {
    top: calc(env(safe-area-inset-top, 0px) + var(--frame));
    left: var(--frame);
    right: var(--frame);
    bottom: calc(env(safe-area-inset-bottom, 0px) + var(--frame));
  }

  /* Body bottom padding clears the frame */
  body { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + var(--frame) + 16px); }

  /* BACK button at bottom of nav overlay */
  .nav-back {
    display: flex;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 12px 24px;
  }
  .nav-back:hover { color: var(--white); }
}

@media (max-width: 480px) {
  .donate-amounts { flex-direction: column; align-items: center; }
  .donate-amount-btn { width: 100%; max-width: 260px; }
}

.visually-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.about-intro {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #c9b99a;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
