:root {
  --ink: #07101f;
  --ink-mid: #0f1c32;
  --ink-soft: #1a2d4d;
  --gold: #c9a227;
  --gold-light: #e4c76b;
  --gold-dark: #9a7b14;
  --paper: #f7f5f0;
  --paper-alt: #ece8df;
  --paper-warm: #faf8f4;
  --line: #d4cec0;
  --text: #141414;
  --text-muted: #5c5c5c;
  --white: #ffffff;
  --focus: #3b6fd9;
  --success-bg: #ecfdf5;
  --success-border: #6ee7b7;
  --max: 1200px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 4px 18px rgba(7, 16, 31, 0.06);
  --shadow: 0 16px 48px rgba(7, 16, 31, 0.12);
  --shadow-lg: 0 24px 64px rgba(7, 16, 31, 0.18);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--ink-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover { color: var(--gold-dark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Header ── */
.site-header {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-mid) 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .875rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { color: var(--gold-light); }

.brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  background: rgba(201,162,39,.08);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.brand-tagline {
  display: block;
  font-size: .7rem;
  opacity: .72;
  max-width: 15rem;
  line-height: 1.35;
  letter-spacing: .02em;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: .55rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--white);
  margin: .28rem 0;
  border-radius: 1px;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .15rem 1.35rem;
  margin-left: auto;
}

.primary-nav a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ── Hero (home) ── */
.hero-magazine {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 36rem;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-media { position: relative; min-height: 20rem; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 20rem;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,16,31,.15) 0%, rgba(7,16,31,.92) 100%);
  pointer-events: none;
}

.hero-copy {
  padding: 3.5rem 3rem 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  width: 3px;
  height: 4rem;
  background: var(--gold);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 .85rem;
}

.hero-copy h1,
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  margin-top: 0;
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
}

.hero-copy h1 { font-size: clamp(2.1rem, 4.5vw, 3.25rem); }

.lead {
  font-size: 1.125rem;
  max-width: 44rem;
  line-height: 1.75;
  opacity: .92;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.75rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: .92rem;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,162,39,.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ink);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,162,39,.1); }

/* ── Sections ── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-head { margin-bottom: 2.25rem; }
.section-head h2,
.section > h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 .6rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.section-head p { color: var(--text-muted); max-width: 38rem; }

/* ── Story cards ── */
.card-grid { display: grid; gap: 1.75rem; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.story-card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212,206,192,.6);
  transition: transform var(--transition), box-shadow var(--transition);
}
.story-card:hover {
  box-shadow: var(--shadow-lg);
}

.story-card a:hover h3 { color: var(--gold-dark); }

.story-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.story-card a {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.read-more {
  display: inline-block;
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-dark);
}

.story-card-body { padding: 1.4rem 1.5rem 1.65rem; }

.story-kicker {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: .55rem;
}

.story-card h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  margin: 0 0 .7rem;
  line-height: 1.35;
  transition: color var(--transition);
}

.story-card-featured h3 { font-size: 1.5rem; }

/* ── Editorial band ── */
.editorial-band {
  background: linear-gradient(180deg, var(--paper-alt) 0%, var(--paper-warm) 100%);
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}

.editorial-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.editorial-photo figcaption {
  font-size: .84rem;
  color: var(--text-muted);
  margin-top: .75rem;
  font-style: italic;
}

.text-link {
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--gold-dark); }

/* ── Topic columns ── */
.topic-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.topic-columns > h2,
.metrics-grid + h2,
.metrics-band > h2 {
  grid-column: 1 / -1;
}
.topic-columns-2 { grid-template-columns: repeat(2, 1fr); }

.topic-column {
  background: var(--white);
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.topic-column img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.topic-column-body { padding: 1.25rem 1.35rem 1.4rem; }

.topic-column h3 {
  margin: 0 0 .5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.topic-column h3 a { text-decoration: none; color: var(--ink); }
.topic-column h3 a:hover { color: var(--gold-dark); }

.topic-list { padding-left: 1.1rem; margin: .75rem 0 0; font-size: .95rem; }
.topic-list li { margin-bottom: .4rem; color: var(--text-muted); }

/* ── Briefing ── */
.briefing-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: start;
}

.briefing-aside {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.briefing-aside h3 {
  font-family: var(--font-serif);
  margin-top: 0;
  color: var(--gold-light);
}

.briefing-list { padding-left: 1.1rem; margin: 0; }
.briefing-list li { margin-bottom: .85rem; line-height: 1.55; }
.briefing-list time {
  color: var(--gold);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: .88rem;
}

/* ── Trust panel ── */
.trust-panel {
  max-width: none;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner { max-width: var(--max); margin: 0 auto; padding: 4rem 1.5rem; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 2rem 0;
}

.trust-grid article {
  padding: 1.5rem;
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}

.trust-grid h3 {
  font-family: var(--font-serif);
  margin-top: 0;
  font-size: 1.15rem;
}

/* ── CTA panel ── */
.cta-panel {
  max-width: none;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,162,39,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-inner a { color: var(--gold-light); }
.cta-inner h2 {
  color: var(--white);
  font-family: var(--font-serif);
  margin-top: 0;
  font-size: 1.75rem;
}

.cta-inline {
  background: var(--paper-warm);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}

/* ── Page heroes ── */
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 1.5rem;
}

.page-hero-compact { padding-bottom: 1rem; }

.page-hero-cover {
  max-width: none;
  position: relative;
  min-height: 18rem;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.page-hero-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,31,.35) 0%, rgba(7,16,31,.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-hero-cover-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
  width: 100%;
}

.page-hero-cover h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-hero-cover .lead { color: rgba(255,255,255,.9); max-width: 40rem; }
.page-hero-cover .lead a { color: var(--gold-light); }
.page-hero-cover .eyebrow { color: var(--gold); }

.page-hero-topic {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 60%, #1a3050 100%);
  color: var(--white);
  max-width: none;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero-topic::before {
  display: none;
}

.page-hero-news {
  background: linear-gradient(135deg, var(--ink) 0%, #1a3050 100%);
}
.page-hero-topic > * {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.page-hero-singapore { border-bottom: 4px solid #2d6a9f; }
.page-hero-business { border-bottom: 4px solid var(--gold); }
.page-hero-tech { border-bottom: 4px solid #4a90a4; }
.page-hero-community { border-bottom: 4px solid #6b8e23; }
.page-hero-topic h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); }
.page-hero-topic .lead { color: rgba(255,255,255,.88); }

.page-hero-legal {
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  background: var(--white);
  max-width: none;
}

.page-hero-legal > * { max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }

/* ── Article features ── */
.article-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.article-feature-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.article-feature-reverse { direction: rtl; }
.article-feature-reverse > * { direction: ltr; }

.article-meta {
  font-size: .86rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: .02em;
}

/* ── Story list with thumbs ── */
.story-list { display: grid; gap: 0; }

.story-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.story-row:last-child { border-bottom: 0; }

.story-row img {
  width: 140px;
  height: 94px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.story-row h3 {
  font-family: var(--font-serif);
  margin: 0 0 .45rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.story-row p { margin: 0; color: var(--text-muted); font-size: .98rem; }

/* ── Prose layouts ── */
.prose-layout,
.office-layout,
.contact-layout,
.prose-wide {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.prose-layout { grid-template-columns: 1.15fr .85fr; }
.prose-wide { grid-template-columns: 1.1fr .9fr; }
.office-layout { grid-template-columns: 1fr 1fr; align-items: center; }
.contact-layout { grid-template-columns: 1.15fr .85fr; }

.prose h2 {
  font-family: var(--font-serif);
  color: var(--ink);
  margin-top: 2.25rem;
  font-size: 1.45rem;
}
.prose h2:first-child { margin-top: 0; }

.prose-figure img,
.office-layout > img,
.prose-wide > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.prose-figure figcaption {
  font-size: .84rem;
  color: var(--text-muted);
  margin-top: .7rem;
  font-style: italic;
}

/* ── Team ── */
.team-band {
  background: var(--paper-alt);
  max-width: none;
  border-top: 1px solid var(--line);
}

.team-band > h2,
.team-band > .team-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.team-band > h2 { padding-top: 1rem; font-family: var(--font-serif); font-size: 1.75rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-bottom: 4rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card-body { padding: 1.15rem 1.25rem 1.35rem; }

.team-card h3 {
  font-family: var(--font-serif);
  margin: 0 0 .25rem;
  font-size: 1.05rem;
}

.team-role {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 .55rem;
}

.team-card p:last-child { margin: 0; font-size: .92rem; color: var(--text-muted); }

/* ── Metrics ── */
.metrics-band {
  background: var(--paper-warm);
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-band > h2,
.metrics-band > .metrics-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.metrics-band > h2 { font-family: var(--font-serif); padding-top: .5rem; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-bottom: 4rem;
}

.metric-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.metric-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.metric-card-body { padding: 1.15rem 1.25rem 1.35rem; }

.metric-card h3 {
  font-family: var(--font-serif);
  margin: 0 0 .45rem;
  font-size: 1.05rem;
}

.metric-card p { margin: 0; font-size: .92rem; color: var(--text-muted); }

/* ── SME band ── */
.sme-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.sme-band img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* ── Contact ── */
.contact-section { padding-top: 2rem; }

.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-top: 0;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-info-wrap {
  background: var(--paper-warm);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.contact-info-wrap img {
  width: 100%;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-weight: 700;
  margin-bottom: .4rem;
  font-size: .92rem;
  letter-spacing: .02em;
}

.field input,
.field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--paper-warm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(59,111,217,.2);
  background: var(--white);
}

.req { color: var(--gold-dark); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-note {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding: .85rem 1rem;
  background: var(--paper-alt);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.form-success {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.form-success-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  background: #10b981;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.form-success h2 {
  font-family: var(--font-serif);
  margin: 0 0 .75rem;
  color: #065f46;
}

.form-success p { margin: 0 0 .75rem; color: #047857; }
.form-success p:last-child { margin-bottom: 0; }

.contact-details div {
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-details div:last-child { border-bottom: 0; }
.contact-details dt {
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.contact-details dd { margin: .2rem 0 0; }
.contact-details address { font-style: normal; }

.map-section h2 { font-family: var(--font-serif); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

.map-fallback { margin-top: .75rem; font-size: .92rem; }

/* ── Legal ── */
.legal-prose { max-width: 780px; }

.legal-text h2 {
  font-family: var(--font-serif);
  margin-top: 2.5rem;
  font-size: 1.3rem;
  color: var(--ink);
  padding-top: .5rem;
  border-top: 1px solid var(--line);
}

.legal-text h2:first-of-type { border-top: 0; margin-top: 0; }

.legal-text h3 { font-size: 1.05rem; margin-top: 1.35rem; color: var(--ink-soft); }
.legal-text ul { padding-left: 1.25rem; }
.legal-text li { margin-bottom: .45rem; }
.legal-text code {
  background: var(--paper-alt);
  padding: .12rem .4rem;
  border-radius: 4px;
  font-size: .9em;
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, var(--ink-mid) 0%, var(--ink) 100%);
  color: rgba(255,255,255,.88);
  margin-top: 3rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-block h2 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-top: 0;
  letter-spacing: .02em;
}

.footer-address { font-style: normal; line-height: 1.75; }
.footer-address a { color: var(--gold-light); text-decoration: none; }
.footer-address a:hover { color: var(--white); }

.footer-nav { display: grid; gap: .5rem; }
.footer-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .95rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-hours { font-size: .88rem; opacity: .75; margin-top: .75rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem 1.5rem 1.75rem;
  font-size: .86rem;
  opacity: .7;
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--ink-mid) 0%, var(--ink) 100%);
  color: var(--white);
  z-index: 200;
  box-shadow: 0 -12px 40px rgba(0,0,0,.35);
  border-top: 2px solid var(--gold);
}

.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.35rem 1.5rem;
}

.cookie-banner h2 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 .45rem;
  color: var(--gold-light);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  margin-top: 1rem;
}

.cookie-link { color: var(--gold-light); margin-left: .35rem; font-size: .92rem; }

/* ── 404 ── */
.error-section {
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.error-section h1 { font-family: var(--font-serif); font-size: 2.5rem; }

.error-actions, .error-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ── News archive & article pages ── */
.news-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.news-archive-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.news-archive-item a {
  display: grid;
  grid-template-columns: 180px 1fr;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.news-archive-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.news-archive-body { padding: 1.25rem 1.35rem; }

.news-archive-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: .35rem 0 .5rem;
  line-height: 1.35;
}

.news-archive-item a:hover h3 { color: var(--gold-dark); }

.section-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.section-link-card {
  display: block;
  padding: 1.25rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.section-link-card:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.article-page { max-width: 780px; }

.article-page-header { margin-bottom: 1.5rem; }

.article-page-header .eyebrow a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 700;
}

.article-page-hero {
  margin: 0 0 2rem;
}

.article-page-hero img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.article-page-hero figcaption {
  font-size: .84rem;
  color: var(--text-muted);
  margin-top: .65rem;
  font-style: italic;
}

.article-body p { margin-bottom: 1.15rem; }

.article-lede {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink-soft);
  border-left: 4px solid var(--gold);
  padding-left: 1.15rem;
  margin-bottom: 1.75rem;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.lead-grid,
.editorial-band,
.briefing-panel,
.trust-panel,
.topic-strip {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-magazine,
  .editorial-inner,
  .briefing-layout,
  .card-grid-3,
  .topic-columns,
  .topic-columns-2,
  .team-grid,
  .metrics-grid,
  .footer-grid,
  .prose-layout,
  .prose-wide,
  .article-feature-grid,
  .office-layout,
  .contact-layout,
  .sme-band,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-magazine { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 16rem; }
  .hero-media::after {
    background: linear-gradient(180deg, transparent 20%, rgba(7,16,31,.92) 100%);
  }
  .hero-copy { padding: 2rem 1.5rem 2.5rem; }
  .hero-copy::before { display: none; }

  .story-row { grid-template-columns: 1fr; }
  .story-row img { width: 100%; height: auto; aspect-ratio: 16/9; }

  .nav-toggle { display: block; }

  .primary-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: .85rem 0 0;
    border-top: 1px solid rgba(255,255,255,.12);
    gap: .25rem;
  }

  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: .55rem 0; }

  .header-inner { flex-wrap: wrap; }

  .cta-inner { flex-direction: column; align-items: flex-start; }

  .article-feature-reverse { direction: ltr; }

  .news-archive { grid-template-columns: 1fr; }
  .news-archive-item a { grid-template-columns: 1fr; }
  .section-links { grid-template-columns: repeat(2, 1fr); }

  .brand-tagline { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
