:root {
  --ink: #202421;
  --muted: #667069;
  --paper: #fffaf2;
  --surface: #ffffff;
  --line: #ded8ca;
  --forest: #2f5d50;
  --clay: #b75f37;
  --sky: #79aeca;
  --sun: #e5ad45;
  --shadow: 0 18px 45px rgba(44, 47, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(222, 216, 202, 0.85);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

nav a,
footer a,
.post-card a {
  text-decoration: none;
}

nav a:hover,
footer a:hover,
.post-card a:hover {
  color: var(--clay);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  min-height: calc(100vh - 72px);
  padding: clamp(30px, 6vw, 70px) clamp(18px, 5vw, 72px) 38px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: #4d564f;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--forest);
}

.button.secondary {
  color: var(--forest);
  background: transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dcecf0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.quick-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px) 70px;
  border: 1px solid var(--line);
  background: var(--line);
}

.quick-notes article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.quick-notes span,
.post-meta,
.timeline span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-notes strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.section,
.route-section,
.newsletter {
  padding: 76px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.post-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 20px;
}

.post-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(44, 47, 43, 0.08);
}

.post-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: #e8f1ef;
}

.post-card.featured img {
  aspect-ratio: 1.7;
}

.post-content {
  padding: 20px;
}

.post-content p {
  margin: 10px 0 16px;
  color: var(--muted);
}

.post-card a {
  color: var(--forest);
  font-weight: 800;
}

.route-section {
  background: #f3eee4;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 22px 22px 22px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.timeline li::before {
  position: absolute;
  top: 26px;
  left: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.route-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
}

.route-panel h3 {
  margin-bottom: 18px;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

dt {
  color: rgba(255, 255, 255, 0.76);
}

dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tips-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--clay);
  font-weight: 900;
}

.tips-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) 76px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.76);
}

.newsletter label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.newsletter input {
  flex: 1 1 220px;
  min-height: 46px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
}

#form-message {
  min-height: 24px;
  margin: 12px 0 0;
}

.disclaimer-section {
  padding-top: 0;
}

.disclaimer-content {
  max-width: 900px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.disclaimer-content p {
  margin: 0;
  color: var(--muted);
}

.disclaimer-content p + p {
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(720px, calc(100vw - 28px));
  padding: 22px;
  border: 1px solid rgba(32, 36, 33, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 20px 60px rgba(32, 36, 33, 0.22);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-label {
  margin: 0 0 4px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.cookie-banner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  justify-content: flex-end;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

@media (max-width: 920px) {
  .hero,
  .post-grid,
  .route-layout,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .post-card.featured img,
  .post-card img {
    aspect-ratio: 1.8;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-notes,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter {
    margin-inline: 18px;
    padding: 32px 20px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 3.1rem;
  }

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

  .timeline li {
    padding-left: 44px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
