:root {
  --ink: #0c1524;
  --ink-soft: #1a2a3f;
  --paper: #faf8f5;
  --paper-warm: #f3efe8;
  --accent: #c45a2c;
  --accent-hover: #a34722;
  --teal: #1a6b7a;
  --teal-light: #e8f4f6;
  --muted: #5c6570;
  --line: #d8d2c8;
  --white: #ffffff;
  --focus: #2563eb;
  --shadow: 0 18px 50px rgba(12, 21, 36, 0.08);
  --radius: 4px;
  --max: 1200px;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover, a:focus-visible { color: var(--accent); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.shell { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

/* Header */
.site-header {
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover, .brand:focus-visible { color: var(--white); opacity: 0.92; }

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f0a070, var(--accent));
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}

.brand-text {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.brand-text span { color: #f0c4a8; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  font: inherit;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.35rem 0;
}

.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }

.site-nav a[aria-current="page"] { color: #f0c4a8; border-bottom: 2px solid var(--accent); }

.site-nav .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  border-bottom: none !important;
}

.site-nav .nav-cta:hover { background: var(--accent-hover); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 55%, #1a4a55 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #f0c4a8;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 400;
}

.hero-lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin: 0 0 1.5rem;
  max-width: 38ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.hero-meta strong { color: var(--white); display: block; font-size: 1rem; }

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* Sections */
.section { padding: 3rem 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: 1.85rem;
  margin: 0;
  font-weight: 400;
}

.section-head a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.news-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--paper-warm);
}

.news-card-body { padding: 1.15rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }

.cat-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.news-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.news-card h3 a:hover { color: var(--accent); }

.news-card time {
  font-size: 0.82rem;
  color: var(--muted);
}

.news-card p {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
}

.news-card .read-more {
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

/* Featured */
.featured-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.featured-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-main img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

.featured-main .news-card-body { padding: 1.5rem; }

.featured-main h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.featured-main h2 a { color: var(--ink); text-decoration: none; }
.featured-main h2 a:hover { color: var(--accent); }

.featured-side { display: flex; flex-direction: column; gap: 1rem; }

.mini-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.mini-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }

.mini-card div { padding: 0.75rem 0.75rem 0.75rem 0; }

.mini-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  margin: 0 0 0.25rem;
  font-weight: 400;
  line-height: 1.25;
}

.mini-card time { font-size: 0.78rem; color: var(--muted); }

/* Prose */
.prose { max-width: 68ch; }
.prose h1, .prose h2, .prose h3 { font-family: var(--serif); font-weight: 400; line-height: 1.25; }
.prose h1 { font-size: 2.25rem; margin: 0 0 1rem; }
.prose h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.prose p { margin: 0 0 1rem; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.35rem; }
.prose li { margin-bottom: 0.35rem; }

.page-hero {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.page-hero p { margin: 0; color: var(--muted); max-width: 55ch; }

/* Article */
.article-header { margin-bottom: 2rem; }
.article-header h1 { font-family: var(--serif); font-size: clamp(1.85rem, 3.5vw, 2.75rem); line-height: 1.15; margin: 0 0 0.75rem; font-weight: 400; }
.article-meta { color: var(--muted); font-size: 0.92rem; }
.article-hero img { width: 100%; border-radius: var(--radius); margin-bottom: 2rem; aspect-ratio: 16/9; object-fit: cover; }

/* Category chips */
.cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cat-nav a {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
}

.cat-nav a:hover, .cat-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}

.contact-block address { font-style: normal; line-height: 1.7; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-row { margin-bottom: 1.1rem; }

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--paper);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--focus);
}

.form-row textarea { min-height: 140px; resize: vertical; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font: inherit;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
}

.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-hover); }

.form-success {
  background: var(--teal-light);
  border: 1px solid var(--teal);
  color: var(--ink-soft);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map-caption {
  padding: 0.65rem 1rem;
  background: var(--white);
  font-size: 0.88rem;
  margin: 0;
}

/* About strip */
.about-strip {
  background: var(--teal-light);
  padding: 2.5rem 0;
  border-block: 1px solid #c5e0e5;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-columns h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.about-columns p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 3rem 0 2.5rem;
  margin-top: 2rem;
}

.footer-inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 2rem;
}

.footer-logo { color: var(--white); margin: 0 0 0.75rem; }

.footer-tagline, .footer-meta { font-size: 0.9rem; margin: 0 0 0.5rem; color: rgba(255,255,255,0.65); }

.footer-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f0c4a8;
  margin: 0 0 0.85rem;
}

.site-footer address { font-style: normal; line-height: 1.7; font-size: 0.92rem; }
.site-footer a { color: rgba(255,255,255,0.88); }
.site-footer a:hover { color: var(--white); }

.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { text-decoration: none; font-size: 0.92rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 1.25rem;
  z-index: 200;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
}

.cookie-banner[hidden] { display: none; }
.cookie-banner.show { display: block; }

.cookie-inner { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.cookie-actions button {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
}

.cookie-actions button:first-child {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.cookie-panel.open { display: block; }

.cookie-panel label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

body.cookie-open { padding-bottom: 9rem; }

/* Legal pages */
.legal-content { padding: 2.5rem 0 3.5rem; }
.legal-content .prose { max-width: 72ch; }

/* 404 */
.error-page {
  text-align: center;
  padding: 5rem 0;
}

.error-page h1 {
  font-family: var(--serif);
  font-size: 4rem;
  margin: 0;
  color: var(--accent);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .featured-row, .news-grid, .contact-grid, .footer-inner, .about-columns {
    grid-template-columns: 1fr;
  }

  .news-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink-soft);
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .site-nav.open { display: block; }

  .site-nav ul { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .mini-card { grid-template-columns: 80px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .news-card { transition: none; }
}
