/* ==========================================================================
   Pacific Signatures - Mobile Notary Services
   Design System & Stylesheet
   ========================================================================== */

/* -------- Design Tokens -------- */
:root {
  /* Color palette: oceanic navy + warm cream + brass */
  --ink:       #0F2030;
  --pacific:   #1B3A5C;
  --pacific-2: #244A75;
  --brass:     #A8845C;
  --brass-2:   #C29A6B;
  --cream:     #F8F2E6;
  --sand:      #EFE7D6;
  --paper:     #FBFAF6;
  --char:      #2A3140;
  --mist:      #B8C0CC;
  --line:      #DDD3C1;
  --rose:      #C5614F; /* sparing — for urgency */

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (8pt base) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* Layout */
  --max-w: 1240px;
  --max-w-prose: 720px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--char);
  background: var(--paper);
  font-feature-settings: 'kern', 'liga', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--pacific); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--brass); }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 300;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 500;
}

h4 {
  font-size: 1.15rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brass);
  font-size: 0.85rem;
}

p { max-width: 65ch; }
p + p { margin-top: var(--s-2); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
  margin-bottom: var(--s-2);
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--char);
  max-width: 36ch;
}

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

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}

section { padding: var(--s-7) 0; }
@media (max-width: 720px) { section { padding: var(--s-6) 0; } }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--pacific);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 32, 48, 0.18);
}

.btn-brass {
  background: var(--brass);
  color: var(--paper);
}
.btn-brass:hover {
  background: var(--brass-2);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-ghost {
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-ghost:hover {
  color: var(--brass);
  border-color: var(--brass);
}

.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* -------- Header / Navigation -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-2) var(--s-3);
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.brand-suffix {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: var(--s-4);
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--char);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.nav-phone {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-phone:hover { color: var(--brass); }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { padding: 0.7rem 1.1rem; font-size: 0.85rem; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: var(--s-7) 0 var(--s-6);
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(168, 132, 92, 0.08), transparent 70%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-image:
    radial-gradient(circle at 1px 1px, var(--line) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.4;
  mask-image: linear-gradient(to left, black 30%, transparent 70%);
  -webkit-mask-image: linear-gradient(to left, black 30%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1;
  font-weight: 300;
  margin-bottom: var(--s-3);
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--char);
  max-width: 48ch;
  margin-bottom: var(--s-4);
}

.hero-actions {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: var(--s-4);
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-trust-item .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2px;
}

/* Hero card (right side) */
.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  box-shadow: 0 30px 60px -30px rgba(15, 32, 48, 0.18);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px; bottom: -1px; left: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brass) 0%, transparent 30%);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.hero-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: var(--s-3);
}

.quick-list {
  list-style: none;
}
.quick-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--s-2) 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.quick-list li:last-child { border-bottom: none; }
.quick-list .item { color: var(--char); }
.quick-list .price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
}

/* -------- Section heading -------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-5);
}
.section-head.left { text-align: left; margin: 0 0 var(--s-5); }

.section-head h2 { margin-bottom: var(--s-2); }
.section-head .lead { margin: var(--s-2) auto 0; }
.section-head.left .lead { margin-left: 0; }

/* Decorative divider */
.flourish {
  width: 60px;
  height: 12px;
  margin: 0 auto var(--s-3);
  display: block;
}
.section-head.left .flourish { margin-left: 0; }

/* -------- Service grid -------- */
.services {
  background: var(--cream);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-3);
}

.service-card {
  background: var(--paper);
  padding: var(--s-4);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--char);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
  box-shadow: 0 20px 40px -20px rgba(15, 32, 48, 0.15);
  color: var(--char);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--brass);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-2);
  font-style: italic;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--s-2);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--char);
  flex-grow: 1;
  margin-bottom: var(--s-3);
}

.service-card .arrow {
  font-family: var(--font-display);
  color: var(--brass);
  font-size: 0.95rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
.service-card .arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.service-card:hover .arrow::after { transform: translateX(4px); }

/* -------- How it works -------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-4);
}

.step {
  position: relative;
  padding-top: var(--s-4);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--brass);
  line-height: 0.8;
  font-style: italic;
  margin-bottom: var(--s-2);
  display: block;
}
.step h3 {
  font-size: 1.3rem;
  margin-bottom: var(--s-1);
}
.step p {
  font-size: 0.95rem;
  color: var(--char);
}

/* -------- Coverage map / locations -------- */
.coverage {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(168, 132, 92, 0.12), transparent 60%);
}
.coverage h2 { color: var(--cream); position: relative; }
.coverage .lead { color: var(--sand); position: relative; }
.coverage .eyebrow { color: var(--brass-2); }

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--s-4);
  position: relative;
}

.location-pill {
  padding: 0.6rem 1.1rem;
  background: rgba(248, 242, 230, 0.06);
  border: 1px solid rgba(168, 132, 92, 0.3);
  border-radius: 50px;
  color: var(--cream);
  font-size: 0.92rem;
  transition: all 0.25s var(--ease);
}
.location-pill:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
  transform: translateY(-2px);
}

/* -------- Testimonials -------- */
.testimonials {
  background: var(--cream);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-4);
}

.testimonial {
  padding: var(--s-4);
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -8px; left: var(--s-3);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.7;
  font-style: italic;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin-top: var(--s-3);
  margin-bottom: var(--s-3);
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--brass);
  text-transform: uppercase;
  font-weight: 500;
}
.testimonial cite span {
  display: block;
  color: var(--char);
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
  opacity: 0.75;
}

/* -------- FAQ -------- */
.faq-list {
  max-width: 760px;
  margin: var(--s-4) auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: var(--s-3) 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: var(--s-2);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--brass);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: var(--s-2);
  color: var(--char);
}

/* -------- CTA band -------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-6) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(168, 132, 92, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(36, 74, 117, 0.4), transparent 50%);
}
.cta-band > .container { position: relative; }
.cta-band h2 { color: var(--cream); margin-bottom: var(--s-2); }
.cta-band p { color: var(--sand); margin: 0 auto var(--s-4); font-size: 1.1rem; }
.cta-band .actions {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn-primary {
  background: var(--brass);
  color: var(--ink);
}
.cta-band .btn-primary:hover {
  background: var(--cream);
  color: var(--ink);
}
.cta-band .btn-outline {
  border-color: var(--cream);
  color: var(--cream);
}
.cta-band .btn-outline:hover {
  background: var(--cream);
  color: var(--ink);
}

/* -------- Footer -------- */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: var(--s-6) 0 var(--s-3);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer .brand { margin-bottom: var(--s-2); }
.footer-tag {
  color: var(--char);
  max-width: 32ch;
  font-size: 0.92rem;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer a { color: var(--char); }
.footer a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-size: 0.82rem;
  color: var(--char);
  opacity: 0.8;
}
.footer-bottom .legal {
  font-size: 0.78rem;
  font-style: italic;
  font-family: var(--font-display);
}

/* -------- Page-specific (services / locations) -------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-5);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: var(--s-3);
}

.breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--brass);
  margin-bottom: var(--s-3);
  font-family: var(--font-body);
  text-transform: uppercase;
}
.breadcrumb a { color: var(--brass); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

.content-prose {
  max-width: var(--max-w-prose);
  margin: 0 auto;
}
.content-prose h2 { margin: var(--s-5) 0 var(--s-2); }
.content-prose h3 { margin: var(--s-4) 0 var(--s-2); }
.content-prose ul, .content-prose ol {
  padding-left: var(--s-3);
  margin: var(--s-2) 0;
}
.content-prose li { margin-bottom: var(--s-1); }

/* Two-column page layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s-5);
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.sidecar {
  background: var(--cream);
  padding: var(--s-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: sticky;
  top: 90px;
  align-self: start;
}
.sidecar h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-bottom: var(--s-3);
  font-weight: 600;
}
.sidecar dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem var(--s-2);
  margin-bottom: var(--s-3);
}
.sidecar dt {
  font-size: 0.85rem;
  color: var(--char);
  opacity: 0.75;
}
.sidecar dd {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

/* -------- Pricing table -------- */
.price-table {
  margin-top: var(--s-4);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-3);
  align-items: baseline;
  padding: var(--s-2) var(--s-3);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--cream); }
.price-row .label { font-size: 0.95rem; }
.price-row .label small {
  display: block;
  color: var(--char);
  opacity: 0.7;
  margin-top: 2px;
  font-size: 0.82rem;
}
.price-row .amt {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.price-section {
  margin-bottom: var(--s-5);
}
.price-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: var(--s-2);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--line);
}

/* -------- Utility -------- */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mb-3 { margin-bottom: var(--s-3); }

.hidden { display: none; }

/* -------- Reveal animation on scroll -------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* -------- Print -------- */
@media print {
  .site-header, .footer, .cta-band { display: none; }
  body { color: black; background: white; }
}

/* -------- Accessibility / focus -------- */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
