:root {
  --flyer-green: #2d5a3d;
  --flyer-gold: #c9a227;
  --flyer-cream: #f5f1e8;
}

* { box-sizing: border-box; }
body { margin: 0; background: #ece7dc; color: #1f2e24; font-family: Inter, system-ui, sans-serif; }
.flyer-skip { position: fixed; top: -80px; left: 16px; z-index: 100; background: #fff; color: #111; padding: 10px 14px; }
.flyer-skip:focus { top: 12px; }
.flyer-site-header { min-height: 72px; padding: 12px clamp(16px, 4vw, 56px); background: var(--flyer-green); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.flyer-site-header a { color: #fff; text-decoration: none; font-weight: 700; }
.flyer-brand { display: flex; align-items: center; gap: 12px; font-family: Cinzel, Georgia, serif; }
.flyer-brand img { border-radius: 50%; }
.flyer-page { width: min(1180px, calc(100% - 28px)); margin: 30px auto 60px; }
.flyer-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 22px; }
.flyer-heading h1 { margin: 2px 0 8px; font-family: Cinzel, Georgia, serif; color: var(--flyer-green); font-size: clamp(1.65rem, 3vw, 2.6rem); }
.flyer-heading p { max-width: 70ch; margin: 0; line-height: 1.55; }
.flyer-eyebrow { color: #6f7d6a; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 800; }
.flyer-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.flyer-actions button, .flyer-actions a { appearance: none; border: 0; border-radius: 6px; padding: 11px 16px; font: inherit; font-weight: 750; cursor: pointer; text-decoration: none; }
.flyer-actions button { background: var(--flyer-green); color: #fff; }
.flyer-actions a { background: var(--flyer-gold); color: #1a241c; }
.flyer-frame { max-width: 760px; margin: 0 auto; padding: clamp(8px, 2vw, 18px); background: #fff; border-radius: 12px; box-shadow: 0 18px 48px rgba(43, 54, 38, .18); }
.flyer-canvas { position: relative; width: 100%; overflow: hidden; }
.flyer-layer { pointer-events: none; }
.flyer-layer-text { display: flex; flex-direction: column; align-items: stretch; }
.flyer-layer-qr canvas { display: block; width: 100%; height: 100%; image-rendering: pixelated; }
.flyer-not-found { max-width: 560px; margin: 80px auto; padding: 24px; text-align: center; }
.flyer-not-found a { color: var(--flyer-green); }

@media (max-width: 680px) {
  .flyer-heading { align-items: stretch; flex-direction: column; }
  .flyer-actions { width: 100%; }
  .flyer-actions > * { flex: 1; text-align: center; }
  .flyer-brand span { font-size: .86rem; }
}

@media print {
  @page { margin: 0.35in; }
  body { background: #fff; }
  .flyer-skip, .flyer-site-header, .flyer-heading { display: none !important; }
  .flyer-page { width: 100%; margin: 0; }
  .flyer-frame { max-width: none; padding: 0; box-shadow: none; border-radius: 0; }
  .flyer-canvas { width: auto; max-width: 100%; max-height: 10.25in; margin: auto; }
}
