:root {
  --bg: #f7f6f2;
  --panel: #ffffff;
  --text: #1f2328;
  --muted: #667085;
  --line: #d8dde3;
  --accent: #2f6f4f;
  --accent-dark: #234f38;
  --accent-light: #7aa33d;
  --accent-2: #e8f4ec;
  --melon-red: #d94c4c;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background:
    linear-gradient(180deg, #fbfaf6 0%, var(--bg) 240px, #f2f6ee 100%) fixed;
  position: relative;
  min-height: 100%;
}

a {
  color: inherit;
}

.site-topbar {
  background:
    linear-gradient(90deg, #173d2a, #234f38 45%, #2f6f4f);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.site-topbar .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.site-topbar a:hover {
  text-decoration: underline;
}

.brand-link {
  margin-right: auto;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
}


.content-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.hero {
  background:
    linear-gradient(180deg, rgba(20,64,38,0.91), rgba(47,111,79,0.78)),
    radial-gradient(circle at top right, rgba(217,76,76,0.20), transparent 30%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.055) 0px,
      rgba(255,255,255,0.055) 16px,
      transparent 16px,
      transparent 36px
    );
  color: #fff;
  border-radius: 24px;
  padding: 38px 32px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(217,76,76,0.28) 0 44%, rgba(255,255,255,0.22) 45% 49%, rgba(47,111,79,0.35) 50% 62%, transparent 63%);
  opacity: 0.55;
  pointer-events: none;
}

.hero--photo {
  background:
    linear-gradient(to bottom, rgba(15,40,25,0.22) 0%, rgba(15,40,25,0.42) 100%),
    url('/assets/img/hero-watermelon-photo.jpg') 30% 100% / cover no-repeat;
}

.hero--photo::after {
  display: none;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 10px;
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.02;
}

.hero p,
.dek {
  max-width: 820px;
  font-size: 18px;
  margin: 16px 0 0;
  color: var(--muted);
}

.hero p {
  color: rgba(255,255,255,0.96);
}

.panel,
.card,
.page-shell {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(216,221,227,0.95);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.045);
  backdrop-filter: blur(2px);
}

.card {
  overflow: hidden;
}

.page-shell {
  padding: 24px;
}

.section {
  margin-top: 28px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0 0 6px;
  font-size: 28px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

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

.btn-primary {
  background: #fff;
  color: #1d3f2d;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.20);
}

.muted {
  color: var(--muted);
}

.footer-note {
  margin-top: 18px;
  padding: 0 4px 10px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-topbar .inner,
  .content-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-link {
    margin-right: 0;
    width: 100%;
  }

.brand-logo {
  display: block;
  height: 28px;
  width: auto;
}

@media (max-width: 760px) {
  .brand-logo { height: 24px; }
}


  .hero {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .hero::after {
    width: 150px;
    height: 150px;
    right: -45px;
    bottom: -55px;
  }

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

@media print {
  .site-topbar,
  .breadcrumbs,
  .footer-note {
    display: none !important;
  }

  body {
    background: #fff;
    font-size: 11pt;
  }

  .hero::after {
    display: none !important;
  }

  .content-page {
    max-width: none;
    padding: 0;
  }

  .page-shell,
  .panel,
  .card {
    box-shadow: none;
    background: #fff;
    backdrop-filter: none;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}
