:root {
  --canvas: #F3F0EE;
  --lifted: #FCFBFA;
  --ink: #141413;
  --ink-soft: #262627;
  --slate: #696969;
  --signal: #CF4500;
  --arc: #F37338;
  --white: #ffffff;
  --border: rgba(20,20,19,0.15);
  --shadow-nav: rgba(0,0,0,0.04) 0px 4px 24px 0px;
  --shadow-card: rgba(0,0,0,0.08) 0px 24px 48px 0px;
  --font: 'Sofia Sans', Arial, sans-serif;
  --r-btn: 20px;
  --r-hero: 40px;
  --r-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--ink); text-decoration: underline; }
a:hover { opacity: 0.7; }
img { display: block; max-width: 100%; height: auto; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-nav);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}

.logo-brand {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.34px;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 11px;
  color: var(--slate);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav { display: flex; align-items: center; gap: 32px; list-style: none; }
.primary-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.primary-nav a:hover { opacity: 0.65; }

.burger-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-btn);
  padding: 8px 14px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.burger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 40px 48px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20,20,19,0.1);
  letter-spacing: -0.44px;
}
.mobile-nav a:hover { opacity: 0.65; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; width: 100%; }
main { flex: 1; }

/* ── HERO ── */
.hero { padding: 96px 0; }
.hero-frame {
  background: var(--ink);
  border-radius: var(--r-hero);
  padding: 72px 64px;
  color: var(--canvas);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--arc);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before { content: "•"; color: var(--arc); }
.hero-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--canvas);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(243,240,238,0.75);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-meta { font-size: 13px; color: rgba(243,240,238,0.55); }

/* ── BUTTONS ── */
.btn-ink {
  display: inline-block;
  background: var(--canvas);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 10px 28px;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--canvas);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-ink:hover { opacity: 0.8; color: var(--ink); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--canvas);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 10px 28px;
  border-radius: var(--r-btn);
  border: 1.5px solid rgba(243,240,238,0.4);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-outline:hover { opacity: 0.7; color: var(--canvas); }

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--canvas);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 10px 28px;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: var(--font);
}
.btn-dark:hover { opacity: 0.8; color: var(--canvas); }

/* ── EDITORIAL SUMMARY ── */
.editorial-strip {
  padding: 0 0 80px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(20,20,19,0.1);
  border-radius: var(--r-btn);
  overflow: hidden;
}
.strip-item {
  background: var(--lifted);
  padding: 32px;
}
.strip-item-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--arc);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.strip-item-label::before { content: "•"; }
.strip-item h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.strip-item p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ── FEATURED CASE ── */
.featured-section { padding: 0 0 80px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before { content: "•"; color: var(--arc); }

.featured-card {
  background: var(--lifted);
  border-radius: var(--r-hero);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-card);
}
.featured-card-img {
  aspect-ratio: 4/3;
  background: var(--ink);
  overflow: hidden;
}
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-card-body { padding: 48px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.case-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--arc);
  display: flex;
  align-items: center;
  gap: 6px;
}
.case-category::before { content: "•"; }
.case-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.case-title:hover { opacity: 0.7; }
.case-excerpt { font-size: 16px; color: var(--slate); line-height: 1.6; }
.case-meta {
  font-size: 13px;
  color: var(--slate);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── GALLERY ── */
.gallery-section { padding: 0 0 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-card);
}
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-item figcaption { padding: 14px 18px; font-size: 12px; color: var(--slate); line-height: 1.4; background: var(--lifted); }

/* ── CASE CARDS ── */
.cases-section { padding: 0 0 96px; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.case-card {
  background: var(--lifted);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0,0,0,0.04) 0px 4px 16px;
}
.case-card-img {
  aspect-ratio: 16/9;
  background: var(--canvas);
  overflow: hidden;
}
.case-card-img img { width: 100%; height: 100%; object-fit: cover; }
.case-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card-body .case-category { font-size: 11px; margin-bottom: 4px; }
.case-card-body .case-title { font-size: 17px; line-height: 1.3; }
.case-card-body .case-excerpt { font-size: 14px; color: var(--slate); line-height: 1.55; flex: 1; }
.case-card-body .case-meta { font-size: 12px; color: var(--slate); margin-top: auto; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--slate);
  border-bottom: 1px solid rgba(20,20,19,0.1);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--slate); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 6px; }

/* ── ARTICLE PAGE ── */
.article-page { padding: 48px 0 96px; }
.article-header { max-width: 760px; margin: 0 auto 40px; }
.article-category-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--arc);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-category-tag::before { content: "•"; }
.article-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.article-subtitle { font-size: 18px; color: var(--slate); line-height: 1.55; margin-bottom: 24px; }
.article-byline {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--slate);
  border-top: 1px solid rgba(20,20,19,0.1);
  border-bottom: 1px solid rgba(20,20,19,0.1);
  padding: 12px 0;
  flex-wrap: wrap;
}
.article-byline strong { color: var(--ink); }

.article-hero-img {
  max-width: 760px;
  margin: 0 auto 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.article-hero-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-hero-img figcaption { padding: 10px 16px; font-size: 12px; color: var(--slate); background: var(--lifted); }

.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 88px;
  background: var(--lifted);
  border-radius: 20px;
  padding: 20px;
}
.article-toc h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.article-toc ol { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.article-toc ol li a { font-size: 13px; color: var(--slate); text-decoration: none; line-height: 1.4; }
.article-toc ol li a:hover { color: var(--ink); }

.article-body { min-width: 0; }
.article-body h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin: 28px 0 12px;
}
.article-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  border-left: 3px solid var(--arc);
  padding: 12px 0 12px 20px;
  margin: 24px 0;
  font-size: 17px;
  color: var(--slate);
  line-height: 1.6;
  font-style: italic;
}

.key-context {
  background: var(--lifted);
  border-radius: 20px;
  padding: 24px;
  margin: 32px 0;
}
.key-context h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--arc);
  margin-bottom: 12px;
}
.key-context p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.65; }

.not-covered {
  border: 1px solid rgba(20,20,19,0.12);
  border-radius: 20px;
  padding: 24px;
  margin: 32px 0;
}
.not-covered h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}
.not-covered ul { margin: 0 0 0 20px; font-size: 14px; color: var(--slate); }

.related-articles { border-top: 1px solid rgba(20,20,19,0.1); padding-top: 40px; margin-top: 40px; }
.related-articles h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.related-card {
  background: var(--lifted);
  border-radius: 20px;
  padding: 20px;
}
.related-card .case-category { font-size: 11px; margin-bottom: 8px; }
.related-card .case-title { font-size: 15px; font-weight: 500; text-decoration: none; line-height: 1.3; color: var(--ink); }
.related-card .case-title:hover { opacity: 0.7; }
.related-card .case-meta { font-size: 12px; color: var(--slate); margin-top: 10px; }

/* ── INTERIOR PAGES ── */
.page-section { padding: 64px 0 96px; }
.page-inner { max-width: 760px; }
.page-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.page-lead {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(20,20,19,0.1);
  padding-bottom: 32px;
}
.page-body h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 36px 0 14px;
}
.page-body h3 { font-size: 17px; font-weight: 500; color: var(--ink); margin: 24px 0 10px; }
.page-body p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 18px; }
.page-body ul, .page-body ol { margin: 0 0 18px 24px; font-size: 16px; color: var(--ink-soft); line-height: 1.75; }
.page-body li { margin-bottom: 6px; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group textarea {
  background: var(--lifted);
  border: 1.5px solid rgba(20,20,19,0.2);
  border-radius: var(--r-btn);
  padding: 12px 18px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--ink); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate); }
.form-group textarea { resize: vertical; min-height: 140px; border-radius: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: var(--r-btn);
  font-size: 15px;
  background: var(--lifted);
  color: var(--ink);
  border: 1px solid rgba(20,20,19,0.1);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 48px;
  margin-top: auto;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.footer-headline {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--canvas);
  margin-bottom: 48px;
  max-width: 500px;
  line-height: 1.15;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(243,240,238,0.75);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--canvas); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--slate);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer { font-size: 12px; color: var(--slate); max-width: 600px; line-height: 1.5; }
.footer-disclaimer a { color: var(--slate); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: var(--white);
  border-radius: var(--r-hero);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  z-index: 999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  font-size: 13px;
  font-family: var(--font);
  padding: 8px 20px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: none;
  font-weight: 500;
  transition: opacity 0.15s;
}
.btn-accept { background: var(--signal); color: var(--white); }
.btn-reject { background: transparent; color: var(--ink); border: 1.5px solid rgba(20,20,19,0.3) !important; }
.cookie-actions button:hover { opacity: 0.75; }

/* ── COVERAGE PAGE ── */
.coverage-page { padding: 64px 0 96px; }
.coverage-header { margin-bottom: 48px; }
.coverage-header h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 16px; }
.coverage-header p { font-size: 18px; color: var(--slate); line-height: 1.55; max-width: 600px; }
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card-body { padding: 32px; }
  .hero-frame { padding: 48px 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .burger-btn { display: flex; }

  .hero { padding: 48px 0 32px; }
  .hero-title { font-size: 32px; }
  .strip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-headline { font-size: 28px; }
  .cookie-banner { bottom: 16px; left: 16px; right: 16px; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .mobile-nav { padding: 32px 24px; }
}
