:root {
  --forest: #123f35;
  --forest-deep: #0d322a;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --coral: #e86f51;
  --ink: #1f2b27;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, sans-serif;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  background: rgba(255, 253, 248, .97);
  border-bottom: 1px solid rgba(18, 63, 53, .12);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  color: var(--forest);
  font: 600 clamp(1.35rem, 2.4vw, 2rem)/1 "Cormorant Garamond", Georgia, serif;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: var(--forest);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links .nav-cta {
  padding: .7rem 1rem;
  border: 1px solid var(--coral);
  border-radius: 999px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 88px);
  grid-template-columns: 49fr 51fr;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7.5rem);
  color: var(--cream);
  background: var(--forest);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--coral);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.5rem, 6.5vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.03em;
}

.hero-lead {
  max-width: 620px;
  margin: 2rem 0 0;
  color: rgba(245, 240, 230, .86);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.store-button {
  display: inline-flex;
  min-width: 190px;
  align-items: center;
  gap: .75rem;
  padding: .72rem 1rem;
  color: white;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
  text-decoration: none;
  transition: transform .18s ease;
}

.store-button:hover { color: white; transform: translateY(-2px); }
.store-button small, .store-button strong { display: block; line-height: 1.05; }
.store-button small { margin-bottom: .18rem; font-size: .64rem; }
.store-button strong { font-size: 1.08rem; }
.store-symbol { display: grid; width: 30px; place-items: center; font-size: 1.2rem; }
.store-symbol.play { color: #63d79e; }

.discover-link {
  margin-top: 1.8rem;
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero-visual { position: relative; min-height: 600px; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.location-pill {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  padding: .85rem 1.2rem;
  color: white;
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(47, 32, 26, .24);
  font-size: .88rem;
}

.section-space { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.benefits { background: var(--paper); }
.section-heading { max-width: 720px; }
.section-heading h2, .story h2, .network-panel h2 {
  color: var(--forest);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1;
}

.benefit-card {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid rgba(18, 63, 53, .1);
  border-radius: 22px;
}

.benefit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.3rem;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  font-size: 1.5rem;
}

.benefit-card h3 { color: var(--forest); font-size: 1.8rem; }
.benefit-card p { margin: 0; color: #5a655f; line-height: 1.7; }
.story-copy { color: #4f5b55; font-size: 1.05rem; line-height: 1.9; }

.network-panel {
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--cream);
  background: var(--forest-deep);
  border-radius: 30px;
}

.network-panel h2 { color: var(--cream); }
.network-panel p:not(.eyebrow) { color: rgba(245, 240, 230, .78); line-height: 1.8; }
.download-button {
  color: white;
  background: var(--coral);
  border: 0;
  border-radius: 999px;
  font-weight: 700;
}
.download-button:hover { color: white; background: #d95f43; }
.site-footer { padding: 2.5rem 0; color: var(--cream); background: #092720; }
.site-footer .wordmark { color: var(--cream); font-size: 1.05rem; }

@media (max-width: 991.98px) {
  .site-header nav { flex-direction: column; padding-top: 1rem; padding-bottom: 1rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: .5rem 1rem; }
  .nav-links a { font-size: .82rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 5rem 1.5rem 4rem; }
  .hero-visual { min-height: 500px; }
}

@media (max-width: 575.98px) {
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.4rem); }
  .store-button { width: 100%; }
  .hero-visual { min-height: 390px; }
  .location-pill { top: 1.25rem; right: 1.25rem; left: 1.25rem; text-align: center; }
  .network-panel { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
