/* ==========================================================================
   Laurence Paquette — shared stylesheet
   Plain CSS. Mobile-first. No frameworks.
   ========================================================================== */

/* ------------------------------ Tokens ---------------------------------- */
:root {
  --bg: #FAFAF8;
  --text: #111111;
  --accent: #1A1A1A;
  --muted: #666666;
  --border: #E0E0E0;
  --hover-bg: #F5F5F3;
  --ink: #111111;

  --font-head: "Libre Baskerville", Georgia, serif;
  --font-body: "Montserrat", Helvetica, Arial, sans-serif;

  --max: 1180px;
  --pad: 24px;

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

/* ------------------------------ Accessibility --------------------------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

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

main:focus {
  outline: none;
}

/* ------------------------------ Typography ------------------------------ */
h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.55em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.2em;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.eyebrow.no-rule::before {
  display: none;
}

.label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-text {
  font-size: 1.08rem;
}

/* ------------------------------ Layout ---------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.container-wide {
  max-width: 1320px;
}

section {
  padding-top: 52px;
  padding-bottom: 52px;
}

@media (min-width: 768px) {
  section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

.section-narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* ------------------------------ Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid var(--text);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--text);
  color: #fff;
}

.btn-primary:hover {
  background: #000;
}

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

.btn-secondary:hover {
  background: var(--text);
  color: #fff;
}

/* Buttons on dark backgrounds */
.btn-on-dark.btn-primary {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

.btn-on-dark.btn-primary:hover {
  background: #ececec;
}

.btn-on-dark.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-on-dark.btn-secondary:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Text links with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: gap 0.25s var(--ease), opacity 0.25s var(--ease);
}

.text-link:hover {
  gap: 12px;
  opacity: 0.65;
}

.text-link.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
}

/* ------------------------------ Navigation ------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav.nav-solid {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  z-index: 210;
  text-decoration: none;
}

.nav-logo img {
  height: 34px;
  width: auto;
  transition: filter 0.3s var(--ease);
}

.nav-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

/* White logo + name over a dark hero (until scrolled or menu open) */
.nav-over-hero:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-over-hero:not(.scrolled) .nav-name {
  color: #fff;
}

body.nav-open .nav-logo img {
  filter: none;
}

body.nav-open .nav-name {
  color: var(--text);
}

.nav-links,
.nav-social {
  display: none;
}

/* Hamburger toggle — shown by default (mobile), hidden on desktop below */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease),
    background 0.3s var(--ease);
}

.nav-over-hero:not(.scrolled) .nav-toggle span {
  background: #fff;
}

body.nav-open .nav-toggle span {
  background: var(--text);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop navigation */
@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  /* Three zones: logo+name (left) · menu (centre) · socials (right) */
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .nav-logo {
    justify-self: start;
  }

  .nav-social {
    justify-self: end;
  }

  .nav-links {
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    position: relative;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: var(--text);
    padding-bottom: 4px;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-social {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav-social a {
    color: var(--text);
    display: inline-flex;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }

  .nav-social a:hover {
    opacity: 0.55;
    transform: translateY(-2px);
  }

  .nav-social svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .nav-over-hero:not(.scrolled) .nav-links a,
  .nav-over-hero:not(.scrolled) .nav-social a {
    color: #fff;
  }
}

/* Full-screen mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
    visibility 0.35s var(--ease);
  padding: var(--pad);
}

body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-overlay a.overlay-link {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
  padding: 10px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

body.nav-open .nav-overlay a.overlay-link {
  opacity: 1;
  transform: none;
}

body.nav-open .nav-overlay a.overlay-link:nth-child(1) { transition-delay: 0.08s; }
body.nav-open .nav-overlay a.overlay-link:nth-child(2) { transition-delay: 0.14s; }
body.nav-open .nav-overlay a.overlay-link:nth-child(3) { transition-delay: 0.20s; }
body.nav-open .nav-overlay a.overlay-link:nth-child(4) { transition-delay: 0.26s; }
body.nav-open .nav-overlay a.overlay-link:nth-child(5) { transition-delay: 0.32s; }

.nav-overlay-social {
  display: flex;
  gap: 26px;
  margin-top: 32px;
}

.nav-overlay-social a {
  color: var(--text);
  display: inline-flex;
}

.nav-overlay-social svg {
  width: 24px;
  height: 24px;
}

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

/* ------------------------------ Hero ------------------------------------ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100svh;
  margin-top: -76px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Laurence sits in the left third of the hero photo — keep her in frame
     on narrow screens, then ease toward centre on wider viewports. */
  object-position: 28% 28%;
  z-index: -2;
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease) forwards;
}

@media (min-width: 768px) {
  .hero-img {
    object-position: 36% center;
  }
}

/* Per-page focal overrides */
.hero-img.focus-center {
  object-position: center 30%;
}

@media (min-width: 768px) {
  .hero-img.focus-center {
    object-position: center 28%;
  }
}

/* Landscape hero — subject sits on the right of the frame */
.hero-img.hero-2 {
  object-position: 64% 22%;
}

@media (min-width: 768px) {
  .hero-img.hero-2 {
    object-position: 58% 12%;
  }
}

/* PAQ Anyway studio hero (services + contact) */
.hero-img.hero-studio {
  object-position: center 42%;
}

/* About hero — subject sits centre-right, face in the upper third */
.hero-img.hero-about {
  object-position: 60% 26%;
}

/* Watch & Listen hero — microphone sits on the left */
.hero-img.hero-mic {
  object-position: 32% 38%;
}

@media (min-width: 768px) {
  .hero-img.hero-mic {
    object-position: center 42%;
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.4) 38%,
    rgba(0, 0, 0, 0.12) 68%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

/* Stronger scrim for bright hero images (keeps overlaid text legible) */
.hero-tint::after {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 35%,
      rgba(0, 0, 0, 0.3) 62%,
      rgba(0, 0, 0, 0.22) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.12) 46%,
      rgba(0, 0, 0, 0) 72%
    );
}

.hero-content {
  color: #fff;
  max-width: 640px;
  padding-bottom: 64px;
  padding-top: 100px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-lead + .hero-lead {
  margin-top: 14px;
}

.hero-lead a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero-content .eyebrow::before {
  background: rgba(255, 255, 255, 0.8);
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7.5vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
  .hero {
    height: 90vh;
    align-items: center;
  }

  .hero-content {
    padding-bottom: 0;
  }
}

/* Shorter hero (interior pages) */
.hero-short {
  height: 64svh;
  min-height: 460px;
}

@media (min-width: 768px) {
  .hero-short {
    height: clamp(500px, 52vw, 820px);
    align-items: flex-end;
  }

  .hero-short .hero-content {
    padding-bottom: 72px;
  }
}

/* Service jump menu */
.service-jump {
  padding: 22px 0;
}

.service-jump .container {
  max-width: none;
  padding-left: 16px;
  padding-right: 16px;
}

.service-jump ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.service-jump a {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.service-jump a:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* Offset jump targets so headings clear the sticky nav */
.service-detail {
  scroll-margin-top: 96px;
}

.hero-short .hero-content h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
}

/* Slimmer hero band (services) */
.hero-slim {
  height: 56svh;
  min-height: 380px;
}

@media (min-width: 768px) {
  .hero-slim {
    height: clamp(420px, 44vw, 760px);
  }
}

/* ------------------------------ Featured strip -------------------------- */
.featured {
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.featured-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.featured-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
}

.featured-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 30px;
}

.featured-names span {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: var(--text);
  opacity: 0.78;
}

@media (min-width: 768px) {
  .featured-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .featured-label {
    flex: 0 0 auto;
  }
}

/* ------------------------------ Generic blocks -------------------------- */
.lead {
  max-width: 780px;
}

.measure {
  max-width: 620px;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
  }
  .split.split-reverse {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .split.split-reverse > :first-child {
    order: 2;
  }
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Full-bleed photographic band */
.photo-band {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.photo-band img {
  display: block;
  width: 100%;
  height: clamp(260px, 48vh, 540px);
  object-fit: cover;
  object-position: center 35%;
}

/* Services section: rows + pinned image */
.services-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 920px) {
  .services-split {
    grid-template-columns: 56% 44%;
    gap: 60px;
    align-items: stretch;
  }

  .services-split-media {
    position: relative;
    min-height: 100%;
  }

  .services-split-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Legal / policy pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 44px;
  margin-bottom: 14px;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.75;
}

.legal ul {
  margin: 0 0 1.2em;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 8px;
}

.legal a {
  color: var(--ink);
}

/* 404 / error page */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-page {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  font-family: var(--font-head);
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 1;
  color: var(--border);
  margin: 0 0 0.1em;
}

.error-page h1 {
  margin-bottom: 0.4em;
}

.error-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.error-page .btn-row {
  justify-content: center;
}

.error-links {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
}

.error-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.error-links a:hover {
  color: var(--ink);
}

/* FAQ accordion */
.faq-section h2 {
  margin-bottom: 28px;
}

.faq {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--muted);
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 4px 24px;
}

.faq-answer p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Editorial service rows */
.service-rows {
  border-top: 1px solid var(--border);
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: background 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.service-row:hover {
  background: var(--hover-bg);
  padding-left: 16px;
}

.service-row .service-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-row:hover .service-name {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-row .service-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .service-row {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 6px;
  }

  .service-row .service-name {
    font-size: 1.45rem;
    flex: 0 0 auto;
  }

  .service-row .service-desc {
    text-align: right;
    flex: 1 1 auto;
  }
}

/* Book section */
.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.book-cover img {
  max-width: 300px;
  margin: 0 auto;
  transition: transform 0.4s var(--ease);
}

.book-cover a:hover img {
  transform: translateY(-4px);
}

.book-subtitle {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin: -0.3em 0 1.2em;
}

@media (min-width: 768px) {
  .book-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
  }
  .book-cover img {
    max-width: 100%;
    margin: 0;
  }
}

/* Newsletters — square cover tiles */
.newsletters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.newsletter {
  display: flex;
  flex-direction: column;
}

.newsletter-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease);
}

.newsletter > a:first-child {
  display: block;
  line-height: 0;
}

.newsletter:hover .newsletter-art {
  transform: translateY(-4px);
}

.newsletter h3 {
  margin-bottom: 0.35em;
}

.newsletter p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1 1 auto;
}

@media (min-width: 768px) {
  .newsletters {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* PAQ Anyway feature */
.paq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.paq-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  transition: transform 0.4s var(--ease);
}

.paq a:hover .paq-logo {
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .paq {
    grid-template-columns: 220px 1fr;
    gap: 64px;
    padding: 72px 0;
  }
  .paq-logo {
    width: 200px;
    height: 200px;
    margin: 0;
  }
}

/* Dark band (closing CTA) */
.band-dark {
  background: var(--ink);
  color: #fff;
}

.band-dark h2 {
  color: #fff;
}

.band-dark .lead,
.band-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-center {
  text-align: center;
}

.cta-center .btn-row {
  justify-content: center;
}

.cta-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------ About page ------------------------------ */
.highlights {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlights li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 56px;
    row-gap: 18px;
  }
  .highlights li {
    margin-bottom: 0;
  }
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 48px;
}

.testimonial {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 28px;
}

.testimonial blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
}

/* ------------------------------ Services page --------------------------- */
.services-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 768px) {
  .services-intro {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
  }
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 48px;
  border-top: 1px solid var(--border);
  padding-top: 44px;
  margin-top: 44px;
}

.service-detail:first-of-type {
  margin-top: 0;
}

.service-index {
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--border);
  font-weight: 700;
}

/* Clickable service titles */
.service-title-link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.3s var(--ease);
}

.service-title-link:hover {
  background-size: 100% 1px;
}

.service-detail ul {
  padding-left: 20px;
  margin: 0 0 22px;
}

.service-detail li {
  margin-bottom: 9px;
}

.service-detail .price {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 22px;
}

@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 80px 1fr;
  }
  .service-index {
    font-size: 3rem;
  }
}

/* ------------------------------ Watch & Listen -------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.video {
  margin: 0;
}

.video figcaption {
  font-family: var(--font-head);
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--text);
  margin-top: 14px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-row {
  display: flex;
  align-items: stretch;
  gap: 44px;
  margin-top: 26px;
}

.podcast-art {
  flex: 0 0 auto;
  display: block;
}

.podcast-art img {
  display: block;
  height: 100%;
  max-height: 260px;
  width: auto;
  object-fit: contain;
}

.podcast-info {
  flex: 1 1 auto;
  min-width: 0;
  align-self: center;
  max-width: 720px;
}

.podcast-info h3 {
  margin-top: 0;
}

@media (max-width: 640px) {
  .podcast-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .podcast-art img {
    height: auto;
    max-height: 150px;
  }
}

.podcast-embed {
  width: 100%;
  max-width: 760px;
}

.podcast-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 11px 24px;
  border: 1px solid var(--text);
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.pill:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
}

.social-embed {
  width: 100%;
  margin: 6px 0 26px;
}

.social-embed behold-widget {
  display: block;
  width: 100%;
}

/* Centred single-card embeds (e.g. TikTok creator widget) */
.social-embed--center {
  display: flex;
  justify-content: center;
}

.social-embed--center .tiktok-embed {
  width: 100%;
}

.ig-placeholder {
  border: 1px solid var(--border);
  background: var(--hover-bg);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 24px;
  margin-bottom: 26px;
}

/* ------------------------------ Contact form --------------------------- */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 660px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.field label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.25s var(--ease);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-email {
  margin-top: 26px;
  font-size: 0.95rem;
}

.form-status {
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-success {
  border-color: var(--ink);
  background: var(--hover-bg);
  color: var(--ink);
}

.form-status.is-error {
  color: var(--ink);
}

/* ------------------------------ Footer ---------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 56px 0 36px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--text);
  display: inline-flex;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-social a:hover {
  opacity: 0.55;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 36px 0;
  list-style: none;
  padding: 0;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text);
}

.footer-nav a:hover {
  opacity: 0.55;
}

.footer-contact {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--text);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
