:root {
  --navy: #0b1f3a;
  --navy-2: #12345c;
  --sky: #31a7dd;
  --sky-soft: #dff4ff;
  --gold: #d9a52d;
  --gold-soft: #fff3ca;
  --ink: #17243a;
  --muted: #657187;
  --line: #d9e4ee;
  --bg: #f7fbff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(10, 31, 58, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fcff 0%, #eef7fc 48%, #f8fcff 100%);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
}

p,
li,
span,
strong,
a,
button,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.94) 74%, rgba(236, 247, 255, 0.88) 100%);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 30px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(236, 247, 255, 0.72), rgba(11, 31, 58, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}

.brand-logo {
  width: 112px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--navy);
  background: var(--sky-soft);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(223, 244, 255, 0.78), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 86% 18%, rgba(217, 165, 45, 0.13), transparent 28%);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(18, 52, 92, 0.9)),
    radial-gradient(circle at 70% 20%, rgba(49, 167, 221, 0.34), transparent 35%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: 760px;
  min-height: min(860px, calc(100svh - 76px));
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 70px) clamp(46px, 6vw, 76px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -12% -8%;
  height: 36%;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(ellipse at 58% 20%, rgba(255, 255, 255, 0.16), transparent 62%),
    linear-gradient(180deg, transparent, rgba(223, 244, 255, 0.15));
  pointer-events: none;
}

.hero-content,
.hero-badge {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

.hero h2 {
  margin: 12px 0 0;
  max-width: 760px;
  color: #bfeeff;
  font-size: clamp(1.25rem, 2.5vw, 2.05rem);
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 16px 32px rgba(217, 165, 45, 0.28);
}

.btn-primary:hover {
  background: #efbd44;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
}

.btn-whatsapp {
  color: var(--white);
  background: #128c4a;
  box-shadow: 0 16px 32px rgba(18, 140, 74, 0.24);
}

.btn-whatsapp:hover {
  background: #0fa75a;
}

.btn-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.quick-info article,
.info-card,
.text-panel,
.navigation-card,
.camp-card,
.safe-card,
.contact-card,
.location-grid a {
  border: 1px solid rgba(217, 228, 238, 0.88);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(10, 31, 58, 0.08);
}

.quick-info article {
  min-height: 112px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.quick-info span,
.info-card span,
.contact-card span {
  display: block;
  color: inherit;
  opacity: 0.75;
  font-size: 0.92rem;
  font-weight: 700;
}

.quick-info strong,
.info-card strong,
.contact-card strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
  hyphens: auto;
}

.deadline-card {
  position: relative;
  padding-right: 84px;
}

.deadline-card::after {
  content: "Prazo";
  position: absolute;
  top: 14px;
  right: 12px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.quick-info .deadline-card {
  padding-right: 16px;
  padding-bottom: 42px;
}

.quick-info .deadline-card::after {
  top: auto;
  right: 14px;
  bottom: 12px;
}

.info-card.deadline-card {
  padding-right: 22px;
  padding-bottom: 56px;
}

.info-card.deadline-card::after {
  top: auto;
  right: 16px;
  bottom: 16px;
}

.deadline-card.is-soon {
  border-color: rgba(217, 165, 45, 0.85);
  box-shadow: 0 16px 34px rgba(217, 165, 45, 0.22);
}

.hero-badge {
  justify-self: center;
  width: min(100%, 520px);
  padding: clamp(18px, 2.5vw, 30px);
  text-align: center;
  border: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 64%, transparent 72%);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.event-badge {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  filter:
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 22px rgba(223, 244, 255, 0.16));
  box-shadow: none;
}

.hero-badge p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.badge-orbit {
  display: none;
}

.sky-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
}

.star-a { top: 18%; left: 18%; }
.star-b { top: 24%; right: 22%; }
.star-c { bottom: 30%; left: 48%; }

.flight-line {
  position: absolute;
  width: 340px;
  height: 120px;
  border-top: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.line-a {
  top: 19%;
  right: 7%;
  transform: rotate(-14deg);
}

.line-b {
  bottom: 18%;
  left: 5%;
  transform: rotate(12deg);
}

.paper-plane {
  position: absolute;
  top: 18%;
  right: 13%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 2.4rem;
  transform: rotate(12deg);
}

.countdown-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 70px);
  color: var(--navy);
  background: var(--gold-soft);
  border-bottom: 1px solid rgba(217, 165, 45, 0.35);
}

.countdown-copy span,
.countdown-copy strong {
  display: block;
}

.countdown-copy span {
  color: #775815;
  font-weight: 800;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 8px;
}

.countdown div {
  min-width: 74px;
  padding: 8px 10px;
  text-align: center;
  border: 1px solid rgba(217, 165, 45, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.countdown strong,
.countdown span {
  display: block;
  line-height: 1.1;
}

.countdown strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.35rem;
}

.countdown span {
  margin-top: 4px;
  color: #775815;
  font-size: 0.84rem;
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.safe-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro-grid,
.split-layout,
.food-layout,
.shirt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.align-center {
  align-items: center;
}

.text-panel,
.navigation-card,
.camp-card {
  padding: clamp(22px, 3vw, 34px);
}

.text-panel p:first-child,
.camp-card p:first-child,
.safe-card p:first-child {
  margin-top: 0;
}

.text-panel p:last-child,
.camp-card p:last-child,
.safe-card p:last-child {
  margin-bottom: 0;
}

.navigation-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(45deg, rgba(18, 52, 92, 0.08) 0 1px, transparent 1px 18px);
}

.navigation-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(49, 167, 221, 0.36);
  border-radius: 50%;
}

.compass {
  display: block;
  width: min(210px, 78%);
  height: auto;
  margin: 0 auto 28px;
  overflow: visible;
  filter: drop-shadow(0 16px 26px rgba(11, 31, 58, 0.1));
}

.compass-ring {
  fill: #fff;
  stroke: var(--navy);
  stroke-width: 4;
}

.compass-inner {
  fill: none;
  stroke: rgba(49, 167, 221, 0.34);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
}

.compass-rose {
  fill: rgba(49, 167, 221, 0.18);
  stroke: rgba(11, 31, 58, 0.28);
  stroke-width: 1;
}

.compass-rose.muted {
  fill: rgba(217, 165, 45, 0.12);
  stroke: rgba(217, 165, 45, 0.28);
}

.compass-needle {
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.compass-needle.north {
  fill: var(--navy);
}

.compass-needle.south {
  fill: var(--gold);
}

.compass-ticks path {
  fill: none;
  stroke: rgba(11, 31, 58, 0.32);
  stroke-width: 2;
  stroke-linecap: round;
}

.compass-point {
  fill: rgba(49, 167, 221, 0.22);
  stroke: rgba(11, 31, 58, 0.18);
  stroke-width: 1;
}

.compass-point.north {
  fill: var(--navy);
}

.compass-point.south {
  fill: var(--gold);
}

.compass-point.east,
.compass-point.west {
  fill: rgba(11, 31, 58, 0.1);
}

.compass-point.small {
  fill: rgba(49, 167, 221, 0.16);
}

.compass-center {
  fill: var(--sky-soft);
  stroke: var(--white);
  stroke-width: 3;
}

.compass text {
  color: var(--navy);
  fill: currentColor;
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.navigation-card ul,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation-card li,
.clean-list li {
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
}

.navigation-card li::before,
.clean-list li::before {
  content: "✓";
  margin-left: -28px;
  margin-right: 10px;
  color: var(--gold);
  font-weight: 900;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 16px;
}

.info-card {
  min-height: 150px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.96));
  overflow: hidden;
}

.info-card span {
  color: var(--muted);
  overflow-wrap: break-word;
}

.copy-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copy-card strong {
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.copy-btn {
  align-self: flex-start;
  min-height: 40px;
  padding: 9px 12px;
  color: var(--navy);
  border: 1px solid rgba(49, 167, 221, 0.4);
  border-radius: var(--radius);
  background: var(--sky-soft);
  cursor: pointer;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.timeline div,
.course-card,
.meal-grid article,
.steps article,
.check-grid article,
.notes-grid p,
.approval-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline div {
  padding: 18px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
}

.timeline p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.course-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.course-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--sky);
  fill: currentColor;
  background: var(--sky-soft);
  border-radius: var(--radius);
}

.course-icon.stroked {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-card span {
  display: block;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.course-card.active,
.course-card:hover,
.course-card:focus-visible {
  border-color: var(--gold);
  background: linear-gradient(135deg, #ffffff, #fff8df);
  box-shadow: 0 16px 34px rgba(10, 31, 58, 0.12);
  transform: translateY(-3px);
  outline: none;
}

.course-card.active .course-icon,
.course-card:hover .course-icon,
.course-card:focus-visible .course-icon {
  color: var(--navy);
  background: var(--gold);
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.meal-grid article {
  min-height: 140px;
  padding: 20px;
}

.meal-grid strong {
  display: block;
  color: var(--sky);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.meal-grid span {
  display: block;
  margin-top: 10px;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 16px;
}

.steps article {
  padding: 20px;
  min-height: 190px;
  overflow: hidden;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
}

.steps a,
.notice a,
.text-panel a,
.accordion-content a {
  color: var(--navy-2);
  font-weight: 800;
  text-decoration-color: rgba(49, 167, 221, 0.55);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.steps a {
  word-break: break-all;
}

.notice {
  max-width: var(--max);
  margin-top: 18px;
  padding: 22px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold-soft);
}

.notice p {
  margin: 6px 0 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.check-grid article {
  position: relative;
  min-height: 150px;
  padding: 48px 18px 18px;
  font-weight: 800;
  overflow: hidden;
}

.check-grid article::before {
  content: "✓";
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.notes-grid p {
  margin: 0;
  padding: 18px;
  color: var(--muted);
}

.radio-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 57, 42, 0.95), rgba(18, 52, 92, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.radio-card::before,
.radio-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.radio-card::before {
  width: 240px;
  height: 240px;
  right: -70px;
  top: -70px;
}

.radio-card::after {
  width: 140px;
  height: 140px;
  right: -20px;
  top: -20px;
}

.whatsapp-mark {
  display: block;
  width: 84px;
  height: 84px;
  padding: 16px;
  color: var(--white);
  fill: currentColor;
  background: #128c4a;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.radio-card strong {
  display: block;
  margin-top: 64px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.8rem;
}

.radio-card p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
}

.approval-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.approval-grid article {
  min-height: 180px;
  padding: 24px;
}

.approval-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
}

.approval-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.camp-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.92)),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.camp-section .section-heading h2 {
  color: var(--white);
}

.camp-card {
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 244, 255, 0.92));
}

.shirt-layout {
  align-items: center;
}

.shirt-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shirt-showcase figure {
  margin: 0;
  min-height: 390px;
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(223, 244, 255, 0.92), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(-45deg, rgba(18, 52, 92, 0.08) 0 1px, transparent 1px 16px);
  box-shadow: 0 16px 34px rgba(10, 31, 58, 0.1);
}

.shirt-showcase img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(11, 31, 58, 0.22));
}

.shirt-showcase figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.small-note {
  padding: 12px 14px;
  color: #70530f;
  background: var(--gold-soft);
  border-radius: var(--radius);
  font-size: 0.98rem;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.accordion-item button {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 18px 56px 18px 20px;
  color: var(--navy);
  border: 0;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.accordion-item button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sky);
  font-size: 1.6rem;
}

.accordion-item.is-open button::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-item.is-open .accordion-content {
  max-height: 520px;
}

.accordion-content p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.safe-section {
  background:
    linear-gradient(135deg, rgba(223, 244, 255, 0.95), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 10% 15%, rgba(217, 165, 45, 0.18), transparent 32%);
}

.safe-card {
  padding: clamp(24px, 4vw, 46px);
  border-color: rgba(49, 167, 221, 0.3);
}

.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.location-grid a,
.contact-card {
  display: block;
  min-height: 132px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-grid a:hover,
.contact-card:hover,
.location-grid a:focus-visible,
.contact-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(10, 31, 58, 0.14);
  outline: none;
}

.location-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
}

.location-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contact-card {
  overflow-wrap: anywhere;
}

.contact-card span {
  color: var(--muted);
}

.site-footer {
  padding: 54px clamp(18px, 4vw, 56px) 24px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-logo {
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}

.footer-logo-event {
  width: 150px;
  max-height: 78px;
}

.footer-logo-region {
  width: 190px;
  max-height: 86px;
  padding: 0;
  background: transparent;
}

.site-footer h2,
.site-footer h3 {
  margin: 14px 0 10px;
  color: var(--white);
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  text-decoration-color: rgba(217, 165, 45, 0.58);
  text-underline-offset: 3px;
}

.developer-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.developer-credit div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.developer-credit a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.developer-credit a:hover {
  color: var(--gold);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(10, 31, 58, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  color: var(--white);
  background: rgba(11, 31, 58, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .quick-info,
  .info-grid,
  .steps,
  .check-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-badge {
    width: min(100%, 360px);
  }
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  .info-card,
  .contact-card,
  .steps article,
  .check-grid article,
  .notes-grid p {
    min-height: auto;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(10, 31, 58, 0.12);
    transform: translateY(-130%);
    transition: transform 0.24s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    padding-top: 48px;
  }

  .quick-info,
  .intro-grid,
  .split-layout,
  .food-layout,
  .shirt-layout,
  .footer-main,
  .notes-grid,
  .location-grid,
  .approval-grid {
    grid-template-columns: 1fr;
  }

  .countdown-band,
  .developer-credit {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-grid,
  .meal-grid,
  .timeline,
  .shirt-showcase {
    grid-template-columns: 1fr;
  }

  .shirt-showcase figure {
    min-height: 330px;
  }

  .shirt-showcase img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .site-header {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quick-info,
  .info-grid,
  .steps,
  .check-grid,
  .contact-grid,
  .countdown {
    grid-template-columns: 1fr;
  }

  .quick-info article,
  .info-card,
  .contact-card,
  .location-grid a,
  .steps article,
  .check-grid article,
  .timeline div,
  .course-card,
  .meal-grid article {
    padding: 16px;
  }

  .info-card strong,
  .quick-info strong,
  .contact-card strong,
  .location-grid strong {
    font-size: 0.98rem;
  }

  .copy-card strong,
  .contact-card strong {
    font-size: 0.92rem;
  }

  .deadline-card {
    padding-right: 78px;
  }

  .course-card {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .course-icon {
    width: 38px;
    height: 38px;
  }

  .hero-badge {
    padding: 18px;
  }

  .event-badge {
    border-width: 5px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .countdown-band {
    padding-left: 16px;
    padding-right: 16px;
  }
}

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