/* ==========================================================================
   AWOOGA — About page styles
   ========================================================================== */

.about-hero {
  background:
    radial-gradient(100% 80% at 85% 0%, rgba(201,162,39,0.18), transparent 55%),
    linear-gradient(170deg, var(--navy-800), var(--navy-900));
  color: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0;
}
.about-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.about-hero h1 { color: var(--cream); font-size: clamp(2.4rem, 5.5vw, 4rem); }
.about-hero h1 em { font-style: normal; color: var(--brass-lt); }
.about-hero__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid rgba(247,241,227,0.9); transform: rotate(1deg); }
.about-hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) { .about-hero__inner { grid-template-columns: 1fr; } .about-hero__media { transform: none; } }

/* Prose + side rail story blocks */
.story { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); max-width: 760px; margin-inline: auto; }
.story h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.story p { font-size: 1.08rem; color: var(--text); }
.story .pull { font-family: var(--font-display); font-size: clamp(1.4rem,3vw,1.9rem); color: var(--navy-800); border-left: 4px solid var(--brass); padding-left: 1.1rem; margin: 1.6rem 0; line-height: 1.3; }

/* Spec plate — a premium navy panel with brass hairlines, echoing the
   homepage "by the numbers" band. The 1px gaps let the brass-tinted backing
   show through as thin rules between the cells. */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(227, 195, 90, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(12, 32, 52, 0.45);
  box-shadow: var(--shadow);
}
@media (max-width: 640px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
.spec-item {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  padding: 1.15rem 1.25rem 1.3rem;
  transition: background 0.25s var(--ease);
}
.spec-item:hover { background: linear-gradient(165deg, var(--navy-700), var(--navy-800)); }
.spec-item dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass-lt); font-weight: 700; }
.spec-item dd { margin: 0.28rem 0 0; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--cream); line-height: 1.05; letter-spacing: -0.01em; }

/* Story image */
.story-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.story-figure img { width: 100%; display: block; }
.story-figure figcaption { padding: 0.7rem 1rem; font-size: 0.88rem; color: var(--text-soft); background: var(--surface); }

/* Next-steps link cards */
.next-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.next-link { padding: 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.3rem; }
.next-link h3 { font-size: 1.15rem; margin: 0; }
.next-link p { margin: 0; color: var(--text-soft); font-size: 0.92rem; }
.next-link .xcard__arrow { color: var(--red); font-weight: 700; font-size: 0.9rem; margin-top: 0.6rem; }

/* ---------- Discoverable fine print (Easter-egg hint) -------------------- */
/* Konami code in the footer's ship's fine print (see .footer__note). */
.about-secret__code {
  font-family: "Special Elite", ui-monospace, "Courier New", monospace;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
