:root {
  --bg-primary: #f4efe6;
  --bg-secondary: #e7dfd1;
  --surface: #fbf8f2;
  --text-primary: #1c2433;
  --text-secondary: #4a5565;
  --text-muted: #7a808a;
  --border: #d6cec0;
  --accent: #2f3e5c;
  --shadow: rgba(28, 36, 51, 0.08);
  --image-shadow: rgba(12, 14, 18, 0.24);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(251, 248, 242, 0.95), transparent 38%),
    linear-gradient(180deg, var(--bg-primary) 0%, #f2ebdf 45%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  font-family: "Source Sans 3", sans-serif;
}

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

.page-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 32px 24px 72px;
}

.site-header {
  display: grid;
  place-items: center;
  padding-bottom: 8px;
}

.brand-mark {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  opacity: 0.95;
  margin-inline: auto;
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 2vh 0 12vh;
  max-width: 1120px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 28ch;
  color: var(--text-primary);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
  font-weight: 400;
}

.coming-soon-badge {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 48px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.35s ease;
}

.site-footer a:hover {
  border-color: var(--text-secondary);
}

.narrative-section {
  display: grid;
  gap: 22px;
  margin: 0 0 48px;
  padding: 24px 0 40px;
}

.image-panel {
  position: relative;
  min-height: 66vh;
  border: 1px solid rgba(214, 206, 192, 0.8);
  box-shadow: 0 28px 60px var(--shadow);
  overflow: hidden;
  background-color: #ded8cd;
  filter: grayscale(1) contrast(1.05);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.05), rgba(28, 36, 51, 0.18)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.image-chaos::before {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(20, 24, 31, 0.3)),
    url("https://images.unsplash.com/photo-1500930287596-c1ecaa373bb2?auto=format&fit=crop&w=1600&q=80");
}

.image-data::before {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(20, 24, 31, 0.25)),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1600&q=80");
}

.image-clarity::before {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(20, 24, 31, 0.22)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80");
}

.section-copy {
  display: flex;
  width: 100%;
}

.section-copy p {
  margin: 0;
  max-width: 18ch;
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.narrative-right .section-copy {
  justify-content: flex-end;
}

.narrative-right .section-copy p {
  text-align: right;
}

.narrative-left .section-copy {
  justify-content: flex-start;
}

.narrative-left .section-copy p {
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .page-shell {
    padding: 24px 18px 56px;
  }

  .hero {
    padding: 5vh 0 10vh;
  }

  .image-panel {
    min-height: 54vh;
  }

  .narrative-right .section-copy,
  .narrative-left .section-copy {
    justify-content: flex-start;
  }

  .narrative-right .section-copy p,
  .narrative-left .section-copy p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-bottom: 6px;
  }

  .brand-mark {
    width: clamp(140px, 40vw, 190px);
  }

  .hero h1 {
    max-width: none;
  }

  .hero-subtitle {
    max-width: 22ch;
  }

  .narrative-section {
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .image-panel {
    min-height: 45vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
