@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fredoka:wght@400;500;600&display=swap");

:root {
  --ink: #123f43;
  --ink-soft: #426467;
  --green-900: #0a554f;
  --green-700: #14786e;
  --green-500: #4aa997;
  --green-300: #8bd1ba;
  --mint: #dff1e9;
  --cream: #fbfaf2;
  --sand: #f2efdd;
  --yellow: #f1c96c;
  --white: #fffef8;
  --shadow: 0 20px 60px rgba(18, 63, 67, 0.12);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(139, 209, 186, 0.18), transparent 22rem),
    var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  line-height: 1.08;
}
h2 { margin-bottom: 0.8rem; font-size: clamp(2.2rem, 5vw, 4.5rem); letter-spacing: -0.04em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 10px; left: 10px; transform: translateY(-150%);
  padding: 10px 16px; background: var(--white); border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; z-index: 50; top: 0; padding: 14px 0;
  background: rgba(251, 250, 242, 0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 63, 67, 0.07);
}
.nav-wrap, .main-nav, .brand { display: flex; align-items: center; }
.nav-wrap { justify-content: space-between; gap: 24px; }
.brand { gap: 10px; font-size: 0.78rem; font-weight: 700; line-height: 1.15; text-transform: uppercase; letter-spacing: 0.08em; }
.brand strong { color: var(--green-700); font-size: 1.05rem; }
.brand-mark {
  display: block; width: 52px; height: 52px; flex: 0 0 auto;
  filter: drop-shadow(0 5px 9px rgba(18, 63, 67, 0.14));
  transition: transform 180ms ease;
}
.brand:hover .brand-mark, .brand:focus-visible .brand-mark { transform: rotate(-5deg) scale(1.04); }
.main-nav { gap: 28px; font-size: 0.9rem; font-weight: 600; }
.main-nav a:not(.button) { position: relative; }
.main-nav a:not(.button)::after {
  content: ""; position: absolute; right: 100%; bottom: -7px; left: 0; height: 2px;
  background: var(--green-500); transition: right 180ms ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; color: white; background: var(--green-700);
  border: 2px solid var(--green-700); border-radius: 999px; box-shadow: 0 12px 25px rgba(20, 120, 110, 0.18);
  cursor: pointer; font-weight: 700; transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); background: var(--green-900); box-shadow: 0 16px 30px rgba(20, 120, 110, 0.25); }
.button-small { min-height: 42px; padding-inline: 19px; font-size: 0.84rem; }
.button-outline { color: var(--green-900); background: transparent; box-shadow: none; }
.button-outline:hover, .button-outline:focus-visible { color: white; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button-row-center { justify-content: center; }
.eyebrow {
  margin-bottom: 15px; color: var(--green-700); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase;
}
.eyebrow-light { color: #c4eddd; }
.temporary-note { margin: 16px 0 0; font-size: 0.75rem; opacity: 0.68; }

.hero { min-height: 760px; padding: 90px 0 100px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 50px; align-items: center; }
.hero-copy { min-width: 0; }
.hero h1 { max-width: 640px; margin-bottom: 24px; font-size: clamp(3.7rem, 7.8vw, 7rem); letter-spacing: -0.065em; }
.hero h1 .hero-line { display: block; color: inherit; }
.hero h1 .hero-accent { color: var(--green-500); }
.hero-intro { max-width: 600px; margin-bottom: 32px; color: var(--ink-soft); font-size: 1.08rem; }
.hero-points { display: flex; gap: 24px; margin: 42px 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; flex-direction: column; padding-left: 13px; border-left: 2px solid var(--green-300); }
.hero-points strong { font-size: 0.85rem; }
.hero-points span { color: var(--ink-soft); font-size: 0.72rem; }
.hero-visual { position: relative; min-height: 590px; }
.logo-crop {
  position: absolute; z-index: 3; inset: 20px 0 0 20px; overflow: hidden;
  border-radius: 46% 54% 52% 48% / 44% 42% 58% 56%; box-shadow: var(--shadow);
  transform: rotate(2deg); background: #FFFFFF;
}
.logo-crop img { width: 100%; height: 100%; padding: 12px; object-fit: contain; transform: scale(1.02); }
.orbit { position: absolute; border: 2px dashed var(--green-300); border-radius: 50%; }
.orbit-one { inset: -25px 40px 10px -10px; animation: spin 40s linear infinite; }
.orbit-two { inset: 25px -20px 70px 55px; border-style: dotted; animation: spin 32s linear infinite reverse; }
.floating-game-piece {
  position: absolute; z-index: 5; filter: drop-shadow(0 16px 14px rgba(18, 63, 67, 0.16));
  animation: float-piece 5s ease-in-out infinite;
}
.piece-die { top: 5px; right: -8px; width: 92px; transform: rotate(13deg); }
.piece-meeple { bottom: -15px; left: -30px; width: 88px; transform: rotate(-14deg); animation-delay: -1.6s; }
.piece-card { right: -5px; bottom: 32px; width: 60px; transform: rotate(12deg); animation-delay: -3.2s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float-piece { 50% { translate: 0 -8px; } }

.activities-section { position: relative; overflow: hidden; background: var(--sand); }
.activities-section::before, .activities-section::after {
  content: ""; position: absolute; top: -65px; width: 230px; height: 125px; background: var(--sand); border-radius: 50%;
}
.activities-section::before { left: 10%; }
.activities-section::after { right: 15%; }
.section-bubble { position: absolute; border: 16px solid rgba(139, 209, 186, 0.3); border-radius: 50%; }
.bubble-one { top: 95px; left: -45px; width: 110px; aspect-ratio: 1; }
.bubble-two { right: -40px; bottom: 70px; width: 150px; aspect-ratio: 1; }
.section-spark { position: absolute; color: var(--green-500); font-size: 2.2rem; opacity: 0.7; }
.spark-one { top: 110px; right: 9%; transform: rotate(15deg); }
.spark-two { bottom: 50px; left: 6%; transform: rotate(-14deg); }
.section-heading { max-width: 650px; margin: 0 auto 50px; text-align: center; }
.section-heading > p:last-child { color: var(--ink-soft); }
.activity-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 960px; margin-inline: auto;
}
.activity-card {
  position: relative; overflow: hidden; min-height: 360px; padding: 30px 24px;
  background: rgba(255, 254, 248, 0.9); border: 1px solid rgba(18, 63, 67, 0.08);
  border-radius: 38px 30px 38px 28px;
  box-shadow: 0 12px 35px rgba(18, 63, 67, 0.06); transition: transform 180ms ease, box-shadow 180ms ease;
}
.activity-card:nth-child(even) { transform: translateY(18px); }
.activity-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow); }
.activity-card:nth-child(even):hover { transform: translateY(8px) rotate(1deg); }
.activity-card::after {
  content: ""; position: absolute; right: -48px; bottom: -52px; width: 145px; aspect-ratio: 1;
  background: var(--mint); border-radius: 48% 52% 42% 58% / 60% 38% 62% 40%;
}
.activity-card::before {
  content: ""; position: absolute; z-index: 0; right: 20px; bottom: 22px; width: 18px; aspect-ratio: 1;
  border: 5px solid rgba(74, 169, 151, 0.26); border-radius: 50%;
}
.activity-icon {
  position: relative; z-index: 1; display: grid; place-items: center; width: 105px; aspect-ratio: 1; margin-bottom: 27px;
  background: var(--mint); border-radius: 32% 68% 55% 45% / 50% 38% 62% 50%;
}
.activity-icon img { width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 7px 6px rgba(18, 63, 67, 0.12)); }
.activity-card:nth-child(even) .activity-icon { background: #f4df9e; transform: rotate(4deg); }
.card-number { position: absolute; top: 28px; right: 24px; color: var(--green-500); font: 700 0.72rem "Fredoka", sans-serif; }
.activity-card h3 { position: relative; z-index: 1; margin-bottom: 12px; font-size: 1.35rem; }
.activity-card p:last-child { position: relative; z-index: 1; color: var(--ink-soft); font-size: 0.86rem; }

.events-section {
  position: relative; overflow: hidden; padding: 90px 0;
  background: var(--sand);
}
.events-panel {
  position: relative; min-height: 590px; padding: 80px 70px; color: white;
  background: url("../images/events-background.webp") center / cover no-repeat;
}
.events-copy { position: relative; z-index: 1; width: 52%; }
.events-copy > p:not(.eyebrow):not(.temporary-note) { color: #d8eee7; }
.event-list { display: grid; gap: 12px; margin-top: 34px; }
.event {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; align-items: center; padding: 14px;
  color: var(--ink); background: rgba(255, 254, 248, 0.95); border-radius: 18px;
}
.event time { display: grid; place-items: center; width: 58px; aspect-ratio: 1; color: white; background: var(--green-500); border-radius: 14px; line-height: 1; }
.event time strong { font: 700 1.35rem "Fredoka", sans-serif; }
.event time span { font-size: 0.65rem; font-weight: 700; }
.event h3 { margin: 0 0 3px; font-size: 1rem; }
.event p { margin: 0; color: var(--ink-soft); font-size: 0.76rem; }
.event-link { display: inline-flex; gap: 6px; margin-top: 8px; color: var(--green-700); font-size: 0.76rem; font-weight: 700; }
.event-link:hover, .event-link:focus-visible { color: var(--green-900); text-decoration: underline; text-underline-offset: 3px; }
.event-tag { padding: 5px 9px; color: var(--green-900); border: 1px solid var(--green-500); border-radius: 99px; font-size: 0.64rem; font-weight: 700; }

.community-section { overflow: hidden; }
.community-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: center; }
.community-grid .lead { font-size: 1.2rem; font-weight: 600; }
.community-grid p { color: var(--ink-soft); }
.text-link { display: inline-flex; gap: 10px; margin-top: 20px; color: var(--green-700); font-weight: 700; }
.community-table {
  position: relative; min-height: 450px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12), transparent 45%), var(--green-300);
  border: 18px solid var(--mint); border-radius: 42% 58% 38% 62% / 48% 35% 65% 52%;
  transform: rotate(-2deg); box-shadow: var(--shadow);
}
.community-table::before { content: ""; position: absolute; inset: 30px; border: 2px dashed rgba(255,255,255,0.28); border-radius: inherit; }
.game-board {
  position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; grid-template-columns: repeat(3, 1fr);
  width: 230px; aspect-ratio: 1; padding: 14px; background: var(--sand); border: 10px solid var(--green-900);
  border-radius: 22px; transform: translate(-50%, -50%) rotate(8deg); box-shadow: 0 18px 25px rgba(10,85,79,0.2);
}
.game-board i { border: 1px solid var(--green-300); }
.board-path { position: absolute; z-index: 1; width: 17px; aspect-ratio: 1; border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 3px 0 rgba(18,63,67,0.15); }
.path-one { top: 32%; left: 27%; background: var(--yellow); }
.path-two { right: 23%; bottom: 28%; background: var(--green-700); }
.player {
  position: absolute; z-index: 3; width: 82px; height: 58px; background: var(--yellow); border: 8px solid var(--white);
  border-radius: 50% 50% 42% 42%; box-shadow: var(--shadow);
}
.player::before { content: ""; position: absolute; top: -30px; left: 50%; width: 42px; aspect-ratio: 1; background: inherit; border: 7px solid var(--white); border-radius: 50%; transform: translateX(-50%); }
.player i::before, .player i::after { content: ""; position: absolute; top: 20px; width: 24px; height: 13px; background: inherit; border: 5px solid var(--white); border-radius: 50%; }
.player i::before { left: -20px; transform: rotate(25deg); }
.player i::after { right: -20px; transform: rotate(-25deg); }
.player-one { top: 35px; left: 43%; transform: rotate(4deg); }
.player-two { right: 25px; top: 46%; background: var(--green-700); transform: rotate(90deg); }
.player-three { bottom: 30px; left: 43%; background: #d87d64; transform: rotate(180deg); }
.player-four { left: 25px; top: 46%; background: #7198b3; transform: rotate(-90deg); }
.table-piece { position: absolute; z-index: 4; filter: drop-shadow(0 9px 6px rgba(18,63,67,0.18)); }
.table-die { top: 20%; left: 20%; width: 68px; transform: rotate(-12deg); }
.table-card-one { top: 18%; right: 20%; width: 42px; transform: rotate(15deg); }
.table-card-two { top: 22%; right: 26%; width: 40px; transform: rotate(-6deg); }
.table-meeple-one { left: 24%; bottom: 18%; width: 56px; transform: rotate(-9deg); }
.table-meeple-two { right: 23%; bottom: 17%; width: 52px; transform: rotate(11deg); filter: hue-rotate(55deg) drop-shadow(0 9px 6px rgba(18,63,67,0.18)); }
.table-token { position: absolute; z-index: 4; display: grid; place-items: center; width: 34px; aspect-ratio: 1; color: var(--green-900); background: var(--yellow); border: 5px solid var(--white); border-radius: 50%; box-shadow: 0 8px 12px rgba(18,63,67,0.16); font: 600 0.72rem "Fredoka", sans-serif; }
.token-a { top: 29%; left: 39%; }
.token-b { right: 37%; bottom: 25%; background: var(--mint); }
.community-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 80px; }
.community-values div { display: grid; grid-template-columns: 48px 1fr; column-gap: 12px; align-items: center; }
.community-values span { grid-row: span 2; color: var(--green-500); font-size: 2.4rem; }
.community-values strong { font-size: 0.9rem; }
.community-values small { color: var(--ink-soft); font-size: 0.72rem; }

.join-section { padding-top: 30px; }
.join-panel {
  position: relative; overflow: hidden; padding: 85px 160px; background: var(--mint);
  border: 1px solid rgba(74, 169, 151, 0.14); border-radius: 45% 55% 40% 60% / 24% 28% 72% 76%;
  text-align: center;
}
.join-panel > *:not(.join-shape):not(.join-piece) { position: relative; z-index: 2; }
.join-panel > p:not(.eyebrow):not(.temporary-note) { max-width: 620px; margin: 0 auto 28px; color: var(--ink-soft); }
.join-shape { position: absolute; border-radius: 50%; opacity: 0.55; }
.join-shape-one { top: -100px; left: -30px; width: 300px; aspect-ratio: 1; border: 60px solid var(--green-300); }
.join-shape-two { right: -70px; bottom: -120px; width: 360px; aspect-ratio: 1; background: var(--green-300); }
.join-piece { position: absolute; z-index: 1; filter: drop-shadow(0 16px 12px rgba(18, 63, 67, 0.14)); }
.join-die { left: 35px; bottom: 22px; width: 125px; transform: rotate(-14deg); }
.join-meeple { right: 35px; bottom: 20px; width: 125px; transform: rotate(11deg); }

.partners-section { position: relative; overflow: hidden; padding-bottom: 45px; }
.partners-section::before, .partners-section::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
}
.partners-section::before { top: 170px; left: -90px; width: 240px; aspect-ratio: 1; border: 42px solid var(--mint); }
.partners-section::after { right: -80px; bottom: 20px; width: 200px; aspect-ratio: 1; background: rgba(241, 201, 108, 0.28); }
.partners-carousel { max-width: 940px; margin-inline: auto; }
.partners-stage { display: grid; min-height: 390px; }
.partner-slide {
  grid-area: 1 / 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr); gap: 0;
  overflow: hidden; visibility: hidden; opacity: 0; background: var(--white);
  border: 1px solid rgba(18, 63, 67, 0.09); border-radius: 42px; box-shadow: var(--shadow);
  color: inherit; text-decoration: none;
  transform: translateX(35px) scale(0.98); transition: opacity 280ms ease, transform 280ms ease, visibility 280ms;
}
.partner-slide.is-active { visibility: visible; opacity: 1; transform: translateX(0) scale(1); }
.partner-slide:focus-visible { outline: 3px solid rgba(74, 169, 151, 0.45); outline-offset: 5px; }
.partner-logo-panel {
  display: grid; place-items: center; min-height: 390px; padding: 35px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.96), rgba(255,255,255,0.6) 45%, transparent 70%),
    var(--mint);
}
.partner-logo-panel img {
  width: auto; max-width: 100%; max-height: 300px; object-fit: contain;
  filter: drop-shadow(0 14px 14px rgba(18, 63, 67, 0.14));
}
.partner-slide-long-name .partner-logo-panel img { max-height: 220px; }
.partner-copy {
  position: relative; display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 50px 40px;
  color: white; background: var(--green-900);
}
.partner-copy::after {
  content: ""; position: absolute; right: -45px; bottom: -65px; width: 170px; aspect-ratio: 1;
  border: 32px solid rgba(139, 209, 186, 0.15); border-radius: 50%;
}
.partner-copy span {
  margin-bottom: 18px; color: var(--green-300); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.partner-copy h3 {
  position: relative; z-index: 1; max-width: 100%; margin-bottom: 14px; color: white;
  overflow-wrap: anywhere; font-size: clamp(2rem, 4vw, 3.4rem);
}
.partner-slide-long-name .partner-copy h3 { font-size: clamp(1.7rem, 2.7vw, 2.15rem); }
.partner-copy p { position: relative; z-index: 1; margin: 0; color: #c4eddd; font-size: 0.82rem; }
.partners-controls { display: flex; justify-content: center; gap: 18px; align-items: center; margin-top: 24px; }
.partner-arrow {
  display: grid; place-items: center; width: 46px; aspect-ratio: 1; padding: 0;
  color: var(--green-900); background: var(--mint); border: 0; border-radius: 50%;
  cursor: pointer; font-size: 1.25rem; font-weight: 700; transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.partner-arrow:hover, .partner-arrow:focus-visible { color: white; background: var(--green-700); transform: translateY(-2px); }
.partner-autoplay { font-size: 0.9rem; }
.partner-dots { display: flex; gap: 8px; }
.partner-dot {
  width: 9px; height: 9px; padding: 0; background: var(--green-300); border: 0; border-radius: 99px;
  cursor: pointer; transition: width 180ms ease, background 180ms ease;
}
.partner-dot.is-active { width: 28px; background: var(--green-700); }
.partner-arrow:focus-visible, .partner-dot:focus-visible { outline: 3px solid rgba(74, 169, 151, 0.35); outline-offset: 3px; }

.site-footer { margin-top: 70px; padding: 70px 0 20px; color: #d9eee7; background: var(--green-900); border-radius: 60px 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-grid .footer-logo {
  display: block; width: 240px; height: 180px; overflow: hidden; margin: -20px 0 24px;
  background: var(--cream); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 43% 57% 48% 52% / 46% 41% 59% 54%;
  box-shadow: 0 16px 35px rgba(4, 52, 47, 0.3); transform: rotate(-2deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.footer-grid .footer-logo:hover, .footer-grid .footer-logo:focus-visible { transform: rotate(0) translateY(-3px); box-shadow: 0 20px 40px rgba(4, 52, 47, 0.4); }
.footer-logo img { width: 100%; height: 100%; padding: 8px; object-fit: contain; transform: scale(1.02); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.footer-grid .social-links a {
  display: grid; place-items: center; width: 42px; aspect-ratio: 1; margin: 0;
  color: var(--green-900); background: var(--green-300); border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%; transition: transform 180ms ease, background 180ms ease;
}
.footer-grid .social-links a:hover, .footer-grid .social-links a:focus-visible {
  color: var(--green-900); background: white; text-decoration: none; transform: translateY(-3px) rotate(-4deg);
}
.social-links svg { width: 19px; height: 19px; fill: currentColor; }
.footer-grid h2 { margin-bottom: 18px; color: white; font-size: 1rem; letter-spacing: 0; }
.footer-grid p, .footer-grid a { display: block; margin-bottom: 8px; font-size: 0.78rem; }
.footer-grid a:hover { color: white; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--green-300); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(139, 209, 186, 0.4); text-underline-offset: 3px; }
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: white; text-decoration-color: white; }

.contact-dialog {
  width: min(calc(100% - 28px), 680px); max-height: calc(100vh - 28px); padding: 34px;
  color: var(--ink); background: var(--cream); border: 0; border-radius: 28px; box-shadow: 0 30px 90px rgba(10, 85, 79, 0.3);
}
.contact-dialog::backdrop { background: rgba(9, 42, 43, 0.68); backdrop-filter: blur(5px); }
.dialog-header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.dialog-header h2 { margin: 0; font-size: clamp(2.4rem, 8vw, 4rem); }
.dialog-close {
  display: grid; flex: 0 0 auto; place-items: center; width: 44px; aspect-ratio: 1; padding: 0;
  color: var(--green-900); background: var(--mint); border: 0; border-radius: 50%; cursor: pointer; font-size: 1.8rem; line-height: 1;
}
.contact-dialog > p { margin: 18px 0 24px; color: var(--ink-soft); }
.contact-form, .contact-form label { display: grid; gap: 8px; }
.contact-form { gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label span { font-size: 0.78rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white);
  border: 1px solid rgba(18, 63, 67, 0.2); border-radius: 12px; font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 3px solid rgba(74, 169, 151, 0.3); border-color: var(--green-500);
}
.form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 4px; }
.form-status { min-height: 1.5em; margin: -6px 0 0; color: var(--ink-soft); font-size: 0.78rem; text-align: right; }
.form-status.is-error { color: #a53b36; }
.form-status.is-success { color: var(--green-700); font-weight: 700; }
.contact-form .button:disabled { cursor: wait; opacity: 0.65; transform: none; }

.legal-page main { min-height: 70vh; }
.legal-content { max-width: 820px; padding: 90px 0; }
.legal-content h1 { font-size: clamp(3rem, 7vw, 5rem); }
.legal-content h2 { margin-top: 40px; font-size: 1.6rem; letter-spacing: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.notice { padding: 18px; background: #fff2c9; border-left: 5px solid var(--yellow); border-radius: 10px; }

@media (max-width: 1020px) {
  .main-nav { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 480px; }
  .activity-grid { grid-template-columns: repeat(3, 1fr); }
  .activity-card { min-height: 320px; }
  .events-copy { width: 58%; }
  .community-grid { gap: 40px; }
  .community-values { grid-template-columns: repeat(2, 1fr); }
  .join-panel { padding-inline: 110px; }
  .join-piece { width: 95px; }
  .partner-slide { grid-template-columns: 1fr minmax(230px, 0.7fr); }
}

@media (max-width: 800px) {
  .section { padding: 80px 0; }
  .menu-toggle {
    position: relative; z-index: 61; display: grid; gap: 5px; width: 44px; padding: 10px;
  }
  .menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed; z-index: 60; inset: 0; display: flex; flex-direction: column; justify-content: center;
    padding: 40px; background: var(--cream); transform: translateX(100%); transition: transform 220ms ease;
    font-family: "Fredoka", sans-serif; font-size: 1.5rem;
  }
  .main-nav.is-open { transform: translateX(0); }
  .hero { padding-top: 60px; }
  .hero-grid, .community-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; grid-row: 1; }
  .hero-copy { text-align: center; }
  .hero-intro { margin-inline: auto; }
  .hero .button-row, .hero-points { justify-content: center; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .events-panel { padding: 60px 35px; }
  .events-copy { width: 62%; }
  .community-grid { text-align: center; }
  .community-table { min-height: 390px; }
  .join-panel { padding-inline: 75px; }
  .partner-slide { grid-template-columns: 1fr; }
  .partner-logo-panel { min-height: 300px; }
  .partner-copy { min-height: 210px; padding: 34px; text-align: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { min-height: auto; padding-top: 30px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4rem); }
  .hero-copy { width: calc(100vw - 28px); max-width: 100%; margin-inline: auto; }
  .hero-intro { max-width: 100%; padding-inline: 8px; }
  .hero-visual { min-height: 360px; }
  .logo-crop { inset: 10px 0 0; border-radius: 38% 62% 55% 45% / 44% 42% 58% 56%; }
  .piece-die, .piece-meeple { width: 65px; }
  .piece-card { width: 45px; }
  .hero-points { display: none; }
  .hero .button-row, .join-panel .button-row { display: grid; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card { min-height: 270px; }
  .activity-icon { width: 80px; margin-bottom: 20px; }
  .events-panel {
    min-height: 600px; padding: 72px 25px;
    background-position: left center;
  }
  .events-copy { width: 100%; }
  .event { grid-template-columns: 55px 1fr; gap: 12px; }
  .event-tag { display: none; }
  .community-table { min-height: 320px; border-width: 10px; }
  .game-board { width: 160px; }
  .player { width: 52px; height: 38px; border-width: 5px; }
  .player::before { top: -21px; width: 28px; border-width: 5px; }
  .player i::before, .player i::after { width: 17px; height: 9px; border-width: 3px; }
  .player i::before { left: -14px; }
  .player i::after { right: -14px; }
  .table-die { width: 48px; }
  .table-card-one, .table-card-two { width: 31px; }
  .table-meeple-one, .table-meeple-two { width: 38px; }
  .table-token { width: 25px; border-width: 3px; font-size: 0.55rem; }
  .community-values, .footer-grid { grid-template-columns: 1fr; }
  .join-panel { padding: 60px 18px; }
  .join-piece { display: none; }
  .partners-section { padding-top: 70px; }
  .partners-stage { min-height: 485px; }
  .partner-slide { border-radius: 28px; }
  .partner-logo-panel { min-height: 285px; padding: 25px; }
  .partner-logo-panel img { max-height: 235px; }
  .partner-slide-long-name .partner-logo-panel img { max-height: 180px; }
  .partner-copy { min-height: 200px; padding: 28px 20px; }
  .partner-copy h3 { font-size: 2rem; }
  .contact-dialog { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { display: grid; }
  .form-status { text-align: left; }
  .site-footer { border-radius: 35px 35px 0 0; }
  .footer-bottom { display: block; }
}

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