
:root {
  --ink: #16202a;
  --muted: #586879;
  --snow: #f7f9fb;
  --ice: #e6eef7;
  --line: #d6e0ea;
  --deep: #0f1822;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--snow);
}
a { color: inherit; }
.hero, .story-hero {
  padding: 28px clamp(18px, 4vw, 64px) 64px;
  background:
    linear-gradient(120deg, rgba(247,249,251,.94), rgba(230,238,247,.68)),
    radial-gradient(circle at 80% 20%, rgba(126,158,192,.35), transparent 38%);
}
.story-hero { padding-bottom: 72px; }
nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 64px;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .08em;
}
.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-links a, nav > a:not(.brand) {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
h1 {
  font-size: clamp(48px, 8vw, 112px);
  line-height: .9;
  margin: 12px 0 28px;
  letter-spacing: -.06em;
}
h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}
h3 { margin: 0 0 8px; font-size: 20px; }
.lede {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: #314253;
  max-width: 760px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--deep);
  color: white;
  text-decoration: none;
  font-weight: 700;
  margin: 8px 8px 0 0;
}
.button.secondary {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--deep);
}
.hero-image {
  width: 100%;
  height: min(68vh, 760px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(15,24,34,.18);
}
main { padding: clamp(18px, 4vw, 64px); }
.intro {
  max-width: 940px;
  margin: 40px auto 72px;
  text-align: center;
}
.intro p, .licensing p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.gallery {
  columns: 3 300px;
  column-gap: 24px;
  max-width: 1480px;
  margin: 0 auto;
}
.card {
  break-inside: avoid;
  margin: 0 0 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(15,24,34,.06);
}
.card img {
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
figcaption { padding: 18px; }
figcaption strong { display: block; margin-bottom: 6px; }
figcaption span { color: var(--muted); line-height: 1.45; }
.uses {
  max-width: 1180px;
  margin: 90px auto;
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.use-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.use-grid p { color: var(--muted); line-height: 1.5; }
.licensing {
  text-align: center;
  background: linear-gradient(180deg, white, var(--ice));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(32px, 6vw, 72px);
  max-width: 1100px;
  margin: 0 auto 64px;
}
.fineprint { font-size: 14px !important; margin-top: 24px; }
footer {
  text-align: center;
  color: var(--muted);
  padding: 28px;
}
.story-title {
  max-width: 980px;
}
.story-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) clamp(18px, 4vw, 40px);
}
.story-section {
  margin-bottom: 64px;
}
.story-section p {
  color: #314253;
  font-size: 19px;
  line-height: 1.75;
}
.story-section.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(26px, 5vw, 56px);
  box-shadow: 0 14px 50px rgba(15,24,34,.06);
}
.location {
  color: var(--muted) !important;
  font-weight: 700;
  line-height: 1.45 !important;
}
blockquote {
  margin: 42px 0 0;
  padding: 28px;
  border-left: 4px solid var(--deep);
  background: var(--snow);
  border-radius: 0 18px 18px 0;
}
blockquote p {
  font-size: 24px !important;
  line-height: 1.4 !important;
  margin-top: 0;
}
blockquote strong {
  font-size: 24px;
}
.licensing-callout {
  text-align: center;
  background: linear-gradient(180deg, white, var(--ice));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
}
@media (max-width: 850px) {
  nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { height: auto; max-height: none; }
  .use-grid { grid-template-columns: 1fr; }
}
