:root {
  --ink: #251d18;
  --muted: #665d56;
  --milk: #fff7ed;
  --linen: #eadccb;
  --moss: #3f5d49;
  --brick: #9b5644;
  --white: #ffffff;
  --line: rgba(37, 29, 24, 0.16);
  --shadow: 0 22px 58px rgba(37, 29, 24, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

.report {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
}

.back {
  color: var(--moss);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.report-header {
  margin-top: clamp(36px, 7vw, 80px);
  margin-bottom: 34px;
}

.report-header p {
  margin: 0 0 12px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 500;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1;
  font-weight: 500;
}

.report-header span,
p,
li {
  color: var(--muted);
}

.summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.summary div {
  min-height: 126px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.summary strong,
.summary span {
  display: block;
}

.summary strong {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary span {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1;
}

.content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

article.wide {
  grid-column: span 2;
}

.intro-card {
  background: var(--linen);
}

.media-card {
  background: #f8efe5;
}

.final-note {
  border-color: rgba(63, 93, 73, 0.28);
  background: rgba(185, 213, 217, 0.26);
}

ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.section-title {
  max-width: 780px;
  margin-bottom: 18px;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(340px, 1fr);
  gap: 18px;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.map-panel {
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.map-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.gps-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.gps-meta span {
  color: var(--muted);
}

.gps-meta strong {
  color: var(--ink);
  text-align: right;
}

@media (max-width: 980px) {
  .summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .summary,
  .content {
    grid-template-columns: 1fr;
  }

  article.wide {
    grid-column: auto;
  }

  .map-panel img,
  figure img {
    height: 300px;
  }

  .gps-meta {
    flex-direction: column;
  }

  .gps-meta strong {
    text-align: left;
  }
}
