/* Singapore Voice — design system */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

:root {
  --harbour: #0A1628;
  --harbour-deep: #050d18;
  --amber: #E8A838;
  --parchment: #F7F5F0;
  --teal: #1B6B7A;
  --harbour-muted: #1a2d4a;
  --amber-dark: #c98f2a;
  --teal-dark: #155a66;
  --header-top: 64px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 8px 32px rgba(10, 22, 40, 0.15);
  --radius: 8px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--harbour);
  background: var(--parchment);
}

body.site-voice {
  padding-top: var(--header-top);
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--amber-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; }

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.surface-dark {
  background-color: var(--harbour);
  color: var(--parchment);
}
.surface-dark a { color: var(--amber); }
.surface-dark a:hover { color: #fff; }

.surface-light {
  background-color: var(--parchment);
  color: var(--harbour);
}

.surface-accent {
  background-color: var(--amber);
  color: var(--harbour);
}
.surface-accent a { color: var(--harbour); }

.surface-teal {
  background-color: var(--teal);
  color: var(--parchment);
}
.surface-teal a { color: var(--parchment); }

.voice-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}

.voice-header-top {
  border-bottom: 1px solid rgba(247, 245, 240, 0.08);
}

.voice-header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-top);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.voice-wordmark {
  text-decoration: none;
  color: inherit;
  display: block;
  line-height: 1.1;
}

.voice-wordmark__line1 {
  display: block;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.voice-wordmark__line2 {
  display: block;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.voice-wordmark__rule {
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--amber);
  margin-top: 0.35rem;
  border-radius: 2px;
}

.voice-header-top nav { display: none; }

.voice-header-top nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.voice-header-top nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--parchment);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.voice-header-top nav a:hover,
.voice-header-top nav a.is-active {
  background: rgba(232, 168, 56, 0.15);
  color: var(--amber);
}

.voice-category-strip {
  display: none;
  border-bottom: 1px solid rgba(247, 245, 240, 0.1);
}

.voice-category-strip__inner {
  display: flex;
  align-items: center;
  height: var(--category-strip);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 0.65rem;
  overflow-x: auto;
  width: 100%;
  scrollbar-width: thin;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.95rem;
  background: rgba(247, 245, 240, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(247, 245, 240, 0.22);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.category-chip:hover {
  background: rgba(232, 168, 56, 0.28);
  border-color: var(--amber);
  color: #fff;
  transform: translateY(-1px);
}

.category-chip--desk {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(10, 22, 40, 0.35);
  border-color: rgba(247, 245, 240, 0.35);
}

.voice-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(247, 245, 240, 0.2);
  border-radius: 6px;
  cursor: pointer;
}

.voice-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--parchment);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.voice-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.voice-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.voice-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.voice-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  z-index: 400;
  border-radius: 16px 16px 0 0;
  padding: 0.5rem 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.3);
}

.voice-bottom-sheet.is-open { transform: translateY(0); }

.bottom-sheet-handle {
  width: 40px;
  height: 4px;
  background: rgba(247, 245, 240, 0.3);
  border-radius: 2px;
  margin: 0.75rem auto 1.25rem;
}

.bottom-sheet-nav {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.bottom-sheet-nav a {
  display: block;
  padding: 0.85rem 0;
  color: var(--parchment);
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(247, 245, 240, 0.08);
}

.bottom-sheet-nav a.is-active { color: var(--amber); }

.bottom-sheet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bottom-sheet-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  z-index: 350;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.bottom-sheet-scrim.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) {
  .voice-header-top nav { display: block; }
  .voice-menu-toggle { display: none; }
  .voice-bottom-sheet,
  .bottom-sheet-scrim { display: none; }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.section--compact { padding: 3.25rem 0; }

@media (max-width: 767px) {
  .section { padding: 3rem 0; }
  .section--compact { padding: 2.25rem 0; }

  .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .voice-header-top__inner {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin: 0 0 0.5rem;
}

.surface-dark .eyebrow { color: var(--amber); }

.serial {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin: 0 0 1rem;
}

.accent-divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin: 1rem 0 1.25rem;
  border-radius: 2px;
}

.section-header { margin-bottom: 2.5rem; }

.hero-cinematic {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-color: var(--harbour-deep);
  background-image: url('/images/singaporevoice-01-hero-broadcast-studio.jpg');
  background-size: cover;
  background-position: center;
}

.hero-cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 13, 24, 0.94) 0%, rgba(5, 13, 24, 0.62) 55%, rgba(5, 13, 24, 0.42) 100%);
}

.hero-cinematic > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-cinematic__content {
  padding: 4rem 0 5rem;
  max-width: 720px;
  margin: 0;
  color: #fff;
  text-align: left;
}

.hero-cinematic__content h1,
.hero-cinematic__content p,
.hero-cinematic__content .serial,
.hero-cinematic__content .trust-strip {
  color: #fff;
  font-weight: 500;
}

.hero-cinematic__content h1 { font-weight: 700; }

.hero-cinematic__content .eyebrow {
  color: #fff;
  opacity: 0.95;
}

.hero-cinematic__content .serial,
.hero-cinematic__content .trust-strip {
  opacity: 0.92;
}

@media (max-width: 767px) {
  .hero-cinematic { min-height: 72vh; }

  .hero-cinematic::before {
    background: linear-gradient(180deg, rgba(5, 13, 24, 0.97) 0%, rgba(5, 13, 24, 0.92) 45%, rgba(5, 13, 24, 0.85) 100%);
  }

  .hero-cinematic__content {
    padding: 2.75rem 0 3.25rem;
    max-width: none;
  }
}

.hero-cinematic .btn-primary {
  background: #124a55;
  border-color: #124a55;
  color: #fff;
}

.hero-cinematic .btn-primary:hover {
  background: var(--harbour);
  border-color: var(--amber);
  color: #fff;
}

.hero-cinematic .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-cinematic .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  opacity: 0.85;
}

.trust-strip span::before {
  content: '·';
  margin-right: 1.5rem;
  opacity: 0.5;
}

.trust-strip span:first-child::before { content: none; margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

.btn-primary:hover {
  background: var(--harbour);
  border-color: var(--amber);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(247, 245, 240, 0.4);
}

.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.surface-light .btn-secondary {
  color: var(--harbour);
  border-color: var(--harbour);
}

.surface-light .btn-secondary:hover {
  background: var(--harbour);
  color: var(--parchment);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 767px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

.stat-strip__value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-strip__label {
  font-size: 0.8125rem;
  margin-top: 0.35rem;
  opacity: 0.85;
}

.featured-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.featured-rail__card {
  flex: 0 0 min(320px, 85vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--harbour);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.featured-rail__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.featured-rail__body {
  padding: 1.25rem;
  border-left: 4px solid var(--amber);
}

.featured-rail__body h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: #fff; font-weight: 700; }
.featured-rail__body p { font-size: 0.9rem; margin: 0; opacity: 0.95; color: #fff; font-weight: 500; }

.digest-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .digest-grid { grid-template-columns: 1fr; }
}

.digest-grid__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .news-card-grid { grid-template-columns: 1fr; }
}

.news-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--amber);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.news-card__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.75rem;
  color: var(--amber);
}

.surface-light .news-card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--teal);
}

.coverage-card {
  padding: 0 0 1.75rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--amber);
  transition: transform 0.2s var(--ease);
  overflow: hidden;
}

.coverage-card:hover { transform: translateY(-3px); }

.coverage-card .eyebrow,
.coverage-card h3,
.coverage-card p {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.coverage-card .eyebrow {
  padding-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.coverage-card__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.analysis-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .analysis-spotlight { grid-template-columns: 1fr; }
}

.analysis-spotlight img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 168, 56, 0.3);
  box-shadow: var(--shadow);
}

.page-hero { padding: 3rem 0 2.25rem; }
.page-hero__lead { font-size: 1.125rem; max-width: 640px; }

.surface-deep {
  background-color: var(--harbour-deep);
  color: #fff;
}

.surface-deep a { color: var(--amber); }
.surface-deep a:hover { color: #fff; }

.surface-deep h1,
.surface-deep h2,
.surface-deep h3,
.surface-deep p,
.surface-deep .eyebrow {
  color: #fff;
}

.surface-deep .eyebrow { opacity: 0.95; }

.surface-deep h1,
.surface-deep h2,
.surface-deep h3 {
  font-weight: 700;
}

.surface-deep p {
  font-weight: 500;
  opacity: 0.95;
}

.surface-deep .trust-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 168, 56, 0.45);
  color: #fff;
}

.surface-deep .trust-card h3,
.surface-deep .trust-card p {
  color: #fff;
  font-weight: 600;
}

.surface-deep .btn-primary {
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.45);
}

.surface-deep .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.surface-deep .btn-secondary:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--harbour);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: #fff;
  font-weight: 600;
}

.cta-band h2 { font-weight: 700; }

.cta-band .btn-primary {
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.45);
}

.beat-card,
.coverage-card {
  scroll-margin-top: calc(var(--header-top) + 1rem);
}

.beat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .beat-grid { grid-template-columns: 1fr; }
}

.beat-card {
  border-radius: var(--radius);
  overflow: hidden;
  border-left: 4px solid var(--amber);
  transition: box-shadow 0.25s var(--ease);
}

.beat-card:hover { box-shadow: var(--shadow); }

.beat-card__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.beat-card__body { padding: 1.5rem; }
.surface-light .beat-card { background: #fff; }
.surface-dark .beat-card { background: var(--harbour-muted); }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .coverage-grid { grid-template-columns: 1fr; }
}

.surface-light .coverage-card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
}

.surface-dark .coverage-card {
  background: var(--harbour-muted);
}

.surface-dark .coverage-card h3,
.surface-dark .coverage-card p {
  color: #fff;
  font-weight: 500;
}

.surface-dark .coverage-card h3 { font-weight: 700; }

.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .team-row { grid-template-columns: 1fr; }
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: box-shadow 0.25s var(--ease);
}

.team-card:hover { box-shadow: var(--shadow); }

.team-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid rgba(10, 22, 40, 0.12);
  padding: 1.25rem 0;
}

.faq-item__number {
  font-family: var(--font-head);
  font-size: 0.875rem;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: inherit;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-item__answer { padding-top: 0.75rem; font-size: 0.975rem; }
.faq-item__answer[hidden] { display: none; }

.form-panel {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 22, 40, 0.1);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(10, 22, 40, 0.2);
  border-radius: 6px;
  background: #fff;
  color: var(--harbour);
}

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

.form-group.form-consent,
.form-consent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: rgba(27, 107, 122, 0.08);
  border: 1px solid rgba(10, 22, 40, 0.14);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-consent input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.form-consent label {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  color: var(--harbour);
  cursor: pointer;
}

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

.form-success {
  padding: 1rem 1.25rem;
  background: rgba(27, 107, 122, 0.12);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

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

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-detail { margin-bottom: 1.25rem; font-size: 0.975rem; }

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  color: var(--teal);
}

.legal-prose { max-width: 760px; }
.legal-prose h2 { font-size: 1.5rem; margin-top: 2rem; }
.legal-prose h2:first-child { margin-top: 0; }

.site-footer { padding: 4rem 0 2rem; }

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

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.5rem; }

.footer-grid a {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-grid a:hover { opacity: 1; color: var(--amber); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  font-size: 0.8125rem;
  opacity: 0.75;
}

.surface-light .footer-bottom { border-top-color: rgba(10, 22, 40, 0.1); }

.footer-disclaimer {
  margin-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(10, 22, 40, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.cookie-banner.is-visible { transform: translateY(0); }

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

.cookie-banner__text { flex: 1; min-width: 240px; font-size: 0.875rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 22, 40, 0.6);
}

.cookie-modal[hidden] { display: none; }

.cookie-modal__panel {
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

.mini-faq { max-width: 640px; }

.mini-faq details {
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  padding: 1rem 0;
}

.mini-faq summary {
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.masthead-quote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  border-left: 4px solid var(--amber);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.cta-band { text-align: center; padding: 4rem 0; }
