/* Tesla Cybercabs — independent launch-day site
   Dark stainless · gold · geometric. Mobile-first. */

:root {
  --bg: #0a0a0a;
  --bg-2: #101010;
  --bg-3: #161616;
  --bg-4: #1c1c1c;
  --gold: #c9a227;
  --gold-2: #e4c056;
  --gold-3: #8f7318;
  --gold-dim: rgba(201, 162, 39, 0.16);
  --silver: #cfd3d8;
  --steel: #9aa1aa;
  --text: #ecece8;
  --muted: #9b9b96;
  --faint: #6c6c68;
  --line: rgba(201, 162, 39, 0.22);
  --line-2: rgba(255, 255, 255, 0.08);
  --ok: #8fca7a;
  --err: #e07a7a;
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --max: 1120px;
  --narrow: 720px;
  --radius: 14px;
  --header: 72px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: #f0e2a8; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
::selection { background: var(--gold); color: #1a1406; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: #1a1406;
  padding: 0.5rem 0.9rem;
  z-index: 100;
  font-weight: 700;
}
.skip:focus { left: 8px; }

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

/* Stainless type */
.steel-text {
  background: linear-gradient(180deg, #ffffff 0%, #c9ced4 36%, #7d848e 50%, #e8eaed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--silver);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}
.brand img, .brand svg { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-text span {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}

#site-nav { display: flex; align-items: center; gap: 0.2rem 1.1rem; }
#site-nav a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}
#site-nav a:hover, #site-nav a[aria-current="page"] {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
}
#site-nav .nav-cta {
  border: 1px solid var(--gold);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: var(--gold-2);
  border-bottom: 1px solid var(--gold);
}
#site-nav .nav-cta:hover { background: var(--gold); color: #1a1406; }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  padding: 0.45rem 0;
  animation: marquee 42s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero (photo-forward) ---------- */
.hero {
  position: relative;
  padding: 2.4rem 0 3.2rem;
  overflow: hidden;
  isolation: isolate;
}
.hero.hero-photo {
  min-height: min(92vh, 840px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4.5rem 0 2.4rem;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 58%;
  z-index: -2;
  max-width: none;
  filter: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,6,6,0.88) 0%, rgba(6,6,6,0.62) 42%, rgba(6,6,6,0.28) 100%),
    linear-gradient(180deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.12) 38%, rgba(6,6,6,0.72) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4rem;
  align-items: end;
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.hero.hero-photo .card {
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(201, 162, 39, 0.38);
}
.hero.hero-photo .lede { color: #d8d6cc; max-width: 34rem; }
.hero.hero-photo h1 { text-shadow: 0 8px 40px rgba(0,0,0,0.55); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.kicker .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,162,39,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(201,162,39,0); }
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.4rem;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--silver);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}
.meta-row span { color: var(--gold); }

.hero-art { position: relative; min-height: 0; }
.hero-photo-credit {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1.1rem auto 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236,236,232,0.62);
  position: relative;
  z-index: 1;
}
.launch-clock {
  margin-top: 0.6rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(201,162,39,0.06);
}
.launch-clock[data-mode="live"] { color: #f0e2a8; border-color: var(--gold); }

/* ---------- Cards / forms ---------- */
.card {
  background: linear-gradient(180deg, #161616 0%, #101010 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}
.card h2, .card .card-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card .hint { color: var(--muted); font-size: 0.9rem; margin: 0 0 1rem; }

label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 0.7rem 0 0.3rem;
}
.req { color: var(--gold); }
input, select, textarea {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid var(--line-2);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:hover, select:hover, textarea:hover { border-color: var(--line); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
  outline: none;
}
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.hp {
  position: absolute !important;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-error {
  color: var(--err);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.6; cursor: wait; }
.btn-gold {
  background: linear-gradient(180deg, #e8c85a 0%, #c9a227 48%, #9a7a16 100%);
  color: #1a1406;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 8px 24px rgba(201,162,39,0.28);
}
.btn-gold:hover { filter: brightness(1.08); color: #1a1406; }
.btn-ghost {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold-dim); color: var(--gold-2); }
.btn-block { width: 100%; margin-top: 1rem; }

.success {
  text-align: center;
  padding: 1.2rem 0.4rem;
}
.success h3 { margin: 0.4rem 0 0.4rem; color: var(--gold-2); }
.success p { color: var(--muted); margin: 0.3rem 0 0.8rem; }
.check {
  width: 48px; height: 48px; margin: 0 auto;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 1.4rem;
}

/* ---------- Sections ---------- */
section { padding: 3.2rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.35rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 0 0 2.5rem;
}
.stat {
  border: 1px solid var(--line);
  background: #101010;
  padding: 1rem 1.05rem;
  border-radius: 12px;
}
.stat b {
  display: block;
  font-size: 1.55rem;
  color: var(--gold-2);
  letter-spacing: -0.03em;
  font-weight: 700;
}
.stat span { color: var(--muted); font-size: 0.82rem; }

/* News cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.news-card:hover { border-color: var(--gold); transform: translateY(-2px); color: inherit; }
.news-card img { width: 100%; height: 200px; object-fit: cover; background: #141414; }
.news-card .body { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.news-card .tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.news-card h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.news-card p { margin: 0; color: var(--muted); font-size: 0.92rem; flex: 1; }
.news-card .more { margin-top: 0.8rem; color: var(--gold-2); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* What is */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.split ul { margin: 0.6rem 0 0; padding: 0; list-style: none; }
.split li {
  padding: 0.55rem 0 0.55rem 1.1rem;
  position: relative;
  color: var(--silver);
  border-bottom: 1px solid var(--line-2);
}
.split li::before {
  content: "";
  position: absolute;
  left: 0; top: 1rem;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Cities */
.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.city {
  padding: 1.1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101010;
}
.city strong { display: block; font-size: 1.05rem; }
.city span { color: var(--muted); font-size: 0.85rem; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 0.6rem 0 0.2rem; }

/* Ad slots */
.ad-slot {
  min-height: 90px;
  border: 1px dashed rgba(201,162,39,0.28);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 1.5rem 0;
  background: repeating-linear-gradient(-45deg, #0e0e0e 0 8px, #121212 8px 16px);
}
.ad-slot .ad-label { opacity: 0.7; }

/* Affiliate */
.aff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.aff-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: #101010;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.aff-card:hover { border-color: var(--gold); color: inherit; }
.aff-card strong { color: var(--text); }
.aff-card span { color: var(--muted); font-size: 0.88rem; }
.aff-card em { font-style: normal; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: auto; }

/* CTA band */
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  background:
    radial-gradient(ellipse at right, rgba(201,162,39,0.12), transparent 50%),
    #101010;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 0.3rem; text-transform: uppercase; letter-spacing: -0.02em; }
.cta-band p { margin: 0; color: var(--muted); }

/* Article */
.article-hero { padding: 2rem 0 0; }
.article-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 1rem 0 0;
}
.article-hero .cap {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--faint);
  letter-spacing: 0.06em;
  margin: 0.45rem 0 0;
}
.byline {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
article.prose {
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.7;
  color: #d8d8d2;
  padding: 1.4rem 0 2.5rem;
}
article.prose h2 {
  font-family: var(--font);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 1.8rem 0 0.6rem;
  text-transform: none;
}
article.prose h3 {
  font-family: var(--font);
  font-size: 1.12rem;
  color: var(--gold-2);
  margin: 1.4rem 0 0.4rem;
}
article.prose p { margin: 0 0 1rem; }
article.prose a { color: var(--gold-2); }
article.prose blockquote {
  margin: 1.2rem 0;
  padding: 0.2rem 0 0.2rem 1.1rem;
  border-left: 2px solid var(--gold);
  color: var(--silver);
  font-style: italic;
}
article.prose .sources {
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1rem;
}
article.prose .sources ul { padding-left: 1.1rem; }
.disclaimer-box {
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font);
  margin: 1.2rem 0;
}

/* Legal */
.legal { padding: 2.4rem 0 3.5rem; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 0.6rem; text-transform: uppercase; }
.legal h2 { font-size: 1.15rem; color: var(--gold-2); margin: 1.6rem 0 0.5rem; }
.legal p, .legal li { color: var(--muted); }
.updated { font-family: var(--mono); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.08em; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2rem;
  background: #080808;
  margin-top: 1rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer h3 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}
.site-footer a { color: var(--silver); text-decoration: none; display: block; padding: 0.18rem 0; }
.site-footer a:hover { color: var(--gold-2); }
.fine {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-2);
  color: var(--faint);
  font-size: 0.8rem;
  line-height: 1.55;
}
.fine strong { color: var(--muted); font-weight: 600; }

/* Page title */
.page-hero { padding: 2.2rem 0 1.2rem; }
.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .split, .news-grid, .stats, .cities, .aff-grid, .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  #site-nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0; right: 0;
    background: #0d0d0d;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1rem 1rem;
    gap: 0;
  }
  #site-nav.is-open { display: flex; }
  #site-nav a { padding: 0.75rem 0.2rem; border-bottom: 1px solid var(--line-2); }
  #site-nav .nav-cta { margin-top: 0.6rem; text-align: center; }
  .hero-grid, .split, .news-grid, .cities, .aff-grid, .form-row, .foot-grid, .stats {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 1.5rem; }
  .brand-text span { display: none; }
  article.prose { font-size: 1.08rem; }
  .article-hero img { height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .kicker .pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* Photo strip / vehicle photography */
.photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0.65rem;
}
.photo-strip figure, .shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #111;
}
.photo-strip img, .shot img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: none;
}
.photo-strip figcaption, .shot figcaption, .img-cap {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 0.55rem 0.7rem 0.7rem;
  background: #0c0c0c;
}
.split .shot img { height: 360px; }
.photo-credits {
  color: var(--faint);
  font-size: 0.78rem;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip figure:first-child { grid-column: 1 / -1; }
  .photo-strip img { height: 220px; }
}
@media (max-width: 760px) {
  .hero.hero-photo { min-height: 0; padding: 2.2rem 0 1.6rem; }
  .hero-bg-img { object-position: 45% 50%; }
  .photo-strip, .photo-strip figure:first-child { grid-template-columns: 1fr; grid-column: auto; }
  .photo-strip img, .split .shot img { height: 200px; }
  .article-hero img { height: 200px; }
}
