@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f5f3ee;
  --text: #1f2a24;
  --muted: #667168;
  --accent: #b8924f;
  --accent-dark: #927033;
  --green: #213a2b;
  --border: #deddd6;
  --shadow: 0 18px 45px rgba(24, 38, 29, 0.12);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: rgba(20, 31, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #f3ddac;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

nav a:hover,
nav a:focus-visible {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 48%;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 17, 12, 0.15) 15%, rgba(10, 18, 12, 0.9) 100%),
    linear-gradient(90deg, rgba(10, 18, 12, 0.58), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 170px 0 88px;
  color: #fff;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: #f3ddac;
}

.hero h1,
.section h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
}

.hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: #f2d99d;
  color: var(--green);
}

.button-primary:hover {
  background: #ffe7ac;
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  width: fit-content;
  background: var(--green);
  color: #fff;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--surface);
}

.two-column {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.section-label {
  color: var(--accent-dark);
}

.section h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.info-card .icon {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f4e6c5;
  color: var(--green);
  font-size: 1.5rem;
}

.info-card h3,
.download-card h3 {
  margin: 0 0 8px;
}

.info-card p {
  margin: 0 0 14px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

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

.section-heading > p {
  max-width: 420px;
  margin: 0;
}

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

.download-card {
  display: flex;
  gap: 22px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.file-icon {
  flex: 0 0 64px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #efe4c9;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.download-content {
  display: flex;
  flex-direction: column;
}

.download-content p {
  margin: 0 0 24px;
}

.download-content .button {
  margin-top: auto;
}

footer {
  background: #16251b;
  color: rgba(255, 255, 255, 0.75);
}

.footer-content {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav {
    min-height: 64px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .two-column,
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .two-column {
    gap: 36px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .brand {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 17, 12, 0.18) 10%, rgba(10, 18, 12, 0.94) 100%);
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .info-card,
  .download-card {
    padding: 22px;
  }

  .download-card {
    flex-direction: column;
  }

  .download-content .button {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
