:root {
  --orange: #ff6a00;
  --orange-deep: #e95600;
  --orange-soft: #fff0da;
  --green: #4d8125;
  --green-deep: #2f5c16;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --line: #f0d7ad;
  --text: #332318;
  --muted: #78695d;
  --shadow: 0 18px 45px rgba(118, 78, 28, 0.14);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Shippori Mincho", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 190, 76, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(87, 133, 31, 0.12), transparent 24rem),
    repeating-linear-gradient(90deg, rgba(116, 82, 38, 0.025) 0 1px, transparent 1px 28px),
    var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 7vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(224, 194, 145, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  display: block;
  height: clamp(48px, 5vw, 72px);
  width: auto;
}

.title-orange {
  color: var(--orange);
}

.title-green,
.title-year,
.title-edition {
  color: var(--green-deep);
}

.title-line,
.title-year,
.title-edition {
  display: block;
}

.title-edition {
  font-size: 0.55em;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.title-line {
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}

.nav a {
  position: relative;
  padding: 29px 0 24px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav-current::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.95);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 200ms ease, opacity 150ms ease, top 200ms ease;
}

.nav-toggle-bar:nth-child(1) {
  top: 13px;
}
.nav-toggle-bar:nth-child(2) {
  top: 19px;
}
.nav-toggle-bar:nth-child(3) {
  top: 25px;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 72px 7vw 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 252, 244, 0.88) 38%, rgba(255, 252, 244, 0.08) 64%),
    url("assets/melon-hero.png") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 154, 45, 0.3) 0 0) 5vw 0 / 36px 80px,
    radial-gradient(circle at 9% 24%, rgba(255, 118, 0, 0.24), transparent 3px),
    radial-gradient(circle at 12% 22%, rgba(82, 129, 37, 0.22), transparent 3px);
  opacity: 0.45;
}

.hero-copy {
  position: relative;
  max-width: 650px;
  animation: rise 720ms ease both;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 4px 180px;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 86px);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.72);
}

.lead {
  margin: 28px 0 22px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 18px;
  font-weight: 700;
}

.hero-meta span::before {
  content: "●";
  margin-right: 8px;
  color: var(--orange);
}

.hero-meta small {
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 218px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.22);
  cursor: pointer;
}

.button::after {
  content: "›";
  font-size: 28px;
  line-height: 1;
}

.primary,
.submit {
  background: linear-gradient(135deg, #ff8b10, var(--orange));
}

.secondary {
  background: linear-gradient(135deg, #77ad31, var(--green));
  box-shadow: 0 12px 24px rgba(77, 129, 37, 0.2);
}

.ghost {
  color: var(--text);
  background: #fffdf7;
  border: 1px solid var(--line);
  box-shadow: none;
}

.small {
  min-width: 0;
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.satisfaction-badge {
  position: absolute;
  right: 7vw;
  bottom: 38px;
  width: 200px;
  height: 150px;
  display: grid;
  place-items: center;
  padding: 20px 26px;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 232, 200, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 244, 224, 0.8) 0%, transparent 60%),
    #fffdf7;
  color: var(--text);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  transform: rotate(-4deg);
  box-shadow:
    inset 0 0 0 7px #fffdf7,
    inset 0 0 0 8px rgba(255, 142, 36, 0.55),
    inset 0 0 0 9px #fffdf7,
    inset 0 0 0 11px rgba(255, 142, 36, 0.18),
    0 16px 32px rgba(118, 78, 28, 0.22),
    0 4px 10px rgba(118, 78, 28, 0.12);
}

.satisfaction-badge::before,
.satisfaction-badge::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 142, 36, 0.18);
}

.satisfaction-badge::before {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.satisfaction-badge::after {
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.satisfaction-badge > * {
  position: relative;
}

.satisfaction-badge strong {
  display: block;
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.section {
  width: min(1320px, 90vw);
  margin: 0 auto;
  padding: 56px 0;
}

.section h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
}

.center-title {
  text-align: center;
}

.center-title::before,
.center-title::after {
  content: "＼";
  color: var(--orange);
  margin: 0 14px;
}

.center-title::after {
  content: "／";
}

.melon-icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  vertical-align: -3px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: repeating-radial-gradient(circle, #fff7d5 0 2px, #dfbf75 3px 4px);
}

.overview {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: start;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.overview-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-grid article:nth-child(3n) {
  border-right: 0;
}

.overview-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.overview-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 142, 36, 0.14);
  color: var(--orange);
}

.overview-icon svg {
  width: 24px;
  height: 24px;
}

.overview-text {
  min-width: 0;
}

.overview-grid small {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-weight: 800;
}

.overview-grid strong {
  font-size: 18px;
  line-height: 1.45;
}

.overview-note {
  display: block;
  margin-top: 4px;
  color: var(--text-muted, #6b6b6b);
  font-size: 12px;
  font-weight: 500;
}

.event-icons,
.feature-grid,
.access-news,
.contact {
  display: grid;
  gap: 18px;
}

.event-icons {
  grid-template-columns: repeat(6, 1fr);
}

.event-icons article,
.feature-card,
.access-card,
.news-card,
.contact-info {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(118, 78, 28, 0.08);
}

.event-icons article {
  min-height: 190px;
  padding: 20px 16px;
  text-align: center;
}

.event-icons img {
  width: 82px;
  height: 66px;
  margin: 0 auto;
  object-fit: contain;
}

.event-icons h3 {
  margin: 14px 0 8px;
  font-size: 17px;
}

.event-icons p,
.feature-card p,
.news-card p,
.contact-info p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
}

.feature-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1fr 48%;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 34px 0 34px 34px;
  background:
    linear-gradient(135deg, rgba(255, 246, 225, 0.92), rgba(255, 255, 255, 0.92)),
    var(--paper);
}

.feature-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px 0 0 14px;
}

.feature-melon img {
  object-position: 63% center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 24px;
  font-family: var(--serif);
  font-weight: 800;
}

.section-kicker.orange {
  color: var(--orange);
}

.feature-card h3 {
  margin: 0;
  font-size: 24px;
}

.access-news {
  grid-template-columns: 1fr 1fr;
}

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

.access-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  padding: 32px;
}

.parking {
  margin-top: 24px;
  font-weight: 800;
  color: var(--green-deep);
}

.google-map {
  position: relative;
  width: 100%;
  min-height: 265px;
  overflow: hidden;
  border-radius: 14px;
  border: 0;
  box-shadow: inset 0 0 0 1px var(--line);
}

.news-card {
  padding: 34px;
}

.news-card {
  grid-column: 1 / -1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.section-head a {
  color: var(--orange);
  font-weight: 800;
}

.news-highlight {
  display: grid;
  grid-template-columns: minmax(240px, 34%) 1fr;
  gap: 34px;
  padding: 28px;
  margin-bottom: 20px;
  background: #fff9ed;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.news-highlight img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 66% center;
  border-radius: 10px;
}

.date {
  margin: 0;
  color: var(--orange);
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 10px;
margin-bottom: 20px;
}

.news-list a {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.news-list time {
  color: var(--muted);
  font-weight: 800;
}

.news-list span {
  font-weight: 800;
}

.news-list b {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
}

.contact {
  align-items: stretch;
}

.contact-info {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.contact-info-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  margin: 16px 0 28px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--green-deep);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(118, 78, 28, 0.2);
}

.contact-details > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-details dt {
  margin: 0;
  padding: 4px 10px;
  justify-self: start;
  border-radius: 6px;
  background: rgba(255, 142, 36, 0.14);
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-details dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.7;
}

.contact-details dd a {
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease;
}

.contact-details dd a:hover {
  border-bottom-color: currentColor;
}

.contact-note {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-info-media {
  position: relative;
  min-height: 280px;
}

.contact-info-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--green-deep);
}

.check input {
  width: 18px;
  min-height: 18px;
}

.submit {
  width: min(100%, 520px);
  font-size: 18px;
}

.sponsors {
  padding-top: 22px;
}

.sponsors h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
}

.sponsors h2::before,
.sponsors h2::after {
  content: "";
  flex: 1;
  max-width: 360px;
  border-top: 1px solid var(--line);
}

.sponsors h2 span {
  font-size: 12px;
  font-weight: 700;
}

.sponsor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(118, 78, 28, 0.08);
}

.sponsor-list li {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 22px;
  color: #5c5148;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  background: #fffdf7;
}

.sponsor-mark {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 34px;
  color: var(--green);
  font-weight: 900;
}

.sponsor-mark.ja {
  color: #168236;
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.12em;
}

.melon-union {
  width: 48px;
  background:
    linear-gradient(130deg, transparent 0 33%, #e34c2f 34% 53%, transparent 54%),
    linear-gradient(130deg, transparent 0 50%, #19853c 51% 70%, transparent 71%);
}

.circle {
  width: 34px;
  border: 3px solid #2f9b52;
  border-radius: 50%;
  color: #2f9b52;
}

.textmark {
  width: auto;
  color: #1f518f;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.bank {
  width: 38px;
  border-radius: 999px;
  background: #2182c5;
  color: #fff;
}

.gas {
  width: 38px;
  color: #1b56a4;
}

.sponsor-image {
  padding: 14px 18px;
}

.sponsor-image img {
  display: block;
  max-width: 100%;
  height: 64px;
  width: auto;
  object-fit: contain;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 36px 7vw 28px;
  background: rgba(255, 250, 240, 0.92);
  border-top: 1px solid var(--line);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-weight: 800;
}

.footer p {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-credit {
  margin-top: -16px !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.schedule .center-title {
  margin-bottom: 22px;
}

.schedule-coming-soon {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 142, 36, 0.13) 0 8px,
      rgba(255, 142, 36, 0.03) 8px 16px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(47, 92, 22, 0.07) 0 8px,
      transparent 8px 16px
    );
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.schedule-coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.55), rgba(255, 253, 248, 0.85));
  pointer-events: none;
}

.schedule-coming-soon-text,
.schedule-coming-soon-sub {
  position: relative;
}

.schedule-coming-soon-text {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--orange-deep);
  text-shadow: 0 2px 6px rgba(255, 142, 36, 0.22);
}

.schedule-coming-soon-dots {
  display: inline-block;
  margin-left: 4px;
  animation: comingSoonDots 1.6s steps(4, end) infinite;
}

@keyframes comingSoonDots {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

.schedule-coming-soon-sub {
  margin: 16px auto 0;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .schedule-coming-soon-dots {
    animation: none;
  }
}

.timetable-wrapper {
  width: min(900px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.timetable {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: var(--text);
}

.timetable thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange-deep);
  background: rgba(255, 142, 36, 0.18);
  border-bottom: 1px solid rgba(255, 142, 36, 0.3);
}

.timetable thead th:first-child {
  width: 120px;
  text-align: center;
  border-right: 1px solid rgba(255, 142, 36, 0.35);
}

.timetable tbody tr {
  border-top: 1px solid var(--line);
}

.timetable td,
.timetable tbody th {
  padding: 16px 18px;
  vertical-align: top;
  font-weight: normal;
}

.timetable td {
  text-align: left;
}

.timetable .t-time {
  width: 120px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--green-deep);
  white-space: nowrap;
  border-right: 1px solid var(--line);
  background: rgba(77, 129, 37, 0.05);
}


.t-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--text);
  line-height: 1.5;
}

.t-meta {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.t-sublist {
  margin: 8px 0 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 700;
}

.t-sublist li::marker {
  color: var(--orange);
}

.t-sublist li + li {
  margin-top: 4px;
}

.t-note {
  margin: 10px 0 0;
  padding: 10px 14px;
  background: rgba(255, 142, 36, 0.08);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--muted);
}

.timetable td > p + p,
.timetable td > p + ul,
.timetable td > ul + p {
  margin-top: 6px;
}

.schedule-footnotes {
  width: min(900px, 100%);
  margin: 22px auto 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1080px) {
  .site-header {
    position: static;
    flex-direction: column;
    padding: 18px 5vw;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .nav a {
    padding: 10px 0;
  }

  .hero {
    min-height: 620px;
  }

  .satisfaction-badge {
    right: 4vw;
    bottom: 24px;
    width: 150px;
    height: 112px;
    padding: 14px 18px;
    font-size: 11px;
    line-height: 1.5;
    box-shadow:
      inset 0 0 0 5px #fffdf7,
      inset 0 0 0 6px rgba(255, 142, 36, 0.55),
      inset 0 0 0 7px #fffdf7,
      inset 0 0 0 9px rgba(255, 142, 36, 0.18),
      0 10px 20px rgba(118, 78, 28, 0.2),
      0 3px 6px rgba(118, 78, 28, 0.1);
  }

  .satisfaction-badge::before {
    top: 9px;
    width: 4px;
    height: 4px;
  }

  .satisfaction-badge::after {
    bottom: 9px;
    width: 4px;
    height: 4px;
  }

  .satisfaction-badge strong {
    margin-top: 3px;
    font-size: 14px;
  }

  .overview,
  .access-card,
  .access-news,
  .contact,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-grid article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .overview-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .overview-grid article:nth-child(2n) {
    border-right: 0;
  }

  .overview-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .overview-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .event-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .sponsor-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .sponsor-list li:last-child:nth-child(3n + 1) {
    grid-column: span 3;
  }

  .sponsor-list li:last-child:nth-child(3n + 2) {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at 82% 4%, rgba(255, 190, 76, 0.22), transparent 14rem),
      repeating-linear-gradient(90deg, rgba(116, 82, 38, 0.028) 0 1px, transparent 1px 18px),
      var(--cream);
  }

  .satisfaction-badge {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 56px;
    flex-direction: row;
    padding: 8px 4vw;
    border-bottom-color: rgba(224, 194, 145, 0.9);
  }

  .brand img {
    height: 38px;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 4vw;
    left: 4vw;
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    padding: 6px 0;
    background: #fffdf7;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(118, 78, 28, 0.16);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s;
  }

  .nav a {
    display: block;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(224, 194, 145, 0.5);
    font-size: 15px;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding: 40px 4vw;
    align-items: center;
    border-bottom-color: var(--line);
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .eyebrow {
    display: block;
    margin: 0 0 5px;
    text-align: center;
    font-size: 16px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(39px, 10.8vw, 48px);
    text-align: center;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .title-line {
    white-space: nowrap;
  }

  .title-year {
    margin-top: 2px;
  }

  .title-edition {
    margin-bottom: 2px;
  }

  .lead {
    max-width: 330px;
    margin: 14px auto 12px;
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
  }

  .hero-meta {
    width: min(100%, 330px);
    display: grid;
    gap: 6px;
    margin: 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.9);
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 330px);
    gap: 8px;
    margin: 12px auto 0;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
    box-shadow: 0 8px 16px rgba(255, 106, 0, 0.18);
  }

  .hero-actions .button::after {
    font-size: 18px;
  }

  .submit {
    width: 100%;
  }

  .section {
    width: min(94vw, 620px);
    padding: 24px 0;
  }

  .section h2 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .center-title::before,
  .center-title::after {
    margin: 0 7px;
  }

  .overview-grid,
  .news-highlight,
  .news-list a,
  .footer {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    box-shadow: 0 8px 24px rgba(118, 78, 28, 0.08);
  }

  .overview-grid article {
    min-height: 0;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-right: 0;
  }

  .overview-grid article:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .overview-grid article:last-child {
    border-bottom: 0;
  }

  .overview-icon {
    width: 40px;
    height: 40px;
  }

  .overview-icon svg {
    width: 20px;
    height: 20px;
  }

  .overview-grid small {
    margin: 0 0 2px;
    font-size: 11px;
  }

  .overview-grid strong {
    font-size: 14px;
  }

  .event-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .event-icons article {
    min-height: 142px;
    padding: 12px 8px;
    border-radius: 10px;
  }

  .event-icons img {
    width: 58px;
    height: 48px;
  }

  .event-icons h3 {
    margin: 8px 0 5px;
    font-size: 12px;
    line-height: 1.35;
  }

  .event-icons p {
    margin: 0;
    font-size: 10px;
    line-height: 1.55;
  }

  .feature-grid {
    gap: 10px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 16px;
    border-radius: 12px;
  }

  .feature-card img {
    height: 142px;
    border-radius: 12px;
  }

  .section-kicker {
    font-size: 18px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.65;
  }

  .access-card,
  .news-card {
    padding: 16px;
    border-radius: 12px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 12px;
  }

  .contact-info-body {
    padding: 18px;
  }

  .contact-info h3 {
    margin: 10px 0 18px;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-info-media {
    min-height: 0;
    height: 170px;
  }

  .contact-info-media img {
    position: static;
    border-radius: 0;
  }

  .access-card {
    gap: 14px;
  }

  .inline-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .inline-actions .button {
    min-height: 38px;
    min-width: 0;
    padding: 0 8px;
    font-size: 11px;
  }

  .google-map {
    min-height: 190px;
  }

  .news-highlight {
    gap: 12px;
    padding: 12px;
  }

  .news-highlight img {
    height: 136px;
  }

  .news-highlight h3 {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .news-highlight p,
  .news-list time,
  .news-list span {
    font-size: 12px;
  }

  .news-list a {
    gap: 7px;
    padding: 13px 14px;
  }

  .news-list b {
    justify-self: start;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    font-size: 14px;
  }

  .sponsor-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-list li:last-child:nth-child(odd) {
    grid-column: span 2;
  }

  .footer nav {
    gap: 16px;
  }

  .timetable-wrapper {
    border-radius: 12px;
  }

  .timetable thead {
    display: none;
  }

  .timetable,
  .timetable tbody,
  .timetable tr,
  .timetable td,
  .timetable th {
    display: block;
    width: 100%;
  }

  .timetable tbody tr {
    padding: 14px 16px;
    border-top: 1px solid var(--line);
  }

  .timetable tbody tr:first-child {
    border-top: 0;
  }

  .timetable .t-time {
    width: auto;
    padding: 0 0 6px;
    text-align: left;
    background: transparent;
    border-right: 0;
    font-size: 18px;
  }

  .timetable td {
    padding: 0;
  }
}


.xrea-ad {
  margin: 24px auto;
  text-align: center;
  max-width: 100%;
}