/* ============================================================
   TechBuzz China — Global Stylesheet
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --red:       #C8102E;
  --red-dark:  #9E0C23;
  --black:     #0D0D0D;
  --ink:       #1A1A1A;
  --mid:       #4A4A4A;
  --muted:     #888;
  --border:    #E2E2E2;
  --surface:   #F7F7F7;
  --white:     #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --nav-h: 64px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --banner-h: 40px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography Scale --- */
.t-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.t-headline {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.t-title {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.t-body   { font-family: var(--font-body); font-weight: 400; line-height: 1.65; }
.t-label  { font-family: var(--font-body); font-weight: 600; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.t-red    { color: var(--red); }
.t-muted  { color: var(--muted); }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: var(--banner-h); left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 24px rgba(0,0,0,.06);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}
.nav__logo-name span { color: var(--red); }
.nav__logo-tag {
  font-size: .625rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav__link {
  position: relative;
  padding: .4rem .75rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: .01em;
  transition: color .2s;
  border-radius: 4px;
}
.nav__link:hover { color: var(--black); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .75rem; right: .75rem;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta {
  padding: .5rem 1.125rem;
  background: var(--red);
  color: var(--white) !important;
  font-size: .8125rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background .2s, transform .15s;
  letter-spacing: .01em;
}
.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav__cta::after { display: none; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + var(--banner-h)); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem clamp(1.25rem,4vw,3rem);
  flex-direction: column;
  gap: .25rem;
  z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: .75rem 0;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + var(--banner-h));
  position: relative;
  overflow: hidden;
}
.hero__bg-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  opacity: .5;
}
.hero__bg-line:nth-child(1) { left: 25%; }
.hero__bg-line:nth-child(2) { left: 50%; }
.hero__bg-line:nth-child(3) { left: 75%; }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
}
.hero__content { position: relative; z-index: 1; }
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) .1s forwards;
}
.hero__kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.hero__kicker-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero__headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero__headline .word span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .7s var(--ease-out);
}
.hero__headline.visible .word span { transform: translateY(0); }
.hero__headline .accent { color: var(--red); font-style: italic; }
.hero__sub {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) .5s forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) .7s forwards;
}
.hero__visual {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn .8s var(--ease-out) .4s forwards;
}
.hero__card-stack {
  position: relative;
  aspect-ratio: 4/3;
}
.hero__card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
}
.hero__card--main {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__card--float {
  width: 55%;
  bottom: -1.5rem;
  right: -1.5rem;
  padding: 1rem 1.25rem;
  background: var(--black);
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.hero__card-label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.hero__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--black);
}
.hero__card--float .hero__card-label { color: rgba(255,255,255,.5); }
.hero__card--float .hero__card-title { font-size: .9375rem; color: var(--white); }
.hero__card-meta {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 1rem;
}
.hero__card-tag {
  display: inline-block;
  padding: .2rem .6rem;
  background: var(--surface);
  border-radius: 2px;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: .01em;
  transition: all .2s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.25);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--mid);
  padding-inline: .25rem;
}
.btn-ghost:hover { color: var(--black); }
.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform .2s var(--ease-out);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   CREDIBILITY BAR
   ============================================================ */
.cred {
  padding-block: 3.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cred__stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.cred__stat { text-align: center; }
.cred__stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.cred__stat-number span { color: var(--red); }
.cred__stat-label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .4rem;
}
.cred__logos-label {
  text-align: center;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.cred__marquee-wrap { overflow: hidden; position: relative; }
.cred__marquee-wrap::before,
.cred__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.cred__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.cred__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.cred__marquee {
  display: flex;
  gap: 3.5rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.cred__marquee-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8125rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s;
  user-select: none;
}
.cred__marquee-logo:hover { color: var(--mid); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: 3rem;
}
.section-header--center { text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .875rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.15;
}
.section-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.6;
  max-width: 540px;
  margin-top: .75rem;
}
.section-header--center .section-sub { margin-inline: auto; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { padding-block: 6rem; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--surface); }
.service-card__icon {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
  color: var(--red);
}
.service-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--surface);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color .25s;
}
.service-card:hover .service-card__number { color: var(--border); }
.service-card__label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .625rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -.025em;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: .875rem;
}
.service-card__desc {
  font-size: .9375rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.75rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: .02em;
  transition: color .2s;
}
.service-card__link-arrow {
  display: inline-block;
  transition: transform .2s var(--ease-out);
}
.service-card:hover .service-card__link { color: var(--red); }
.service-card:hover .service-card__link-arrow { transform: translateX(4px); }

/* ============================================================
   FEATURED RESEARCH
   ============================================================ */
.research-feature {
  padding-block: 6rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.research-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.research-feature__cover {
  position: relative;
}
.research-feature__cover-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 64px rgba(0,0,0,.12);
}
.research-feature__cover-badge {
  position: absolute;
  top: -1rem; right: -1rem;
  background: var(--red);
  color: var(--white);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .875rem;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(200,16,46,.4);
}
.research-feature__content {}
.research-feature__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -.035em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.research-feature__desc {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.research-feature__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.research-feature__stat-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  color: var(--black);
  line-height: 1;
}
.research-feature__stat-l {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .25rem;
}
.research-feature__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   ARTICLES GRID
   ============================================================ */
.articles { padding-block: 6rem; }
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.75rem;
  transition: transform .2s var(--ease-out);
}
.article-card:hover { transform: translateY(-3px); }
.article-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: var(--surface);
}
.article-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.article-card:hover .article-card__img { transform: scale(1.04); }
.article-card__tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.article-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: .6rem;
  flex: 1;
  position: relative;
  display: inline;
  background-image: linear-gradient(var(--black), var(--black));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .3s var(--ease-out);
}
.article-card:hover .article-card__title { background-size: 100% 1px; }
.article-card__title-wrap { margin-bottom: .6rem; }
.article-card__excerpt {
  font-size: .875rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__meta {
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
}
.article-card__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.articles__footer { margin-top: 3rem; text-align: center; }

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */
.newsletter-cta {
  padding-block: 6rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.newsletter-cta__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.newsletter-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.newsletter-cta__eyebrow {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.newsletter-cta__eyebrow::before,
.newsletter-cta__eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--red);
}
.newsletter-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -.035em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.newsletter-cta__title em {
  font-style: italic;
  color: var(--red);
}
.newsletter-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}
.newsletter-cta__form {
  display: flex;
  gap: .75rem;
  max-width: 440px;
  margin-inline: auto;
}
.newsletter-cta__input {
  flex: 1;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .875rem;
  border-radius: 4px;
  outline: none;
  transition: border-color .2s;
}
.newsletter-cta__input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-cta__input:focus { border-color: rgba(255,255,255,.4); }
.newsletter-cta__btn {
  padding: .75rem 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.newsletter-cta__btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.newsletter-cta__proof {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin-top: 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-block: 3.5rem;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -.03em;
  color: var(--black);
  margin-bottom: .25rem;
}
.footer__brand-name span { color: var(--red); }
.footer__brand-tag {
  font-size: .6875rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__brand-desc {
  font-size: .875rem;
  color: var(--mid);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: .75rem;
}
.footer__social-link {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  font-size: .8125rem;
  font-weight: 600;
  transition: all .2s;
}
.footer__social-link:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--surface);
}
.footer__col-title {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer__col-link {
  font-size: .875rem;
  color: var(--mid);
  transition: color .2s;
}
.footer__col-link:hover { color: var(--black); }
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: .8125rem;
  color: var(--muted);
}

/* ============================================================
   REVEAL ANIMATIONS (scroll-triggered)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .6; }
}

/* ============================================================
   INNER PAGE HERO (used by sub-pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--banner-h) + 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.page-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--red);
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -.04em;
  color: var(--black);
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 1.25rem;
}
.page-hero__sub {
  font-size: 1.125rem;
  color: var(--mid);
  line-height: 1.65;
  max-width: 600px;
}

/* ============================================================
   TRIPS PAGE EXTRAS
   ============================================================ */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-block: 6rem;
}
.trip-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.trip-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.trip-card__header {
  padding: 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.trip-card__type {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.trip-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.025em;
  color: var(--black);
}
.trip-card__price {
  text-align: right;
}
.trip-card__price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  color: var(--black);
}
.trip-card__price-note {
  font-size: .6875rem;
  color: var(--muted);
}
.trip-card__body { padding: 2rem; }
.trip-card__desc {
  font-size: .9375rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.trip-card__features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.trip-card__feature {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--mid);
}
.trip-card__feature-dot {
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-top: .5rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding-block: 5rem;
}
.about-prose {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
}
.about-prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.025em;
  color: var(--black);
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.about-prose h3:first-child { margin-top: 0; }
.about-prose p { margin-bottom: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 480px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .research-feature__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .research-feature__cover { max-width: 280px; }
  .footer__inner { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .grid-3, .articles__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .trips-grid { grid-template-columns: 1fr; }
  .newsletter-cta__form { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; }
  .cred__stats { gap: 2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: clamp(2rem, 8vw, 2.5rem); }
  .research-feature__stats { flex-wrap: wrap; gap: 1.25rem; }
}

/* ============================================================
   HERO FEED (live Substack articles)
   ============================================================ */
.hero__feed {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
}
.hero__feed-header {
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
}
.hero__feed-kicker {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--mid);
}
.hero__feed-archive {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  transition: color .2s;
}
.hero__feed-archive:hover { color: var(--black); }
.hero__feed-item {
  display: block;
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.hero__feed-item:last-child { border-bottom: none; }
.hero__feed-item:hover { background: var(--surface); }
.hero__feed-item__inner {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.hero__feed-item__thumb {
  width: 64px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
}
.hero__feed-item__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__feed-item__body { flex: 1; min-width: 0; }
.hero__feed-item__date {
  font-size: .625rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.hero__feed-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: -.02em;
  color: var(--black);
  line-height: 1.3;
  transition: color .2s;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero__feed-item:hover .hero__feed-item__title { color: var(--red); }

/* Shimmer skeleton */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.hero__feed-skeleton {
  padding: .875rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.hero__feed-skeleton__row {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--border);
}
.hero__feed-skeleton__row:last-child { border-bottom: none; padding-bottom: 0; }
.hero__feed-skeleton__line {
  height: 11px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--border) 25%, #f0f0f0 50%, var(--border) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

/* ============================================================
   TRIPS STRIP (below hero)
   ============================================================ */
.trips-strip {
  background: #F0EDE8;
  padding-block: 3.5rem;
}
.trips-strip__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}
.trips-strip__eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: .625rem;
}
.trips-strip__eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1.5px;
  background: var(--red);
}
.trips-strip__all {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s;
}
.trips-strip__all:hover { color: var(--black); }
.trips-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.trips-strip__card {
  display: block;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.75);
  transition: border-color .2s, background .2s, transform .2s var(--ease-out);
}
.trips-strip__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.trips-strip__card:hover::before { transform: scaleX(1); }
.trips-strip__card:hover {
  border-color: rgba(0,0,0,.25);
  background: var(--white);
  transform: translateY(-2px);
}
.trips-strip__card-badge {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .625rem;
}
.trips-strip__card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.025em;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: .5rem;
}
.trips-strip__card-meta {
  font-size: .875rem;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.trips-strip__card-cta {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--red);
  transition: color .2s;
}
.trips-strip__card:hover .trips-strip__card-cta { color: #e8304a; }
.trips-strip__card--custom .trips-strip__card-badge { color: var(--muted); }

@media (max-width: 1024px) {
  .trips-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trips-strip__card--custom { display: none; }
}
@media (max-width: 600px) {
  .trips-strip__grid { grid-template-columns: 1fr; }
  .trips-strip__card--custom { display: none; }
}

/* ============================================================
   LOGO MARQUEE (img-based)
   ============================================================ */
.cred__marquee-img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.42);
  transition: filter .3s;
  flex-shrink: 0;
  display: block;
}
.cred__marquee-img:hover { filter: grayscale(0) opacity(1); }

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--banner-h);
  background: var(--red);
  z-index: 200;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.announcement-bar.dismissed {
  display: none;
}
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding-right: 2.5rem; /* room for dismiss ✕ */
}
.announcement-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.announcement-bar__text {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}
.announcement-bar__text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255,255,255,.4);
  transition: text-decoration-color .2s;
}
.announcement-bar__text a:hover { text-decoration-color: var(--white); }
.announcement-bar__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}
.announcement-bar__cta {
  background: rgba(255,255,255,.18);
  padding: .2rem .7rem;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: background .2s !important;
  text-decoration: none !important;
}
.announcement-bar__cta:hover { background: rgba(255,255,255,.3) !important; }
.announcement-bar__dismiss {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1;
  padding: .25rem .4rem;
  border-radius: 3px;
  transition: color .2s, background .2s;
  z-index: 2;
}
.announcement-bar__dismiss:hover {
  color: var(--white);
  background: rgba(0,0,0,.15);
}
@keyframes bannerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* When banner is dismissed, shift nav/hero back up */
body.banner-dismissed {
  --banner-h: 0px;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero__carousel-wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn .8s var(--ease-out) .4s forwards;
}
.hero__carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: .25rem; /* room for box-shadow */
}
.hero__carousel::-webkit-scrollbar { display: none; }
.hero__carousel.dragging { cursor: grabbing; scroll-behavior: auto; }
.hero__carousel-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.hero__carousel-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.hero__carousel-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.hero__carousel-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.hero__carousel-card:hover .hero__carousel-card__thumb img {
  transform: scale(1.04);
}
.hero__carousel-card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__carousel-card__body {
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hero__carousel-card__date {
  font-size: .625rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .375rem;
}
.hero__carousel-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.hero__carousel-card:hover .hero__carousel-card__title { color: var(--red); }
/* Navigation dots + arrows */
.hero__carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .875rem;
}
.hero__carousel-dots {
  display: flex;
  gap: .375rem;
}
.hero__carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, transform .2s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.hero__carousel-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
.hero__carousel-arrows {
  display: flex;
  gap: .375rem;
}
.hero__carousel-arrow {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  color: var(--mid);
  transition: all .2s var(--ease-out);
  background: var(--white);
}
.hero__carousel-arrow:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--surface);
}
.hero__carousel-arrow:disabled {
  opacity: .3;
  cursor: default;
}
/* Skeleton placeholders */
.hero__carousel-skel {
  display: flex;
  gap: 1rem;
}
.hero__carousel-skel__card {
  flex: 0 0 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.hero__carousel-skel__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(90deg, var(--border) 25%, #f0f0f0 50%, var(--border) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}
.hero__carousel-skel__body {
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hero__carousel-skel__line {
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--border) 25%, #f0f0f0 50%, var(--border) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}
/* Header row above carousel */
.hero__carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}
.hero__carousel-kicker {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--mid);
}
.hero__carousel-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__carousel-archive {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.hero__carousel-archive:hover { color: var(--black); }

/* ============================================================
   SPECIAL PROJECTS SECTION
   ============================================================ */
.special-projects {
  padding-block: 6rem;
  border-top: 1px solid var(--border);
}
.special-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .special-projects__grid { grid-template-columns: repeat(2, 1fr); }
}
.project-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
  text-decoration: none;
  color: inherit;
  background: var(--white);
}
.project-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.project-card__cover {
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
}
.project-card__cover-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s var(--ease-out);
}
.project-card:hover .project-card__cover-inner { transform: scale(1.03); }
.project-card__cover-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: 2px;
}
.project-card__body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-card__type {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .625rem;
}
.project-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.025em;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: .75rem;
  transition: color .2s;
}
.project-card:hover .project-card__title { color: var(--red); }
.project-card__desc {
  font-size: .9375rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}
.project-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: .02em;
  transition: color .2s;
}
.project-card__cta-arrow {
  display: inline-block;
  transition: transform .2s var(--ease-out);
}
.project-card:hover .project-card__cta { color: var(--red); }
.project-card:hover .project-card__cta-arrow { transform: translateX(4px); }
/* Coming soon state */
.project-card--wip .project-card__cover-inner {
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a2e 60%, #2d1a10 100%);
}
.project-card--wip .project-card__wip-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.025em;
  color: rgba(255,255,255,.15);
  text-align: center;
  padding: 1rem;
}
/* Report cover style */
.project-card--report .project-card__cover-inner {
  background: linear-gradient(135deg, #0d0d0d, #1a1a2e, #c8102e);
  padding: 1.5rem;
  align-items: flex-end;
  justify-content: flex-start;
}
.project-card--report .project-card__cover-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--white);
  max-width: 220px;
}
.project-card--report .project-card__cover-sub {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .5rem;
}
@media (max-width: 768px) {
  .special-projects__grid { grid-template-columns: 1fr; }
}
