/* =========================================================
   SolarManCave.com
   site.css
   Real Solar R&D Shed + Manga Comedy Marketing
   ========================================================= */

:root {
  --bg: #090806;
  --bg-2: #12100c;
  --bg-3: #1b1711;
  --panel: rgba(20, 17, 12, 0.88);
  --panel-solid: #18140e;
  --card: #201a12;
  --card-2: #2a2218;

  --gold: #ffb21f;
  --gold-2: #ffd26a;
  --orange: #ff7a18;
  --red: #d8381f;
  --blue: #35b7ff;
  --blue-2: #83dcff;
  --green: #76ff7a;

  --text: #fff7e7;
  --muted: #cdbf9d;
  --soft: #9f927a;
  --line: rgba(255, 210, 106, 0.22);
  --line-blue: rgba(53, 183, 255, 0.35);

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --glow-gold: 0 0 30px rgba(255, 178, 31, 0.32);
  --glow-blue: 0 0 34px rgba(53, 183, 255, 0.34);

  --max: 1180px;
  --radius: 24px;
  --radius-sm: 14px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Black", Impact, var(--font);
}

/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 178, 31, 0.16), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(53, 183, 255, 0.15), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 122, 24, 0.10), transparent 45%),
    linear-gradient(180deg, #070605 0%, #12100c 42%, #090806 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,178,31,0.05), transparent 20%, transparent 80%, rgba(53,183,255,0.05)),
    radial-gradient(circle at 50% 12%, transparent 0 38%, rgba(0,0,0,0.32) 72%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-2);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

p {
  margin: 0 0 1.05rem;
}

strong {
  color: #fff;
}

::selection {
  color: #100b05;
  background: var(--gold);
}

/* =========================================================
   Layout helpers
   ========================================================= */

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.section-tight {
  padding: 44px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "⚡";
  color: var(--orange);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: var(--display);
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.7rem);
  max-width: 1050px;
  text-shadow: 0 8px 34px rgba(0,0,0,0.66);
}

h2 {
  font-size: clamp(2.3rem, 5.3vw, 5.2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  margin-bottom: 12px;
}

.lede {
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  color: var(--muted);
  max-width: 820px;
}

.kicker {
  color: var(--blue-2);
  font-weight: 900;
}

.gold {
  color: var(--gold);
}

.blue {
  color: var(--blue-2);
}

.orange {
  color: var(--orange);
}

.center {
  text-align: center;
}

.center .lede {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   Top bar / navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(8, 7, 5, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #fff;
  font-weight: 1000;
  letter-spacing: -0.05em;
  font-size: clamp(1.25rem, 2.5vw, 2.05rem);
  font-family: var(--display);
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #140b02;
  box-shadow: var(--glow-gold);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font: 800 0.66rem/1 var(--font);
  letter-spacing: 0.11em;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--text);
  font-weight: 850;
  font-size: 0.92rem;
  padding: 12px 13px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 178, 31, 0.12);
  color: var(--gold-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #120900 !important;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: var(--glow-gold);
  border: 1px solid rgba(255,255,255,0.18);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(255,255,255,0.06);
  width: 48px;
  height: 44px;
  border-radius: 13px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 99px;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 110px 0 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero.hero-short {
  min-height: 520px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,4,3,0.92) 0%, rgba(4,4,3,0.72) 38%, rgba(4,4,3,0.38) 68%, rgba(4,4,3,0.75) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(9,8,6,0.08) 45%, rgba(9,8,6,0.2) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 106, 0.28);
  background: rgba(11, 9, 7, 0.66);
  color: var(--gold-2);
  font-weight: 950;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}

.badge.blue-badge {
  color: var(--blue-2);
  border-color: var(--line-blue);
}

.hero-subtitle {
  margin-top: 22px;
  font-size: clamp(1.12rem, 2.1vw, 1.5rem);
  color: var(--text);
  max-width: 760px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
}

.btn-primary {
  color: #130b02;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: var(--glow-gold);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(53,183,255,0.12);
  border-color: var(--line-blue);
}

.hero-panel {
  margin-top: 34px;
  max-width: 780px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9,8,6,0.72);
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat b {
  display: block;
  color: var(--gold-2);
  font-size: 1.35rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: 750;
}

/* =========================================================
   Cards / grids
   ========================================================= */

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    var(--card);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.card:hover {
  transform: translateY(-3px);
  transition: transform 0.18s ease;
  border-color: rgba(255, 210, 106, 0.42);
}

.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}

.card-img.wide {
  aspect-ratio: 16 / 9;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body p {
  color: var(--muted);
}

.card-meta {
  color: var(--blue-2);
  font-weight: 950;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.card-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 1000;
  color: var(--gold-2);
}

.card-link::after {
  content: " →";
}

/* =========================================================
   Feature blocks
   ========================================================= */

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature.reverse .feature-media {
  order: 2;
}

.feature-copy {
  min-width: 0;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-media {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  pointer-events: none;
}

.callout {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,178,31,0.16), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(53,183,255,0.14), transparent 40%),
    rgba(24,20,14,0.92);
  box-shadow: var(--shadow);
}

.callout p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Real R&D story sections
   ========================================================= */

.rd-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,178,31,0.08), transparent 40%, rgba(53,183,255,0.08)),
    rgba(0,0,0,0.18);
}

.timeline {
  position: relative;
  margin-top: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 20px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--blue));
}

.timeline-item {
  position: relative;
  padding: 0 0 28px 58px;
}

.timeline-dot {
  position: absolute;
  left: 7px;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: var(--glow-gold);
}

.timeline-item h3 {
  color: #fff;
}

.timeline-item p {
  color: var(--muted);
  max-width: 850px;
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.spec-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 1000;
}

/* =========================================================
   Manga / comedy sections
   ========================================================= */

.comic-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.16);
  background: #111;
  box-shadow:
    10px 10px 0 rgba(255,178,31,0.16),
    var(--shadow);
}

.comic-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.comic-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(7,6,4,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
}

.comic-caption b {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  color: var(--gold-2);
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 5px;
}

.comic-caption span {
  color: var(--text);
  font-weight: 750;
}

.zap-title {
  display: inline-block;
  padding: 10px 16px;
  margin-bottom: 18px;
  color: #150b02;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 12px;
  transform: rotate(-1.2deg);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  box-shadow: var(--glow-gold);
}

.character-list {
  display: grid;
  gap: 14px;
}

.character {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
}

.character b {
  display: block;
  color: var(--gold-2);
  font-size: 1.08rem;
}

.character span {
  color: var(--muted);
}

/* =========================================================
   Gallery
   ========================================================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 18px 54px rgba(0,0,0,0.3);
}

.gallery-item.large {
  grid-column: span 8;
  min-height: 430px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item a {
  display: block;
  height: 100%;
}

.gallery-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 13px 15px;
  border-radius: 15px;
  background: rgba(8,7,5,0.75);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 1000;
}

/* =========================================================
   Article pages
   ========================================================= */

.article {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.article h2 {
  margin-top: 48px;
}

.article h3 {
  margin-top: 34px;
  color: var(--gold-2);
}

.article p,
.article li {
  color: var(--muted);
  font-size: 1.08rem;
}

.article ul,
.article ol {
  padding-left: 1.35rem;
}

.article figure {
  margin: 34px 0;
}

.article figure img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article figcaption {
  margin-top: 11px;
  color: var(--soft);
  font-size: 0.92rem;
}

.article blockquote {
  margin: 34px 0;
  padding: 28px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255,178,31,0.08);
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: #fff;
}

/* =========================================================
   Tables / info panels
   ========================================================= */

.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
}

.info-table th,
.info-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.info-table th {
  color: var(--gold-2);
  width: 32%;
  font-weight: 950;
}

.info-table td {
  color: var(--muted);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

/* =========================================================
   Contact / footer
   ========================================================= */

.contact-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,178,31,0.13), rgba(53,183,255,0.08)),
    rgba(0,0,0,0.22);
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(8,7,5,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-details {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

.contact-details a {
  color: #fff;
  font-weight: 950;
}

.site-footer {
  padding: 54px 0 38px;
  background: #060504;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  font-family: var(--display);
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.footer-brand span {
  color: var(--gold);
}

.footer-text {
  color: var(--muted);
  max-width: 520px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: var(--soft);
  font-size: 0.9rem;
}

/* =========================================================
   Utility
   ========================================================= */

.split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.split .lede {
  margin-bottom: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 44px 0;
}

.spacer-sm {
  height: 18px;
}

.spacer {
  height: 38px;
}

.rounded {
  border-radius: var(--radius);
}

.shadow {
  box-shadow: var(--shadow);
}

.no-margin {
  margin: 0;
}

/* =========================================================
   Forms
   ========================================================= */

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--gold-2);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(255,178,31,0.34);
  border-color: var(--gold);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 7, 5, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links,
  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 14px;
    padding: 13px 14px;
  }

  .hero {
    min-height: 650px;
    padding-top: 94px;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature,
  .feature.reverse {
    grid-template-columns: 1fr;
  }

  .feature.reverse .feature-media {
    order: 0;
  }

  .grid.three,
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: span 6;
    min-height: 300px;
  }

  .contact-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split {
    display: block;
  }
}

@media (max-width: 680px) {
  .wrap,
  .hero-content,
  .article {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 54px 0;
  }

  .section-tight {
    padding: 34px 0;
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 610px;
    padding: 90px 0 48px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(4,4,3,0.94) 0%, rgba(4,4,3,0.72) 65%, rgba(4,4,3,0.58) 100%),
      linear-gradient(0deg, var(--bg) 0%, rgba(9,8,6,0.14) 55%, rgba(9,8,6,0.25) 100%);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 13px;
  }

  .stat-row,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: auto;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .comic-caption {
    position: static;
    border-radius: 0;
  }

  .contact-box {
    padding: 22px;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    padding-bottom: 4px;
  }

  .info-table td {
    padding-top: 4px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .nav-wrap {
    width: calc(100% - 20px);
  }

  .badge {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
  body {
    color: #111;
    background: #fff;
  }

  .site-header,
  .hero-media,
  .hero::before,
  .hero::after,
  .nav-toggle,
  .hero-actions,
  .site-footer {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  a {
    color: #111;
    text-decoration: underline;
  }

  .card,
  .callout,
  .feature-media {
    box-shadow: none;
    border-color: #ccc;
  }
}
