@import url("https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,600;1,700;1,800&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #4b70d8;
  --pink: #ff7daa;
  --black: #0a0a0a;
  --paper: #f2efe9;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--paper);
  color: var(--black);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo-text {
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.top-nav {
  display: flex;
  gap: 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.top-nav .is-active {
  background: var(--black);
  color: #fff;
  padding: 4px 6px;
}

.cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* ===== HERO ===== */
.news-hero {
  padding: 100px clamp(22px, 4vw, 48px) 36px;
}

.news-hero h1 {
  margin: 0 0 36px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 11vw, 140px);
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.news-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: start;
}

.news-hero-lead {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.25;
}

.news-hero-side p {
  margin: 0 0 22px;
  max-width: 34ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
}

.news-hero-side em {
  font-style: italic;
}

.news-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--pink);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease;
}

.news-signup:hover {
  transform: translateY(-2px);
}

/* ===== FEED ===== */
.news-feed {
  padding: 12px clamp(22px, 4vw, 48px) 72px;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.news-filters button {
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease;
}

.news-filters button.is-active,
.news-filters button:hover {
  background: var(--pink);
  color: var(--black);
}

/* Featured */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #faf8f4;
  margin-bottom: 18px;
  position: relative;
}

.news-featured-copy {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  min-height: min(62vh, 560px);
}

.news-featured-tag {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.news-featured-tag span {
  background: var(--pink);
  padding: 2px 6px;
  margin-right: 4px;
}

.news-featured-copy h2 {
  margin: auto 0 10px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.news-featured-sub {
  margin: 0 0 28px;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--blue);
  line-height: 1.2;
}

.news-featured-mark {
  margin: 0;
  margin-top: auto;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.news-featured-media {
  overflow: hidden;
  min-height: 320px;
}

.news-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--paper);
}

.news-date {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-title,
.news-card h3,
.press-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
}

/* Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.news-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.04);
}

.news-card-cat {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: 0;
  padding: 4px 8px;
  background: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.news-card-body {
  padding: 18px 18px 22px;
  display: grid;
  gap: 10px;
}

.news-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Press */
.press-list {
  display: grid;
  gap: 10px;
}

.press-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: 10px;
  min-height: 140px;
  transition: transform 0.2s ease;
}

.press-row:hover {
  transform: translateY(-2px);
}

.press-mag,
.press-body {
  background: #fff;
}

.press-mag {
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
}

.press-mag span {
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.press-body {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Talk */
.talk-section {
  background: var(--paper);
  color: #111;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: min(70vh, 620px);
  align-items: stretch;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.talk-main {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 48px 40px;
}

.talk-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
}

.talk-arrow {
  width: 48px;
  height: 48px;
  border: 1.5px solid #111;
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: background 0.2s ease, color 0.2s ease;
}

.talk-arrow:hover {
  background: #111;
  color: #fff;
}

.talk-visual {
  position: relative;
  overflow: hidden;
  min-height: min(70vh, 620px);
  height: 100%;
  background: #111;
}

.talk-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 56px clamp(22px, 4vw, 48px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.7fr;
  gap: 28px;
}

.footer-brand h6,
.newsletter-title {
  margin: 0;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.footer-tag {
  margin: 0 0 14px !important;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px !important;
  color: #bbb !important;
}

.footer-brand p {
  margin: 0;
  max-width: 32ch;
  color: #cfcfd4;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter-title {
  margin-top: 34px !important;
  font-size: clamp(28px, 3vw, 40px) !important;
}

.newsletter-input {
  margin-top: 16px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #4a4a4f;
}

.footer-grid > div:not(.footer-brand) h6 {
  margin: 0 0 14px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  display: block;
  color: #d0d0d5;
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid #2c2c30;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #9f9fa5;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .news-hero-row,
  .news-featured,
  .news-grid,
  .press-row,
  .talk-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-featured-copy {
    min-height: 0;
  }

  .news-featured-meta {
    grid-template-columns: 1fr;
  }

  .news-featured-media {
    aspect-ratio: 4 / 3;
  }
}
