/* ============================================================
   FPM — Frank Palmieri Media
   "Ink & Bone" — Exaggerated Minimalism, pure monochrome
   Ink #0B0B0C · Bone #F4F1EA
   Archivo Black / Inter / JetBrains Mono
   ============================================================ */

:root {
  --ink: #0B0B0C;
  --ink-2: #141416;
  --ink-3: #1D1D20;
  --bone: #F4F1EA;
  --bone-2: #EAE6DC;
  --muted-ink: #4B5563;   /* muted text on bone */
  --muted-bone: #A6A49E;  /* muted text on ink */
  --line-ink: rgba(11, 11, 12, 0.14);
  --line-bone: rgba(244, 241, 234, 0.14);
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;
  --nav-h: 72px;
  --container: 74rem;
  /* z-scale */
  --z-nav: 50;
  --z-menu: 40;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--bone); color: var(--ink); }
.section--bone ::selection { background: var(--ink); color: var(--bone); }

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Type ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--bone);
  flex: none;
}

.section--bone .eyebrow { color: var(--ink); }
.section--bone .eyebrow::before { background: var(--ink); }

/* Accent words: hollow outline type (solid fallback) */
.accent { color: var(--bone); }
.section--bone .accent { color: var(--ink); }
@supports (-webkit-text-stroke: 2px black) {
  .accent { color: transparent; -webkit-text-stroke: 2.5px var(--bone); }
  .section--bone .accent { color: transparent; -webkit-text-stroke: 2.5px var(--ink); }
}

/* ---------- Sections ---------- */

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section--ink { background: var(--ink); color: var(--bone); }
.section--bone { background: var(--bone); color: var(--ink); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 1.1rem 0 1rem;
}
.section-head p { color: var(--muted-ink); font-size: 1.06rem; }
.section--ink .section-head p { color: var(--muted-bone); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* Primary: bone-on-ink sections get a bone block; bone contexts get an ink block */
.btn--primary {
  background: var(--bone);
  color: var(--ink);
}
.btn--primary:hover { background: #ffffff; box-shadow: 0 8px 28px rgba(244, 241, 234, 0.22); }
.btn--primary:focus-visible { outline: 3px solid var(--bone); outline-offset: 3px; }

.form-card .btn--primary,
.section--bone .btn--primary {
  background: var(--ink);
  color: var(--bone);
}
.form-card .btn--primary:hover,
.section--bone .btn--primary:hover { background: #000; box-shadow: 0 8px 28px rgba(11, 11, 12, 0.32); }
.form-card .btn--primary:focus-visible,
.section--bone .btn--primary:focus-visible { outline-color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244, 241, 234, 0.3);
}
.btn--ghost:hover { border-color: var(--bone); }
.btn--ghost:focus-visible { outline: 3px solid var(--bone); outline-offset: 3px; }

.btn--lg { min-height: 56px; padding: 1rem 2.4rem; font-size: 0.95rem; }
.btn[disabled] { opacity: 0.65; cursor: wait; }

a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 3px solid var(--bone);
  outline-offset: 3px;
}
.section--bone a:focus-visible, .section--bone summary:focus-visible,
.form-card a:focus-visible, .form-card button:focus-visible {
  outline-color: var(--ink);
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-bone);
  z-index: var(--z-nav);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  text-decoration: none;
}
.brand img { height: 26px; width: auto; }
.brand-full {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
  padding-bottom: 2px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { color: #fff; border-bottom-color: var(--bone); }

.nav-cta { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--bone);
  transition: color 0.2s ease;
}
.nav-phone:hover { color: #fff; }
.nav-phone svg { color: var(--bone); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-bone);
  color: var(--bone);
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--ink);
  border-bottom: 1px solid var(--line-bone);
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  z-index: var(--z-menu);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: grid; gap: 0.25rem; }
.mobile-menu a:not(.btn) {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  border-bottom: 1px solid var(--line-bone);
}
.mobile-menu .btn { width: 100%; margin-top: 1.25rem; }

/* ---------- Hero ---------- */

.hero {
  padding: calc(var(--nav-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(4rem, 8vw, 6.5rem);
  position: relative;
  overflow: hidden;
}

.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 78%, transparent 100%);
}

.hero-dots canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid rgba(244, 241, 234, 0.45);
  background: rgba(244, 241, 234, 0.07);
  padding: 0.5rem 0.9rem;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bone);
  position: relative;
  flex: none;
}
.badge-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--bone);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero h1 {
  font-size: clamp(2.9rem, 8vw, 6.25rem);
  margin: 1.25rem 0 1.5rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted-bone);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}
.hero-sub strong { color: var(--bone); font-weight: 600; }

.benefits { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 2.5rem; }
.benefits li { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon {
  flex: none;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
  border: 1px solid var(--line-bone);
  color: var(--bone);
}
.benefits h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; }
.benefits p { color: var(--muted-bone); font-size: 0.95rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line-bone);
  padding-top: 1.75rem;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--bone);
  line-height: 1;
}
.stat .stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-bone);
  margin-top: 0.4rem;
}

/* ---------- Form card ---------- */

.form-card {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 6px solid var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.form-card h2 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.form-card > p { color: var(--muted-ink); font-size: 0.92rem; margin: 0.6rem 0 1.5rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-ink);
  padding: 0.8rem 0.9rem;
  min-height: 48px;
  width: 100%;
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 11, 12, 0.16);
}
.field input::placeholder, .field textarea::placeholder { color: #9CA3AF; }

.form-card .btn { width: 100%; margin-top: 1.25rem; }
.form-note {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted-ink);
  text-align: center;
  margin-top: 0.9rem;
}

.form-success { text-align: center; padding: 2.5rem 0.5rem; }
.form-success svg { color: var(--ink); margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted-ink); font-size: 0.95rem; }

/* ---------- Marquee ---------- */

.marquee {
  background: var(--bone);
  color: var(--ink);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line-bone);
  border-bottom: 1px solid var(--line-ink);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.marquee span::after { content: "✦"; font-size: 0.85rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service {
  background: #fff;
  border: 1px solid var(--line-ink);
  border-top: 4px solid var(--ink);
  padding: 2rem 1.75rem 1.9rem;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.service h3, .service p, .service-num, .service-icon { transition: color 0.25s ease; }
.service:hover {
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(11, 11, 12, 0.22);
  transform: translateY(-4px);
}
.service:hover h3 { color: var(--bone); }
.service:hover p { color: var(--muted-bone); }
.service:hover .service-num, .service:hover .service-icon { color: var(--bone); }
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
}
.service-icon { color: var(--ink); }
.service h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}
.service p { color: var(--muted-ink); font-size: 0.95rem; }

/* ---------- Work ---------- */

.work-row {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line-bone);
}
.work-row:last-child { border-bottom: 1px solid var(--line-bone); }
.work-row--flip .work-shot { order: 2; }

.work-shot {
  display: block;
  border: 1px solid var(--line-bone);
  outline: 0 solid rgba(244, 241, 234, 0);
  transition: outline 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.work-shot img { width: 100%; height: auto; }
.work-shot:hover {
  outline: 3px solid var(--bone);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}

.work-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-bone);
  margin-bottom: 0.9rem;
}
.work-info h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 0.8rem;
}
.work-info p { color: var(--muted-bone); font-size: 0.98rem; margin-bottom: 1.4rem; max-width: 26rem; }

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  border-bottom: 2px solid var(--bone);
  padding-bottom: 0.3rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.work-link:hover { color: #fff; border-bottom-color: #fff; }
.work-link svg { transition: transform 0.2s ease; }
.work-link:hover svg { transform: translate(2px, -2px); }

/* ---------- FAQ ---------- */

.faq-list { max-width: 52rem; }
.faq-item {
  border-bottom: 1px solid var(--line-ink);
  background: transparent;
}
.faq-item summary {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-size: 1.08rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.faq-item summary:hover { color: var(--muted-ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  flex: none;
}
.faq-plus {
  margin-left: auto;
  flex: none;
  color: var(--ink);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-body {
  padding: 0 0 1.6rem calc(0.75rem + 1.25rem + 0.9rem);
  color: var(--muted-ink);
  max-width: 44rem;
}

/* ---------- Final CTA ---------- */

.cta-final { text-align: center; padding: clamp(5rem, 12vw, 9rem) 0; }
.cta-final h2 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  max-width: 60rem;
  margin: 1.25rem auto 1.5rem;
}
.cta-final .cta-sub {
  color: var(--muted-bone);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.cta-final .eyebrow { justify-content: center; }
.cta-final .eyebrow::before { display: none; }
.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  margin-top: 2.25rem;
}
.cta-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted-bone);
  transition: color 0.2s ease;
}
.cta-contacts a:hover { color: #fff; }
.cta-contacts svg { color: var(--bone); }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line-bone);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: flex-end; gap: 1rem; }
.footer-brand img { height: 34px; width: auto; }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted-bone);
}

/* ---------- Reveal animations ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .badge-dot::after { animation: none; opacity: 0; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Global reach globe ---------- */

.globe-section { border-top: 1px solid var(--line-bone); }

.globe-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.globe-copy h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 1.1rem 0 1rem;
}

.globe-copy > p:not(.eyebrow) {
  color: var(--muted-bone);
  font-size: 1.06rem;
  max-width: 46ch;
}

.globe-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.globe-canvas {
  display: block;
  max-width: 100%;
  cursor: grab;
}

.globe-canvas:active { cursor: grabbing; }

.globe-hint {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-bone);
  margin-top: 0.75rem;
}

@media (hover: none) {
  .globe-hint { display: none; }
}

@media (max-width: 1024px) {
  .globe-grid { grid-template-columns: minmax(0, 1fr); }
  .globe-stage { max-width: 34rem; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-phone .nav-phone-num { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .form-card { max-width: 34rem; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .work-row { grid-template-columns: 1fr; align-items: start; }
  .work-row--flip .work-shot { order: 0; }
  .nav-cta .btn { padding: 0.7rem 1rem; font-size: 0.75rem; }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .brand-full { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .faq-body { padding-left: 0; }
}

/* ---------- Meet the Owner ---------- */

.owner-section { position: relative; overflow: hidden; }
.owner-section > .container { position: relative; z-index: 1; }

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.owner-photo {
  max-width: 26rem;
  border: 1px solid var(--line-ink);
  border-top: 4px solid var(--ink);
  background: var(--ink);            /* frame color while image decodes */
}
.owner-photo img {
  width: 100%;
  height: auto;
}

.owner-copy h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 1.1rem 0 1rem;
}
.owner-copy > p:not(.eyebrow) {
  color: var(--ink);
  font-size: 1.06rem;
  max-width: 46ch;
}

/* Background paths field */
.owner-paths {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  color: var(--ink);                /* currentColor for strokes */
  z-index: 0;
}
.owner-paths svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.owner-paths .owner-path--anim {
  stroke-dasharray: 1 1;            /* dash + gap each = full path (pathLength=1) */
  animation: owner-flow var(--dur, 24s) linear var(--delay, 0s) infinite;
}
.owner-paths.is-paused .owner-path--anim { animation-play-state: paused; }

@keyframes owner-flow {
  0%   { stroke-dashoffset: 0;  opacity: 0.3; }
  50%  { stroke-dashoffset: -1; opacity: 0.6; }
  100% { stroke-dashoffset: 0;  opacity: 0.3; }
}

@media (max-width: 900px) {
  .owner-grid { grid-template-columns: minmax(0, 1fr); }
  .owner-photo { max-width: 22rem; margin: 0 auto; }
}
