/* Sabq Field Journal — tour-egypt.biz
   Palette: asphalt dusk + Nile teal + acid finish tape */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400&family=Syne:wght@500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #14110e;
  --asphalt: #221e1a;
  --lane: #d3541a;
  --nile: #164a56;
  --nile-deep: #0d2f38;
  --chalk: #efe6d8;
  --paper: #f7f1e8;
  --tape: #d8ff3e;
  --mute: #8a8175;
  --line: rgba(20, 17, 14, 0.12);
  --glow: rgba(211, 84, 26, 0.35);
  --font-display: "Syne", sans-serif;
  --font-body: "Newsreader", Georgia, serif;
  --font-mono: "IBM Plex Mono", monospace;
  --max: 1180px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(22, 74, 86, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(211, 84, 26, 0.06), transparent),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(20, 17, 14, 0.03) 119px,
      rgba(20, 17, 14, 0.03) 120px
    );
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--nile); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--lane); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--tape);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ——— Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.05;
}
.brand__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.brand__mark span { color: var(--lane); }
.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
}
.nav-list a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--lane);
  transition: width 0.3s var(--ease);
}
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after { width: 100%; }
.nav-list a[aria-current="page"] { color: var(--lane); }

.nav-cta {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--tape) !important;
  padding: 0.55rem 0.9rem;
  text-decoration: none !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--nile); color: var(--paper) !important; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.25rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ——— Layout helpers ——— */
.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lane);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--lane);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  max-width: 38ch;
  color: var(--asphalt);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--tape); }
.btn--ink:hover { background: var(--nile); color: var(--paper); }
.btn--ghost {
  background: transparent;
  color: var(--chalk);
  border: 1px solid rgba(239, 230, 216, 0.45);
}
.btn--ghost:hover { background: var(--tape); color: var(--ink); border-color: var(--tape); }
.btn--lane { background: var(--lane); color: var(--paper); }
.btn--lane:hover { background: var(--ink); color: var(--tape); }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: var(--chalk);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13, 47, 56, 0.88) 0%, rgba(20, 17, 14, 0.55) 48%, rgba(211, 84, 26, 0.28) 100%),
    linear-gradient(to top, rgba(20, 17, 14, 0.75) 0%, transparent 45%);
  z-index: 1;
}
.hero__lanes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    105deg,
    transparent 0,
    transparent 48px,
    rgba(216, 255, 62, 0.04) 48px,
    rgba(216, 255, 62, 0.04) 50px
  );
}
.hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 4.5rem;
  padding-top: 6rem;
}
.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 0.88;
  margin: 0.6rem 0 1.1rem;
  max-width: 10ch;
}
.hero__brand em {
  font-style: normal;
  color: var(--tape);
  display: block;
}
.hero__text {
  max-width: 36ch;
  font-size: 1.15rem;
  color: rgba(239, 230, 216, 0.88);
  margin-bottom: 1.75rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero--page {
  min-height: 48vh;
  align-items: end;
}
.hero--page .hero__content { margin-bottom: 3rem; padding-top: 4rem; }
.hero--page .hero__brand {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  max-width: 16ch;
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
}
.section--ink {
  background: var(--ink);
  color: var(--chalk);
}
.section--nile {
  background: var(--nile-deep);
  color: var(--chalk);
}
.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 70vh;
}
.section--split > * { min-height: 420px; }
.section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
}
.section--ink .section__copy { background: var(--asphalt); color: var(--chalk); }

@media (max-width: 860px) {
  .section--split { grid-template-columns: 1fr; }
  .section--split > * { min-height: 280px; }
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.section__head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 14ch;
}

/* ——— Editorial list (no cards) ——— */
.story-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.story-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
}
.story-item:hover { background: rgba(211, 84, 26, 0.06); }
.story-item__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--mute);
  letter-spacing: 0.08em;
}
.story-item h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  margin-bottom: 0.35rem;
}
.story-item p {
  font-size: 1rem;
  color: var(--mute);
  max-width: 48ch;
}
.story-item__meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lane);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .story-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .story-item__meta { order: -1; }
}

/* ——— Feature mosaic ——— */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.mosaic__lead {
  grid-row: 1 / 3;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--chalk);
  text-decoration: none;
}
.mosaic__lead img,
.mosaic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.mosaic__lead:hover img,
.mosaic__tile:hover img { transform: scale(1.06); }
.mosaic__lead .caption,
.mosaic__tile .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(20, 17, 14, 0.85));
}
.mosaic__lead h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0.4rem 0; }
.mosaic__tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  color: var(--chalk);
  text-decoration: none;
}
.mosaic__tile h3 { font-size: 1.35rem; margin: 0.35rem 0; }
@media (max-width: 800px) {
  .mosaic { grid-template-columns: 1fr; }
  .mosaic__lead { grid-row: auto; min-height: 360px; }
}

/* ——— Stats strip (below fold) ——— */
.pulse {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(239, 230, 216, 0.18);
}
.pulse__cell {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(239, 230, 216, 0.18);
}
.pulse__cell:last-child { border-right: none; }
.pulse__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--tape);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pulse__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  color: rgba(239, 230, 216, 0.7);
}
@media (max-width: 700px) {
  .pulse { grid-template-columns: 1fr; }
  .pulse__cell { border-right: none; border-bottom: 1px solid rgba(239, 230, 216, 0.18); }
}

/* ——— Quote ——— */
.quote-block {
  max-width: 28ch;
  margin: 0 auto;
  text-align: center;
}
.quote-block p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.35;
}
.quote-block cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lane);
}

/* ——— Forms ——— */
.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 540px;
}
.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 0.85rem 1rem;
  color: var(--ink);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: 2px solid var(--tape);
  outline-offset: 2px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 800px) {
  .contact-panel { grid-template-columns: 1fr; }
}
.contact-facts {
  display: grid;
  gap: 1.5rem;
}
.contact-facts dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lane);
  margin-bottom: 0.35rem;
}
.contact-facts dd { font-size: 1.1rem; }

/* ——— Legal ——— */
.legal {
  max-width: 70ch;
}
.legal h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.85rem;
}
.legal p, .legal li { margin-bottom: 0.9rem; color: var(--asphalt); }
.legal ul { padding-left: 1.2rem; list-style: disc; }
.legal ol { padding-left: 1.2rem; list-style: decimal; }

/* ——— Article ——— */
.article-hero {
  padding: 3rem 0 2rem;
}
.article-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  max-width: 18ch;
  margin: 0.75rem 0 1rem;
}
.article-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.article-cover {
  margin: 0 0 2.5rem;
  max-height: 520px;
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.article-body {
  max-width: 66ch;
  margin: 0 auto;
}
.article-body p { margin-bottom: 1.25rem; }
.article-body h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
}
.article-body blockquote {
  border-left: 3px solid var(--lane);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--nile);
}

/* ——— Program / coach rows ——— */
.row-list { display: grid; gap: 0; }
.row-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.row-item:first-child { border-top: 1px solid var(--line); }
.row-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.row-item h3 { font-size: 1.8rem; margin-bottom: 0.6rem; }
.row-item p { color: var(--mute); }
@media (max-width: 720px) {
  .row-item { grid-template-columns: 1fr; gap: 1rem; }
}

/* ——— Events ——— */
.event-table { width: 100%; border-collapse: collapse; }
.event-table th,
.event-table td {
  text-align: left;
  padding: 1.1rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.event-table th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.event-table td:first-child {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--lane);
}
.event-table strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.2rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: var(--chalk);
  padding: 4rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--tape);
}
.footer-grid a {
  color: rgba(239, 230, 216, 0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}
.footer-grid a:hover { color: var(--tape); }
.footer-brand .brand__mark { color: var(--chalk); font-size: 1.8rem; }
.footer-brand p {
  margin-top: 1rem;
  color: rgba(239, 230, 216, 0.65);
  max-width: 28ch;
  font-size: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(239, 230, 216, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 230, 216, 0.45);
}
.footer-bottom a { color: rgba(239, 230, 216, 0.55); text-decoration: none; margin-left: 1rem; }
.footer-bottom a:hover { color: var(--tape); }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ——— Cookie banner ——— */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  background: var(--ink);
  color: var(--chalk);
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(216, 255, 62, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(120%);
  opacity: 0;
  transition: 0.45s var(--ease);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(239, 230, 216, 0.85);
}
.cookie-banner a { color: var(--tape); }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.cookie-actions button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  border: none;
  cursor: pointer;
}
.cookie-accept { background: var(--tape); color: var(--ink); }
.cookie-decline {
  background: transparent;
  color: var(--chalk);
  border: 1px solid rgba(239, 230, 216, 0.35) !important;
}

/* ——— Reveal motion ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ——— Utility ——— */
.muted { color: var(--mute); }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.text-chalk { color: var(--chalk); }
.text-tape { color: var(--tape); }

.photo-credit {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--mute);
  margin-top: 0.5rem;
}

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nile);
  border-bottom: 1px solid currentColor;
  margin-bottom: 0.5rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ——— Long-form page modules ——— */
.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.intro-band h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0.55rem 0 1.2rem;
}
.intro-band__note {
  border-top: 3px solid var(--lane);
  padding-top: 1rem;
}
.intro-band__note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.info-grid__item {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-grid__item h3 {
  font-size: 1.35rem;
  margin: 0.45rem 0 0.7rem;
}
.info-grid__item p { color: var(--mute); font-size: 1rem; }
.info-grid__item .index {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--lane);
}

.field-note {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--chalk);
  border-left: 6px solid var(--lane);
}
.field-note h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}
.field-note p { max-width: 62ch; }

.steps {
  counter-reset: sabq-step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(239, 230, 216, 0.2);
}
.steps li {
  counter-increment: sabq-step;
  padding: 1.5rem;
  border-right: 1px solid rgba(239, 230, 216, 0.2);
}
.steps li:last-child { border-right: 0; }
.steps li::before {
  content: "0" counter(sabq-step);
  display: block;
  font-family: var(--font-mono);
  color: var(--tape);
  font-size: 0.72rem;
  margin-bottom: 2rem;
}
.steps h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.steps p { color: rgba(239, 230, 216, 0.68); font-size: 0.98rem; }

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  color: var(--lane);
  font-size: 1.5rem;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  max-width: 66ch;
  padding: 0 2rem 1.3rem 0;
  color: var(--mute);
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 5rem);
}
.split-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0.5rem 0 1rem;
}
.split-copy p + p { margin-top: 1rem; }

@media (max-width: 800px) {
  .intro-band,
  .split-copy { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li:nth-child(2) { border-right: 0; }
  .steps li { border-bottom: 1px solid rgba(239, 230, 216, 0.2); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .steps li { border-right: 0; }
}
