:root {
  --black: #080808;
  --charcoal: #141414;
  --dark-grey: #262626;
  --silver-soft: #d9d9d9;
  --off-white: #f3f3f3;
  --ink: #111111;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(0, 0, 0, 0.22);
  --wrap: 960px;
  --ease: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  min-height: 100vh;
  font-family: "Raleway", sans-serif;
  background: var(--black);
  color: var(--off-white);
  line-height: 1.72;
}

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.4rem);
  margin-top: 1.2rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  margin-top: 1rem;
}

p,
li {
  font-size: 1rem;
  color: #e8e8e8;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(10px);
}

.header-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.back-link {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.22rem;
}

.back-link:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

.article-shell {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}

.article-card {
  border: 1px solid var(--line-dark);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #d1d1d1;
  margin-bottom: 0.72rem;
}

.meta {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meta span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.32rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.6rem;
  font-weight: 700;
}

.article-card p + p,
.article-card p + ul,
.article-card ul + p,
.article-card h2 + p,
.article-card h3 + p {
  margin-top: 0.75rem;
}

.article-card ul {
  margin-left: 1.2rem;
}

.article-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.62rem 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 700;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.button:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.button-light {
  background: #f2f2f2;
  border-color: #f2f2f2;
  color: #111111;
}

.button-light:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: #070707;
  padding: 1.2rem 0;
  text-align: center;
}

.footer-credit {
  font-size: 0.84rem;
  color: #d0d0d0;
}

.footer-credit a {
  color: #f2f2f2;
  font-weight: 700;
}

@media (max-width: 760px) {
  .header-wrap {
    min-height: 68px;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .article-cta .button {
    width: 100%;
  }
}
