:root {
  --page: #fbfbf6;
  --ink: #1e2a23;
  --muted: #5d6b61;
  --green: #2f684e;
  --green-dark: #214d3b;
  --leaf: #e5efe2;
  --sky: #d9ecf2;
  --gold: #f1d083;
  --line: #d9dfd2;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(36, 54, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.6;
}

a {
  color: var(--green-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: #123f2c;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  background:
    linear-gradient(135deg, rgba(229, 239, 226, 0.96), rgba(217, 236, 242, 0.9)),
    var(--leaf);
  border-bottom: 1px solid var(--line);
}

.compact-header {
  background: var(--leaf);
}

.topbar {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 18px 24px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 54px;
  object-fit: contain;
  padding: 4px;
  width: 54px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}

.nav-links a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 48px 24px 64px;
}

.hero-logo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(36, 54, 42, 0.12);
  height: 116px;
  margin-bottom: 20px;
  object-fit: contain;
  padding: 8px;
  width: 116px;
}

.kicker,
.label {
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 6px;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.14;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 700;
}

.subtitle {
  color: var(--muted);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 18px 0 0;
  max-width: 740px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  border-radius: 8px;
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--green-dark);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  aspect-ratio: 4 / 3;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 38px 24px 58px;
}

.featured {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 34px;
}

.featured article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(36, 54, 42, 0.08);
  display: grid;
  gap: 18px;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
}

.featured img {
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  width: 100%;
}

.featured div {
  padding: 24px 24px 24px 0;
}

.featured h2,
.link-section h2 {
  font-size: 1.55rem;
}

.card-subtitle {
  color: var(--muted);
  font-style: italic;
  margin: 8px 0 6px;
}

.link-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(36, 54, 42, 0.07);
  padding: 24px;
}

.link-section:nth-child(2) {
  border-top-color: #6f8f3f;
}

.link-section:nth-child(3) {
  border-top-color: #8d6f3f;
}

.link-section:nth-child(4) {
  border-top-color: #3f7890;
}

ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

li + li {
  border-top: 1px solid var(--line);
}

li a {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  padding: 13px 0;
}

.site-footer {
  background: #23382d;
  color: #eef5ea;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding: 24px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #eef5ea;
}

.article-page {
  max-width: 980px;
}

.trip-report {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(36, 54, 42, 0.08);
  overflow: hidden;
}

.article-hero {
  background:
    linear-gradient(135deg, rgba(229, 239, 226, 0.95), rgba(217, 236, 242, 0.82)),
    var(--leaf);
  padding: 42px 44px;
}

.article-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  max-width: 780px;
}

.byline {
  color: var(--green-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 18px 0 0;
}

.article-cover {
  margin: 0;
}

.article-cover img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  width: 100%;
}

.article-cover figcaption {
  background: #f3f6ee;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  padding: 10px 44px;
}

.photo-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 28px 44px 0;
}

.photo-gallery figure {
  background: #f7f8f2;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.photo-gallery img {
  aspect-ratio: 4 / 3;
  background: var(--leaf);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.gallery-link {
  display: block;
}

.gallery-link:hover img,
.gallery-link:focus-visible img {
  filter: brightness(1.04);
}

.photo-gallery figcaption {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 11px 12px 13px;
}

.photo-gallery strong,
.photo-gallery span {
  display: block;
}

.photo-gallery strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.article-body {
  padding: 18px 44px 48px;
}

.article-body h2 {
  color: var(--green-dark);
  font-size: 1.7rem;
  margin-top: 34px;
}

.article-body p {
  margin: 14px 0 0;
}

.report-nav {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 0 0 18px;
}

.report-nav-bottom {
  padding: 18px 0 0;
}

.intro-block {
  padding-bottom: 8px;
}

.lead {
  font-size: 1.15rem;
}

.placeholder-block {
  border-left: 5px solid var(--gold);
  margin-top: 30px;
  padding: 2px 0 4px 20px;
}

.placeholder-block h2 {
  margin-top: 0;
}

.editor-note {
  color: var(--muted);
  font-style: italic;
}

.date-section {
  border-top: 1px solid var(--line);
  padding: 40px 0 12px;
}

.date-heading {
  padding: 0 44px;
}

.date-heading h2 {
  color: var(--green-dark);
  font-size: 2rem;
}

.date-heading p:last-child {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  margin: 8px 0 0;
}

.dated-gallery {
  padding-bottom: 16px;
}

.dated-gallery img {
  aspect-ratio: auto;
  object-fit: contain;
}

.dated-gallery small {
  display: block;
  font-size: 0.74rem;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .featured {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .dated-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    font-size: 18px;
  }

  .topbar,
  .hero,
  main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .nav-links a {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
  }

  .hero-logo {
    height: 92px;
    width: 92px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .featured article {
    grid-template-columns: 1fr;
  }

  .featured div {
    padding: 0 20px 22px;
  }

  .featured img {
    max-height: 220px;
  }

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

  .article-hero,
  .article-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .article-cover figcaption,
  .photo-gallery,
  .date-heading {
    padding-left: 22px;
    padding-right: 22px;
  }

  .article-cover img {
    aspect-ratio: 4 / 3;
  }

  .dated-gallery {
    grid-template-columns: 1fr;
  }
}
