.nature-head {
  padding: 48px 0 22px;
  max-width: 780px;
}
.nature-head .ey {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nature-head h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1;
}
.nature-head .lead {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.nature-head .note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}
.nature-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 18px;
}
.nature-tab {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  padding: 9px 14px;
  font: 600 13px/1 var(--sans);
  cursor: pointer;
}
.nature-tab.on {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.nature-section {
  margin: 24px 0 40px;
}
.nature-section[hidden] {
  display: none;
}
.nature-section__head {
  margin-bottom: 14px;
}
.nature-section__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
}
.nature-section__head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.nature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.nature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: var(--sh-1);
}
.nature-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
}
.nature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nature-card__flag {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  background: rgba(19, 29, 28, .9);
  color: #fff;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nature-card__body {
  padding: 16px;
}
.nature-card__type {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nature-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.12;
}
.nature-card__desc {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.nature-card__facts {
  display: grid;
  gap: 5px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}
.nature-card__fact {
  display: flex;
  gap: 7px;
  color: var(--muted);
  font-size: 12.5px;
}
.nature-card__fact b {
  color: var(--ink);
}
.nature-card__pitch {
  margin: 11px 0 0;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}
.nature-loading {
  padding: 28px 0;
  color: var(--muted);
}
.nature-guide {
  margin: 8px 0 50px;
  border-radius: var(--r-lg);
  background: var(--ink);
  color: #fff;
  padding: 22px 24px;
}
.nature-guide h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 27px;
}
.nature-guide p {
  margin: 0;
  max-width: 760px;
  color: #d7d1c7;
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .nature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .nature-head { padding-top: 34px; }
  .nature-head h1 { font-size: 46px; }
  .nature-grid { grid-template-columns: 1fr; gap: 12px; }
  .nature-section { margin: 18px 0 34px; }
  .nature-card { display: grid; grid-template-columns: 116px 1fr; }
  .nature-card__media { min-height: 100%; aspect-ratio: auto; }
  .nature-card__media img { position: absolute; inset: 0; }
  .nature-card__body { padding: 14px; }
  .nature-card h3 { font-size: 20px; }
  .nature-card__desc { font-size: 13px; }
  .nature-card__pitch { display: none; }
}
