:root {
  --cream: #fffaf0;
  --paper: #fffef9;
  --green: #244c35;
  --leaf: #3e7049;
  --red: #c83d2f;
  --orange: #e8843b;
  --ink: #26332a;
  --muted: #667268;
  --line: #dce3d8;
  --shadow: 0 12px 30px rgba(36, 76, 53, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: relative; z-index: 10; }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { color: var(--green); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.brand span { color: var(--red); }
.main-nav ul { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.main-nav a { display: block; padding: .7rem .8rem; border-radius: .5rem; color: var(--green); font-weight: 650; text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] { background: #edf4e9; color: var(--red); }
.dropdown { position: relative; }
.dropdown > a::after { content: " ▾"; font-size: .75em; }
.dropdown-menu {
  position: absolute; top: calc(100% + .25rem); left: 0; min-width: 190px;
  display: none !important; padding: .45rem !important; background: var(--paper);
  border: 1px solid var(--line); border-radius: .7rem; box-shadow: var(--shadow);
}
.dropdown-menu li, .dropdown-menu a { width: 100%; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block !important; }
.hero { padding: clamp(4rem, 8vw, 7rem) 0; background: radial-gradient(circle at 82% 20%, #f8c871 0 8%, transparent 9%), linear-gradient(135deg, #edf4e9, #fff4df); }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 3rem; align-items: center; }
.eyebrow { margin: 0 0 .5rem; color: var(--red); font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { color: var(--green); font-family: Georgia, serif; line-height: 1.15; }
h1 { margin: 0 0 1rem; font-size: clamp(2.7rem, 7vw, 5.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
.lead { max-width: 680px; color: #46564b; font-size: 1.14rem; }
.pepper-mark { display: grid; place-items: center; min-height: 280px; font-size: clamp(8rem, 20vw, 14rem); transform: rotate(8deg); filter: drop-shadow(0 20px 15px rgba(126, 39, 25, .15)); }
.button { display: inline-block; margin-top: 1rem; padding: .8rem 1.15rem; background: var(--red); color: #fff; border-radius: .55rem; font-weight: 750; text-decoration: none; }
.button:hover, .button:focus-visible { background: #a82f24; }
main section { padding: 4rem 0; }
.page-head { padding: 4rem 0 3rem; background: linear-gradient(135deg, #edf4e9, #fff7e8); }
.page-head h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.grid.four { grid-template-columns: repeat(2, 1fr); }
.card { padding: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); }
.card h3 { margin-top: .25rem; }
.card-link { display: block; text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.card-link:hover, .card-link:focus-visible { transform: translateY(-4px); border-color: #a9bda8; }
.icon { font-size: 2.2rem; }
.detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
.note { padding: 1.25rem; background: #edf4e9; border-left: 4px solid var(--leaf); border-radius: .3rem .8rem .8rem .3rem; }
.checklist { padding-left: 1.2rem; }
.checklist li { margin-bottom: .6rem; }
.site-footer { padding: 2rem 0; background: var(--green); color: #e9f1e7; }
.footer-wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-footer p { margin: 0; }
.site-footer a { color: #fff; }

@media (max-width: 760px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; gap: .5rem; padding-block: 1rem; }
  .main-nav, .main-nav > ul { width: 100%; }
  .main-nav > ul { align-items: stretch; flex-direction: column; }
  .main-nav a { padding: .55rem .65rem; }
  .dropdown-menu { position: static; min-width: 0; margin: .15rem 0 0 1rem !important; box-shadow: none; }
  .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block !important; }
  .hero-grid, .detail-layout { grid-template-columns: 1fr; }
  .pepper-mark { min-height: 160px; }
  .grid, .grid.four { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
