:root {
  color-scheme: dark;
  --green: #071712;
  --gold: #c7a55b;
  --cream: #f4ead6;
}

* { box-sizing: border-box; }

html, body {
  min-height: 100%;
  margin: 0;
  background: var(--green);
  font-family: Georgia, 'Times New Roman', serif;
}

body { overflow-x: hidden; }

.site-shell { min-height: 100vh; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #06130f;
}

.hero-image {
  display: block;
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
}

.mobile-message { display: none; }

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    align-items: stretch;
  }

  .hero-image {
    min-height: 100svh;
    object-position: 50% top;
    filter: brightness(.68) saturate(.92);
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,14,11,.08) 35%, rgba(4,14,11,.90) 84%, #04100d 100%);
    pointer-events: none;
  }

  .mobile-message {
    display: block;
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    color: var(--cream);
    text-align: center;
  }

  .eyebrow {
    color: var(--gold);
    font: 600 .74rem/1.2 Arial, sans-serif;
    letter-spacing: .19em;
  }

  h1 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: .98;
    font-weight: 500;
  }

  p {
    margin: 0;
    font: 400 .95rem/1.5 Arial, sans-serif;
    color: rgba(244,234,214,.82);
  }
}
