/* ==========================================================================
   Pacific Paralegal Group — global styles
   Mobile-first. Depends on styles/tokens.css being loaded first.

   Contents:
     1. Base & reset          6. Buttons              11. Contact form
     2. Accessibility         7. Home: hero & bands   12. Footer
     3. Layout primitives     8. Cards & grids        13. Page content blocks
     4. Section headings      9. UPL & CTA bands      14. Blog / prose
     5. Header & navigation  10. Motifs & dividers    15. Utilities & queries
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Base & reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--charcoal);
  background-color: var(--cream);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--navy);
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

p,
ul,
ol {
  margin: 0 0 var(--sp-4);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

a {
  color: var(--brass-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

strong {
  color: var(--navy);
}

::selection {
  background: var(--brass);
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   2. Accessibility
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100%;
  z-index: 100;
  padding: var(--sp-2) var(--sp-4);
  background: var(--navy);
  color: var(--cream);
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  color: var(--cream);
}

:focus-visible {
  outline: 2px solid var(--brass-ink);
  outline-offset: 2px;
  border-radius: 2px;
}

.band--navy :focus-visible,
.site-footer :focus-visible,
.cta-panel :focus-visible {
  outline-color: var(--cream);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.section {
  padding-block: var(--section-pad);
}

.band--white { background: var(--white); }
.band--cream { background: var(--cream); }

.band--navy {
  background: var(--navy);
  color: var(--cream);
}

.band--navy h1,
.band--navy h2,
.band--navy h3 {
  color: var(--cream);
}

.band--navy a {
  color: var(--cream);
}

.band--navy a:hover {
  color: var(--brass);
}

.measure {
  max-width: var(--measure);
}

/* --------------------------------------------------------------------------
   4. Section headings
   -------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-bottom: var(--sp-3);
}

.band--navy .eyebrow,
.cta-panel .eyebrow {
  color: var(--brass);
}

.section-head {
  margin-bottom: var(--sp-6);
}

.section-head::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--brass);
  margin-bottom: var(--sp-4);
}

.section-head--center {
  text-align: center;
}

.section-head--center::before {
  margin-inline: auto;
}

.section-head .lede {
  max-width: var(--measure);
}

.section-head--center .lede {
  margin-inline: auto;
}

.lede {
  font-size: var(--text-lede);
}

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 4.25rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
}

.wordmark__mark {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--brass);
}

.wordmark__text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.wordmark:hover {
  color: var(--navy);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile: menu hidden until toggled */
.nav-menu {
  display: none;
}

body.nav-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  padding: var(--sp-3) var(--side-pad) var(--sp-5);
}

.nav-menu a {
  display: block;
  padding: var(--sp-3) 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
  color: var(--brass-ink);
}

.nav-menu a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--brass);
}

.nav-menu__cta {
  margin-top: var(--sp-3);
}

.nav-menu__cta a.btn {
  display: inline-block;
  border-bottom: none;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu,
  body.nav-open .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    align-items: center;
    gap: var(--sp-5);
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav-menu a {
    padding: var(--sp-2) 0;
    font-size: 0.95rem;
  }

  .nav-menu__cta {
    margin-top: 0;
    margin-left: var(--sp-2);
  }
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: var(--brass);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--navy);
  color: var(--cream);
}

.band--navy .btn--primary:hover,
.cta-panel .btn--primary:hover {
  background: var(--cream);
  color: var(--navy);
}

.btn--secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
}

/* --------------------------------------------------------------------------
   7. Home: hero & bands
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.hero__contours {
  position: absolute;
  top: 50%;
  right: -12rem;
  width: 42rem;
  max-width: none;
  transform: translateY(-50%);
  color: var(--navy);
  opacity: 0.07;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 44rem;
}

.hero h1 {
  margin-bottom: var(--sp-4);
}

.hero .lede {
  font-size: clamp(1.15rem, 0.5vw + 1rem, 1.3rem);
  max-width: 38rem;
  margin-bottom: var(--sp-6);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  list-style: none;
  margin: var(--sp-6) 0 0;
  padding: 0;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--navy);
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.trust-row svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--brass-ink);
}

/* --------------------------------------------------------------------------
   8. Cards & grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--sp-5);
}

/* --3-wide steps 1 -> 2 -> 3 columns, so it reads cleanly whether it holds
   three cards, six, or an awkward count in between. */
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3-wide { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--3-wide { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-1);
}

.band--white .card {
  background: var(--cream);
}

.card h3 {
  margin-bottom: var(--sp-2);
}

.card > p {
  font-size: 0.98rem;
}

a.card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

a.card--link:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
  color: inherit;
}

.card__more {
  display: inline-block;
  margin-top: var(--sp-3);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--brass-ink);
}

a.card--link:hover .card__more {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brass-tint);
  color: var(--brass-ink);
  margin-bottom: var(--sp-4);
}

.icon-tile svg {
  width: 24px;
  height: 24px;
}

/* --------------------------------------------------------------------------
   9. UPL & CTA bands
   -------------------------------------------------------------------------- */
.upl-band {
  border-top: 2px solid var(--brass);
  text-align: center;
}

.upl-band .container {
  max-width: 50rem;
}

.upl-band__text {
  font-size: var(--text-lede);
  line-height: 1.7;
}

.upl-band__text strong {
  color: var(--white);
}

.band--navy strong {
  color: var(--white);
}

.cta-panel {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.cta-panel h2 {
  color: var(--cream);
}

.cta-panel p {
  max-width: 34rem;
  margin-inline: auto;
}

.cta-panel .btn-row {
  justify-content: center;
  margin-top: var(--sp-5);
}

.cta-panel a {
  color: var(--cream);
}

.cta-panel a.btn--primary {
  color: var(--navy);
}

.cta-panel a.btn--primary:hover {
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   10. Motifs & dividers
   -------------------------------------------------------------------------- */
.wave-divider {
  display: block;
  width: 100%;
  height: 36px;
  color: var(--navy);
}

@media (min-width: 700px) {
  .wave-divider {
    height: 48px;
  }
}

/* --------------------------------------------------------------------------
   11. Contact form
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  gap: var(--sp-7);
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    align-items: start;
  }
}

.note {
  font-size: var(--text-small);
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-5);
}


/* Contact page: email and phone as the two ways in. */
.contact-method h2 {
  font-size: var(--text-h3);
  margin-bottom: var(--sp-2);
}

.contact-method__value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brass-ink);
  overflow-wrap: anywhere;
  margin-bottom: var(--sp-2);
}

.contact-method__hint {
  font-size: var(--text-small);
  color: var(--charcoal);
}

.check-list {
  list-style: none;
  margin: 0 0 var(--sp-5);
  padding: 0;
}

.check-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  margin-bottom: var(--sp-3);
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 0.2rem;
  color: var(--brass-ink);
}
.contact-aside .card {
  margin-bottom: var(--sp-5);
}

.contact-aside h2 {
  font-size: var(--text-h3);
}

.contact-aside .card p {
  font-size: 1rem;
}

/* Email and phone are touch targets on mobile: pad them to clear the
   24px WCAG 2.2 AA minimum without disturbing the text rhythm. */
.contact-aside .card a[href^="tel:"],
.contact-aside .card a[href^="mailto:"] {
  display: inline-block;
  padding-block: 2px;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding-block: var(--sp-8) var(--sp-6);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--cream);
}

.site-footer a:hover {
  color: var(--brass);
}

.site-footer__grid {
  display: grid;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
}

@media (min-width: 700px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--sp-7);
  }
}

.site-footer .wordmark {
  color: var(--cream);
  margin-bottom: var(--sp-3);
}

.site-footer__tagline {
  color: var(--brass);
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: var(--sp-4);
}

.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact li {
  margin-bottom: var(--sp-2);
}

/* Same 24px touch-target floor for the footer's email and phone links. */
.site-footer__contact a {
  display: inline-block;
  padding-block: 2px;
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-2) var(--sp-5);
}

.site-footer__nav a {
  text-decoration: none;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

.site-footer__disclaimer {
  border-top: 1px solid var(--cream-line);
  padding-top: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.site-footer__disclaimer p {
  font-size: var(--text-small);
  line-height: 1.7;
  opacity: 0.85;
  max-width: 60rem;
}

.site-footer__legal {
  font-size: var(--text-small);
  opacity: 0.7;
  margin: 0;
}

/* --------------------------------------------------------------------------
   13. Page content blocks
   -------------------------------------------------------------------------- */
/* Inner-page intro (all pages except home) */
.page-hero {
  padding-block: clamp(3rem, 7vw, 4.5rem);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: var(--sp-3);
}

.page-hero .lede {
  max-width: var(--measure);
}

/* Numbered steps (How engagements work) */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-5);
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-1);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: var(--sp-3);
}

.steps h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-2);
}

.steps p {
  font-size: 0.98rem;
}

/* Service list (Services page) */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-4);
}

@media (min-width: 700px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4) var(--sp-6);
  }
}

.service-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
}

.service-list svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 0.2rem;
  color: var(--brass-ink);
}

.service-list strong {
  display: block;
}

.service-list span {
  font-size: 0.95rem;
}

/* Tools & databases — supporting detail below the core-services list.
   Grouped by function so an attorney can find one system at a glance
   instead of reading a fifteen-item run-on. */
.tools {
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

.tools h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-5);
}

.tool-groups {
  display: grid;
  gap: var(--sp-5);
  margin: 0;
}

@media (min-width: 700px) {
  .tool-groups {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5) var(--sp-6);
  }
}

@media (min-width: 1024px) {
  .tool-groups {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tool-group dt {
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-bottom: var(--sp-2);
}

.tool-group dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Practice-area detail sections (Services page) */
.practice-area {
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 6rem;
}

.practice-area:last-of-type {
  border-bottom: none;
}

.practice-area h3 {
  margin-bottom: var(--sp-2);
}

.practice-area p {
  max-width: var(--measure);
}

/* Candor / pull-quote panel */
.panel-quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius);
  padding: var(--sp-6);
  max-width: 52rem;
}

.panel-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy);
}

/* Bio cards (About page) */
.bio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-1);
}

/* Team headshots — all cropped to the same frame, kept small so the
   accomplishments stay the focus of the card. */
.bio-card__photo {
  display: block;
  width: 140px;
  height: 175px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: var(--sp-4);
}

.bio-card h3 {
  margin-bottom: var(--sp-1);
}

.bio-card__role {
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-bottom: var(--sp-4);
}

.bio-card__position {
  font-weight: 600;
  color: var(--navy);
}

.bio-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.bio-card li {
  margin-bottom: var(--sp-3);
  font-size: 0.98rem;
}

.bio-card li:last-child {
  margin-bottom: 0;
}

.placeholder {
  color: #6B6E76;
  font-style: italic;
}

.supervision-note {
  text-align: center;
  font-style: italic;
  color: var(--charcoal);
  max-width: 44rem;
  margin-inline: auto;
}

/* Quote cards (Testimonials page) */
.quote-card blockquote {
  margin: 0;
}

.quote-card blockquote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--navy);
}

.quote-card blockquote p:first-of-type::before {
  content: "\201C";
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--brass);
  margin-bottom: var(--sp-2);
}

.quote-card blockquote p:last-of-type::after {
  content: "\201D";
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--brass);
  margin-top: var(--sp-2);
  text-align: right;
}

.quote-card__attribution {
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}

.quote-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}

.quote-card__firm {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brass-ink);
  margin: var(--sp-1) 0 0;
}

/* A long-form endorsement reads as one wide card, not a grid cell. */
.quote-card--feature {
  max-width: 52rem;
  margin-inline: auto;
}

.quote-card blockquote p + p {
  margin-top: var(--sp-4);
}

/* Relationship disclosure beneath an endorsement — quiet, but not hidden. */
.disclosure {
  margin: var(--sp-3) 0 0;
  font-size: var(--text-small);
  line-height: 1.6;
  color: var(--charcoal);
  border-left: 2px solid var(--border);
  padding-left: var(--sp-4);
}

/* Empty states (Testimonials / Work Samples / Blog before content) */
.empty-state {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}


/* Court and length line under a work-sample card */
.sample-meta {
  font-size: var(--text-small);
  color: #6B6E76;
}
.empty-state svg {
  width: 40px;
  height: 40px;
  color: var(--brass);
  margin-bottom: var(--sp-4);
}

.empty-state h2 {
  font-size: var(--text-h3);
}

.empty-state p {
  max-width: 34rem;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   14. Blog / prose
   -------------------------------------------------------------------------- */
.post-list {
  display: grid;
  gap: var(--sp-5);
  max-width: 52rem;
}

.post-card time {
  display: block;
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-bottom: var(--sp-2);
}

.post-card h2 {
  font-size: 1.45rem;
  margin-bottom: var(--sp-2);
}

.post-card h2 a {
  color: var(--navy);
  text-decoration: none;
}

.post-card h2 a:hover {
  color: var(--brass-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.prose {
  max-width: var(--measure);
}

.prose > * + * {
  margin-top: var(--sp-4);
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: var(--sp-6);
  margin-bottom: 0;
}

.prose ul {
  padding-left: 1.3rem;
}

.prose li {
  margin-bottom: var(--sp-2);
}

.post-header {
  padding-block: clamp(3rem, 7vw, 4.5rem) 0;
}

.post-header time {
  display: block;
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-bottom: var(--sp-3);
}

.post-header h1 {
  max-width: 24ch;
}

.back-link {
  display: inline-block;
  font-size: var(--text-small);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}

/* --------------------------------------------------------------------------
   15. Utilities & queries
   -------------------------------------------------------------------------- */
.center {
  text-align: center;
}

.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  a.card--link:hover {
    transform: none;
  }
}
