:root {
  --site-ink: #0C0C10;
  --site-ink-2: #131318;
  --site-ink-3: #1C1C26;
  --site-accent: #C4790A;
  --site-accent-light: #F0A825;
  --site-accent-dim: #8B5A07;
  --site-cream: #F3EFE8;
  --site-light-gray: #F0ECE5;
  --site-mid-gray: #CBD5E1;
  --site-slate: #64748B;
  --site-copy: #475569;
  --site-text: #1E293B;
  --site-white: #FFFFFF;
  --site-light: #E2E8F0;
  --site-max: 1140px;
  --site-radius: 4px;
  --site-radius-lg: 8px;
  --site-space-section-sm: 64px;
  --site-space-section-md: 72px;
  --site-space-section-lg: 88px;
  --site-shadow-card: 0 8px 28px rgba(0, 0, 0, .08);

  --ink: var(--site-ink);
  --ink2: var(--site-ink-2);
  --ink3: var(--site-ink-3);
  --amber: var(--site-accent);
  --amber-lt: var(--site-accent-light);
  --amber-dim: var(--site-accent-dim);
  --cream: var(--site-cream);
  --lgray: var(--site-light-gray);
  --mgray: var(--site-mid-gray);
  --slate: var(--site-slate);
  --text: var(--site-text);
  --light: var(--site-light);
  --white: var(--site-white);
  --max: var(--site-max);
  --r: var(--site-radius);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--max, var(--site-max));
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r, var(--site-radius));
  transition: all .2s ease;
  cursor: pointer;
  border: none;
}

.btn-teal,
.btn-cream,
.btn-primary {
  background: var(--cream, var(--site-cream));
  color: var(--ink, var(--site-ink));
}

.btn-teal:hover,
.btn-cream:hover,
.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
}

.btn-ghost:hover {
  border-color: var(--amber-lt, var(--teal-lt, var(--site-accent-light)));
  color: var(--amber-lt, var(--teal-lt, var(--site-accent-light)));
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink, var(--site-ink));
  border: 1.5px solid var(--mgray, #CBD5E1);
}

.btn-ghost-dark:hover {
  border-color: var(--amber, var(--teal, var(--site-accent)));
  color: var(--amber-dim, var(--teal-dim, var(--site-accent)));
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .22);
}

.btn-ghost-light:hover {
  border-color: var(--amber-lt, var(--teal-lt, var(--site-accent-light)));
  color: var(--amber-lt, var(--teal-lt, var(--site-accent-light)));
}

.btn-outline {
  background: transparent;
  color: var(--teal-lt, var(--site-accent-light));
  border: 1.5px solid var(--teal, var(--site-accent));
}

.btn-outline:hover {
  background: var(--teal-dim, rgba(196, 121, 10, .15));
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-lt, var(--teal-lt, var(--site-accent-light)));
  margin-bottom: 12px;
}

.tag-dark {
  color: var(--amber-dim, var(--teal-dim, var(--site-accent)));
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--amber, var(--teal, var(--site-accent)));
  margin: 18px 0;
}

.section-shell {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-heading {
  display: grid;
  gap: 10px;
}

.section-heading-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ink, var(--site-ink));
  letter-spacing: -.02em;
  line-height: 1.2;
}

.section-heading-copy {
  max-width: 42rem;
  font-size: 15px;
  color: var(--slate, var(--site-slate));
  line-height: 1.8;
}

.section-heading.centered {
  text-align: center;
  justify-items: center;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-dim, var(--site-accent));
  transition: gap .2s;
}

.section-link:hover {
  gap: 10px;
}

.chip-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--mgray, var(--site-mid-gray));
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate, var(--site-slate));
  cursor: pointer;
  transition: all .2s;
}

.chip-link:hover,
.chip-link.active {
  border-color: var(--amber, var(--site-accent));
  color: var(--amber-dim, var(--site-accent));
  background: rgba(196, 121, 10, .06);
}

.article-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--mgray, var(--site-mid-gray));
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.article-card:hover {
  box-shadow: var(--site-shadow-card);
  transform: translateY(-2px);
}

.article-card-hitarea {
  display: block;
}

.article-cover {
  min-height: 96px;
  background: linear-gradient(135deg, #111318 0%, #1c2029 60%, #0f1116 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 18px 14px;
}

.article-cover-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(240, 168, 37, .18), transparent 38%),
    linear-gradient(120deg, transparent 0 54%, rgba(255, 255, 255, .04) 54% 56%, transparent 56% 100%);
  opacity: .95;
}

.article-cover-label,
.article-cover-pill {
  position: relative;
  z-index: 1;
}

.article-cover-label {
  font-size: 10px;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

.article-cover-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 10px;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-cover-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber, var(--site-accent));
}

.article-body {
  padding: 22px 20px;
}

.article-cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-dim, var(--site-accent));
  margin-bottom: 8px;
}

.article-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, var(--site-ink));
  line-height: 1.35;
  margin-bottom: 8px;
}

.article-card p {
  font-size: 13.5px;
  color: var(--site-copy);
  line-height: 1.65;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--amber-dim, var(--site-accent));
  margin-top: 14px;
  transition: gap .2s;
}

.article-link:hover {
  gap: 8px;
}

.article-meta {
  font-size: 11.5px;
  color: #94A3B8;
  margin-top: 10px;
}

.cta-band {
  background: var(--cream, var(--site-cream));
  padding: var(--site-space-section-md) 0;
  text-align: center;
}

.cta-band-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--ink, var(--site-ink));
  letter-spacing: -.02em;
  line-height: 1.2;
}

.cta-band p {
  font-size: 15px;
  color: var(--slate, var(--site-slate));
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.8;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-band-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  margin-top: 20px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 16, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height, 68px);
}

.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav-name {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.nav-dr,
.nav-logo .nav-dr {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-lt, var(--teal-lt, var(--site-accent-light)));
  margin-bottom: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 13px;
}

footer {
  background: #080808;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-sig {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.footer-sig .f-dr {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-lt, var(--teal-lt, var(--site-accent-light)));
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .28);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 22px;
  color: rgba(255, 255, 255, .6);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  transition: color .2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .7);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: 12px;
  color: rgba(255, 255, 255, .2);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .3);
  transition: color .2s;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .section-shell {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}