/* ═══════════════════════════════════════════════════
   PAGE: HOME — Hero styles
   ═══════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 48px;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
  overflow: hidden;
}

/* SOG_Background image — low opacity so it's subtle. Remove this block to undo. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/SOG_Background.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0 56px;
  align-items: center;
}

.hero-visuals {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background-removed portrait — circular crop with border */
.hero-img-primary {
  display: block;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto;
  border: 1.5px solid rgba(26,26,23,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.hero h1 {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 700px;
  margin-bottom: 14px;
}

.hero-body {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-body);
  max-width: 650px;
}

/* ─── NARROW DESKTOP / WIDE TABLET ──────────────── */
@media (max-width: 960px) {
  /* Stack hero to single column — two columns get cramped below ~960px */
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
  }

  .hero h1 { font-size: 48px; }
  .hero-tagline { font-size: 19px; }

  .hero-visuals { justify-content: center; }
  .hero-img-primary { width: 240px; height: 240px; }
}

/* ─── TABLET ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .hero-img-primary { width: 220px; height: 220px; }
}

/* ─── MOBILE ────────────────────────────────────── */
@media (max-width: 560px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .hero h1 { font-size: 36px; }
  .hero-tagline { font-size: 17px; }
  .hero-subtitle { margin-bottom: 24px; }

  .hero-img-primary { width: 190px; height: 190px; }
}

/* ─── SMALL MOBILE ──────────────────────────────── */
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .hero-tagline { font-size: 16px; }

  .hero-img-primary { width: 158px; height: 158px; }
}
