
:root {
  --night-water: #254b63;
  --weir-blue: #5e7c8c;
  --gumleaf: #6f7f5f;
  --old-gold: #c79a3b;
  --earth-track: #8a6a4a;
  --sandstone: #f4eedf;
  --sandstone-deep: #efe6d4;
  --paper: #fbf7ee;
  --charcoal: #2f3130;
  --mist: #dbe5e7;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(22, 36, 45, 0.09);
  --shadow-deep: 0 20px 60px rgba(12, 31, 42, 0.18);
  --radius: 22px;
  --container: 1180px;
  --transition: 180ms ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--sandstone);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  margin: 0 0 .5rem 0;
  color: #203543;
}
p { margin: 0 0 1rem 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin-top: .8rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(37,75,99,.92);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.topbar {
  min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display:flex; align-items:center; gap:.9rem; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 16px;
  display:grid; place-items:center; font-weight:700;

  box-shadow: var(--shadow);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.site-title { font-size:.92rem; letter-spacing:.24em; text-transform:uppercase; color:#f0dca7; }
.site-subtitle { font-size:.75rem; letter-spacing:.08em; text-transform:uppercase; color:#bfd1d6; margin-top:.12rem; }
.main-nav { display:flex; align-items:center; gap:1.25rem; }
.main-nav a { color:#eef4f5; font-size:.94rem; }
.main-nav a:hover, .main-nav a.active { color:#f3d28a; }
.nav-toggle {
  display:none; background:transparent; color:white; border:1px solid rgba(255,255,255,.14);
  width:44px; height:44px; border-radius:14px; cursor:pointer; font-size:1.1rem;
}
.mobile-nav { display:none; padding: 0 0 1rem 0; }
.mobile-nav a { display:block; padding:.8rem 0; color:#eef4f5; border-top:1px solid rgba(255,255,255,.08); }

.hero {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #1f4257 0%, #2e5e72 44%, #708871 100%);
  color:white;
  overflow:hidden;
}
.hero-grid {
  min-height: 78vh;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items:center;
  padding: 5.5rem 0;
}
.eyebrow {
  display:inline-block;
  padding:.45rem .8rem;
  border-radius:999px;
  background: rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  letter-spacing:.2em;
  text-transform:uppercase;
  font-size:.72rem;
  font-weight:700;
  color:#f4dfaf;
  margin-bottom:1rem;
}
.hero h1 { color:white; font-size: clamp(3rem, 7vw, 6rem); max-width: 10ch; }
.hero p { color: var(--mist); font-size: 1.08rem; max-width: 58ch; }
.actions { display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.7rem; }
.button {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding: 1rem 1.3rem; border-radius:999px; font-weight:700; transition: var(--transition);
}
.button-reset {
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #d6c9b3;
}
.button.primary { background:var(--old-gold); color:#213744; }
.button.primary:hover { background:#dcb45b; transform: translateY(-1px); }
.button.secondary { color:white; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.05); }
.button.secondary:hover { background:rgba(255,255,255,.10); }
.button.outline { color:#213744; border:1px solid #d6c9b3; background:rgba(255,255,255,.7); }
.button.outline:hover { background:#fff; }
.hero-card {
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  padding: 1rem;
  box-shadow: var(--shadow-deep);
}
.panel {
  border-radius: 24px;
  overflow:hidden;
  min-height: 28rem;
  background:
    linear-gradient(180deg, rgba(245,240,228,.2), rgba(68,101,122,.12) 45%, rgba(31,55,68,.03) 100%),
    linear-gradient(180deg,#bcd3db 0%,#8db0b7 26%,#5a7b76 58%,#d0bb91 58%,#8d6b47 100%);
  display:flex; flex-direction:column; justify-content:space-between; padding: 1.4rem;
}
.panel-note {
  align-self:flex-start; background:rgba(37,75,99,.78); color:#f4eedf;
  border-radius:999px; padding:.45rem .8rem; letter-spacing:.15em; text-transform:uppercase; font-size:.7rem; font-weight:700;
}
.panel-content {
  background: rgba(255,255,255,.56); padding:1.3rem; border-radius: 24px; backdrop-filter: blur(8px);
}
.panel-content h3 { font-size: 2rem; }
.section { padding: 5rem 0; }
.section.alt { background: rgba(255,255,255,.55); }
.section.deep { background: #1f3c4d; color:white; }
.section.deep h2, .section.deep h3 { color:#f4efe5; }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.section-head.center { text-align:center; margin-inline:auto; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
.section-head p { color:#47555c; }
.section.deep .section-head p { color:#d4e1e2; }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  background: var(--paper);
  border: 1px solid #e4dac8;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}
.card.dark {
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#edf3f4;
}
.card h3 { font-size: 1.7rem; }
.home-feature-cards .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-feature-cards .button {
  margin-top: auto;
}
.program-feature-cards .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.program-feature-cards .actions {
  margin-top: auto;
}
.program-notify-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.program-notify-box {
  margin-top: 1rem;
}
.program-notify-box ul {
  margin: 0;
  padding-left: 1.1rem;
}
.icon-badge {
  width: 46px; height: 46px; border-radius: 16px; display:grid; place-items:center;
  background: var(--night-water); color:white; font-size: 1.1rem; margin-bottom: 1rem;
}
.kpi-row { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.kpi {
  background: linear-gradient(180deg, #fff9eb, #f6edd8);
  border: 1px solid #ead9b0;
  border-radius: 24px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.kpi strong { display:block; font-size: clamp(2rem,4vw,3rem); color:#775519; font-family: Georgia, "Times New Roman", serif; }
.kpi span { color:#58656c; font-size:.92rem; }
.split-showcase {
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 1.6rem; align-items:center;
}
.gold-block {
  overflow:hidden; border-radius:32px; background:#203b4d; box-shadow: var(--shadow-deep); color:white;
}
.gold-grid { display:grid; grid-template-columns: 1fr .92fr; }
.gold-left {
  min-height: 24rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 36%),
    linear-gradient(145deg,#9c7238 0%,#c79a3b 35%,#e4c36f 100%);
  color:#243643;
  display:flex; flex-direction:column; justify-content:space-between;
}
.gold-right { padding:2rem; background:#24485d; }
.gold-right ul { margin:1rem 0 0 1.1rem; padding:0; }
.timeline { display:grid; gap:1rem; }
.timeline-item {
  position:relative; background: var(--paper); border:1px solid #e2d8c6; border-radius: 26px; box-shadow:var(--shadow); padding:1.4rem 1.4rem 1.4rem 1.9rem;
}
.timeline-item::before {
  content:""; position:absolute; inset:0 auto 0 0; width:6px;
  border-radius:26px 0 0 26px;
  background: linear-gradient(180deg,var(--night-water),var(--gumleaf),var(--old-gold));
}
.meta-list { display:grid; gap:.9rem; margin-top:1rem; }
.meta-item {
  display:flex; gap:.8rem; padding:1rem; border-radius:18px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
}
.table-wrap { overflow-x:auto; }
table {
  width:100%; border-collapse: collapse; background: var(--paper);
  border-radius: 24px; overflow:hidden; box-shadow: var(--shadow);
}
th, td { padding: 1rem 1.1rem; border-bottom: 1px solid #eadfca; text-align:left; }
th { background:#efe4cb; color:#5e4823; font-size:.9rem; letter-spacing:.08em; text-transform:uppercase; }
tr:last-child td { border-bottom:none; }
.notice {
  background:#fff5dc; border:1px solid #ecd8a0; border-radius:22px; padding:1.2rem 1.3rem;
}
.page-hero {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 26%),
    linear-gradient(135deg,#24485d 0%,#345e71 56%,#7b8b67 100%);
  color:white;
  padding: 4.5rem 0 4rem;
}
.page-hero h1 { color:white; font-size: clamp(2.7rem, 6vw, 4.8rem); }
.page-hero p { max-width:60ch; color:#dce7e9; font-size:1.06rem; }
.breadcrumbs { font-size:.84rem; color:#f0dba7; letter-spacing:.12em; text-transform:uppercase; margin-bottom:1rem; }
.gallery-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-tile {
  min-height: 18rem; border-radius: 26px; overflow:hidden; position:relative; box-shadow: var(--shadow);
  border:1px solid #e6dcc9;
}
.gallery-tile { text-decoration: none; display: block; }
.gallery-tile-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 54%;
  object-fit: cover;
}
.gallery-tile .overlay {
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 54%;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,0) 70%, rgba(0,0,0,.18) 100%);
}
.gallery-tile .caption {
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 54%;
  padding: 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.gallery-tile .caption h3 {
  margin-bottom: .45rem;
}
.gallery-tile .caption p {
  margin: 0;
  color: rgba(255,255,255,.95);
}
.tile-a .caption { background: linear-gradient(180deg,#5d7d89,#7d98a1); }
.tile-b .caption { background: linear-gradient(180deg,#b88731,#d4b56b); }
.tile-c .caption { background: linear-gradient(180deg,#5f7d67,#8fac8a); }
.tile-d .caption { background: linear-gradient(180deg,#8f785e,#c7b39a); }
.tile-a .caption h3,
.tile-b .caption h3,
.tile-c .caption h3,
.tile-d .caption h3 {
  color: #22384a;
}
.tile-a .caption p,
.tile-b .caption p,
.tile-c .caption p,
.tile-d .caption p {
  color: #fffaf0;
}
.gallery-figure {
  margin: 0;
  background: #fffaf0;
  border: 1px solid #e6dcc9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-figure figcaption {
  padding: 1rem 1.1rem 1.1rem;
  color: var(--ink-soft);
  font-size: .96rem;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.sponsor-card {
  margin: 0;
  padding: 1.1rem;
  min-height: 150px;
  border: 1px solid #e6dcc9;
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card img {
  display: block;
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
  cursor: zoom-in;
}

.sponsor-card-placeholder {
  flex-direction: column;
  gap: .35rem;
  color: var(--ink-soft);
  text-align: center;
}

.sponsor-card-placeholder strong {
  color: var(--ink);
}

.sponsor-help {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.involvement-form {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1rem;
}

.involvement-box {
  margin-top: 1rem;
}

.involvement-cards .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.involvement-cards .involvement-form,
.involvement-cards .involvement-box {
  margin-top: auto;
  padding-top: 1rem;
}

.involvement-cards .award-field span {
  margin-top: .2rem;
}

.involvement-cards .actions {
  margin-top: 1rem;
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.site-lightbox[hidden] {
  display: none;
}

.site-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 29, 40, 0.66);
}

.site-lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 980px);
  max-height: 88vh;
  padding: 1rem;
  border: 1px solid rgba(214, 185, 127, 0.5);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #fffdf7 0%, #f5ecd6 100%);
  box-shadow: 0 2rem 4rem rgba(17, 29, 40, 0.28);
}

.site-lightbox-dialog img {
  display: block;
  max-width: 100%;
  max-height: calc(88vh - 2rem);
  height: auto;
  border-radius: 0.75rem;
}

.site-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(31, 61, 81, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.program-hero-grid {
  display: block;
}
.program-title-block {
  max-width: 1080px;
}
.program-title-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}
.program-page-logo {
  width: 320px;
  height: 320px;
  object-fit: contain;
}
.program-page-logo-print { display: none; }
.program-title-copy {
  align-self: center;
}
.program-title-block h1 {
  max-width: 7.6ch;
  font-size: clamp(3.2rem, 6.2vw, 5.4rem);
  line-height: .98;
  margin-bottom: .6rem;
}
.program-title-block p {
  max-width: 34ch;
}
.program-links { display:flex; flex-wrap:wrap; gap:.8rem; margin:1.5rem 0; }
.hero-jump {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.16);
  color: #eef4f5;
}
.hero-jump:hover {
  background: rgba(255,255,255,.10);
}
.hero-summary-row {
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.5rem;
}
.stat-strip { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; max-width: 34rem; }
.stat-box {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 1rem;
}
.hero-summary-card {
  min-height: 100%;
}
.stat-box strong {
  display:block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  color: #fff6df;
}
.stat-box span { color:#d7e4e7; font-size:.92rem; }
.hero-summary-link {
  text-decoration: none;
  transition: var(--transition);
}
.hero-summary-link:hover {
  background: rgba(255,255,255,.14);
}
.hero-summary-link strong {
  color: #fff6df;
}
.hero-summary-link span {
  color: #d7e4e7;
}
.hero-summary-link strong,
.hero-summary-link span {
  transition: var(--transition);
}
.notice.dark-soft {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #eef3f4;
}
.notice.soft {
  background: #f7f0de;
  border-color: #ebd8ab;
}
.day-nav { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1rem; }
.day-nav a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.7rem 1rem;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}
.notice-grid { display:grid; grid-template-columns: 1fr .9fr; gap: 1.5rem; }
.download-card {
  background: var(--paper);
  border: 1px solid #e4dac8;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}
.program-day { margin-bottom: 2rem; }
.program-day:last-child { margin-bottom: 0; }
.program-day-head {
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap: 1.5rem;
  align-items:end;
  margin-bottom: 1.5rem;
}
.program-chip {
  display:inline-block;
  padding:.45rem .8rem;
  border-radius:999px;
  background:#fff5dc;
  border:1px solid #ecd8a0;
  color:#75541a;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.72rem;
  font-weight:700;
  margin-bottom:1rem;
}
.lead { color:#47555c; }
.schedule-list { display:grid; gap: 1rem; }
.schedule-row {
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  background: var(--paper);
  border:1px solid #e2d8c6;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.1rem;
}
.schedule-time {
  font-weight:700;
  color:#5e4823;
  letter-spacing:.02em;
}
.schedule-body h3 { font-size: 1.4rem; }
.schedule-body p:last-child, .schedule-body ul:last-child { margin-bottom: 0; }
.schedule-tag {
  display:inline-flex;
  align-items:center;
  margin-top:.5rem;
  padding:.4rem .7rem;
  border-radius:999px;
  background:#214053;
  color:#edf3f4;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.schedule-tag.alt { background: #82642d; }
.inline-highlight {
  font-weight:700;
  color:#775519;
}
.small-note {
  color:#6a746f;
  font-size:.94rem;
}
.print-program {
  background: #f3efe4;
  padding: 3rem 0 5rem;
}
.print-program-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.print-block {
  background: #fffdf8;
  border: 1px solid #e5dbc7;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.print-doc-header {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: center;
}
.print-doc-brand {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: center;
}
.print-doc-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.print-doc-kicker {
  color: #82642d;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.print-doc-header h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  margin-bottom: .35rem;
}
.print-doc-meta {
  display: grid;
  gap: .9rem;
}
.print-doc-meta div {
  background: #f8f0dd;
  border: 1px solid #ebd8ab;
  border-radius: 16px;
  padding: .9rem 1rem;
}
.print-doc-meta strong {
  display: block;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #775519;
  margin-bottom: .2rem;
}
.print-note {
  padding: 1.2rem 1.4rem;
}
.print-day {
  padding: 1.5rem;
}
.print-day-head {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8dcc4;
}
.print-day-chip {
  display: inline-block;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: #fff5dc;
  border: 1px solid #ecd8a0;
  color: #75541a;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: .85rem;
}
.print-schedule {
  display: grid;
  gap: .85rem;
}
.print-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  border: 1px solid #eadfca;
  border-radius: 18px;
  padding: .95rem 1rem;
  break-inside: avoid;
  page-break-inside: avoid;
}
.print-time {
  font-weight: 700;
  color: #5e4823;
}
.print-body h3 {
  font-size: 1.2rem;
  margin-bottom: .3rem;
}
.print-body p:last-child, .print-body ul:last-child {
  margin-bottom: 0;
}
.print-doc-footer {
  color: #5c6663;
  font-size: .95rem;
}
.page-break-before {
  break-before: page;
  page-break-before: always;
}
.award-intro-grid {
  margin-bottom: 1.5rem;
}
.award-form {
  display: grid;
  gap: 1.5rem;
}
.award-form-stack {
  display: grid;
  gap: 1.5rem;
}
.award-form-section {
  padding: 1.6rem;
}
.award-form-head {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.35rem;
}
.award-form-head h2 {
  font-size: 2.1rem;
  margin-bottom: .35rem;
}
.award-eyebrow {
  background: #fff5dc;
  border-color: #ecd8a0;
  color: #75541a;
  margin-bottom: .7rem;
}
.award-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.award-field {
  display: grid;
  gap: .45rem;
}
.award-field-full {
  grid-column: 1 / -1;
}
.award-field span {
  font-weight: 700;
  color: #304756;
}
.award-required::after {
  content: " *";
  color: #9c2f1a;
}
.award-field input,
.award-field textarea,
.award-field select {
  width: 100%;
  padding: .9rem 1rem;
  border-radius: 16px;
  border: 1px solid #d9cfbd;
  background: #fffdf8;
  color: var(--charcoal);
  font: inherit;
}
.award-field textarea {
  resize: vertical;
  min-height: 3.5rem;
}
.award-field input:focus,
.award-field textarea:focus,
.award-field select:focus {
  outline: 2px solid rgba(199,154,59,.25);
  border-color: #c79a3b;
}
.award-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.award-support-card {
  background: #f8f1e0;
  border: 1px solid #e8d7af;
  border-radius: 20px;
  padding: 1rem;
}
.award-support-card h3,
.award-ratings h3,
.award-upload h3 {
  font-size: 1.4rem;
  margin-bottom: .35rem;
}
.award-ratings,
.award-upload {
  margin-top: 1.3rem;
}
.award-ratings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.award-rating-field {
  background: #f8f1e0;
  border: 1px solid #e8d7af;
  border-radius: 20px;
  padding: 1rem;
}
.award-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: space-between;
  align-items: center;
}
.award-form-alert {
  margin-bottom: 1.5rem;
}
.award-form-alert-success {
  background: #eef8ee;
  border-color: #bfd8bf;
}
.award-nominee.is-hidden {
  display: none;
}
.tile-a { background: linear-gradient(145deg,#345d78,#52788f,#9bb6b5); }
.tile-b { background: linear-gradient(145deg,#7d5936,#b8883b,#efd8a0); }
.tile-c { background: linear-gradient(145deg,#35544c,#5f7d67,#b7d0bb); }
.tile-d { background: linear-gradient(145deg,#52453c,#8a6a4a,#e7d8c2); }
.site-footer {
  background:#173241; color:#dbe6e6; border-top:1px solid rgba(255,255,255,.1);
}
.footer-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:2rem; padding: 3rem 0; }
.footer-columns { display:grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.footer-links a { display:block; margin:.45rem 0; color:#d8e4e5; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:1rem 0; text-align:center; color:#9cb3ba; font-size:.85rem; }

@media (max-width: 980px) {
  .main-nav, .header-cta { display:none; }
  .nav-toggle { display:inline-grid; place-items:center; }
  .site-header.open .mobile-nav { display:block; }
  .hero-grid, .split-showcase, .grid-4, .grid-3, .grid-2, .kpi-row, .gold-grid, .footer-grid, .footer-columns, .gallery-grid, .sponsor-grid {
    grid-template-columns: 1fr 1fr;
  }
  .program-hero-grid, .notice-grid, .program-day-head, .stat-strip {
    grid-template-columns: 1fr;
  }
  .award-form-head,
  .award-form-grid,
  .award-support-grid,
  .award-ratings-grid {
    grid-template-columns: 1fr;
  }
  .program-title-row {
    grid-template-columns: 150px 1fr;
    gap: 1rem;
  }
  .program-page-logo {
    width: 150px;
    height: 150px;
  }
  .program-title-block h1 {
    font-size: clamp(3rem, 7vw, 4.4rem);
    max-width: none;
  }
  .program-title-block p {
    max-width: 28ch;
  }
  .hero-summary-row {
    grid-template-columns: 1fr 1fr;
  }
  .print-doc-header, .print-doc-brand, .print-row {
    grid-template-columns: 1fr;
  }
  .schedule-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-grid, .split-showcase, .grid-4, .grid-3, .grid-2, .kpi-row, .gold-grid, .footer-grid, .footer-columns, .gallery-grid, .sponsor-grid {
    grid-template-columns: 1fr;
  }
  .program-hero-grid, .notice-grid, .program-day-head, .stat-strip, .schedule-row {
    grid-template-columns: 1fr;
  }
  .award-form-head,
  .award-form-grid,
  .award-support-grid,
  .award-ratings-grid {
    grid-template-columns: 1fr;
  }
  .program-title-row {
    grid-template-columns: 1fr;
  }
  .program-page-logo-screen {
    display: none;
  }
  .hero-summary-row {
    grid-template-columns: 1fr;
  }
  .print-doc-header, .print-doc-brand, .print-row {
    grid-template-columns: 1fr;
  }
  .section { padding: 4rem 0; }
  .page-hero { padding: 3.8rem 0 3rem; }
  .panel { min-height: 22rem; }
}
@media print {
  body.program-page {
    background: #fff;
    color: #111;
  }
  .program-page .site-header,
  .program-page .site-footer {
    display: none !important;
  }
  .program-page .page-hero {
    padding: 0 0 4mm;
    background: #fff;
    color: #111;
  }
  .program-page .program-title-row {
    grid-template-columns: 36mm 1fr;
    gap: 4mm;
    align-items: start;
    max-width: none;
  }
  .program-page .program-page-logo-screen {
    display: none;
  }
  .program-page .program-page-logo-print {
    display: block;
  }
  .program-page .program-page-logo {
    width: 36mm;
    height: 36mm;
  }
  .program-page .program-title-block h1 {
    font-size: 28pt;
    line-height: 1.02;
    max-width: none;
  }
  .program-page .program-title-block p {
    max-width: none;
  }
  .program-page .hero-summary-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .program-page .hero-summary-link {
    display: none;
  }
  .program-page .page-hero h1,
  .program-page .page-hero p,
  .program-page .breadcrumbs {
    color: #111;
  }
  .program-page .page-hero .button.secondary,
  .program-page .page-hero .button.primary,
  .program-page .page-hero .button.outline,
  .program-page .page-hero .button-reset {
    display: none;
  }
  .program-page .page-hero .program-hero-card {
    display: none !important;
  }
  .program-page .page-hero .stat-box {
    background: #fff;
    border: 1px solid #d9d0bc;
  }
  .program-page .page-hero .stat-box strong,
  .program-page .page-hero .stat-box span {
    color: #111;
  }
  .program-page .print-program {
    background: #fff;
    padding: 0;
  }
  .program-page .section {
    padding: 0 0 5mm 0;
  }
  .program-page .print-program-shell,
  .program-page .container {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .program-page .notice-grid {
    grid-template-columns: 1fr;
    gap: 4mm;
    margin-bottom: 4mm;
  }
  .program-page .download-card {
    display: none !important;
  }
  .program-page .stat-strip {
    gap: 3mm;
    margin-top: 4mm;
  }
  .program-page .stat-box {
    padding: 2.5mm 3mm;
  }
  .program-page .notice.soft {
    padding: 3mm 3.5mm;
  }
  .program-page .print-block {
    box-shadow: none;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
  }
  .program-page .print-note,
  .program-page .print-day {
    padding: 0 0 8mm 0;
  }
  .program-page .print-row {
    border: 1px solid #d9d0bc;
    border-radius: 10px;
  }
  .program-page .print-note {
    margin-top: 0;
  }
  .program-page .print-note p {
    margin-bottom: 3mm;
  }
  .program-page .print-note p:last-child {
    margin-bottom: 0;
  }
  .program-page .page-break-before {
    break-before: page;
    page-break-before: always;
  }
  .program-page .print-day,
  .program-page .print-row,
  .program-page .print-day-head {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
