:root {
  --navy: #0b2545;
  --deep: #13315c;
  --water: #1d6a96;
  --sand: #f4ede4;
  --sun: #e8a23a;
  --sunset: #d05a3c;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --line: #e5e0d6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
}
h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Header / nav ──────────────────────────────── */
header {
  background: var(--navy);
  color: white;
  border-bottom: 3px solid var(--sun);
  position: sticky; top: 0; z-index: 50;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; display: block; }

/* ── Icons ─────────────────────────────────────── */
.icon {
  width: 18px; height: 18px;
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  fill: none; flex-shrink: 0;
}
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 40px; height: 40px; stroke-width: 1.6; }
.icon-text { display: inline-flex; align-items: center; gap: 8px; }
.icon-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--sand); color: var(--navy);
  font-size: 13px; font-weight: 600;
}
.icon-chip .icon { width: 14px; height: 14px; }
.icon-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 14px; margin-top: 8px; }
.icon-row > span { display: inline-flex; align-items: center; gap: 6px; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sun), var(--sunset));
  color: white; display: grid; place-items: center; margin-bottom: 16px;
}
.feature-icon .icon { width: 28px; height: 28px; stroke-width: 2; }
.stat-card .icon { width: 22px; height: 22px; opacity: 0.8; margin-bottom: 12px; }
.brand-text { font-family: Georgia, serif; font-weight: 700; font-size: 18px; line-height: 1.1; color: white; }
.brand-text small { display: block; font-size: 11px; font-weight: 400; opacity: 0.75; letter-spacing: 0.08em; text-transform: uppercase; }
nav.primary ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav.primary a { font-size: 14px; font-weight: 500; opacity: 0.9; transition: opacity 0.15s; padding-bottom: 2px; }
nav.primary a:hover { opacity: 1; color: var(--sun); }
nav.primary a.active { opacity: 1; color: var(--sun); border-bottom: 2px solid var(--sun); padding-bottom: 0; }
.nav-cta { background: var(--sun); color: var(--navy) !important; padding: 8px 16px; border-radius: 4px; font-weight: 600; }
.nav-cta:hover { background: white !important; }

/* ── Hero (home) ───────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(11,37,69,0.85) 0%, rgba(29,106,150,0.65) 100%),
    radial-gradient(circle at 70% 40%, #2a7ba8 0%, #0b2545 70%);
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--sand);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 80% 60%, 60% 30%, 40% 55%, 20% 25%, 0 50%);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 52px; line-height: 1.05; margin-bottom: 20px; }
.hero h1 em { color: var(--sun); font-style: normal; }
.hero p.lead { font-size: 18px; opacity: 0.9; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Page hero (non-home) ──────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: white;
  padding: 56px 0 64px;
  border-bottom: 3px solid var(--sun);
}
.page-hero .eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--sun); margin-bottom: 12px; }
.page-hero h1 { font-size: 44px; line-height: 1.05; margin-bottom: 12px; }
.page-hero p { font-size: 17px; opacity: 0.85; max-width: 640px; }

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 24px; border-radius: 6px;
  font-weight: 600; font-size: 15px; transition: transform 0.1s, box-shadow 0.15s;
  border: 2px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.btn-primary { background: var(--sun); color: var(--navy); }
.btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover { background: white; color: var(--navy); border-color: white; }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: var(--deep); }

/* ── Next-tournament card (home hero) ──────────── */
.next-card {
  background: white; color: var(--ink); border-radius: 10px;
  padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative; z-index: 2;
}
.next-card .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sunset); margin-bottom: 8px; }
.next-card h3 { font-size: 26px; margin-bottom: 4px; }
.next-card .meta { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
.count-cell { background: var(--sand); border-radius: 6px; padding: 12px 8px; text-align: center; }
.count-cell strong { display: block; font-size: 24px; font-family: Georgia, serif; color: var(--navy); }
.count-cell span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.next-card .details { font-size: 14px; border-top: 1px solid var(--line); padding-top: 16px; }
.next-card .details div { display: flex; justify-content: space-between; padding: 4px 0; }
.next-card .details span:first-child { color: var(--muted); }
.next-card .details span:last-child { font-weight: 600; }

/* ── Sections ──────────────────────────────────── */
section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.section-head h2 { font-size: 36px; }
.section-head p { color: var(--muted); margin-top: 6px; }
.section-head a { color: var(--water); font-weight: 600; font-size: 14px; }
.section-head a:hover { color: var(--sunset); }

/* ── Schedule list ─────────────────────────────── */
.schedule { background: white; }
.schedule-list { background: var(--sand); border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.schedule-row {
  display: grid; grid-template-columns: 80px 1fr auto auto;
  gap: 24px; padding: 20px 24px; align-items: center; border-bottom: 1px solid var(--line);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row.next { background: linear-gradient(90deg, rgba(232,162,58,0.12) 0%, transparent 100%); }
.date-block { text-align: center; }
.date-block strong { display: block; font-family: Georgia, serif; font-size: 22px; color: var(--navy); line-height: 1; }
.date-block span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.lake-name { font-weight: 600; font-size: 16px; }
.lake-meta { font-size: 13px; color: var(--muted); margin-top: 2px; }
.pill { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.pill-next { background: var(--sun); color: var(--navy); }
.pill-open { background: #d4f0d8; color: #1f5d2a; }
.pill-closed { background: var(--line); color: var(--muted); }
.schedule-row a.row-cta { font-size: 13px; font-weight: 600; color: var(--water); }

/* ── Standings / panels ────────────────────────── */
.standings { background: var(--sand); }
.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.panel { background: white; border-radius: 10px; padding: 28px; border: 1px solid var(--line); }
.panel h3 { font-size: 22px; margin-bottom: 18px; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
td.rank { font-family: Georgia, serif; font-weight: 700; color: var(--navy); width: 40px; }
td.points, td.num { text-align: right; font-weight: 600; }
tr:last-child td { border-bottom: none; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--navy); color: white; border-radius: 8px; padding: 24px; }
.stat-card.alt { background: var(--sunset); }
.stat-card.gold { background: var(--sun); color: var(--navy); }
.stat-card .num { font-family: Georgia, serif; font-size: 38px; line-height: 1; }
.stat-card .lbl { font-size: 13px; opacity: 0.85; margin-top: 6px; }

/* ── Prose / content blocks ────────────────────── */
.prose { max-width: 720px; }
.prose h2 { font-size: 30px; margin: 40px 0 14px; }
.prose h3 { font-size: 20px; margin: 28px 0 10px; color: var(--navy); }
.prose p { margin-bottom: 14px; color: #2a2a2a; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose ul li, .prose ol li { margin-bottom: 6px; }
.prose strong { color: var(--navy); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }

/* ── Card grid ─────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.card .role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sunset); margin-bottom: 6px; }
.card .name { font-family: Georgia, serif; font-size: 20px; color: var(--navy); margin-bottom: 4px; }
.card .tenure { font-size: 13px; color: var(--muted); }

/* ── Forms ─────────────────────────────────────── */
form { display: grid; gap: 16px; max-width: 560px; }
.form-row { display: grid; gap: 6px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 13px; font-weight: 600; color: var(--navy); }
input, select, textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
  background: white; color: var(--ink); width: 100%;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--water); outline-offset: 1px; border-color: var(--water); }
textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }
.form-row.check { grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.form-row.check input { width: auto; margin-top: 3px; }
.form-row.check label { font-weight: 400; font-size: 14px; color: var(--ink); }

/* ── FAQ ───────────────────────────────────────── */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  background: white; border: 1px solid var(--line); border-radius: 8px; padding: 16px 20px;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px; color: var(--navy); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--sun); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { margin-bottom: 12px; }
.faq details p { color: #2a2a2a; font-size: 15px; }

/* ── Membership banner ─────────────────────────── */
.membership-banner {
  background: var(--navy); color: white;
  background-image: linear-gradient(135deg, rgba(11,37,69,0.92), rgba(19,49,92,0.92));
}
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.membership-banner h2 { font-size: 40px; margin-bottom: 16px; color: white; }
.membership-banner p { opacity: 0.85; margin-bottom: 24px; max-width: 480px; }
.benefits { list-style: none; }
.benefits li { padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); display: flex; gap: 14px; align-items: start; }
.benefits li:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.benefits .check { width: 24px; height: 24px; border-radius: 50%; background: var(--sun); color: var(--navy); flex-shrink: 0; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.benefits strong { display: block; margin-bottom: 2px; }
.benefits span { font-size: 14px; opacity: 0.75; }

/* ── Results timeline ──────────────────────────── */
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.result-card { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 22px; }
.result-card .header-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.result-card .lake { font-family: Georgia, serif; font-size: 20px; color: var(--navy); }
.result-card .date { font-size: 13px; color: var(--muted); }
.result-card table th, .result-card table td { padding: 6px 0; font-size: 13px; }
.result-card .big-fish { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.result-card .big-fish strong { color: var(--sunset); font-family: Georgia, serif; }

/* ── Footer ────────────────────────────────────── */
footer { background: #06192e; color: rgba(255,255,255,0.65); padding: 48px 0 24px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
footer h4 { color: white; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-family: inherit; }
footer ul { list-style: none; }
footer ul li { padding: 4px 0; }
footer a:hover { color: var(--sun); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 820px) {
  .hero { padding: 56px 0 70px; }
  .hero h1 { font-size: 36px; }
  .hero-grid, .two-col, .membership-grid, .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .card-grid, .results-grid { grid-template-columns: 1fr; }
  nav.primary ul { display: none; }
  .schedule-row { grid-template-columns: 60px 1fr; gap: 12px; padding: 14px; }
  .schedule-row .pill, .schedule-row .row-cta { grid-column: 2; justify-self: start; }
  .section-head h2 { font-size: 28px; }
  .page-hero h1 { font-size: 32px; }
  .form-row.two { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 8px; }
}
