/* PressPointCo — Dark Singapore News Desk · Raffles Quay */
:root {
  --pp-void: #050608;
  --pp-desk: #0F1218;
  --pp-slate: #181C24;
  --pp-muted: #222830;
  --pp-text: #F4F5F7;
  --pp-text-muted: #9CA3AF;
  --pp-red: #E11D48;
  --pp-red-s: #FB7185;
  --pp-border: rgba(225, 29, 72, 0.18);
  --font-head: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
  --radius-card: 4px;
  --section-pad: clamp(56px, 8vw, 100px);
  --sidebar-w: 276px;
  --topbar-h: 58px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body.site-presspointco {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--pp-text);
  background: var(--pp-void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--pp-red-s);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover { color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--pp-text-muted); }
p:last-child { margin-bottom: 0; }

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 36px);
  padding-right: clamp(18px, 4vw, 36px);
}

.container-wide {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 36px);
  padding-right: clamp(18px, 4vw, 36px);
}

.surface-pp-void { background: #050608; color: #F4F5F7; }
.surface-pp-desk { background: #0F1218; color: #F4F5F7; }
.surface-pp-slate { background: #181C24; color: #F4F5F7; }
.surface-pp-accent { background: #E11D48; color: #FFFFFF; }
.surface-pp-muted { background: #222830; color: #F4F5F7; }

.surface-pp-accent p,
.surface-pp-accent .lead { color: rgba(255, 255, 255, 0.88); }

.lead { font-size: 1.125rem; line-height: 1.7; max-width: 62ch; }
.muted { color: var(--pp-text-muted); }

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal.delay-1 { transition-delay: 0.08s; }
.js .reveal.delay-2 { transition-delay: 0.16s; }
.js .reveal.delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pp-red);
  margin-bottom: 0.85rem;
}

.serial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pp-text-muted);
  margin-bottom: 1rem;
}

.serial-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pp-red);
  box-shadow: 0 0 10px var(--pp-red);
}

.dateline-red {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-red);
  margin-bottom: 1rem;
}

.section { padding: var(--section-pad) 0; position: relative; z-index: 1; }
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-header.center .lead { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-card);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

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

.btn-primary {
  background: var(--pp-red);
  color: #fff;
  border-color: var(--pp-red);
}

.btn-primary:hover {
  background: var(--pp-red-s);
  border-color: var(--pp-red-s);
  color: #fff;
  box-shadow: 0 10px 36px rgba(225, 29, 72, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--pp-text);
  border-color: rgba(244, 245, 247, 0.25);
}

.btn-outline:hover { border-color: var(--pp-red); color: #fff; }

.btn-ghost {
  background: rgba(225, 29, 72, 0.12);
  color: var(--pp-red-s);
  border-color: transparent;
}

/* ============ Mobile top bar ============ */
.pp-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 900;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
  padding: 0 clamp(14px, 4vw, 22px);
  background: rgba(5, 6, 8, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pp-border);
}

.pp-wordmark {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pp-text);
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}

.pp-wordmark:hover { color: var(--pp-red-s); }

.pp-menu-toggle {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.pp-menu-toggle span,
.pp-menu-toggle::before,
.pp-menu-toggle::after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--pp-text);
  transition: transform var(--transition), opacity var(--transition);
}

.pp-menu-toggle::before { top: 13px; }
.pp-menu-toggle span { top: 20px; }
.pp-menu-toggle::after { top: 27px; }

.pp-menu-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.pp-menu-toggle.is-open span { opacity: 0; }
.pp-menu-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

/* ============ Scrim ============ */
.pp-scrim {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.72);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.pp-scrim.is-open { opacity: 1; visibility: visible; }

/* ============ Left sidebar navigation ============ */
.pp-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  height: 100dvh;
  z-index: 960;
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.4rem 1.5rem;
  background: linear-gradient(185deg, #12151d 0%, #090b10 100%);
  border-right: 1px solid var(--pp-border);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.42s var(--ease-out);
}

.pp-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pp-red);
}

.pp-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pp-sidebar .pp-wordmark { font-size: 1.55rem; }

.pp-panel-close {
  display: none;
  width: 38px;
  height: 38px;
  border: none;
  background: var(--pp-muted);
  color: var(--pp-text);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: var(--radius-card);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}

.pp-panel-close:hover { background: var(--pp-red); color: #fff; }

.pp-sidebar .pp-edition-dateline {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--pp-text-muted);
  text-transform: uppercase;
  margin: 0.6rem 0 1.5rem;
}

.pp-sidebar-nav { flex: 1 0 auto; }

.pp-nav-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pp-red);
  margin: 1.35rem 0 0.5rem;
}

.pp-nav-label:first-child { margin-top: 0; }

.pp-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pp-nav-list a {
  display: block;
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius-card);
  border-left: 2px solid transparent;
  color: var(--pp-text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), padding-left var(--transition);
}

.pp-nav-list a:hover {
  background: rgba(225, 29, 72, 0.1);
  color: #fff;
  border-left-color: var(--pp-red);
  padding-left: 0.95rem;
}

.pp-nav-list a.is-active {
  background: rgba(225, 29, 72, 0.16);
  color: #fff;
  border-left-color: var(--pp-red);
}

.pp-sidebar-foot {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--pp-text-muted);
}

.pp-sidebar-foot p { margin-bottom: 0.5rem; color: var(--pp-text-muted); }
.pp-sidebar-foot a { color: var(--pp-red-s); }
.pp-sidebar-foot a:hover { color: #fff; }

/* Sidebar link entrance animation on mobile open */
@media (max-width: 1023px) {
  .pp-nav-list a {
    opacity: 0;
    transform: translateX(-10px);
  }
  .pp-sidebar.is-open .pp-nav-list a {
    opacity: 1;
    transform: none;
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out),
                background var(--transition), color var(--transition),
                border-color var(--transition), padding-left var(--transition);
  }
  .pp-sidebar.is-open .pp-nav-list li:nth-child(1) a { transition-delay: 0.04s; }
  .pp-sidebar.is-open .pp-nav-list li:nth-child(2) a { transition-delay: 0.08s; }
  .pp-sidebar.is-open .pp-nav-list li:nth-child(3) a { transition-delay: 0.12s; }
  .pp-sidebar.is-open .pp-nav-list li:nth-child(4) a { transition-delay: 0.16s; }
  .pp-sidebar.is-open .pp-nav-list li:nth-child(5) a { transition-delay: 0.20s; }
  .pp-sidebar.is-open .pp-nav-list li:nth-child(6) a { transition-delay: 0.24s; }
}

/* Hero — natural height, no clipping / overlap */
.hero-pp {
  display: block;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: visible;
}

.hero-pp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.hero-pp-main {
  max-width: 720px;
  min-width: 0;
}

.hero-pp h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1.25rem;
  color: var(--pp-text);
}

.hero-pp-deck {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--pp-text-muted);
  max-width: 58ch;
  margin-bottom: 2rem;
}

.hero-pp-photo {
  margin-top: 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border-top: 3px solid var(--pp-red);
  background: var(--pp-slate);
  max-width: 480px;
}

.hero-pp-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.hero-pp-photo figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  color: var(--pp-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-digest-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.desk-notes-rail {
  border-left: 1px solid var(--pp-border);
  padding-left: 1.25rem;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.desk-notes-rail h2 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pp-red);
  margin-bottom: 1rem;
}

.desk-note {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.desk-note time {
  display: block;
  font-size: 0.6875rem;
  color: var(--pp-red);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.desk-note p {
  font-size: 0.875rem;
  color: var(--pp-text);
  margin: 0;
  line-height: 1.5;
}

/* Cards */
.pp-card {
  background: var(--pp-desk);
  border-radius: var(--radius-card);
  border-top: 3px solid var(--pp-red);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.pp-card-body { padding: 1.15rem 1.25rem 1.35rem; }

.pp-card-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-red);
  margin-bottom: 0.5rem;
}

.pp-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--pp-text);
}

.pp-card h3 a { color: inherit; }
.pp-card h3 a:hover { color: var(--pp-red-s); }

.pp-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

.pp-card-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.pp-card-compact .pp-card-body { padding: 1rem 1.1rem; }

/* Digest grid — strict 3-col */
.digest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.digest-grid .pp-card.span-2 { grid-column: span 2; }

/* Metrics strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.metric-cell {
  background: var(--pp-red);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.metric-cell .stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.metric-cell .stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.35rem;
}

/* Analysis panel */
.analysis-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.analysis-panel > div { min-width: 0; }

.photo-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  border-top: 3px solid var(--pp-red);
  background: var(--pp-muted);
  max-width: 520px;
}

.photo-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.photo-frame figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  color: var(--pp-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.photo-caption {
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
  color: var(--pp-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Morning briefing */
.briefing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.briefing-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.briefing-list .time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pp-red);
  letter-spacing: 0.06em;
}

.briefing-list h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--pp-text);
}

.briefing-list p {
  font-size: 0.875rem;
  margin: 0;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  background: var(--pp-desk);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--pp-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--pp-red);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.is-open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--pp-text-muted);
  line-height: 1.65;
}

/* Newsletter CTA */
.newsletter-cta {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
}

.newsletter-cta h2 { margin-bottom: 0.75rem; }
.newsletter-cta .lead { margin: 0 auto 1.5rem; }

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--pp-border);
}

.page-hero h1 { margin-bottom: 0.75rem; }

/* Editorial sections */
.beat-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.beat-section:last-child { border-bottom: none; }

.beat-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.beat-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--pp-text);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--pp-desk);
  border-radius: var(--radius-card);
  border-top: 3px solid var(--pp-red);
  padding: 1.5rem;
}

.service-card h3 { margin-bottom: 0.65rem; color: var(--pp-text); }

/* Contact form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--pp-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--pp-text);
  background: var(--pp-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pp-red);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.consent-label,
.form-group .consent-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--pp-text-muted);
  cursor: pointer;
  margin-bottom: 0;
}

.consent-label input[type="checkbox"],
.form-group .consent-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.2rem 0 0;
  accent-color: var(--pp-red);
  cursor: pointer;
}

.consent-label > span {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.55;
}

.form-notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-card);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.form-notice.success {
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid var(--pp-red);
  color: var(--pp-text);
}

.form-notice.error {
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid var(--pp-red-s);
  color: var(--pp-red-s);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--pp-desk);
  border-radius: var(--radius-card);
  border-top: 3px solid var(--pp-red);
  padding: 1.5rem;
}

.contact-card h3 { margin-bottom: 1rem; color: var(--pp-text); }

.contact-card address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pp-text-muted);
}

/* Legal prose */
.legal-prose h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--pp-text);
}

.legal-prose h2:first-child { margin-top: 0; }

.legal-prose ul, .legal-prose ol {
  margin: 0 0 1rem 1.25rem;
  color: var(--pp-text-muted);
}

.legal-prose li { margin-bottom: 0.35rem; }

.legal-updated {
  font-size: 0.875rem;
  color: var(--pp-text-muted);
  margin-bottom: 2rem;
}

.disclaimer-box {
  font-size: 0.8125rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--pp-red);
  background: rgba(225, 29, 72, 0.08);
  color: var(--pp-text-muted);
  margin-top: 1.5rem;
}

/* Footer — 4 columns */
.pp-footer {
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid var(--pp-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pp-red);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.45rem; }

.footer-col a { color: var(--pp-text-muted); font-size: 0.875rem; }
.footer-col a:hover { color: var(--pp-red-s); }

.footer-brand p {
  font-size: 0.875rem;
  max-width: 32ch;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  color: var(--pp-text-muted);
}

.footer-bottom a { color: var(--pp-text-muted); }

/* Cookie banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem clamp(18px, 4vw, 36px);
  background: var(--pp-slate);
  border-top: 1px solid var(--pp-border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.875rem;
  color: var(--pp-text-muted);
}

.cookie-text a { color: var(--pp-red-s); }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.8125rem;
}

.cookie-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-panel.is-open { display: block; }

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--pp-text);
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-code {
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--pp-red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ============ Layout: desktop sidebar open ============ */
@media (min-width: 1024px) {
  body.site-presspointco { padding-left: var(--sidebar-w); }
  .pp-sidebar { transform: none; }
  .pp-topbar { display: none; }
  .pp-scrim { display: none; }
  .pp-panel-close { display: none; }
  .cookie-banner { left: var(--sidebar-w); }
}

/* ============ Layout: mobile / tablet off-canvas ============ */
@media (max-width: 1023px) {
  .pp-topbar { display: flex; }
  .pp-sidebar {
    width: min(310px, 86vw);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  }
  .pp-sidebar.is-open { transform: none; }
  .pp-panel-close { display: flex; align-items: center; justify-content: center; }
}

/* ============ Responsive grids ============ */
@media (max-width: 1279px) {
  .hero-pp-grid { grid-template-columns: 1fr; }
  .desk-notes-rail {
    border-left: none;
    border-top: 1px solid var(--pp-border);
    padding-left: 0;
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
  .desk-notes-rail h2 {
    grid-column: 1 / -1;
    margin-bottom: 0.25rem;
  }
  .desk-note { border-bottom: none; padding: 0.5rem 0; }
  .analysis-panel { grid-template-columns: 1fr; }
  .beat-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1023px) {
  .digest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .digest-grid .pp-card.span-2 { grid-column: span 1; }
  .hero-digest-row { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .desk-notes-rail { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .digest-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: 1fr; }
  .photo-frame, .hero-pp-photo { max-width: 100%; }
  .hero-pp h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-pp h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
}
