:root {
  --forest: #1b3d2f;
  --cream: #f6f3ee;
  --paper: #ffffff;
  --gold: #e2b122;
  --gold-deep: #c99812;
  --muted: #5d6f66;
  --line: rgba(27, 61, 47, 0.12);
  --shadow: 0 16px 40px rgba(27, 61, 47, 0.12);
  --header: 72px;
  --wrap: 1120px;
  --font: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--forest);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
p,
figure {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 30;
  background: var(--forest);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(100% - 32px, var(--wrap));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: rgba(246, 243, 238, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: auto;
  height: 52px;
  flex-shrink: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid rgba(226, 177, 34, 0.75);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #1a1a1a;
}

.hero {
  padding: 48px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon-text {
  margin-top: 12px;
  max-width: 38rem;
  color: var(--forest);
  font-size: 1.02rem;
  font-weight: 600;
}

.eyebrow.light {
  color: var(--gold);
}

h1,
.cta-band h2 {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lead,
.cta-band p {
  margin-top: 14px;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.banner-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.banner-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-banner {
  width: 100%;
}

.cta-band {
  background: var(--forest);
  color: #f7f4ee;
  padding: 56px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  color: rgba(247, 244, 238, 0.82);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .cta-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-banner {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 24px, var(--wrap));
  }

  .hero {
    padding: 28px 0 16px;
  }

  .hero-grid {
    gap: 24px;
  }

  .banner-card {
    border-radius: 16px;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow);
  }

  .cta-inner .btn {
    width: 100%;
  }

  .cta-band {
    padding-bottom: 96px;
  }
}
