/* ==========================================================================
   Alameda Racket Stringing — main stylesheet
   Bold & sporty: warm off-white canvas, charcoal ink, optic-yellow accent
   ========================================================================== */

:root {
  --bg: #F7F6F1;
  --surface: #FFFFFF;
  --surface-2: #EFEFEA;
  --border: #E2E3DC;
  --text: #14171A;
  --text-muted: #5D6269;
  --accent: #D4FF3A;
  --accent-hover: #C4F221;
  --accent-ink: #14171A;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --max-w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

a { color: inherit; text-decoration: none; }

/* ------- Layout ------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ------- Nav ------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(247, 246, 241, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo .mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(212, 255, 58, 0.55);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.18s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta { margin-left: 0.25rem; }

/* ------- Buttons ------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: transform 0.12s, background-color 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ------- Hero ------- */
.hero {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(212, 255, 58, 0.28), transparent 65%);
  filter: blur(40px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,23,26,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,23,26,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 80%);
}

.hero h1 {
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  margin-bottom: 1.5rem;
  max-width: 13ch;
  text-transform: uppercase;
}

.hero h1 .accent {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0 0.18em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 0.08em;
}

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 560px;
  color: var(--text-muted);
  line-height: 1.55;
}

.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero .kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ------- Section headers ------- */
.section-header {
  margin-bottom: 3rem;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 700;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ------- Feature cards ------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(212, 255, 58, 0.45);
  transform: translateY(-3px);
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 255, 58, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p { color: var(--text-muted); font-size: 0.97rem; }

/* ------- Split layout ------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* ------- String grid ------- */
.string-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.string-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}

.string-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 255, 58, 0.45);
}

.string-visual {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}

.string-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.string-visual .strand {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* painted string swatch: diagonal textured band + highlight */
.string-visual .strand::before {
  content: '';
  position: absolute;
  inset: -10% -10%;
  background:
    repeating-linear-gradient(
      -52deg,
      transparent 0,
      transparent 9px,
      rgba(0,0,0,0.22) 9px,
      rgba(0,0,0,0.22) 10px
    ),
    linear-gradient(135deg, var(--c1, #444) 0%, var(--c2, #222) 100%);
  transform: rotate(-5deg);
}

.string-visual .strand::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%);
}

.string-visual .brand-stamp {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  color: #F5F5F7;
}

.string-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.string-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.string-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.string-gauge {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

.string-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}

.string-price .per {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.string-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.string-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.4rem;
}

.tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ------- CTA banner ------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), #a8d42a);
  color: var(--accent-ink);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  margin: 5rem 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  opacity: 0.82;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: var(--accent-ink);
  color: var(--accent);
  border-color: var(--accent-ink);
}
.cta-banner .btn-primary:hover { background: #2a2d33; }

/* ------- Contact row ------- */
.contact-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}

.contact-card:hover { border-color: rgba(212,255,58,0.4); transform: translateY(-2px); }

.contact-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-card .value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.3;
  word-break: break-word;
}

.contact-card .value a { color: var(--text); }
.contact-card .value a:hover { color: var(--accent); }

.contact-card .note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* ------- Footer ------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
  margin-top: 5rem;
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  color: var(--text);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.45rem;
}

.footer-col a:hover { color: var(--accent); }

.footer-tag {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 340px;
  margin-top: 0.75rem;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ------- Page header (interior pages) ------- */
.page-header {
  padding: 5rem 1.5rem 3.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-header .hero-glow { opacity: 0.6; }

.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.page-header .lede {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin-top: 1.25rem;
  line-height: 1.55;
}

/* ------- Prose (About page) ------- */
.prose {
  max-width: 720px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text);
}
.prose p { margin-bottom: 1.25rem; }
.prose p.lede { font-size: 1.25rem; color: var(--text); font-weight: 500; }
.prose strong { color: var(--text); font-weight: 600; }

/* ------- Stats ------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 0;
}

.stat {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat .n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
  box-shadow: inset 0 -0.28em 0 var(--accent);
  padding: 0 0.1em;
}

.stat .l {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
}

/* ------- Coaching / Pricing card ------- */
.pricing-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(212,255,58,0.14), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}

.pricing-card > * { position: relative; z-index: 1; }

.pricing-card .eyebrow { margin-bottom: 1.25rem; }

.pricing-card .rate {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.pricing-card .rate .unit {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.pricing-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text);
  font-size: 0.98rem;
}

.pricing-card li:last-child { border-bottom: 0; }

.pricing-card li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(212,255,58,0.5);
}

/* ------- Services list (stringing page) ------- */
.service-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
}

.service-list li:hover { border-color: rgba(212,255,58,0.45); }

.service-list .svc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
}

.service-list .svc-desc {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.service-list .svc-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 1.15rem;
  white-space: nowrap;
}

/* ------- Process steps ------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.9rem;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid var(--accent);
}

.step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step p { color: var(--text-muted); font-size: 0.93rem; }

/* ------- Tennis ball bouncer (decorative, home hero) ------- */
.hero-illus {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #E5FF4A, #93B21A 70%, #4f5e0e);
  box-shadow:
    0 40px 80px -20px rgba(212,255,58,0.35),
    inset -20px -40px 60px rgba(0,0,0,0.25);
  z-index: -1;
  opacity: 0.55;
}
.hero-illus::before,
.hero-illus::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.4);
  transform: rotate(25deg) scale(0.88);
}
.hero-illus::after { transform: rotate(-25deg) scale(0.88); border-style: solid; opacity: 0.2; }

/* ------- Responsive ------- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-illus { width: 200px; height: 200px; right: -80px; }
}

@media (max-width: 620px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.85rem; }
  .nav-cta { display: none; }
  section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .pricing-card { padding: 1.75rem; }
  .cta-banner { padding: 2.25rem 1.5rem; }
  .page-header { padding: 3.5rem 1.5rem 2.5rem; }
}

/* ------- Parallax band (full-bleed) -------
   Classic parallax: the background is fixed to the viewport while the
   content scrolls over it. Swap background-image for a real photo
   (e.g. url('../images/court-aerial.jpg')) when you have one.
   ------------------------------------------ */
.parallax-band {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  margin: 5rem 0;
  color: #F5F5F7;
  overflow: hidden;
  isolation: isolate;

  background-color: #15181B;
  background-image:
    radial-gradient(ellipse at 25% 40%, rgba(212,255,58,0.28), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(212,255,58,0.12), transparent 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Faint court-line pattern, sits on top of the fixed bg so it moves with the section */
.parallax-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}

.parallax-band-inner {
  max-width: 780px;
  text-align: center;
  position: relative;
}

.parallax-kicker {
  display: inline-block;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.parallax-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.parallax-quote em {
  color: var(--accent);
  font-style: normal;
}

.parallax-attr {
  color: rgba(245,245,247,0.65);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* iOS / mobile: fixed backgrounds cause jank and bugs — fall back to static */
@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  .parallax-band {
    background-attachment: scroll;
    min-height: 55vh;
    padding: 4.5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-band { background-attachment: scroll; }
}

/* ------- Tiny utilities ------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.muted { color: var(--text-muted); }
