/* imagingdeepsky.com — home page stylesheet (2026 rebuild, Direction A)
   Shares the palette of object-page.css: black ground, orange accent. */

:root {
  --bg: #000;
  --line: #222;
  --text: #e6e6e6;
  --muted: #a9a9a9;
  --accent: #ff9900;
  --link-hover: #ffff00;
  --max: 1400px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
body {
  font-family: "Source Sans 3", Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px; line-height: 1.5; -webkit-text-size-adjust: 100%;
}
.h { font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif; font-weight: 700; }
a { color: #fff; text-decoration: none; }
a:hover { color: var(--link-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ---------- nav ---------- */
.site-nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  border-bottom: 1px solid var(--line);
}
.site-nav .brand { font-size: 26px; color: var(--accent); letter-spacing: 0.02em; line-height: 1; }
.site-nav .brand small { color: var(--muted); font-weight: 600; font-size: 17px; margin-left: 8px; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 26px; font-weight: 600; }
.site-nav li a { display: inline-flex; align-items: center; min-height: 44px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle svg { display: block; stroke: var(--text); }
@media (max-width: 860px) {
  .site-nav { flex-wrap: wrap; padding: 10px 16px; }
  .site-nav .brand { font-size: 22px; }
  .site-nav .brand small { display: none; }
  .nav-toggle { display: block; }
  .site-nav ul {
    display: none; width: 100%; flex-direction: column; gap: 0;
    border-top: 1px solid var(--line); margin-top: 10px; padding-top: 6px;
  }
  .site-nav.open ul { display: flex; }
  .site-nav li a { min-height: 48px; padding: 0 4px; border-bottom: 1px solid #161616; width: 100%; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; background: #000;
  height: 62vh; min-height: 420px; max-height: 640px;
}
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero img { object-fit: cover; object-position: 60% 50%; }
.hero .shade { position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,0) 100%); }
.hero .copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-width: var(--max); margin: 0 auto; padding: 0 24px 48px;
  display: flex; flex-direction: column; gap: 12px;
}
.hero .kicker { color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(38px, 5.2vw, 66px); line-height: 1; color: #fff; max-width: 20ch; }
.hero p { margin: 0; font-size: clamp(15px, 1.4vw, 18px); color: #d0d0d0; max-width: 46ch; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px;
  font-weight: 600; font-size: 16px; border: 1px solid transparent; }
.btn.primary { background: var(--accent); color: #000; }
.btn.primary:hover { background: #ffb340; color: #000; }
.btn.ghost { border-color: #666; color: #fff; }
.hero .credit { color: var(--muted); font-size: 13px; }
@media (max-width: 700px) {
  .hero { height: 78vh; min-height: 520px; max-height: 760px; }
  .hero img { object-position: 50% 0%; }
  .hero .shade { background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.95) 100%); }
  .hero .copy { padding: 0 16px 20px; gap: 10px; }
  .hero .kicker .long { display: none; }
  .hero p { font-size: 15px; }
  .hero .actions .btn { flex: 1 1 auto; }
  .hero .credit { display: none; }
}

/* ---------- sections ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 36px 0 14px; }
.section-head h2 { margin: 0; font-size: 30px; color: var(--accent); }
.section-head a { color: var(--muted); font-size: 15px; }
@media (max-width: 700px) { .wrap { padding: 0 16px; } .section-head { padding: 26px 0 12px; } .section-head h2 { font-size: 26px; } }

/* featured grid */
.featured { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.featured a { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #0a0a0a; border: 1px solid var(--line); }
.featured img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.featured a:hover img { transform: scale(1.04); }
.featured span { position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 10px; font-size: 15px; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.85)); }
.featured span em { font-style: normal; color: var(--accent); font-size: 12px; margin-left: 6px; }
@media (max-width: 1100px) { .featured { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 700px) { .featured { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; } .featured span { font-size: 14px; } }

/* explore cards */
.explore { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.explore a { display: flex; align-items: center; gap: 14px; padding: 14px; background: #111; border: 1px solid #2a2a2a; min-height: 92px; }
.explore a:hover { border-color: #555; color: #fff; }
.explore img { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; }
.explore .t { font-size: 22px; color: var(--accent); line-height: 1.1; }
.explore .s { color: var(--muted); font-size: 14px; }
.explore svg { margin-left: auto; flex-shrink: 0; stroke: var(--muted); }
@media (max-width: 860px) { .explore { grid-template-columns: 1fr; } }

/* alert box */
.alert { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin: 32px 0 8px; padding: 18px 20px; border: 1px solid #2a2a2a; background: #0b0b0b; }
.alert .t { font-size: 22px; color: var(--accent); }
.alert .s { color: var(--muted); font-size: 15px; }
@media (max-width: 700px) { .alert { flex-direction: column; align-items: stretch; } .alert .btn { width: 100%; } }

/* footer */
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--max); margin: 24px auto 0; padding: 24px 24px 32px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 14px; }
.site-footer img { width: 220px; }
@media (max-width: 700px) { .site-footer { flex-direction: column; text-align: center; padding: 24px 16px 32px; } .site-footer img { width: 200px; } }
