:root {
  --violet: #3D2B6B;
  --violet-deep: #2a1d4e;
  --violet-light: #6b52a8;
  --violet-pale: #f0edf8;
  --gold: #E8A020;
  --gold-light: #f5c45e;
  --coral: #D4544A;
  --white: #ffffff;
  --cream: #faf9f6;
  --black: #0a0a0a;
  --nav-h: 90px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: #1a1228; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 4rem;
  background: transparent;
  transition: background 0.45s, padding 0.35s, border-color 0.45s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(14, 8, 32, 0.97);
  backdrop-filter: blur(18px);
  padding: 0.95rem 4rem;
  border-bottom-color: rgba(232,160,32,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.nav-logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--white); letter-spacing: -2px; line-height: 1;
}
.nav-logo-mark span { color: var(--gold); }
.nav-logo-text { line-height: 1.3; }
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 500; color: var(--white); display: block; }
.nav-logo-sub { font-size: 0.6rem; font-style: italic; color: rgba(255,255,255,0.45); display: block; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--violet-deep) !important; padding: 0.5rem 1.5rem; border-radius: 2px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0.25rem;
}
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.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); }

/* BUTTONS */
.btn-gold { background: var(--gold); color: var(--violet-deep); font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 2.2rem; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.9rem 2rem; border: 1.5px solid var(--gold); border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s; }
.btn-outline-gold:hover { background: var(--gold); color: var(--violet-deep); }
.btn-violet { background: var(--violet); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.9rem 2rem; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-violet:hover { background: var(--violet-light); transform: translateY(-2px); }

/* SECTION LABELS */
.section-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.75rem; }
.section-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; color: var(--violet); line-height: 1.15; margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--coral); }
.section-body { font-size: 0.92rem; font-weight: 300; color: #666; line-height: 1.9; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PAGE HERO */
.page-hero {
  min-height: 72vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) 4rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/prayer.jpg');
  background-size: cover; background-position: center 30%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,8,35,0.93) 0%, rgba(14,8,35,0.65) 55%, rgba(14,8,35,0.3) 100%);
}
.page-hero-overlay-btm {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, rgba(250,249,246,1) 0%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 3; }
.page-hero-eyebrow {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.page-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6vw, 6.5rem); font-weight: 400; color: var(--white);
  line-height: 1.06; max-width: 780px; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.page-hero-headline em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.6);
  max-width: 420px; line-height: 1.9;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ORIGIN STORY — See restructured layout section below */

/* PHOTO ROW */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background-color: rgba(61,43,107,0.08);
}
.photo-row-item { aspect-ratio: 4/3; overflow: hidden; background: var(--violet-pale); }
.photo-row-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.photo-row-item:hover img { transform: scale(1.04); }
.photo-row-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.85rem; color: rgba(61,43,107,0.35); }

/* VISION / ASSIGNMENT / VALUES */
.vav {
  background: var(--violet-deep);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(232,160,32,0.15);
  border-bottom: 1px solid rgba(232,160,32,0.15);
}
.vav-col { padding: 2.5rem 3rem; border-right: 1px solid rgba(255,255,255,0.07); }
.vav-col:last-child { border-right: none; }
.vav-label { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.35rem; font-weight: 500; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.vav-label::before { content: ''; display: block; width: 3px; height: 1.35rem; background: var(--gold); border-radius: 2px; }
.vav-body { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.62); line-height: 1.9; }
.vav-ref { font-size: 0.7rem; font-style: italic; color: rgba(232,160,32,0.65); margin-top: 1rem; }
.vav-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-top: 0.5rem; }
.vav-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.65; }
.vav-list li::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 0.55rem; }
.vav-list .highlight { color: var(--gold); font-weight: 500; }

/* NAME MEANING */
.name-meaning {
  background: var(--cream);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.name-visual { position: relative; height: 500px; border-radius: 2px; overflow: hidden; background: var(--violet); }
.name-visual-img { position: absolute; inset: 0; background-image: url('images/outreach.jpg'); background-size: cover; background-position: center; opacity: 0.25; }
.name-visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(42,29,78,0.82) 0%, rgba(61,43,107,0.6) 100%); }
.name-visual-letters { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0; z-index: 2; }
.name-letter-row { display: flex; align-items: baseline; gap: 0.6rem; }
.name-big-letter { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 9rem; color: var(--gold); line-height: 1; text-shadow: 0 0 60px rgba(232,160,32,0.3); }
.name-small-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.6rem; color: rgba(255,255,255,0.65); line-height: 1; }
.name-date { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; text-align: center; }
.name-date-inner { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.name-date-val { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; color: rgba(232,160,32,0.7); }
.name-entry { margin-bottom: 3rem; }
.name-entry:last-child { margin-bottom: 0; }
.name-entry-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; font-weight: 500; color: var(--violet); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.75rem; }
.name-entry-title span { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 2.2rem; color: var(--gold); line-height: 1; flex-shrink: 0; }
.name-entry-body { font-size: 0.9rem; font-weight: 300; color: #666; line-height: 1.9; }
.name-entry-verse { font-size: 0.72rem; font-style: italic; color: var(--coral); margin-top: 0.6rem; }

/* DECLARATION BANNER */
.declaration { background: var(--black); padding: 7rem 4rem; text-align: center; position: relative; overflow: hidden; }
.declaration-watermark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: 'Playfair Display', serif; font-size: clamp(8rem, 18vw, 22rem); font-weight: 700; color: rgba(255,255,255,0.025); white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: -0.04em; }
.declaration-lbl { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.declaration-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 4rem); font-weight: 400; color: var(--white); line-height: 1.25; max-width: 860px; margin: 0 auto 1.5rem; }
.declaration-quote em { font-style: italic; color: var(--gold); }
.declaration-ref { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 3.5rem; }
.declaration-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* STATS */
.stats-bar { background: var(--violet-deep); padding: 4.5rem 4rem; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(232,160,32,0.15); border-bottom: 1px solid rgba(232,160,32,0.15); }
.stat-item { padding: 1.5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.64rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.42); }

/* FOOTER */
footer { background: var(--black); padding: 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 4rem 4rem 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.68rem; font-style: italic; color: rgba(255,255,255,0.38); margin-bottom: 1.4rem; }
.footer-gold-line { width: 32px; height: 2px; background: var(--gold); margin-bottom: 1.2rem; }
.footer-desc { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.75; max-width: 260px; }
.footer-col-title { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 4rem; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.22); }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.4); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* ── Tablet: ≤ 1024px ── */
@media (max-width: 1024px) {
  :root { --nav-h: 76px; }

  nav { padding: 1.4rem 2.5rem; }
  nav.scrolled { padding: 0.85rem 2.5rem; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-h) + 1.5rem) 2.5rem 4rem; min-height: 60vh; }

  /* Origin: stack vertically — See restructured media query below */

  /* Photo row: stay 3-col but compress */
  .photo-row { gap: 1px; }

  /* VAV: stack to single column */
  .vav {
    grid-template-columns: 1fr;
    padding: 4rem 2.5rem;
  }
  .vav-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 2rem 0; }
  .vav-col:last-child { border-bottom: none; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 3.5rem 2.5rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }

  /* Name meaning: stack */
  .name-meaning { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2.5rem; }
  .name-visual { height: 380px; }
  .name-big-letter { font-size: 6.5rem; }
  .name-small-text { font-size: 1.3rem; }

  /* Declaration */
  .declaration { padding: 5rem 2.5rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 3rem 2.5rem 2.5rem; }
  .footer-bottom { padding: 1.5rem 2.5rem; }
}

/* ── Mobile: ≤ 768px ── */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* Nav */
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-logo-sub { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(14,8,32,0.98); backdrop-filter: blur(18px);
    padding: 1.5rem; border-bottom: 1px solid rgba(232,160,32,0.18);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.8rem; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { margin-top: 0.5rem; padding: 0.75rem 1.5rem !important; display: inline-block; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-h) + 1rem) 1.5rem 3.5rem; min-height: 55vh; }
  .page-hero-headline { font-size: clamp(2.6rem, 10vw, 4rem); }
  .page-hero-sub { font-size: 0.88rem; max-width: 100%; }

  /* Origin — See restructured media query below */

  /* Photo row: 2 cols on mobile */
  .photo-row { grid-template-columns: repeat(2,1fr); }
  .photo-row-item:last-child { display: none; } /* hide 3rd on small screens */

  /* VAV */
  .vav { padding: 3.5rem 1.5rem; }
  .vav-label { font-size: 1.15rem; }

  /* Stats */
  .stats-bar { padding: 3rem 1.5rem; }
  .stat-number { font-size: 2.8rem; }

  /* Name meaning */
  .name-meaning { padding: 4rem 1.5rem; gap: 2.5rem; }
  .name-visual { height: 320px; }
  .name-big-letter { font-size: 5.5rem; }
  .name-small-text { font-size: 1.1rem; }
  .name-entry { margin-bottom: 2rem; }
  .name-entry-title { font-size: 1.15rem; }
  .name-entry-title span { font-size: 1.8rem; }

  /* Declaration */
  .declaration { padding: 4rem 1.5rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
}


/* ══════════════════════════════════════
   ORIGIN — RESTRUCTURED LAYOUT
══════════════════════════════════════ */

.origin {
  background: var(--white);
  padding: 6rem 4rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ① Header row — label + title full width */
.origin-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

/* ② Top grid — image left, opening text right */
.origin-top-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.origin-img-wrap { position: relative; }
.origin-img-frame {
  width: 100%; aspect-ratio: 4/5;
  background-image: url('images/prayer1.jpg');
  background-size: cover; background-position: center top;
  border-radius: 2px;
}
.origin-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--violet-deep);
  padding: 1.5rem; text-align: center; border-radius: 2px;
  box-shadow: 0 8px 40px rgba(61,43,107,0.18);
}
.origin-img-badge-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.origin-img-badge-lbl { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.3rem; }
.origin-title-italic { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: var(--coral); margin-bottom: 1.5rem; }
.origin-sig-name { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--violet); margin-bottom: 0.25rem; }
.origin-sig-title { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(61,43,107,0.4); }

.origin-opening p {
  font-size: 0.93rem; font-weight: 300; color: #555; line-height: 1.95; margin-bottom: 1.25rem;
}
.origin-opening p:last-child { margin-bottom: 0; }
.origin-pause {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem !important; font-weight: 400 !important;
  color: var(--violet) !important; line-height: 1.7 !important;
  border-left: 2px solid var(--gold); padding-left: 1rem;
}
.origin-pause em { font-style: italic; color: var(--coral); }

/* ③ Bottom strip — cream background, full bleed */
.origin-bottom {
  background: var(--cream, #faf9f6);
  border-radius: 4px;
  padding: 3.5rem;
  border: 1px solid rgba(61,43,107,0.07);
}

/* Revelation top block */
.origin-bottom-block { margin-bottom: 2rem; }
.origin-revelation-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.65rem;
}
.origin-revelation-label::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.origin-bottom-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}

/* L·U·C centred display */
.origin-luc-block {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(61,43,107,0.08);
  border-bottom: 1px solid rgba(61,43,107,0.08);
  margin-bottom: 2rem;
}
.origin-luc-reveal {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1.75rem 0;
}
.origin-luc-reveal span {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 3.5rem; color: var(--violet, #3d2b6b); line-height: 1;
  letter-spacing: 0.05em;
}
.origin-luc-dot {
  font-size: 2rem !important; color: var(--gold, #c8900a) !important;
  line-height: 1; align-self: center;
}
.origin-luc-sub {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(61,43,107,0.35); margin-top: 0.5rem;
}

/* Two-column lower block */
.origin-bottom-two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.origin-bottom-cell { display: flex; flex-direction: column; gap: 0; }
.origin-body-text {
  font-size: 0.92rem; font-weight: 300; color: #555; line-height: 1.95; margin-bottom: 1rem;
}
.origin-body-text:last-child { margin-bottom: 0; }

/* Verse pull-quote */
.origin-verse {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.88rem; color: var(--coral, #d4544a);
  border-left: 2px solid var(--coral, #d4544a);
  padding: 0.4rem 0 0.4rem 1rem;
  margin: 1.25rem 0 0;
  line-height: 1.7;
}

/* Signature */
.origin-signature {
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(61,43,107,0.1);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .origin { padding: 5rem 2.5rem 4rem; }
  .origin-top-grid { grid-template-columns: 340px 1fr; gap: 3.5rem; }
  .origin-bottom { padding: 2.5rem; }
  .origin-luc-reveal span { font-size: 3.2rem; }
}

@media (max-width: 768px) {
  .origin { padding: 4rem 1.5rem 3rem; }
  .origin-top-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .origin-img-wrap { max-width: 420px; }
  .origin-img-frame { aspect-ratio: 3/2; }
  .origin-img-badge { bottom: -1rem; right: -0.5rem; padding: 1rem; }
  .origin-img-badge-num { font-size: 1.8rem; }
  .origin-bottom { padding: 2rem 1.5rem; }
  .origin-bottom-cols { grid-template-columns: 1fr; gap: 0; }
  .origin-bottom-two { grid-template-columns: 1fr; gap: 2rem; }
  .origin-luc-reveal span { font-size: 2.6rem; }
  .origin-luc-dot { font-size: 1.5rem !important; }
}

@media (max-width: 480px) {
  .origin-luc-reveal span { font-size: 2rem; }
  .origin-luc-dot { font-size: 1.1rem !important; }
  .origin-header { margin-bottom: 2.5rem; }
  .origin-bottom-block { margin-bottom: 1.5rem; }
}



/* ── Revelation sub-section ── */
.origin-revelation,
.origin-since {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(61,43,107,0.1);
}
.origin-revelation-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.65rem;
}
.origin-revelation-label::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}

/* ── Since-then section spacing ── */
.origin-since { margin-top: 2rem; }


/* ── Small mobile: ≤ 480px ── */
@media (max-width: 480px) {
  .page-hero-headline { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .page-hero-eyebrow { font-size: 0.56rem; }

  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Photo row: single column */
  .photo-row { grid-template-columns: 1fr; }
  .photo-row-item:last-child { display: block; }
  .photo-row-item { aspect-ratio: 16/9; }

  .origin-img-frame { aspect-ratio: 3/4; }

  .name-visual { height: 280px; }
  .name-big-letter { font-size: 4.2rem; }
  .name-small-text { font-size: 0.9rem; }

  .declaration-quote { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .declaration-actions { flex-direction: column; align-items: center; }

  .stat-number { font-size: 2.4rem; }
}