:root {
  --green-950: #0b2117;
  --green-900: #123321;
  --green-800: #173c28;
  --green-700: #24563a;
  --gold: #f2c94c;
  --gold-soft: #ffe19a;
  --orange: #d9782d;
  --sand: #efe4c8;
  --white-warm: #fffaf0;
  --text-muted: rgba(255, 250, 240, 0.78);
  --panel: rgba(12, 36, 24, 0.78);
  --panel-border: rgba(255, 225, 154, 0.25);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--green-950);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white-warm);
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 201, 76, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 20%, rgba(217, 120, 45, 0.18), transparent 25rem),
    linear-gradient(140deg, rgba(11, 33, 23, 0.98), rgba(23, 60, 40, 0.96) 52%, rgba(10, 28, 20, 0.98));
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 225, 154, 0.08) 44.2% 44.8%, transparent 45%),
    linear-gradient(165deg, transparent 0 58%, rgba(255, 255, 255, 0.04) 58.2% 58.7%, transparent 59%),
    radial-gradient(ellipse at bottom, rgba(239, 228, 200, 0.08), transparent 48%);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-shell {
  min-height: calc(100vh - 5.5rem);
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.hero {
  width: min(100%, 58rem);
}

.hero__card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: clamp(1.1rem, 3vw, 1.65rem);
  padding: clamp(1.4rem, 5vw, 3.6rem);
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: clamp(1.4rem, 4vw, 2.3rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: content-in 700ms ease-out both;
}

.hero__card::before,
.hero__card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero__card::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), transparent 38%);
}

.hero__card::after {
  right: -7rem;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(242, 201, 76, 0.2);
  border-radius: 50%;
}

.eyebrow,
.hero__content,
.facebook-link,
.brand-logo {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-logo {
  width: min(72vw, 24rem);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.22));
}

.hero__content {
  max-width: 45rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lead {
  margin: clamp(1rem, 3vw, 1.35rem) auto 0;
  max-width: 43rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.4vw, 1.28rem);
}

.supporting-copy {
  margin: 0.65rem 0 0;
  color: rgba(255, 225, 154, 0.9);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.15rem;
  color: var(--green-950);
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.facebook-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--gold-soft), #fff2c2);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.facebook-link:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.facebook-link__icon {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 1rem;
  min-height: 5.5rem;
  padding: 1.25rem;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration-color: rgba(242, 201, 76, 0.45);
  text-underline-offset: 0.22em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-soft);
}

.site-footer a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 0.25rem;
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 48rem) {
  .hero__card {
    gap: 1.8rem;
  }

  .brand-logo {
    width: min(48vw, 29rem);
  }
}

@media (max-height: 42rem) and (orientation: landscape) {
  .site-shell {
    min-height: auto;
    padding-block: 1rem;
  }

  .hero__card {
    grid-template-columns: minmax(9rem, 17rem) 1fr;
    gap: 1rem 1.5rem;
    text-align: left;
    justify-items: start;
  }

  .eyebrow,
  .facebook-link {
    grid-column: 2;
  }

  .brand-logo {
    grid-row: 1 / 4;
    width: min(30vw, 17rem);
    align-self: center;
    justify-self: center;
  }

  h1 {
    font-size: clamp(1.85rem, 5vw, 3.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
