:root {
  --poy-coral: #F26B5B;
  --poy-gold: #F6C85F;
  --poy-blue: #8CCFE3;
  --poy-cream: #FFF8ED;
  --poy-cocoa: #292522;
  --poy-sage: #A8C7A0;
  --poy-serif: "Bodoni 72", Didot, "Times New Roman", Georgia, serif;
  --poy-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --poy-max: 1180px;
}

html { scroll-behavior: smooth; }
body { margin: 0; }
body.admin-bar .poy-header { top: 32px; }

.poy-site,
.poy-standard-page {
  color: var(--poy-cocoa);
  font-family: var(--poy-sans);
  font-size: 16px;
  line-height: 1.5;
  background: var(--poy-cream);
}
.poy-site *, .poy-site *::before, .poy-site *::after,
.poy-standard-page *, .poy-standard-page *::before, .poy-standard-page *::after { box-sizing: border-box; }
.poy-site img, .poy-standard-page img { max-width: 100%; height: auto; }
.poy-site a, .poy-standard-page a { color: inherit; }
.poy-container { width: min(calc(100% - 40px), var(--poy-max)); margin-inline: auto; }
.poy-section { position: relative; overflow: hidden; }
.poy-center { display: flex; justify-content: center; margin-top: 30px; }
.screen-reader-text { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

.poy-tone-cream { background: var(--poy-cream); color: var(--poy-cocoa); }
.poy-tone-sage { background: var(--poy-sage); color: var(--poy-cocoa); }
.poy-tone-cocoa { background: var(--poy-cocoa); color: var(--poy-cream); }
.poy-tone-coral { background: var(--poy-coral); color: #fff; }
.poy-tone-gold { background: var(--poy-gold); color: var(--poy-cocoa); }
.poy-tone-blue { background: var(--poy-blue); color: var(--poy-cocoa); }

.poy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,248,237,.96);
  border-bottom: 1px solid rgba(41,37,34,.08);
  backdrop-filter: blur(12px);
}
.poy-header__inner { min-height: 94px; display: grid; grid-template-columns: 128px 1fr auto; gap: 28px; align-items: center; }
.poy-header__brand { display: block; width: 108px; }
.poy-header__brand img { display: block; width: 100%; max-height: 72px; object-fit: contain; }
.poy-nav { justify-self: center; }
.poy-nav__list { display: flex; gap: clamp(18px, 2.4vw, 36px); list-style: none; margin: 0; padding: 0; align-items: center; }
.poy-nav__list a { text-decoration: none; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.poy-nav__list a:hover, .poy-nav__list a:focus-visible { color: var(--poy-coral); }
.poy-nav-toggle { display: none; }

.poy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  background: var(--poy-coral);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.poy-btn:hover, .poy-btn:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(41,37,34,.12); filter: saturate(1.05); }
.poy-btn__arrow, .poy-text-link svg { width: 18px; height: 18px; flex: 0 0 auto; }
.poy-header__cta { white-space: nowrap; }

.poy-hero { padding: clamp(54px, 7vw, 92px) 0 46px; }
.poy-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 6vw, 88px); align-items: center; }
.poy-hero__copy { padding-left: clamp(0px, 2vw, 30px); }
.poy-hero h1 { margin: 0 0 22px; max-width: 680px; font-family: var(--poy-serif); font-size: clamp(56px, 7vw, 98px); line-height: .9; font-weight: 500; letter-spacing: -.035em; }
.poy-lead { max-width: 560px; margin-bottom: 30px; font-size: clamp(18px, 2vw, 25px); line-height: 1.28; }
.poy-lead p { margin: 0; }
.poy-hero__art { display: flex; justify-content: center; align-items: flex-end; min-height: 430px; }
.poy-hero__art img { width: min(100%, 500px); max-height: 520px; object-fit: contain; filter: drop-shadow(0 22px 28px rgba(41,37,34,.08)); }

.poy-section-title { display: grid; grid-template-columns: minmax(36px, 88px) auto minmax(36px, 88px); gap: 18px; align-items: center; justify-content: center; margin-bottom: 38px; text-align: center; }
.poy-section-title span { width: 100%; height: 2px; background: var(--poy-gold); }
.poy-section-title h2 { margin: 0; font-family: var(--poy-serif); font-size: clamp(30px, 3.3vw, 48px); line-height: 1; font-weight: 500; letter-spacing: -.015em; }
.poy-section-title h2::before, .poy-section-title h2::after { content: "✦"; color: #d49325; font-family: Georgia, serif; font-size: .68em; vertical-align: .1em; padding: 0 .42em; }
.poy-section-title--light h2 { color: var(--poy-cream); }

.poy-how { padding: 38px 0 52px; }
.poy-how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 4vw, 58px); }
.poy-step { text-align: center; }
.poy-icon-circle { width: 86px; height: 86px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--poy-cream); color: var(--poy-cocoa); }
.poy-step__icon { width: 46px; height: 46px; }
.poy-step h3 { margin: 0 0 8px; font-size: 14px; letter-spacing: .01em; }
.poy-step p { margin: 0 auto; max-width: 190px; font-size: 14px; line-height: 1.45; }

.poy-pack { padding: 34px 0 18px; }
.poy-pack__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.poy-pack__copy { padding: 20px 0 26px; }
.poy-pack__copy .poy-section-title { grid-template-columns: 0 auto 0; justify-content: start; text-align: left; margin-bottom: 22px; }
.poy-pack__copy .poy-section-title span { display: none; }
.poy-pack__copy .poy-section-title h2 { font-size: clamp(34px, 4vw, 54px); }
.poy-pack__text { max-width: 420px; font-size: 16px; margin-bottom: 25px; }
.poy-pack__art { min-height: 320px; display: flex; align-items: end; justify-content: center; }
.poy-pack__art img { width: min(100%, 720px); max-height: 370px; object-fit: contain; mix-blend-mode: multiply; }

.poy-honorees { padding: 28px 0 20px; }
.poy-honorees__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.poy-honoree { display: block; text-align: center; text-decoration: none; }
.poy-honoree img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; border-radius: 5px; transition: transform .2s ease; }
.poy-honoree:hover img { transform: translateY(-3px); }
.poy-honoree h3 { margin: 12px 0 0; font-size: 13px; font-weight: 800; }
.poy-honoree p { margin: 0; font-size: 11px; }

.poy-wall { min-height: 190px; display: grid; place-items: center; padding: 32px 0; isolation: isolate; }
.poy-wall__inner { position: relative; z-index: 2; text-align: center; }
.poy-wall .poy-section-title { margin-bottom: 8px; }
.poy-wall__text { max-width: 680px; margin: 0 auto 18px; font-size: 14px; }
.poy-wall__text p { margin: 0; }
.poy-wall__heart { position: absolute; width: 190px; aspect-ratio: 1; background: rgba(255,255,255,.045); transform: rotate(45deg); border-radius: 28% 0 28% 0; z-index: 0; }
.poy-wall__heart::before, .poy-wall__heart::after { content: ""; position: absolute; width: 100%; height: 100%; background: inherit; border-radius: 50%; }
.poy-wall__heart::before { left: -50%; }
.poy-wall__heart::after { top: -50%; }
.poy-wall__heart--left { left: 6%; bottom: -100px; }
.poy-wall__heart--right { right: 4%; bottom: -76px; width: 230px; }

.poy-partners { padding: 22px 0 26px; }
.poy-partners .poy-section-title { margin-bottom: 18px; }
.poy-partners__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; align-items: center; margin: 22px 0; }
.poy-partner { min-height: 68px; display: grid; place-items: center; text-align: center; text-decoration: none; color: rgba(41,37,34,.45) !important; font-size: 13px; letter-spacing: .08em; font-weight: 600; }
.poy-partner img { max-width: 140px; max-height: 64px; object-fit: contain; filter: grayscale(1); opacity: .72; }

.poy-feature-grid { background: var(--poy-cocoa); }
.poy-feature-grid__inner { width: min(100%, 1440px); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.poy-feature-card { min-height: 260px; padding: 38px 28px; display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: center; }
.poy-feature-card__icon svg { width: 50px; height: 50px; }
.poy-feature-card h2 { margin: 0 0 10px; font-family: var(--poy-serif); font-weight: 500; font-size: clamp(27px, 2.5vw, 38px); line-height: .95; }
.poy-feature-card p { margin: 0 0 18px; font-size: 14px; line-height: 1.5; }
.poy-text-link { display: inline-flex; gap: 8px; align-items: center; font-size: 12px; font-weight: 900; text-decoration: none; }
.poy-feature-card.poy-tone-cocoa .poy-text-link { color: var(--poy-gold); }
.poy-feature-card.poy-tone-coral .poy-text-link { color: #fff; }

.poy-footer { background: #191715; color: rgba(255,255,255,.86); padding: 36px 0 14px; }
.poy-footer__grid { display: grid; grid-template-columns: 1.15fr 1fr .9fr 1.35fr; gap: 48px; }
.poy-footer__brand img { width: 118px; filter: brightness(0) invert(1); opacity: .95; }
.poy-footer__brand p, .poy-footer p { font-size: 13px; line-height: 1.45; }
.poy-footer h3 { margin: 0 0 10px; color: #fff; font-family: var(--poy-sans); font-size: 12px; letter-spacing: .02em; }
.poy-footer__links { margin: 0; padding: 0; list-style: none; }
.poy-footer__links li { margin: 3px 0; }
.poy-footer__links a { color: rgba(255,255,255,.8); font-size: 12px; text-decoration: none; }
.poy-footer__links a:hover { color: var(--poy-gold); }
.poy-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.poy-socials a { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; display: grid; place-items: center; font-size: 9px; text-decoration: none; color: #fff; }
.poy-newsletter { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.poy-newsletter input { min-width: 0; border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; padding: 10px 12px; }
.poy-newsletter button { border: 0; background: var(--poy-coral); color: #fff; font-weight: 800; padding: 0 18px; cursor: pointer; }
.poy-footer__bottom { margin-top: 28px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: 11px; color: rgba(255,255,255,.5); }

.poy-standard-page { min-height: 70vh; padding: 72px 0; }
.poy-prose { max-width: 900px; }
.poy-prose h1, .poy-prose h2, .poy-prose h3 { font-family: var(--poy-serif); }
.poy-prose h1 { font-size: clamp(44px, 6vw, 78px); line-height: .95; }

@media (max-width: 1080px) {
  .poy-header__inner { grid-template-columns: 110px 1fr auto; gap: 16px; }
  .poy-nav__list { gap: 16px; }
  .poy-nav__list a { font-size: 11px; }
  .poy-feature-grid__inner { grid-template-columns: repeat(2, 1fr); }
  .poy-feature-card { min-height: 220px; }
}

@media (max-width: 860px) {
  body.admin-bar .poy-header { top: 46px; }
  .poy-container { width: min(calc(100% - 30px), var(--poy-max)); }
  .poy-header__inner { min-height: 78px; grid-template-columns: 92px 1fr auto; }
  .poy-header__brand { width: 86px; }
  .poy-header__cta { display: none; }
  .poy-nav-toggle { justify-self: end; width: 44px; height: 44px; padding: 10px; display: grid; gap: 5px; align-content: center; border: 0; background: transparent; cursor: pointer; }
  .poy-nav-toggle span:not(.screen-reader-text) { display: block; height: 2px; background: var(--poy-cocoa); }
  .poy-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--poy-cream); border-top: 1px solid rgba(41,37,34,.08); box-shadow: 0 16px 30px rgba(41,37,34,.09); max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .poy-nav.is-open { max-height: 480px; }
  .poy-nav__list { display: grid; gap: 0; padding: 12px 18px 18px; }
  .poy-nav__list a { display: block; padding: 13px 6px; font-size: 13px; }
  .poy-hero { padding-top: 38px; }
  .poy-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .poy-hero__copy { padding: 0; }
  .poy-hero h1, .poy-lead { margin-inline: auto; }
  .poy-hero h1 { font-size: clamp(52px, 12vw, 84px); }
  .poy-hero__art { min-height: 300px; order: -1; }
  .poy-hero__art img { width: min(74vw, 390px); max-height: 390px; }
  .poy-how__grid { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .poy-pack__grid { grid-template-columns: 1fr; text-align: center; }
  .poy-pack__copy .poy-section-title { justify-content: center; text-align: center; }
  .poy-pack__text { margin-inline: auto; }
  .poy-pack__art { min-height: 220px; }
  .poy-honorees__grid { grid-template-columns: repeat(2, 1fr); }
  .poy-partners__grid { grid-template-columns: repeat(3, 1fr); }
  .poy-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .poy-container { width: min(calc(100% - 24px), var(--poy-max)); }
  .poy-header__inner { grid-template-columns: 82px 1fr auto; }
  .poy-section-title { grid-template-columns: 28px auto 28px; gap: 8px; }
  .poy-section-title h2 { font-size: 29px; }
  .poy-section-title h2::before, .poy-section-title h2::after { padding: 0 .2em; }
  .poy-how__grid { grid-template-columns: 1fr; }
  .poy-step p { max-width: 250px; }
  .poy-honorees__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .poy-honoree h3 { font-size: 11px; }
  .poy-partners__grid { grid-template-columns: repeat(2, 1fr); }
  .poy-feature-grid__inner { grid-template-columns: 1fr; }
  .poy-feature-card { min-height: 200px; padding: 30px 22px; }
  .poy-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .poy-newsletter { grid-template-columns: 1fr; }
  .poy-newsletter button { min-height: 42px; }
}

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

/* ==========================================================
   Nomination funnel — v1.1.0
   ========================================================== */
.poy-nomination-site { min-height: 100vh; background: var(--poy-cream); }
.poy-nomination-topbar { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 12px; }
.poy-nomination-topbar__brand { display: block; width: 112px; }
.poy-nomination-topbar__brand img { display: block; width: 100%; max-height: 78px; object-fit: contain; }
.poy-nomination-back { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-decoration: none; }
.poy-nomination-back:hover, .poy-nomination-back:focus-visible { color: var(--poy-coral); }
.poy-nomination-page { padding: 10px 0 72px; }
.poy-nomination-shell { width: min(calc(100% - 36px), 760px); margin: 0 auto; }
.poy-nomination-mascot { width: 150px; margin: 0 auto 4px; }
.poy-nomination-mascot img { display: block; width: 100%; max-height: 160px; object-fit: contain; }
.poy-nomination-title { margin: 2px auto 6px; grid-template-columns: minmax(28px, 74px) auto minmax(28px, 74px); }
.poy-nomination-title h1 { margin: 0; font-family: var(--poy-serif); font-size: clamp(31px, 5vw, 46px); font-weight: 500; line-height: 1; letter-spacing: .04em; text-align: center; }
.poy-nomination-intro { margin: 0 auto 38px; text-align: center; font-size: 14px; line-height: 1.55; }
.poy-nomination-intro p { margin: 0; }
.poy-nomination-form { width: 100%; }
.poy-form-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 14px; row-gap: 22px; }
.poy-form-field { grid-column: 1 / -1; min-width: 0; }
.poy-form-field--half { grid-column: span 1; }
.poy-form-label { display: block; margin-bottom: 7px; color: var(--poy-cocoa); font-size: 13px; font-weight: 800; line-height: 1.35; }
.poy-form-label > span[aria-hidden="true"], .poy-checkbox-block__title > span[aria-hidden="true"] { color: var(--poy-coral); }
.poy-form-label small { margin-left: 5px; font-size: 10px; font-weight: 600; color: rgba(41,37,34,.55); }
.poy-form-field input[type="text"],
.poy-form-field input[type="email"],
.poy-form-field input[type="tel"],
.poy-form-field input[type="url"],
.poy-form-field textarea {
  width: 100%; min-height: 50px; border: 1px solid rgba(194,157,112,.4); border-radius: 5px; background: rgba(255,255,255,.28); color: var(--poy-cocoa); padding: 13px 15px; font: inherit; font-size: 13px; outline: none; box-shadow: none; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.poy-form-field textarea { min-height: 128px; resize: vertical; line-height: 1.55; }
.poy-form-field input::placeholder, .poy-form-field textarea::placeholder { color: rgba(41,37,34,.43); }
.poy-form-field input:focus, .poy-form-field textarea:focus { border-color: var(--poy-gold); background: rgba(255,255,255,.5); box-shadow: 0 0 0 3px rgba(246,200,95,.16); }
.poy-form-field.has-error input, .poy-form-field.has-error textarea { border-color: var(--poy-coral); }
.poy-field-error { margin: 6px 0 0; color: #a52f23; font-size: 11px; font-weight: 700; }
.poy-checkbox-block { display: grid; gap: 9px; }
.poy-form-field--checkbox { position: relative; padding-left: 24px; }
.poy-form-field--checkbox > .poy-form-field__number { position: absolute; left: 0; top: 1px; font-size: 13px; font-weight: 800; }
.poy-checkbox-block__title { font-size: 13px; font-weight: 800; }
.poy-checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; line-height: 1.45; cursor: pointer; }
.poy-checkline input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--poy-coral); flex: 0 0 auto; }
.poy-form-divider { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; margin: 5px 0 -3px; }
.poy-form-divider span { height: 1px; background: var(--poy-gold); opacity: .9; }
.poy-form-divider h2 { margin: 0; color: #bb7421; font-family: var(--poy-serif); font-weight: 500; font-size: 20px; letter-spacing: .04em; }
.poy-form-submit { display: flex; justify-content: center; margin: 32px 0 20px; }
.poy-submit-btn { min-width: 270px; min-height: 54px; cursor: pointer; }
.poy-publication-notice { max-width: 610px; margin: 0 auto; display: flex; justify-content: center; align-items: flex-start; gap: 8px; color: rgba(41,37,34,.72); font-size: 10px; line-height: 1.45; text-align: left; }
.poy-publication-notice p { margin: 0; }
.poy-publication-notice a { text-decoration: underline; text-underline-offset: 2px; }
.poy-honeypot { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.poy-form-alert { margin: 0 0 24px; padding: 13px 15px; border-left: 4px solid var(--poy-coral); background: rgba(242,107,91,.1); font-size: 13px; font-weight: 700; }
.poy-nomination-success { padding: 42px 34px 48px; text-align: center; border: 1px solid rgba(246,200,95,.5); border-radius: 8px; background: rgba(255,255,255,.25); }
.poy-success-heart { width: 48px; height: 48px; color: var(--poy-coral); }
.poy-nomination-success h2 { margin: 12px 0 10px; font-family: var(--poy-serif); font-size: clamp(30px, 5vw, 44px); font-weight: 500; }
.poy-nomination-success > div { max-width: 540px; margin: 0 auto 24px; }
.poy-nomination-thanks { min-height: 112px; padding: 24px max(20px, calc((100vw - 760px)/2)); display: grid; grid-template-columns: 34px 1fr 34px; gap: 16px; align-items: center; background: var(--poy-coral); color: #fff; text-align: center; }
.poy-nomination-thanks p { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.4; }
.poy-nomination-thanks__heart { width: 28px; height: 28px; }
.poy-nomination-thanks__spark-icon { width: 30px; height: 30px; }

@media (max-width: 620px) {
  .poy-nomination-topbar { min-height: 78px; }
  .poy-nomination-topbar__brand { width: 88px; }
  .poy-nomination-back { font-size: 10px; }
  .poy-nomination-page { padding-top: 4px; padding-bottom: 52px; }
  .poy-nomination-shell { width: min(calc(100% - 26px), 760px); }
  .poy-nomination-mascot { width: 124px; }
  .poy-nomination-title { grid-template-columns: 28px 1fr 28px; gap: 8px; }
  .poy-nomination-title h1 { font-size: 31px; letter-spacing: .02em; }
  .poy-form-grid { grid-template-columns: 1fr; row-gap: 19px; }
  .poy-form-field--half { grid-column: 1 / -1; }
  .poy-form-divider { gap: 8px; }
  .poy-form-divider h2 { font-size: 17px; white-space: nowrap; }
  .poy-submit-btn { width: 100%; min-width: 0; }
  .poy-nomination-thanks { grid-template-columns: 28px 1fr 28px; padding-inline: 18px; }
  .poy-nomination-thanks p { font-size: 12px; }
}
