/* ============================================================
   Scavenger Go — Global Stylesheet
   Colors extracted from app icon: orange + deep navy + cream
   ============================================================ */

:root {
  /* Brand palette */
  --color-orange: #FF8A1F;
  --color-orange-deep: #E66A0A;
  --color-orange-light: #FFB76B;
  --color-navy: #0F2C5C;
  --color-navy-deep: #081A3C;
  --color-sky: #4FC3E0;
  --color-gold: #FFD23F;
  --color-cream: #FFF7EB;
  --color-cream-warm: #FFEFD6;
  --color-ink: #1A1A2E;
  --color-ink-soft: #4A4A5E;
  --color-ink-mute: #7A7A8C;
  --color-rule: #EADFCA;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --content-w: 1180px;
  --reading-w: 720px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(15, 44, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 44, 92, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 44, 92, 0.18);
  --shadow-glow: 0 12px 40px rgba(255, 138, 31, 0.35);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--color-orange); }
button { font-family: inherit; cursor: pointer; }

/* ===== Layout helpers ===== */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.reading {
  max-width: var(--reading-w);
  margin: 0 auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: 0 0 var(--sp-5);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0 0 var(--sp-5); }
.lede {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--color-ink-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange-deep);
  margin: 0 0 var(--sp-4);
}

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 235, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid rgba(15, 44, 92, 0.08);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-navy);
}
.brand:hover { color: var(--color-navy); }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}
.nav-links {
  display: flex;
  gap: var(--sp-6);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink-soft);
}
.nav-links a:hover { color: var(--color-orange-deep); }
@media (max-width: 720px) {
  .nav-links { gap: var(--sp-4); }
  .nav-links li:nth-child(n+4) { display: none; }
}
@media (max-width: 520px) {
  .brand span { display: none; }
  .nav-links { gap: var(--sp-3); }
  .nav-links a { font-size: 0.88rem; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--color-orange);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--color-orange-deep);
  color: white;
  box-shadow: 0 18px 50px rgba(255, 138, 31, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: rgba(15, 44, 92, 0.2);
}
.btn-ghost:hover {
  background: var(--color-navy);
  color: var(--color-cream);
  border-color: var(--color-navy);
}
.btn-dark {
  background: var(--color-navy);
  color: var(--color-cream);
}
.btn-dark:hover {
  background: var(--color-navy-deep);
  color: white;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(var(--sp-7), 8vw, var(--sp-10)) 0 var(--sp-9);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(79, 195, 224, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(255, 138, 31, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(15, 44, 92, 0.06);
  border: 1px solid rgba(15, 44, 92, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-navy);
  margin-bottom: var(--sp-5);
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 138, 31, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(255, 138, 31, 0.05); }
}
.hero h1 {
  margin-bottom: var(--sp-4);
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-promo {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--color-ink-soft);
  margin-bottom: var(--sp-6);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}
.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-icon {
  width: clamp(220px, 28vw, 340px);
  height: clamp(220px, 28vw, 340px);
  border-radius: 22%;
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
  transition: transform 0.4s ease;
}
.hero-icon:hover {
  transform: rotate(0deg) scale(1.02);
}
.hero-art::before, .hero-art::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: -1;
}
.hero-art::before {
  width: 300px; height: 300px;
  background: var(--color-orange);
  top: -20px; right: -40px;
}
.hero-art::after {
  width: 240px; height: 240px;
  background: var(--color-sky);
  bottom: -20px; left: -40px;
}

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; gap: var(--sp-6); }
  .hero-art { order: -1; }
  .hero-icon { width: 200px; height: 200px; }
}

/* App Store badge */
.appstore-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.85rem 1.3rem;
  background: var(--color-ink);
  color: white;
  border-radius: var(--radius-md);
  text-decoration: none;
  position: relative;
}
.appstore-badge:hover { color: white; background: #000; }
.appstore-badge svg { flex-shrink: 0; }
.appstore-badge .small {
  font-size: 0.7rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
  display: block;
}
.appstore-badge .big {
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  letter-spacing: -0.01em;
}
.appstore-badge::after {
  content: 'Coming Soon';
  position: absolute;
  top: -10px;
  right: -8px;
  background: var(--color-orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.notify-link {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  text-decoration: underline;
  text-decoration-color: rgba(15, 44, 92, 0.25);
  text-underline-offset: 4px;
}
.notify-link:hover { color: var(--color-orange-deep); }

/* ===== Sections ===== */
section {
  padding: var(--sp-9) 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-8);
}
.section-head .lede {
  margin: 0 auto;
}

/* ===== Mission Section ===== */
.mission {
  background: var(--color-navy);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(255, 138, 31, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(79, 195, 224, 0.16), transparent 70%);
}
.mission .container {
  position: relative;
}
.mission-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.mission .eyebrow {
  color: var(--color-orange-light);
}
.mission h2 {
  color: var(--color-cream);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: var(--sp-6);
}
.mission h2 .glow {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mission .lede {
  color: rgba(255, 247, 235, 0.85);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
.pillar {
  text-align: left;
  padding: var(--sp-5);
  background: rgba(255, 247, 235, 0.04);
  border: 1px solid rgba(255, 247, 235, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, background 0.2s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  background: rgba(255, 247, 235, 0.07);
}
.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-3);
  display: block;
}
.pillar h3 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}
.pillar p {
  color: rgba(255, 247, 235, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .mission-pillars { grid-template-columns: 1fr; }
}

/* ===== Features grid ===== */
.features {
  background: var(--color-cream-warm);
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}
.feature-card {
  background: var(--color-cream);
  padding: var(--sp-6) var(--sp-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-rule);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-orange-deep);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}
.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
  color: var(--color-navy);
}
.feature-card p {
  color: var(--color-ink-soft);
  font-size: 0.97rem;
  margin: 0;
}

/* ===== Screenshots gallery ===== */
.screenshots {
  background: var(--color-cream);
}
.screenshot-rail {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  padding: var(--sp-5) var(--sp-1) var(--sp-7);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-orange) transparent;
}
.screenshot-rail::-webkit-scrollbar { height: 8px; }
.screenshot-rail::-webkit-scrollbar-thumb { background: var(--color-orange); border-radius: 4px; }
.screenshot-rail::-webkit-scrollbar-track { background: transparent; }

.shot {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-rule);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.shot:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.shot img {
  width: 100%;
  display: block;
}
.shot-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5) var(--sp-4) var(--sp-3);
  background: linear-gradient(to top, rgba(15, 44, 92, 0.95) 0%, rgba(15, 44, 92, 0) 100%);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

/* ===== Description / How it works ===== */
.howitworks {
  background: var(--color-cream);
}
.howitworks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.howitworks-grid p {
  font-size: 1.05rem;
  color: var(--color-ink-soft);
}
@media (max-width: 800px) {
  .howitworks-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ===== CTA Section ===== */
.cta {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-deep) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.cta::before {
  width: 400px; height: 400px;
  background: var(--color-gold);
  top: -100px; left: -100px;
}
.cta::after {
  width: 350px; height: 350px;
  background: var(--color-sky);
  bottom: -150px; right: -100px;
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: white; }
.cta .lede { color: rgba(255, 255, 255, 0.92); margin-bottom: var(--sp-6); }
.cta .btn-dark { background: var(--color-navy); }
.cta .btn-dark:hover { background: var(--color-ink); }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 247, 235, 0.85);
  padding: var(--sp-8) 0 var(--sp-6);
}
.site-footer a { color: rgba(255, 247, 235, 0.7); }
.site-footer a:hover { color: var(--color-orange-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255, 247, 235, 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: var(--sp-3);
}
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.footer-tag {
  font-size: 0.95rem;
  max-width: 320px;
  color: rgba(255, 247, 235, 0.65);
  margin: 0;
}
.footer-col h4 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: var(--sp-2);
  font-size: 0.95rem;
}
.footer-bottom {
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: rgba(255, 247, 235, 0.55);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

/* ============================================================
   Doc / inner page styling (privacy, terms, support)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: var(--color-cream);
  padding: var(--sp-8) 0 var(--sp-7);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(255, 138, 31, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(79, 195, 224, 0.15), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--color-orange-light); }
.page-hero h1 {
  color: var(--color-cream);
  margin-bottom: var(--sp-3);
  font-size: clamp(2rem, 5vw, 3.6rem);
}
.page-hero p {
  color: rgba(255, 247, 235, 0.78);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0;
}

.doc-body {
  padding: var(--sp-8) 0 var(--sp-9);
}
.doc-body .reading h2 {
  font-size: 1.6rem;
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-4);
  color: var(--color-navy);
}
.doc-body .reading h2:first-of-type { margin-top: 0; }
.doc-body .reading h3 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-3);
}
.doc-body .reading p,
.doc-body .reading li {
  color: var(--color-ink-soft);
  font-size: 1rem;
}
.doc-body .reading ul {
  padding-left: 1.2rem;
  margin-bottom: var(--sp-5);
}
.doc-body .reading li { margin-bottom: var(--sp-2); }
.doc-body .reading strong { color: var(--color-navy); }
.doc-body .reading hr {
  border: none;
  border-top: 1px solid var(--color-rule);
  margin: var(--sp-7) 0;
}
.doc-body .reading a { text-decoration: underline; text-underline-offset: 3px; color: var(--color-orange-deep); }
.doc-body .reading a:hover { color: var(--color-orange); }

.callout {
  background: var(--color-cream-warm);
  border-left: 4px solid var(--color-orange);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  margin: var(--sp-5) 0;
  font-size: 0.97rem;
}
.callout strong { color: var(--color-navy); }

/* ===== FAQ accordion ===== */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}
.faq details {
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq details[open] {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-orange);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  content: '−';
}
.faq summary:hover { color: var(--color-orange-deep); }
.faq .faq-answer {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--color-ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}
.faq .faq-answer p:last-child { margin-bottom: 0; }

/* ===== Contact card ===== */
.contact-card {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255, 138, 31, 0.2), transparent 70%);
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h2,
.doc-body .reading .contact-card h2 {
  color: var(--color-cream);
  margin-bottom: var(--sp-3);
}
.contact-card p,
.doc-body .reading .contact-card p {
  color: rgba(255, 247, 235, 0.8);
  margin-bottom: var(--sp-5);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.contact-email {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-navy) !important;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: transform 0.18s ease, background 0.18s ease;
}
.contact-email:hover {
  background: var(--color-orange-deep);
  color: var(--color-navy) !important;
  transform: translateY(-2px);
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
