@font-face {
  font-family: 'Lobster';
  src: url('../fonts/Lobster-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-latin_latin-ext-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-latin_latin-ext-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-latin_latin-ext-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-900: #071c30;
  --navy-800: #0a2540;
  --navy-700: #0d3355;
  --navy-600: #14446e;
  --sea-600: #0e7fa5;
  --sea-500: #1195bd;
  --turquoise: #19b8d4;
  --turquoise-soft: #d8f2f7;
  --sand-100: #fdf9f0;
  --sand-200: #f8f0df;
  --sand-300: #f0e3c9;
  --cream: #fffdf8;
  --white: #ffffff;
  --orange-500: #ff8800;
  --orange-600: #ff6c00;
  --orange-soft: #fff1de;
  --coral: #ff5e5b;
  --ink: #23303d;
  --ink-soft: #55636f;
  --ink-faint: #8494a1;
  --line: #e8e0d0;

  --font-display: 'Nunito', 'Nunito Sans', system-ui, sans-serif;
  --font-body: 'Nunito Sans', 'Nunito', system-ui, sans-serif;
  --font-script: 'Lobster', 'Nunito', cursive;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 2px 8px rgba(10, 37, 64, .06);
  --shadow-md: 0 2px 6px rgba(10, 37, 64, .07), 0 12px 28px -8px rgba(10, 37, 64, .16);
  --shadow-lg: 0 4px 10px rgba(10, 37, 64, .08), 0 28px 60px -16px rgba(10, 37, 64, .28);
  --shadow-orange: 0 8px 24px -6px rgba(255, 136, 0, .45);

  --header-h: 76px;
  --wrap: 1180px;

  --ease-out: cubic-bezier(.22, .8, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-800);
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--sea-600); text-decoration: none; }
a:hover { color: var(--orange-600); }

::selection { background: var(--orange-500); color: #fff; }

:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 2px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sand-200); }
::-webkit-scrollbar-thumb { background: var(--sea-600); border-radius: 99px; border: 2px solid var(--sand-200); }
::-webkit-scrollbar-thumb:hover { background: var(--navy-700); }

.wrap {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

section { scroll-margin-top: calc(var(--header-h) + 20px); position: relative; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 200;
  background: #fff;
  color: var(--navy-800);
  font-weight: 700;
  padding: .7rem 1.2rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: top .2s var(--ease-out);
}
.skip-link:focus-visible { top: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background-color .2s, color .2s, border-color .2s;
  text-align: center;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { flex: 0 0 auto; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -6px rgba(255, 108, 0, .55);
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .22); color: #fff; transform: translateY(-2px); }

.btn-navy {
  background: var(--navy-800);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, .5);
}
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.1rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .92rem; }

.announce {
  background: linear-gradient(90deg, var(--navy-800), var(--sea-600));
  color: #fff;
  text-align: center;
  font-size: .95rem;
  padding: .55rem 1rem;
  font-weight: 700;
}
.announce a { color: #ffd9a3; text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.is-scrolled {
  background: rgba(255, 253, 248, .95);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -12px rgba(10, 37, 64, .18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy-800);
  line-height: 1;
}
.brand:hover { color: var(--navy-800); }
.brand .brand-mark { width: 42px; height: 42px; flex: 0 0 auto; }
.brand .brand-javea {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.75rem;
  background: linear-gradient(120deg, var(--orange-500), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: .05em;
}
.brand .brand-rest { font-weight: 700; letter-spacing: -.01em; }

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy-800);
  padding: .55rem .85rem;
  border-radius: var(--radius-pill);
  transition: background .18s, color .18s;
}
.main-nav a:hover { background: var(--orange-soft); color: var(--orange-600); }
.main-nav a.nav-cta {
  background: var(--navy-800);
  color: #fff;
  margin-left: .35rem;
  padding-inline: 1.2rem;
}
.main-nav a.nav-cta:hover { background: var(--orange-600); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: var(--navy-800);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    flex-direction: column;
    justify-content: center;
    gap: .6rem;
    background: linear-gradient(160deg, var(--navy-900), var(--navy-700) 70%, var(--sea-600));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .28s var(--ease-out), transform .28s var(--ease-out), visibility .28s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { color: #fff; font-size: 1.35rem; padding: .7rem 1.6rem; }
  .main-nav a:hover { background: rgba(255, 255, 255, .12); color: #fff; }
  .main-nav a.nav-cta { background: var(--orange-500); margin: .5rem 0 0; }
  body.nav-locked { overflow: hidden; }
}

.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 26s var(--ease-out) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.5%); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(76deg, rgba(7, 28, 48, .92) 0%, rgba(10, 37, 64, .72) 38%, rgba(10, 37, 64, .25) 68%, rgba(255, 136, 0, .16) 100%);
}
.hero-inner {
  padding: clamp(6rem, 14vh, 9rem) 0 clamp(7rem, 16vh, 10rem);
  max-width: 720px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffd9a3;
  background: rgba(7, 28, 48, .45);
  border: 1px solid rgba(255, 217, 163, .4);
  padding: .5rem 1.1rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  line-height: 1.06;
  color: #fff;
  letter-spacing: -.015em;
  margin-bottom: 1.1rem;
  text-shadow: 0 3px 24px rgba(7, 28, 48, .45);
}
.hero h1 .script {
  font-family: var(--font-script);
  font-weight: 400;
  display: inline-block;
  background: linear-gradient(115deg, #ffb703, #ff8800 55%, #ff5e5b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0 .06em .12em 0;
  transform: rotate(-2deg);
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #e8f1f8;
  max-width: 58ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }

.hero-chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: .5rem 1.05rem;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.hero-chip strong { color: #ffd9a3; font-family: var(--font-display); }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 5.2rem;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .85);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}
.hero-scroll::after {
  content: "";
  width: 2px;
  height: 34px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(.2); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(.2); transform-origin: bottom; opacity: 0; }
}
@media (max-width: 640px) { .hero-scroll { display: none; } }

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.wave-divider svg { width: 100%; height: clamp(42px, 7vw, 96px); display: block; }

.ticker {
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-inner { display: flex; align-items: stretch; }
.ticker-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: .7rem 1.3rem;
  background: rgba(7, 28, 48, .28);
  white-space: nowrap;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ticker-viewport { overflow: hidden; flex: 1; display: flex; align-items: center; }
.ticker-track {
  display: flex;
  flex: 0 0 auto;
  gap: 0;
  animation: ticker 46s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}
.ticker-track li { flex: 0 0 auto; }
.ticker-track a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 700;
  font-size: .98rem;
  padding: .7rem 1.6rem;
  white-space: nowrap;
}
.ticker-track a:hover { text-decoration: underline; text-underline-offset: 3px; color: #fff; }
.ticker-track a::before { content: "☀"; font-size: .8em; opacity: .85; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head.align-left { text-align: left; margin-inline: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: .9rem;
}
.eyebrow::before, .section-head:not(.align-left) .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); letter-spacing: -.01em; }
.section-head p { color: var(--ink-soft); font-size: 1.12rem; margin: 0; }

.section-news { padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4.5rem, 9vw, 7rem); background: var(--cream); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.6rem;
}
.news-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
  position: relative;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card.is-featured { grid-column: span 8; grid-row: span 2; }

.news-media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.news-card.is-featured .news-media { aspect-ratio: auto; flex: 1; min-height: 320px; }
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.news-card:hover .news-media img { transform: scale(1.06); }
.news-media .news-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 253, 248, .94);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .85rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.news-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  padding: .4rem .85rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-orange);
}
.news-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.news-body h3 { font-size: 1.18rem; line-height: 1.35; margin: 0; }
.news-card.is-featured .news-body h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.news-body h3 a { color: var(--navy-800); }
.news-body h3 a:hover { color: var(--orange-600); }
.news-body h3 a::after { content: ""; position: absolute; inset: 0; }
.news-body p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.news-more {
  margin-top: auto;
  padding-top: .8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--sea-600);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.news-card:hover .news-more { color: var(--orange-600); }
.news-more svg { transition: transform .25s var(--ease-out); }
.news-card:hover .news-more svg { transform: translateX(5px); }

@media (max-width: 980px) {
  .news-card, .news-card.is-featured { grid-column: span 6; grid-row: auto; }
  .news-card.is-featured .news-media { aspect-ratio: 16 / 9; flex: initial; min-height: 0; }
}
@media (max-width: 640px) {
  .news-card, .news-card.is-featured { grid-column: span 12; }
}

.news-foot { text-align: center; margin-top: 2.6rem; display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

.wk-banner {
  margin-top: 3.5rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(1200px 400px at 85% 20%, rgba(25, 184, 212, .35), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.6rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.wk-banner::before {
  content: "⚽";
  position: absolute;
  right: -20px;
  bottom: -38px;
  font-size: 9rem;
  opacity: .12;
  transform: rotate(-12deg);
}
.wk-banner h3 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-bottom: .3rem; }
.wk-banner p { color: #c9dcea; margin: 0; max-width: 52ch; }
.wk-banner .btn { position: relative; z-index: 1; }

.section-stats {
  background:
    radial-gradient(900px 300px at 15% 0%, rgba(25, 184, 212, .18), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 55%, var(--navy-700));
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.section-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12 Q15 0 30 12 T60 12 T90 12 T120 12' fill='none' stroke='%23ffffff' stroke-opacity='.05' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 120px 24px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(120deg, #ffd9a3, var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -.02em;
}
.stat-label { margin-top: .55rem; color: #bcd2e2; font-weight: 700; font-size: 1.02rem; }
@media (max-width: 820px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.section-why { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--sand-100); }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 1.4rem;
}
.bento-cell {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.bento-cell:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento-cell h3 { font-size: 1.28rem; margin: 0; }
.bento-cell p { color: var(--ink-soft); margin: 0; font-size: .99rem; }
.bento-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  margin-bottom: .5rem;
  background: var(--orange-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 136, 0, .2);
}
.bento-cell.cell-image { padding: 0; border: 0; }
.bento-cell.cell-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s var(--ease-out); }
.bento-cell.cell-image:hover img { transform: scale(1.05); }
.bento-cell.cell-image .cell-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 1.6rem 1.3rem;
  background: linear-gradient(to top, rgba(7, 28, 48, .85), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.bento-cell.cell-accent {
  background: linear-gradient(135deg, var(--sea-600), var(--turquoise));
  color: #fff;
  border: 0;
  justify-content: center;
}
.bento-cell.cell-accent h3 { color: #fff; font-size: 1.45rem; }
.bento-cell.cell-accent p { color: #e2f7fb; }
.bento-cell.cell-accent .btn { align-self: flex-start; margin-top: .6rem; background: #fff; color: var(--sea-600); }
.bento-cell.cell-accent .btn:hover { background: var(--navy-800); color: #fff; }

.b-col-4 { grid-column: span 4; }
.b-col-5 { grid-column: span 5; }
.b-col-6 { grid-column: span 6; }
.b-col-7 { grid-column: span 7; }
.b-col-8 { grid-column: span 8; }
.b-row-2 { grid-row: span 2; }
@media (max-width: 980px) {
  .b-col-4, .b-col-5, .b-col-6, .b-col-7, .b-col-8 { grid-column: span 6; }
}
@media (max-width: 640px) {
  .b-col-4, .b-col-5, .b-col-6, .b-col-7, .b-col-8 { grid-column: span 12; }
  .bento-cell.cell-image { min-height: 220px; }
}

.section-gids { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--sand-200); }

.gids-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.6rem;
}
.gids-search {
  position: relative;
  flex: 1 1 320px;
  max-width: 460px;
}
.gids-search input {
  width: 100%;
  font: inherit;
  font-weight: 700;
  color: var(--navy-800);
  padding: .95rem 1.3rem .95rem 3.1rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--line);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.gids-search input:focus { outline: none; border-color: var(--sea-500); box-shadow: 0 0 0 4px rgba(17, 149, 189, .15); }
.gids-search svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  pointer-events: none;
}
.gids-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy-800);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .5rem 1.05rem;
  cursor: pointer;
  transition: all .2s var(--ease-out);
}
.chip:hover { border-color: var(--orange-500); color: var(--orange-600); transform: translateY(-1px); }
.chip.is-active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.gids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.4rem;
  align-items: start;
}
.gids-group {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.gids-group:hover { box-shadow: var(--shadow-md); }
.gids-group.is-hidden { display: none; }
.gids-group-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.1rem; }
.gids-group-head .gids-emoji {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--turquoise-soft), #eaf7fa);
  box-shadow: inset 0 0 0 1px rgba(17, 149, 189, .18);
}
.gids-group-head h3 { font-size: 1.15rem; margin: 0; flex: 1; }
.gids-count {
  font-size: .8rem;
  font-weight: 700;
  color: var(--sea-600);
  background: var(--turquoise-soft);
  border-radius: var(--radius-pill);
  padding: .2rem .65rem;
}
.gids-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.gids-links li.is-hidden { display: none; }
.gids-links a {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--ink);
  font-weight: 700;
  font-size: .97rem;
  padding: .5rem .6rem;
  border-radius: var(--radius-sm);
  transition: background .16s, color .16s, padding-left .2s var(--ease-out);
}
.gids-links a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange-500);
  opacity: .55;
  transition: opacity .16s, transform .16s;
}
.gids-links a:hover {
  background: var(--orange-soft);
  color: var(--orange-600);
  padding-left: .9rem;
}
.gids-links a:hover::before { opacity: 1; transform: scale(1.25); }
.gids-empty {
  display: none;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 700;
  padding: 2.5rem 1rem;
}
.gids-empty.is-visible { display: block; }
.gids-note { text-align: center; margin-top: 2.2rem; color: var(--ink-soft); }
.gids-note a { font-weight: 700; }

.section-contest {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--cream);
  overflow: hidden;
}
.contest-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.contest-collage {
  position: relative;
  min-height: 460px;
}
.contest-collage img {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  object-fit: cover;
  transition: transform .35s var(--ease-out);
}
.contest-collage img:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 5; }
.collage-1 { width: 58%; aspect-ratio: 4 / 5; top: 0; left: 0; transform: rotate(-3.5deg); z-index: 2; }
.collage-2 { width: 60%; aspect-ratio: 16 / 10; top: 8%; right: 0; transform: rotate(2.5deg); z-index: 1; }
.collage-3 { width: 62%; aspect-ratio: 16 / 10; bottom: 0; right: 6%; transform: rotate(-1.5deg); z-index: 3; }
.collage-badge {
  position: absolute;
  z-index: 6;
  top: -1.4rem;
  right: 4%;
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font-script);
  font-size: 1.35rem;
  padding: .7rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-orange);
  transform: rotate(4deg);
}
.contest-copy .status-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--orange-soft);
  color: var(--orange-600);
  border: 1px solid rgba(255, 136, 0, .35);
  font-weight: 700;
  font-size: .92rem;
  border-radius: var(--radius-pill);
  padding: .45rem 1.05rem;
  margin-bottom: 1.2rem;
}
.status-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-500);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 136, 0, .5); }
  60% { box-shadow: 0 0 0 8px rgba(255, 136, 0, 0); }
}
.contest-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.contest-copy .lead { font-size: 1.12rem; color: var(--ink-soft); }
.contest-prize {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.2rem;
  margin: 1.4rem 0 1.8rem;
}
.contest-prize img { width: 74px; height: 74px; object-fit: cover; border-radius: 12px; flex: 0 0 auto; }
.contest-prize strong { font-family: var(--font-display); color: var(--navy-800); }
.contest-prize span { display: block; color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 900px) {
  .contest-split { grid-template-columns: 1fr; }
  .contest-collage { min-height: 0; height: 400px; order: -1; }
}
@media (max-width: 520px) { .contest-collage { height: 300px; } }

.section-adverteren { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--sand-100); }

.reach-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.reach-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy-800);
  padding: .55rem 1.15rem;
}
.reach-chip strong { color: var(--orange-600); font-family: var(--font-display); }

.price-block { margin-bottom: 3.2rem; }
.price-block-title {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: 1.35rem;
  margin-bottom: .4rem;
}
.price-block-sub { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 75ch; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.is-featured {
  border: 2px solid var(--orange-500);
  box-shadow: var(--shadow-lg);
}
.price-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--orange-500), var(--orange-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .95rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}
.price-name { font-size: 1.12rem; margin: 0 0 .1rem; }
.price-for { font-size: .92rem; color: var(--ink-faint); margin-bottom: 1rem; min-height: 2.4em; }
.price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: -.02em;
}
.price-amount small { font-size: .95rem; font-weight: 700; color: var(--ink-faint); letter-spacing: 0; }
.price-list { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.price-list li { display: flex; gap: .6rem; font-size: .96rem; color: var(--ink-soft); }
.price-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--turquoise-soft);
  color: var(--sea-600);
  font-size: .75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: .15rem;
}
.price-card .btn { width: 100%; }
.price-example { margin-top: .8rem; font-size: .85rem; text-align: center; color: var(--ink-faint); }
.price-example a { font-weight: 700; }

.advert-cta {
  margin-top: 1rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(800px 300px at 90% 10%, rgba(255, 136, 0, .28), transparent 55%),
    linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  text-align: center;
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.4rem, 4vw, 3rem);
}
.advert-cta h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.advert-cta p { color: #c9dcea; max-width: 62ch; margin: 0 auto 1.6rem; }
.advert-cta .btn-row { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

.section-contact { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--sand-200); }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.contact-info {
  background:
    radial-gradient(600px 300px at 10% 100%, rgba(25, 184, 212, .3), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-info h3 { color: #fff; font-size: 1.55rem; }
.contact-info > p { color: #c9dcea; }
.contact-line {
  display: flex;
  align-items: center;
  gap: .95rem;
  color: #eaf3fa;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background .2s, transform .2s var(--ease-out);
}
.contact-line:hover { background: rgba(255, 255, 255, .15); color: #fff; transform: translateX(4px); }
.contact-line .ico {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  font-size: 1.2rem;
}
.contact-line span small { display: block; font-weight: 400; color: #a9c2d4; font-size: .84rem; }
.contact-socials { display: flex; gap: .7rem; margin-top: auto; padding-top: 1rem; }

.contact-form { padding: clamp(2rem, 4vw, 3rem); }
.contact-form h3 { font-size: 1.45rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field.span-2 { grid-column: span 2; }
.form-field label { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--navy-800); }
.form-field label .req { color: var(--orange-600); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--sea-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 149, 189, .14);
}
.form-consent {
  grid-column: span 2;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--ink-soft);
  background: var(--sand-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
}
.form-consent input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--orange-500); flex: 0 0 auto; }
.form-note { grid-column: span 2; font-size: .85rem; color: var(--ink-faint); margin: 0; }
.contact-form .btn { justify-self: start; }
@media (max-width: 900px) {
  .contact-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.span-2, .form-consent, .form-note { grid-column: span 1; }
}

.site-footer {
  background: linear-gradient(180deg, var(--navy-900), #050f1b);
  color: #b9cddd;
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand .brand-rest { color: #fff; }
.footer-brand p { font-size: .98rem; max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: #b9cddd; font-weight: 700; font-size: .97rem; }
.footer-col a:hover { color: var(--orange-500); }
.footer-socials { display: flex; gap: .7rem; margin-top: 1.1rem; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  transition: background .2s, transform .2s var(--ease-out), border-color .2s;
}
.social-btn:hover { background: var(--orange-500); border-color: var(--orange-500); color: #fff; transform: translateY(-3px); }
.social-btn svg { width: 20px; height: 20px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: .9rem;
  color: #7d95a9;
}
.footer-bottom .heart { color: var(--coral); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--navy-800);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .25s, transform .25s var(--ease-out), background .2s, visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--orange-600); }

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-bg img { animation-duration: 30s; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(7, 28, 48, .95) 0%, rgba(7, 28, 48, .45) 55%, rgba(7, 28, 48, .35) 100%);
}
.page-hero-inner { padding: 9rem 0 6.5rem; max-width: 760px; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: .8rem;
  text-shadow: 0 3px 24px rgba(7, 28, 48, .5);
}
.page-hero h1 .script {
  font-family: var(--font-script);
  font-weight: 400;
  background: linear-gradient(115deg, #ffb703, #ff8800 55%, #ff5e5b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.page-hero p { font-size: 1.18rem; color: #e8f1f8; max-width: 60ch; margin: 0; }
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  color: #cfe2ef;
  margin-bottom: 1.2rem;
  background: rgba(7, 28, 48, .4);
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.crumbs a { color: #ffd9a3; }
.crumbs a:hover { color: #fff; }

.section-contest-detail { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--cream); }

.contest-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.contest-article {
  font-size: 1.06rem;
}
.contest-article h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2.2rem; }
.contest-article h2:first-child { margin-top: 0; }
.contest-article .lead { font-size: 1.16rem; color: var(--ink-soft); }
.contest-article ul { padding-left: 1.3rem; color: var(--ink-soft); }
.contest-article li { margin-bottom: .4rem; }
.highlight-box {
  background: var(--orange-soft);
  border: 1px solid rgba(255, 136, 0, .3);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  margin: 1.6rem 0;
  font-weight: 700;
  color: var(--navy-800);
}
.contest-side { position: sticky; top: calc(var(--header-h) + 20px); display: flex; flex-direction: column; gap: 1.4rem; }
.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.7rem 1.6rem;
}
.side-card h3 { font-size: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.side-card.prize-card {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #d7e6f1;
  border: 0;
}
.side-card.prize-card h3 { color: #fff; }
.side-card.prize-card .price-list li { color: #c9dcea; }
.side-card.prize-card .price-list li::before { background: rgba(255, 255, 255, .14); color: #ffd9a3; }
.prize-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #ffd9a3;
  margin: .3rem 0 .6rem;
}
.prize-voucher { border-radius: var(--radius-sm); margin-top: 1rem; width: 100%; }

.timeline { list-style: none; margin: 1rem 0 0; padding: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(var(--turquoise), var(--orange-500));
}
.timeline li { position: relative; padding: 0 0 1.3rem 2.6rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline .t-dot {
  position: absolute;
  left: 4px;
  top: 5px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--sea-500);
  box-shadow: var(--shadow-sm);
}
.timeline li.is-done .t-dot { border-color: var(--turquoise); background: var(--turquoise); }
.timeline li.is-now .t-dot { border-color: var(--orange-500); animation: pulse 1.6s ease-in-out infinite; }
.timeline strong { display: block; font-family: var(--font-display); color: var(--navy-800); }
.timeline span { color: var(--ink-soft); font-size: .95rem; }

.section-gallery { padding: 0 0 clamp(4.5rem, 9vw, 7rem); background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: var(--sand-300);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
  aspect-ratio: 4 / 3;
}
.gallery-item:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "🔍";
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 253, 248, .92);
  display: grid;
  place-items: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; transform: none; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item { aspect-ratio: 16 / 10; } }
@media (max-width: 1020px) {
  .contest-layout { grid-template-columns: 1fr; }
  .contest-side { position: static; }
}

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(1100px, 94vw);
  width: auto;
}
.lightbox::backdrop { background: rgba(5, 15, 27, .92); backdrop-filter: blur(6px); }
.lightbox figure { margin: 0; position: relative; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-inline: auto;
}
.lightbox figcaption { color: #cfe2ef; text-align: center; font-weight: 700; padding-top: 1rem; }
.lightbox .lb-close {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--orange-500);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: transform .2s var(--ease-out), background .2s;
}
.lightbox .lb-close:hover { transform: rotate(90deg); background: var(--orange-600); }
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 253, 248, .92);
  color: var(--navy-800);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background .2s, transform .2s var(--ease-out);
}
.lightbox .lb-nav:hover { background: #fff; }
.lightbox .lb-prev { left: -1.2rem; }
.lightbox .lb-next { right: -1.2rem; }
@media (max-width: 700px) {
  .lightbox .lb-close { top: .6rem; right: .6rem; }
  .lightbox .lb-prev { left: .6rem; }
  .lightbox .lb-next { right: .6rem; }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(1) { transition-delay: .03s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .11s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .19s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .27s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .35s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .43s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: .51s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: .59s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .stagger > * { opacity: 1; transform: none; }
  .hero-bg img { animation: none; }
  .ticker-track { animation: none; }
}
