* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--text-body);
  line-height: 1.65;
  background: var(--bg-white);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.section-title, .intro-title, .hero h1 {
  font-family: "Oswald", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: skewX(-4deg);
}

/* Header */
.site-header {
  background: var(--brand-charcoal);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
.header-logo {
  margin-right: auto;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  transform: skewX(-4deg);
}
.header-nav {
  display: flex;
  gap: 26px;
}
.nav-link {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 500;
}
.nav-link:hover { color: var(--brand-mustard); }
.btn-subscribe {
  background: var(--brand-mustard);
  color: var(--brand-charcoal);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
}
.btn-subscribe:hover { background: var(--brand-mustard-deep); }

/* Hero */
.hero {
  background: var(--brand-charcoal);
  padding: 120px 40px 140px;
}
.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.hero h1 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 32px;
}
.btn-mustard {
  display: inline-block;
  background: var(--brand-mustard);
  color: var(--brand-charcoal);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
}
.btn-mustard:hover { background: var(--brand-mustard-deep); }

/* Intro */
.intro {
  background: var(--bg-cream);
  max-width: 1300px;
  margin: 0 auto;
  padding: 90px 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.intro-title {
  font-size: 30px;
  color: var(--text-dark);
}
.intro-text p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Fresh trail */
.fresh-trail {
  background: var(--brand-navy);
  padding: 72px 40px;
}
.section-title {
  color: #ffffff;
  text-align: center;
  font-size: 30px;
  margin-bottom: 48px;
}
.trail-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trail-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 18px;
}
.trail-card h3 {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}
.trail-date {
  color: #b8c2cc;
  font-size: 13px;
  margin-bottom: 10px;
}
.trail-excerpt {
  color: #d3dbe2;
  font-size: 14px;
  margin-bottom: 12px;
}
.trail-link {
  color: var(--brand-mustard);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* Subscribe band */
.subscribe-band {
  position: relative;
  padding: 96px 40px;
  text-align: center;
  overflow: hidden;
}
.subscribe-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.subscribe-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,16,12,0.72);
}
.subscribe-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.subscribe-content .section-title { margin-bottom: 20px; }
.subscribe-content p {
  color: #f0ece4;
  margin-bottom: 32px;
  font-size: 16px;
}

/* Footer */
.site-footer {
  background: var(--brand-navy);
  color: #d3dbe2;
  padding: 48px 24px 32px;
  text-align: center;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.footer-logo {
  font-family: "Oswald", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 1px;
  transform: skewX(-4deg);
  margin-bottom: 14px;
}
.footer-copy, .footer-email { font-size: 14px; margin-bottom: 6px; }
.footer-email a { color: #d3dbe2; text-decoration: underline; }
.footer-bottom {
  font-size: 13px;
  color: #9aa8b4;
  margin-top: 18px;
}
.footer-bottom a { color: #9aa8b4; }
.footer-bottom a:hover { color: #ffffff; }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hero h1 { font-size: 28px; }
  .intro { grid-template-columns: 1fr; }
  .trail-grid { grid-template-columns: 1fr; }
}
