:root {
  --bg: #fbf7ef;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --ink: #211a1c;
  --muted: #665e5a;
  --line: #e7dccd;
  --accent: #7a2430;
  --accent-2: #0f5c66;
  --accent-3: #c07a2b;
  --soft: #f3eadb;
  --dark: #201315;
  --dark-2: #362126;
  --radius: 24px;
  --shadow: 0 22px 55px rgba(61, 35, 18, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 239, .94);
  border-bottom: 1px solid rgba(231, 220, 205, .9);
}

.topbar {
  background: var(--dark);
  color: #f9efe0;
  font-size: .82rem;
}
.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar__inner span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  border-radius: 999px;
  background: var(--accent-3);
  vertical-align: middle;
}

.header-main {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}
.brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff7ec;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--line);
}
.brand__mark svg { width: 38px; height: 38px; }
.brand__text {
  display: grid;
  line-height: 1;
  letter-spacing: -.04em;
}
.brand__text strong {
  font-size: 1.58rem;
  font-weight: 850;
}
.brand__text em {
  font-size: 1.05rem;
  color: var(--accent-2);
  font-style: normal;
  font-weight: 760;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .95rem;
  font-weight: 700;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
}
.nav a:hover {
  background: #fff4e5;
}
.nav__cta {
  background: var(--ink);
  color: #fff;
}
.nav__cta:hover { background: var(--accent); color: #fff; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 42px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(192, 122, 43, .22), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(15, 92, 102, .16), transparent 30%),
    linear-gradient(180deg, #fff7ec 0%, var(--bg) 86%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -70px;
  width: 520px;
  height: 250px;
  background: repeating-linear-gradient(120deg, rgba(122, 36, 48, .09), rgba(122, 36, 48, .09) 8px, transparent 8px, transparent 24px);
  border-radius: 100% 0 0 0;
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow--light { color: #f2b76d; }
.hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.075em;
}
.lead {
  margin: 24px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 25px rgba(122, 36, 48, .2);
}
.button--primary:hover { background: #641d28; color: #fff; }
.button--secondary {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}
.button--secondary:hover { background: #fff4e5; }
.hero-card {
  position: relative;
  padding: 30px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(150deg, #fffef9, #f7ead8);
  box-shadow: var(--shadow);
  border: 1px solid rgba(231, 220, 205, .9);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -35px -45px auto;
  width: 240px;
  height: 160px;
  background: radial-gradient(circle, rgba(15, 92, 102, .22) 0 4px, transparent 5px);
  background-size: 20px 20px;
  transform: rotate(-8deg);
}
.hero-card__label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f0dfc7;
  color: #6b3b11;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.hero-card h2 {
  position: relative;
  margin: 22px 0 12px;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.hero-card p {
  position: relative;
  color: var(--muted);
  margin-bottom: 24px;
}
.mini-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mini-stats div {
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(231, 220, 205, .75);
}
.mini-stats strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}
.mini-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .8rem;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(61,35,18,.06);
  overflow: hidden;
}
.ticker__label {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-size: .82rem;
  font-weight: 850;
}
.ticker__items {
  display: flex;
  gap: 22px;
  white-space: nowrap;
  overflow: auto;
  scrollbar-width: none;
}
.ticker__items::-webkit-scrollbar { display: none; }
.ticker__items a { color: var(--muted); font-weight: 700; }

.section { padding: 78px 0; }
.section--soft { background: var(--soft); }
.section--dark {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff7ec;
}
.section__head {
  max-width: 780px;
  margin-bottom: 28px;
}
.section__head--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 42px;
  align-items: end;
}
.section__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.section__head p:last-child {
  color: var(--muted);
  margin: 0;
}

.news-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
}
.card, .compact-card, .feature-card, .quote-card, .opinion-card, .newsletter {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: 0 16px 35px rgba(61, 35, 18, .08);
}
.card, .feature-card, .quote-card, .opinion-card, .newsletter { border-radius: var(--radius); }
.lead-article { overflow: hidden; }
.card__body { padding: 28px; }
.article-art {
  height: 300px;
  background:
    linear-gradient(180deg, rgba(15,92,102,.15), rgba(122,36,48,.1)),
    radial-gradient(circle at 24% 30%, rgba(255,255,255,.55) 0 9px, transparent 10px),
    repeating-linear-gradient(145deg, rgba(122,36,48,.16) 0 10px, transparent 10px 26px),
    linear-gradient(135deg, #f1d8b5, #e9c391);
  position: relative;
}
.article-art::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  height: 44px;
  background: linear-gradient(90deg, transparent, rgba(15,92,102,.65), transparent);
  border-radius: 999px;
}
.tag {
  display: inline-flex;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tag--light { color: #f2b76d; }
.lead-article h3,
.compact-card h3,
.opinion-card h3 {
  margin: 10px 0 10px;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.lead-article h3 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
.lead-article p, .compact-card p, .opinion-card p, .feature-card p, .split p, .newsletter p { color: var(--muted); }
.meta { color: var(--muted); font-size: .9rem; font-weight: 700; }
.side-list { display: grid; gap: 16px; }
.compact-card {
  padding: 22px;
  border-radius: 22px;
}
.compact-card p { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card { padding: 24px; }
.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #f4dfbf;
  color: var(--accent);
  font-weight: 900;
}
.feature-card h3 { margin: 20px 0 8px; font-size: 1.3rem; }
.feature-card p { margin-bottom: 0; }

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.region-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent 10%, rgba(32,19,21,.72) 100%),
    repeating-linear-gradient(130deg, rgba(122,36,48,.18) 0 10px, rgba(255,255,255,.18) 10px 22px),
    linear-gradient(135deg, #d8b06f, #9f5238);
  color: #fff;
  overflow: hidden;
}
.region-card:nth-child(2) { background: linear-gradient(180deg, transparent 10%, rgba(32,19,21,.72) 100%), repeating-linear-gradient(130deg, rgba(15,92,102,.18) 0 10px, rgba(255,255,255,.18) 10px 22px), linear-gradient(135deg, #c4a152, #6f7f42); }
.region-card:nth-child(3) { background: linear-gradient(180deg, transparent 10%, rgba(32,19,21,.72) 100%), repeating-linear-gradient(130deg, rgba(192,122,43,.16) 0 10px, rgba(255,255,255,.15) 10px 22px), linear-gradient(135deg, #c68a45, #744536); }
.region-card:nth-child(4) { background: linear-gradient(180deg, transparent 10%, rgba(32,19,21,.72) 100%), repeating-linear-gradient(130deg, rgba(255,255,255,.16) 0 10px, transparent 10px 22px), linear-gradient(135deg, #0f5c66, #7a2430); }
.region-card span {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .86;
}
.region-card strong {
  font-size: 1.2rem;
  line-height: 1.15;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: center;
}
.split h2, .newsletter h2, .opinion-grid h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: inset 0 0 0 5px #dcebee;
}
.quote-card {
  padding: 28px;
  background: linear-gradient(145deg, #fff, #f5e5cd);
}
.quote-card blockquote {
  margin: 0 0 18px;
  font-size: 1.8rem;
  line-height: 1.15;
  letter-spacing: -.04em;
  font-weight: 820;
}
.quote-card span { color: var(--accent); font-weight: 850; }

.opinion-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 46px;
  align-items: center;
}
.opinion-grid p { color: #d8c7bc; }
.opinion-card {
  padding: 26px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.opinion-card p { margin-bottom: 0; }

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 32px;
  align-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 94% 0, rgba(192,122,43,.18), transparent 34%),
    var(--paper-strong);
}
.newsletter__form {
  display: grid;
  gap: 12px;
}
.newsletter input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.newsletter small { color: var(--muted); }

.site-footer {
  padding: 52px 0;
  background: var(--dark);
  color: #f9efe0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 34px;
}
.brand--footer .brand__mark { background: rgba(255,255,255,.08); color: #f2b76d; border-color: rgba(255,255,255,.12); }
.brand--footer .brand__text em { color: #f2b76d; }
.site-footer p { max-width: 420px; color: #d8c7bc; }
.site-footer h2 {
  margin: 0 0 12px;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #f2b76d;
}
.site-footer a:not(.brand) {
  display: block;
  color: #d8c7bc;
  margin: 8px 0;
}
.site-footer a:hover { color: #fff; }

@media (max-width: 900px) {
  .topbar__inner { gap: 10px; }
  .topbar__inner span:not(:last-child)::after { display: none; }
  .menu-button { display: inline-block; }
  .nav {
    position: absolute;
    top: 112px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; }
  .hero { padding-top: 48px; }
  .hero__grid, .news-layout, .section__head--row, .split, .opinion-grid, .newsletter, .footer-grid { grid-template-columns: 1fr; }
  .feature-grid, .region-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { max-width: 560px; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .header-main { min-height: 70px; }
  .brand__mark { width: 46px; height: 46px; }
  .brand__text strong { font-size: 1.34rem; }
  .brand__text em { font-size: .92rem; }
  .nav { top: 104px; }
  .hero h1 { font-size: clamp(2.45rem, 15vw, 4.2rem); }
  .hero-card, .card__body, .newsletter { padding: 22px; }
  .mini-stats { grid-template-columns: 1fr; }
  .ticker { align-items: flex-start; border-radius: 22px; flex-direction: column; }
  .ticker__items { width: 100%; }
  .section { padding: 58px 0; }
  .feature-grid, .region-grid { grid-template-columns: 1fr; }
  .article-art { height: 220px; }
}
