:root {
  --ink: #0d1b2a;
  --ink-soft: #3a4a5c;
  --paper: #ffffff;
  --paper-alt: #f4f6f8;
  --rink-blue: #1b3a6b;
  --rink-blue-dark: #12294d;
  --puck-red: #c8102e;
  --line: #e2e6ea;
  --footer-bg: #0d1b2a;
  --footer-text: #cfd6dd;
  --footer-note: #93a1ae;
  --radius: 10px;
  --max-width: 1040px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #eef1f4;
    --ink-soft: #b7c0ca;
    --paper: #0f1720;
    --paper-alt: #16202b;
    --line: #263241;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.6em; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--rink-blue); }

@media (prefers-color-scheme: dark) {
  a { color: #7fa8e0; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
}

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

.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--ink); }

.nav-cta {
  background: var(--rink-blue);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--rink-blue) 0%, var(--rink-blue-dark) 100%);
  color: #fff;
  padding: 88px 0 76px;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #cfe0f7;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 20ch;
  color: #fff;
}

.hero-sub {
  max-width: 60ch;
  color: #dbe6f5;
  font-size: 1.08rem;
}

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

/* Hero with a photo */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.hero-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  display: block;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid img {
    order: -1;
  }
}

/* Video */
.video-wrap {
  margin-top: 28px;
}

.video-wrap video {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}

.video-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--puck-red);
  color: #fff !important;
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-large {
  font-size: 1.1rem;
  padding: 16px 32px;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--paper-alt);
}

.highlight {
  border-left: 3px solid var(--puck-red);
  padding-left: 16px;
  font-weight: 600;
  color: var(--ink);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Extras list */
.extras-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.extras-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
}

.extras-list li::before {
  content: "🏒";
  position: absolute;
  left: 0;
}

/* Photos */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background: var(--paper-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.photo-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}

/* About with photo */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-top: 8px;
}

.about-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Info / travel stats */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.info-stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.info-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.info-stat .stat-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Event cards on the homepage */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.event-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-decoration: none;
  display: block;
  transition: transform 0.15s ease;
}

.event-card:hover { transform: translateY(-2px); }

.event-card .event-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--puck-red);
  margin-bottom: 8px;
}

.event-card h3 {
  color: var(--ink);
  margin-bottom: 8px;
}

.event-card p { margin-bottom: 0; }

/* Secondary hero style for the WM page */
.hero-wm {
  background: linear-gradient(180deg, #7a1620 0%, #4a0d14 100%);
}

/* Footer legal links */
.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: underline;
  margin: 0 8px;
  font-size: 0.85rem;
}

/* Legal pages */
.legal-content h2 { margin-top: 1.6em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { color: var(--ink-soft); padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }

/* Contact */
.contact-section {
  text-align: center;
}

.contact-section p {
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 32px 0;
  text-align: center;
}

.site-footer p { margin: 0 0 6px; color: var(--footer-text); }
.footer-note { font-size: 0.85rem; color: var(--footer-note); }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .main-nav { gap: 12px 16px; font-size: 0.9rem; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 52px 0; }
}
