:root {
  --ink: #1b1714;
  --muted: #6b6361;
  --paper: #f3eee4;
  --card: #fffaf2;
  --line: #ddd3c4;
  --accent: #b8431f;
  --accent-hover: #ae401e;
  --on-accent: #ffffff;
  --serif: "Literata", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1100px 480px at 8% -8%, #f7d9c6 0%, transparent 52%),
    var(--paper);
  font-size: 18px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav nav { display: flex; align-items: center; gap: 22px; }
.nav nav a { text-decoration: none; color: var(--muted); font-size: 15px; }
.nav nav a.btn { color: var(--on-accent); }
.mark {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 20px;
  font: 700 15px/1 var(--sans);
}
.btn:hover { background: var(--accent-hover); }
.btn.big { padding: 16px 28px; font-size: 17px; }

.hero, .story, .mosaic, .faq, .close, .strip {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 72px;
}
.eyebrow {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
}
h1, h2 {
  font-family: var(--serif);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 18px;
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3vw, 40px); }
.lead, .story-text p, .faq p { color: var(--muted); }
.lead { font-size: 20px; max-width: 36em; }
.hero-actions { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hint { margin: 0; color: var(--muted); font-size: 15px; }

.shot {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(27, 23, 20, 0.08);
}
.shot img { width: 100%; height: auto; background: #efe6d8; min-height: 180px; object-fit: cover; object-position: top; }
.shot figcaption {
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 14px;
}

.strip {
  padding-top: 8px;
  padding-bottom: 56px;
}
.strip p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  max-width: 22em;
  margin: 0;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.story.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.story.reverse .story-text { order: 2; }
.story-text p { margin: 0 0 14px; }

.mosaic { padding-top: 64px; padding-bottom: 32px; }
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.faq { max-width: 720px; padding-top: 48px; padding-bottom: 32px; }
details { border-top: 1px solid var(--line); padding: 16px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  font-family: var(--serif);
  font-size: 22px;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
.faq p { margin: 10px 0 0; }

.close {
  text-align: center;
  padding: 72px 28px 80px;
}
.close .lead, .close p { margin: 0 auto 24px; color: var(--muted); max-width: 28em; }

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 28px 40px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .hero, .story, .story.reverse { grid-template-columns: 1fr; gap: 28px; }
  .story.reverse .story-text { order: 0; }
  .nav nav a:not(.btn) { display: none; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 40px; }
}
