/* ----------------------------------------------------------------------------
   Jauntabout — placeholder site
   Brand palette + typography taken from the 2026-06-22 app screenshot
   and the README "Brand & Design" section (gray-and-navy look).
---------------------------------------------------------------------------- */

:root {
  /* Brand colors — RGB values from README, hex equivalents */
  --navy:        #1A2744;  /* Background (navy)      26, 39, 68  */
  --navy-deep:   #131D33;  /* Darker navy for cards/footer (derived) */
  --white:       #FFFFFF;  /* Text                   255,255,255 */
  --gray-1:      #838383;  /* Accent gray 1          131,131,131 */
  --gray-2:      #929292;  /* Accent gray 2          146,146,146 */
  --gray-3:      #B7B7B7;  /* Accent gray 3          183,183,183 */
  --gray-4:      #CCCCCC;  /* Accent gray 4          204,204,204 */

  /* Font family — matches the screenshot (sturdy humanist sans).
     Web-safe stack, no external font download required. */
  --font: Verdana, "DejaVu Sans", Tahoma, Geneva, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.45;
  min-height: 100vh;
  /* Subtle gray glow at the top, echoing the screenshot's gray band */
  background-image: radial-gradient(
    120% 55% at 50% -10%,
    rgba(204, 204, 204, 0.16) 0%,
    rgba(204, 204, 204, 0.04) 35%,
    rgba(26, 39, 68, 0) 70%
  );
  background-repeat: no-repeat;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- Wordmark ---------- */
.brand {
  width: 100%;
  padding-top: 40px;
}

.brand__rule {
  height: 4px;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(131, 131, 131, 0) 0%,
    var(--gray-3) 50%,
    rgba(131, 131, 131, 0) 100%
  );
  opacity: 0.7;
}

.brand__wordmark {
  margin-top: 22px;
  font-weight: 700;
  font-size: clamp(1.35rem, 5vw, 1.9rem);
  letter-spacing: 0.22em;
  /* optical centering for the tracked-out caps */
  text-indent: 0.22em;
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  margin-top: clamp(48px, 12vw, 96px);
  width: 100%;
}

.hero__headline {
  font-weight: 700;
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero__tagline {
  margin-top: 16px;
  font-size: clamp(1rem, 3.6vw, 1.3rem);
  font-weight: 400;
  color: var(--gray-4);
}

.hero__launch {
  margin-top: 36px;
  display: inline-block;
  font-size: clamp(0.85rem, 2.8vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 12px 22px;
  border: 1px solid var(--gray-1);
  border-radius: 999px;
  background: rgba(204, 204, 204, 0.06);
}

/* ---------- App store badges ---------- */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.stores__badge {
  height: 52px;
  width: auto;
  /* badges aren't live links yet — show but don't imply downloadable */
  opacity: 0.92;
}

.stores__note {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--gray-2);
}

/* ---------- Map ---------- */
.map {
  margin-top: clamp(28px, 7vw, 44px);
  width: 100%;
}

.map__frame {
  width: 100%;
  border: 1px solid rgba(204, 204, 204, 0.25);
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  /* keep a pleasant aspect ratio across screen sizes */
  aspect-ratio: 16 / 10;
}

.map__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- App store badges (below the map) ---------- */
.stores-section {
  margin-top: clamp(32px, 8vw, 48px);
  width: 100%;
}

/* ---------- Footer ---------- */
.footer {
  margin-top: clamp(56px, 14vw, 88px);
  width: 100%;
  padding-top: 28px;
  border-top: 1px solid rgba(204, 204, 204, 0.14);
}

.footer__legal {
  font-size: 0.8rem;
  color: var(--gray-2);
}

/* ---------- Larger screens ---------- */
@media (min-width: 760px) {
  .map__frame {
    aspect-ratio: 16 / 8;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__headline,
  .hero__tagline {
    animation: rise 0.6s ease-out both;
  }
  .hero__tagline { animation-delay: 0.08s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
