.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section--tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.grid-2 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }

@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 45, 85, 0.15), transparent),
    linear-gradient(180deg, var(--burgundy-mid), var(--bg));
  border-bottom: 1px solid var(--border);
}

.page-hero__title { font-size: clamp(2.2rem, 5vw, 3.2rem); text-transform: uppercase; }
.page-hero__sub { color: var(--text-muted); max-width: 48ch; margin: 0.75rem auto 0; }
.page-hero__actions { margin-top: 1.5rem; }

.story__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .story__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.story__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-neon);
  box-shadow: var(--shadow-deep);
}

.story__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story__caption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.95rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.map-frame-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    4px 6px 24px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 248, 232, 0.06);
  transform: rotate(-0.6deg);
  background: #e8dcc0;
}

.map-frame-wrap::before,
.map-frame-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.map-frame-wrap::before {
  background:
    linear-gradient(135deg, rgba(240, 228, 200, 0.28) 0%, transparent 42%, rgba(26, 16, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 248, 232, 0.12) 0%, transparent 30%, rgba(20, 12, 8, 0.22) 100%);
  mix-blend-mode: multiply;
}

.map-frame-wrap::after {
  background: url("/assets/images/textures/paper-fold.svg") center / cover no-repeat;
  opacity: 0.72;
  mix-blend-mode: soft-light;
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 0;
  filter: sepia(0.38) saturate(0.72) contrast(0.94) brightness(0.9);
}
