/* =========================================================
   Spirit of Christ International Ministry — Website
   Palette drawn from his testimony:
   midnight indigo (the night visions) · living-fire gold
   (the flame in his hand) · ivory light (the great light)
   ========================================================= */

:root {
  --ink:        #0c1226;   /* deep midnight */
  --ink-2:      #131b38;   /* raised midnight */
  --ink-3:      #1c264c;   /* card / border */
  --gold:       #d9a441;   /* living fire */
  --gold-soft:  #e6c680;
  --ember:      #c9622c;   /* the orange flame */
  --ivory:      #f6f1e7;   /* the great light */
  --cream:      #efe7d6;
  --muted:      #a9b0c8;   /* body text on dark */
  --muted-ink:  #5b6076;   /* body text on light */
  --line:       rgba(217, 164, 65, 0.22);

  --serif: "Fraunces", Georgia, serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ivory);
  background: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Shared layout helpers ---------- */
section { position: relative; }

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
  padding: 0 1.5rem;
}
.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.kicker--light { color: var(--gold-soft); }

.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
.lede {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.075rem;
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--ink);
  box-shadow: 0 14px 40px -14px rgba(217, 164, 65, 0.7);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -16px rgba(217, 164, 65, 0.85); }
.btn--ghost {
  border-color: rgba(246, 241, 231, 0.32);
  color: var(--ivory);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }
.btn--block { width: 100%; margin-top: 0.5rem; }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.4rem 0;
}
.nav--scrolled {
  background: rgba(9, 14, 30, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(217, 164, 65, 0.16);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--gold), var(--ember));
  color: var(--ink);
  font-size: 1.15rem;
  box-shadow: 0 6px 18px -6px rgba(217, 164, 65, 0.7);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.06rem; letter-spacing: 0.01em; }
.brand__role { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.86;
  transition: opacity 0.25s, color 0.25s;
}
.nav__links a:hover { opacity: 1; color: var(--gold-soft); }
.nav__cta {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.08);
}
.nav__cta:hover { border-color: var(--gold); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--ivory); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 28%;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,13,28,0.55) 0%, rgba(9,13,28,0.30) 32%, rgba(9,13,28,0.82) 78%, var(--ink) 100%),
    linear-gradient(90deg, rgba(9,13,28,0.92) 0%, rgba(9,13,28,0.55) 45%, rgba(9,13,28,0.18) 100%);
}
.hero__glow {
  position: absolute; z-index: 1;
  top: -10%; right: -6%;
  width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(217,164,65,0.32) 0%, rgba(217,164,65,0.08) 40%, transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.hero__eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); display: inline-block; }

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ivory);
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero__title span {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--ember));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__tagline {
  max-width: 40ch;
  margin-top: 1.8rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
}
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; z-index: 2;
  left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(246,241,231,0.4);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px;
  width: 4px; height: 8px; margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* =========================================================
   Scripture band
   ========================================================= */
.verse {
  background: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.verse__inner { max-width: 860px; margin: 0 auto; }
.verse__text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.4;
  color: var(--ivory);
}
.verse__ref {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   Story / Timeline
   ========================================================= */
.story {
  background:
    radial-gradient(80% 50% at 85% 0%, rgba(28,38,76,0.55), transparent 60%),
    var(--ink);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 6rem);
}

.timeline {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: calc(1.5rem + 8px);
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(217,164,65,0.15));
}
.tl {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  padding: 1rem 0 2.6rem 2.4rem;
}
.tl::before {
  content: "";
  position: absolute;
  left: 1px; top: 1.5rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 3px rgba(217,164,65,0.35), 0 0 22px 2px rgba(217,164,65,0.55);
}
.tl__year {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--gold-soft);
  padding-top: 0.9rem;
  letter-spacing: -0.01em;
}
.tl__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  color: var(--ivory);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.tl__body p {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.03rem;
  margin-bottom: 0.9rem;
}
.tl__body p:last-child { margin-bottom: 0; }
.tl__body em { color: var(--cream); font-style: italic; }

/* Portrait feature */
.story__portrait {
  max-width: var(--maxw);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story__portrait-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8);
}
.story__portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(12,18,38,0.55));
}
.story__portrait-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: 50% 22%; }
.story__portrait-note { position: relative; }
.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.55;
  display: block;
  margin-bottom: 0.5rem;
}
.story__portrait-note p {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ivory);
}
.story__sign {
  font-family: var(--sans) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-top: 1.4rem;
}

/* =========================================================
   Ministry
   ========================================================= */
.ministry {
  background: var(--ink-2);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cards {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.card {
  background: linear-gradient(180deg, rgba(28,38,76,0.5), rgba(19,27,56,0.5));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.2rem 1.9rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,164,65,0.5);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 25%, rgba(217,164,65,0.28), rgba(201,98,44,0.12));
  border: 1px solid var(--line);
  margin-bottom: 1.4rem;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ivory);
  margin-bottom: 0.7rem;
}
.card p { color: var(--muted); font-weight: 300; font-size: 1rem; }
.card em { color: var(--gold-soft); font-style: italic; }

.stats {
  max-width: 900px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat { padding: 1.5rem 0.5rem; border-top: 1px solid var(--line); }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(120deg, var(--gold-soft), var(--ember));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat__label { display: block; margin-top: 0.6rem; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }

/* =========================================================
   Gallery
   ========================================================= */
.gallery { background: var(--ink); padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(217,164,65,0.14);
}
.grid__item--tall { grid-row: span 2; }
.grid__item--wide { grid-column: span 2; }
.grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.grid__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9,13,28,0.85));
  opacity: 0.85; transition: opacity 0.4s;
}
.grid__item figcaption {
  position: absolute; z-index: 2;
  left: 1.1rem; bottom: 1rem; right: 1.1rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ivory);
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.grid__item:hover img { transform: scale(1.07); }
.grid__item:hover::after { opacity: 1; }
.grid__item:hover figcaption { transform: translateY(0); opacity: 1; }

/* =========================================================
   Invitation / Contact
   ========================================================= */
.invite {
  position: relative;
  background:
    radial-gradient(70% 60% at 15% 20%, rgba(28,38,76,0.7), transparent 60%),
    var(--ink-2);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.invite__glow {
  position: absolute; bottom: -20%; right: -10%;
  width: 60vw; height: 60vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, rgba(201,98,44,0.22), transparent 65%);
  pointer-events: none;
}
.invite__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.invite__text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  color: var(--ivory);
  margin: 0.4rem 0 1.1rem;
}
.invite__text > p { color: var(--muted); font-weight: 300; font-size: 1.08rem; max-width: 46ch; }
.invite__list { list-style: none; margin-top: 2rem; display: grid; gap: 1rem; }
.invite__list li { display: flex; align-items: center; gap: 0.9rem; color: var(--cream); font-size: 1rem; }
.invite__list a { border-bottom: 1px solid var(--line); transition: color 0.25s, border-color 0.25s; }
.invite__list a:hover { color: var(--gold-soft); border-color: var(--gold); }

.invite__form {
  background: rgba(12,18,38,0.66);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.9);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(246,241,231,0.05);
  border: 1px solid rgba(246,241,231,0.16);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.98rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--ivory); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(246,241,231,0.08);
  box-shadow: 0 0 0 3px rgba(217,164,65,0.16);
}
.form__note { margin-top: 1rem; font-size: 0.92rem; text-align: center; min-height: 1.2em; color: var(--gold-soft); }

/* Honeypot — kept in the DOM for bots, removed from view & a11y tree for people */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Disabled submit state while sending */
.btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #080c1a;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 2rem;
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 0.9rem; }
.footer__name { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--ivory); }
.footer__tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.footer__verse {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--cream);
  text-align: center;
  line-height: 1.5;
}
.footer__verse span { display: block; font-family: var(--sans); font-style: normal; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-top: 0.7rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; }
.footer__links a { font-size: 0.92rem; color: var(--muted); transition: color 0.25s; }
.footer__links a:hover { color: var(--gold-soft); }
.footer__copy {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(246,241,231,0.08);
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .story__portrait { grid-template-columns: 1fr; text-align: left; }
  .story__portrait-frame { max-width: 320px; }
  .invite__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 1.8rem; }
  .footer__links { align-items: center; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem 2.2rem;
    background: rgba(9,13,28,0.97);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; z-index: 60; }

  .tl { grid-template-columns: 1fr; gap: 0.4rem; padding-left: 2.2rem; }
  .tl__year { padding-top: 0; font-size: 1.15rem; }
  .timeline::before { left: calc(1.5rem + 7px); }

  .stats { grid-template-columns: 1fr; gap: 0; }
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .grid__item--wide { grid-column: span 2; }
  .grid__item--tall { grid-row: span 1; }
}

@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
  .grid__item--wide { grid-column: span 1; }
  .hero__content { padding-top: 6rem; }
}
