/* ============================================================
   GLOBAL LITERARY VOICES - style.css
   Mobile-first. Tested on iOS Safari, Android Chrome.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --o:   #E8621A;
  --olt: #F2874A;
  --dk:  #100E0B;
  --ch:  #1C1410;
  --md:  #2E2820;
  --cr:  #FAF6F0;
  --mu:  #7A6558;
  --fd:  'Cormorant Garamond', Georgia, serif;
  --fs:  'Lora', Georgia, serif;
  --fb:  'DM Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dk);
  color: var(--cr);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
h1,h2,h3,h4 {
  font-family: var(--fd);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ── UTILITIES ── */
.cw          { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.sec         { padding: 5rem 1.25rem; }
.text-center { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--fs);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--o);
  font-weight: 500;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--fs);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--o); color: var(--cr); }
.btn-primary:hover { background: var(--olt); box-shadow: 0 8px 24px -8px rgba(232,98,26,0.5); }
.btn-outline { background: transparent; color: var(--cr); border: 1px solid rgba(250,246,240,0.35); }
.btn-outline:hover { border-color: var(--o); color: var(--o); }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--dk);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.lbar { width: 140px; height: 1px; background: rgba(232,98,26,0.2); overflow: hidden; }
.lbar-inner { height: 100%; background: var(--o); animation: lFill 1.1s ease forwards; }
@keyframes lFill { from { width: 0; } to { width: 100%; } }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: rgba(16,14,11,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,98,26,0.15);
}
#nav.scrolled { background: rgba(16,14,11,0.98); }

.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.nav-brand svg { flex-shrink: 0; animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotateY(360deg); } }

.nav-wordmark {
  font-family: var(--fd);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: var(--cr);
}

/* Desktop links - hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--fs);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cr);
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
.nav-links a:hover { color: var(--o); opacity: 1; }
.nav-links .nav-cta {
  background: var(--o);
  color: var(--cr);
  padding: 0.55rem 1.2rem;
  font-family: var(--fs);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hamburger - always visible until desktop breakpoint */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 900;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cr);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
#mob-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 850;
  background: rgba(16,14,11,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
#mob-menu.is-open { display: flex; }
#mob-menu a {
  font-family: var(--fd);
  font-size: 2.2rem;
  color: var(--cr);
  padding: 0.8rem 2rem;
  text-align: center;
  width: 100%;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
#mob-menu a:hover, #mob-menu a:active { color: var(--o); }
#mob-menu hr {
  width: 40px; height: 1px;
  background: rgba(232,98,26,0.35);
  border: none; margin: 0 auto;
}

/* Desktop breakpoint */
@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-links  { display: flex; }
  .nav-wordmark { display: block; }
  #nav { padding: 1rem 2rem; }
  .sec { padding: 7rem 2rem; }
}

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 7rem 1.25rem 4rem;
  text-align: center;
}
.hero-glow-1 {
  position: absolute; top: -10%; left: 15%;
  width: 55%; height: 55%;
  background: radial-gradient(ellipse, rgba(232,98,26,0.2), transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,98,26,0.15), transparent 70%);
  filter: blur(70px); pointer-events: none;
  animation: float 9s ease-in-out infinite;
}
.hero-glow-3 {
  position: absolute; top: 5%; right: -5%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(192,75,8,0.14), transparent 70%);
  filter: blur(70px); pointer-events: none;
  animation: float 9s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(15px,-25px); }
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(232,98,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,98,26,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
}
.hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.hero-inner svg { filter: drop-shadow(0 0 24px rgba(232,98,26,0.4)); }
.hero-eyebrow { margin-top: 1.5rem; }
.hero-title {
  font-size: clamp(2.4rem, 9vw, 6rem);
  margin-top: 1.2rem;
}
.hero-title em { color: var(--o); font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  opacity: 0.82;
  margin-top: 1.5rem;
  line-height: 1.75;
}
.hero-btns {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.85rem;
  margin-top: 2.2rem;
}
.hero-btns .btn { width: 100%; max-width: 320px; }
@media (min-width: 500px) {
  .hero-btns { flex-direction: row; justify-content: center; }
  .hero-btns .btn { width: auto; }
}

/* ── STATS ── */
.stats-bar {
  background: var(--md);
  border-top: 1px solid rgba(232,98,26,0.2);
  border-bottom: 1px solid rgba(232,98,26,0.2);
  padding: 3rem 1.25rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-n {
  font-family: var(--fd);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--o);
  line-height: 1;
}
.stat-l { margin-top: 0.5rem; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.about-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(15%) sepia(10%) brightness(0.88);
  transition: transform 0.6s, filter 0.4s;
}
.about-img-wrap:hover img { transform: scale(1.03); filter: none; }
.img-corner {
  position: absolute; width: 28px; height: 28px;
  border-color: var(--o); border-style: solid;
}
.img-corner.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.img-corner.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }
.img-tag {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(16,14,11,0.88);
  font-family: var(--fd); font-style: italic; font-size: 1rem;
  padding: 0.35rem 0.9rem;
}
.about-h { font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-top: 0.8rem; }
.about-h em { color: var(--o); font-style: italic; font-weight: 300; }
.about-p { opacity: 0.82; line-height: 1.8; margin-top: 1.2rem; }

.vals { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.val {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem;
  border-left: 2px solid var(--o);
  background: rgba(232,98,26,0.04);
}
.val-n { font-family: var(--fd); font-size: 1.4rem; color: var(--o); flex-shrink: 0; line-height: 1; }
.val-t { font-family: var(--fd); font-size: 1.3rem; }
.val-d { font-size: 0.85rem; color: var(--mu); margin-top: 0.2rem; }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 700px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}
.proc {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--dk);
  border: 1px solid rgba(232,98,26,0.16);
  border-top: 2px solid var(--o);
}
.proc-circle {
  width: 50px; height: 50px;
  border: 1px solid var(--o); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  font-family: var(--fd); font-size: 1.1rem; color: var(--o);
  background: var(--ch);
}
.proc-t { font-family: var(--fd); font-size: 1.25rem; margin-top: 1rem; }
.proc-d { font-size: 0.82rem; color: var(--mu); margin-top: 0.4rem; line-height: 1.55; }

/* ── SERVICES ── */
.svc-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 600px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  position: relative; padding: 1.75rem;
  background: var(--ch);
  border: 1px solid rgba(232,98,26,0.12);
  border-top: 1px solid rgba(232,98,26,0.3);
  overflow: hidden;
}
.svc-num {
  position: absolute; top: 0.8rem; right: 1.2rem;
  font-family: var(--fd); font-size: 3.5rem;
  color: rgba(232,98,26,0.1); line-height: 1;
}
.svc-t { font-family: var(--fd); font-size: 1.55rem; padding-right: 2.5rem; }
.svc-d { font-size: 0.86rem; color: var(--mu); margin-top: 0.7rem; line-height: 1.6; }
.svc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.25rem; flex-wrap: wrap; gap: 0.5rem;
}
.svc-price { font-family: var(--fs); font-size: 0.82rem; color: var(--o); }
.svc-lnk {
  font-family: var(--fs); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--o); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ── CLIENTS ── */
.clients-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 500px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } }
.client-card {
  display: block;
  border: 1px solid rgba(232,98,26,0.12);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.client-card:hover { border-color: var(--o); transform: translateY(-3px); }
.client-img-wrap { position: relative; overflow: hidden; }
.client-overlay {
  position: absolute; inset: 0;
  background: rgba(232,98,26,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.client-overlay span {
  font-family: var(--fs); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,0.5); padding: 0.4rem 0.9rem;
}
.client-card:hover .client-overlay { opacity: 1; }
.client-info { padding: 1rem 1.2rem; }
.client-name { font-family: var(--fd); font-size: 1.3rem; margin-top: 0.4rem; }

.plus-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  border: 1px dashed rgba(232,98,26,0.35);
  min-height: 300px;
}
.plus-icon { font-family: var(--fd); font-size: 3.5rem; color: var(--o); }
.plus-text  { font-family: var(--fd); font-size: 1.35rem; margin-top: 0.3rem; }
.plus-sub   { font-size: 0.82rem; color: var(--mu); margin-top: 0.4rem; }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; margin-top: 4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 1.25rem; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.test-card {
  position: relative; padding: 1.75rem; flex-shrink: 0; width: 300px;
  background: var(--dk); border: 1px solid rgba(232,98,26,0.12);
}
.test-open {
  position: absolute; top: 0.3rem; left: 0.6rem;
  font-family: var(--fd); font-size: 4.5rem;
  color: rgba(232,98,26,0.16); line-height: 1;
}
.test-q {
  font-family: var(--fd); font-style: italic;
  font-size: 1.1rem; line-height: 1.45; margin-top: 0.8rem;
}
.test-a {
  margin-top: 0.9rem;
  font-family: var(--fs); font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--o);
}

/* ── QUOTES ── */
.quotes-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 600px)  { .quotes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .quotes-grid { grid-template-columns: repeat(4, 1fr); } }
.quote-card {
  padding: 1.75rem 1.25rem; text-align: center;
  background: var(--ch);
  border: 1px solid rgba(232,98,26,0.12);
  border-top: 2px solid var(--o);
}
.q-mark { font-family: var(--fd); font-size: 3.5rem; color: rgba(232,98,26,0.28); line-height: 0.8; }
.q-text { font-family: var(--fd); font-style: italic; font-size: 1.1rem; line-height: 1.5; margin-top: 0.5rem; opacity: 0.9; }
.q-attr { margin-top: 0.9rem; font-family: var(--fs); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--o); }

/* ── DIY PACKAGES ── */
.pkgs-grid { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .pkgs-grid { grid-template-columns: repeat(2, 1fr); } }
.pkg {
  position: relative; padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column;
  background: var(--dk);
  border: 1px solid rgba(232,98,26,0.14);
  border-top: 2px solid var(--o);
}
.pkg.featured { border-top-width: 4px; }
.pkg-badge {
  position: absolute; top: -11px; left: 2rem;
  background: var(--o); color: var(--cr);
  font-family: var(--fs); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 2px 9px;
}
.pkg-name  { font-family: var(--fd); font-size: 2rem; margin-top: 0.6rem; }
.pkg-line  { width: 36px; height: 1px; background: var(--o); margin: 0.9rem 0; }
.pkg-price { display: flex; align-items: baseline; gap: 0.6rem; }
.pkg-amt   { font-family: var(--fd); font-size: 3.2rem; color: var(--o); line-height: 1; }
.pkg-per   { font-style: italic; font-size: 0.85rem; color: var(--mu); }
.pkg-tag   { font-family: var(--fd); font-style: italic; font-size: 1.05rem; opacity: 0.85; margin-top: 0.9rem; }
.pkg-feats { flex: 1; display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.75rem; }
.pkg-feats li { display: flex; gap: 0.65rem; font-size: 0.86rem; }
.pkg-feats li .arr { color: var(--o); flex-shrink: 0; }
.pkg-cta { margin-top: 2rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }
.contact-item { margin-bottom: 1.4rem; }
.contact-val  { font-family: var(--fd); font-size: 1.2rem; margin-top: 0.2rem; }
.contact-pq {
  margin-top: 2rem; padding: 1.25rem;
  border-left: 2px solid var(--o);
  background: rgba(232,98,26,0.04);
}
.contact-pq p    { font-family: var(--fd); font-style: italic; font-size: 1.3rem; line-height: 1.4; }
.contact-pq cite { display: block; margin-top: 0.5rem; font-family: var(--fs); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--o); font-style: normal; }

.frow { display: grid; gap: 1rem; }
@media (min-width: 480px) { .frow { grid-template-columns: 1fr 1fr; } }
.fg { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
.fg label { font-family: var(--fs); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mu); }
.fg input, .fg select, .fg textarea {
  background: rgba(16,14,11,0.6);
  border: 1px solid rgba(232,98,26,0.18);
  color: var(--cr);
  padding: 0.85rem 0.95rem;
  font-family: var(--fb); font-size: 0.95rem;
  outline: none; width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--o); }
.fg select option { background: var(--ch); }
.fg textarea { resize: vertical; min-height: 130px; }
.ferr { font-size: 0.82rem; color: #F08A5D; margin-top: 0.4rem; }
.fok {
  display: none; padding: 2.5rem; text-align: center;
  border: 1px solid var(--o);
}
.fok.show { display: block; }
.fok .tick { font-family: var(--fd); font-size: 2rem; color: var(--o); }
.fok h3 { font-family: var(--fd); font-size: 1.7rem; margin-top: 0.9rem; }
.fok p  { color: var(--mu); margin-top: 0.5rem; }

/* ── FOOTER ── */
footer {
  background: #100E0B;
  border-top: 1px solid rgba(232,98,26,0.18);
}
.footer-inner {
  display: grid; gap: 2.5rem;
  padding: 4rem 1.25rem 3rem;
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 600px)  { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-family: var(--fd); font-size: 1.2rem; margin-top: 0.9rem; line-height: 1.3; }
.footer-brand em { color: var(--o); }
.footer-brand small { font-size: 0.82rem; color: var(--mu); display: block; margin-top: 0.4rem; }
.footer-col h5 { margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--cr); opacity: 0.78; font-family: var(--fs); transition: color 0.2s, opacity 0.2s; }
.footer-col ul a:hover { color: var(--o); opacity: 1; }
.footer-col ul li span { font-size: 0.88rem; color: var(--cr); opacity: 0.65; font-family: var(--fs); }
.footer-bot {
  border-top: 1px solid rgba(232,98,26,0.12);
  padding: 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
  max-width: 1280px; margin: 0 auto;
  font-size: 0.78rem; color: var(--mu);
}
.footer-bot em { font-family: var(--fd); font-size: 0.95rem; color: var(--o); }

/* ── SCROLL LINE ── */
.scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
}
.scroll-hint span { font-family: var(--fs); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mu); }
.scroll-line {
  width: 1px; height: 40px; background: var(--o);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity: 0.3; } 50%{ opacity: 1; } }

/* ── SECTION HEADING HELPER ── */
.sh { font-size: clamp(1.9rem, 4.5vw, 3.4rem); margin-top: 0.75rem; }
.sh em { color: var(--o); font-style: italic; font-weight: 300; }
