/* Modernist — design-system tokens and component classes. This file is the source of truth for the system's look; retune it here and see readme.md. */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&display=swap');

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201e1d;
  --color-accent: #ec3013;
  --color-accent-2: #e15b47;
  --color-divider: color-mix(in srgb, #201e1d 40%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff2ef;
  --color-accent-200: #ffe0d9;
  --color-accent-300: #ffc4b8;
  --color-accent-400: #ff9783;
  --color-accent-500: #ff563c;
  --color-accent-600: #dd2b0f;
  --color-accent-700: #ae1800;
  --color-accent-800: #7c1405;
  --color-accent-900: #4d170e;

  --color-accent-2-100: #fff2ef;
  --color-accent-2-200: #ffe0da;
  --color-accent-2-300: #ffc4b9;
  --color-accent-2-400: #ff9784;
  --color-accent-2-500: #ef6853;
  --color-accent-2-600: #c94b39;
  --color-accent-2-700: #9e3526;
  --color-accent-2-800: #71261b;
  --color-accent-2-900: #471d16;

  --font-heading: "Archivo", system-ui, sans-serif;
  --font-heading-weight: 800;
  --font-body: "Archivo", system-ui, sans-serif;

  --space-1: 4.0px;
  --space-2: 8.0px;
  --space-3: 12.0px;
  --space-4: 16.0px;
  --space-6: 24.0px;
  --space-8: 32.0px;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }

.grayscale{filter:grayscale(1) contrast(1.08)}

/* ══════════════════════════════════════════════════════════════════════════
   Components — built with the tokens above.
   ══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-size: 15px; line-height: 1.55; font-weight: 400; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; }
h6 { letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
figcaption {
  font-size: 11px; margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* — rules — */
.hr {
  height: 2px; border: 0; margin: var(--space-4) 0;
  background: var(--color-divider);
}

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn svg { display: block; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); border-color: transparent; background: none; }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.btn-icon { width: 36px; height: 36px; padding: 0; }
.btn-block { width: 100%; margin-top: var(--space-2); justify-content: flex-start; text-align: left; }

/* — forms — */
.field { margin-bottom: var(--space-3); }
.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; margin: 6px 12px 6px 0; }
.radio input, .seg-opt input {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.radio .dot {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--color-divider);
}
.radio:hover .dot { border-color: var(--color-accent); }
.radio input:checked + .dot {
  border-color: var(--color-accent); background: var(--color-accent);
  box-shadow: inset 0 0 0 4px var(--color-bg);
}
.radio input:focus-visible + .dot { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* — cards — */
.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md); background: var(--color-surface);
}
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.card-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 17px; line-height: 1.2;
}
.card-body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}
.elev-sm { box-shadow: var(--shadow-sm); }
.elev-md { box-shadow: var(--shadow-md); }
.elev-lg { box-shadow: var(--shadow-lg); }

/* — tags — */
.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-accent-2 { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-100); color: var(--color-neutral-800); }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

/* — navigation — */
.nav a { color: inherit; text-decoration: none; font-size: 14px; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--color-accent); }

/* — tables — */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 2px solid var(--color-divider);
}
.table td {
  padding: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

/* ══════════════════════════════════════════════════════════════════════════
   Fiji PGA brand — overrides the tokens above. See README "Design tokens".
   ══════════════════════════════════════════════════════════════════════ */
:root {
  --color-bg: #ffffff;
  --color-surface: #f2f1ef;
  --color-text: #40332b;
  --color-divider: color-mix(in srgb, #40332b 38%, transparent);

  --color-navy: #272c72;
  --color-sky: #2f9fd6;

  --color-accent: #1a6f9f;
  --color-accent-600: #145a82;
  --color-accent-700: #124a6b;
  --color-accent-800: #0e3a53;
  --color-accent-100: #e9f4fb;
  --color-accent-200: #cbe7f6;

  --color-accent-2: #272c72;
  --color-accent-2-100: #ebecf7;
  --color-accent-2-800: #1b1f52;

  --color-neutral-300: #d7d3d3;
  --color-neutral-700: #6b5c52;
  --color-neutral-800: #52463d;
}

/* ══════════════════════════════════════════════════════════════════════════
   Page layout — header, hero, sections, portal. Not part of the generic
   Modernist system; built for this site on top of its tokens/components.
   ══════════════════════════════════════════════════════════════════════ */

body {
  background-color: var(--color-bg);
  min-height: 100vh;
  position: relative;
}
/* A fixed pseudo-element behind everything, rather than background-attachment:fixed on
   body directly — that combined with backdrop-filter on .site-header/.card/etc. causes a
   real rendering bug in some engines (content silently disappears after scrolling). */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('/assets/img/natadola-aerial.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container { max-width: 1680px; margin: 0 auto; padding: 0 32px; }
.lead { font-size: 17px; line-height: 1.5; }
.kicker { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-accent-700); margin: 0 0 var(--space-2); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-divider);
}
.header-row { display: flex; align-items: center; gap: 20px; padding: 20px 0; }
.brand { display: flex; }
.brand img { height: 56px; width: auto; }
.tagline { flex: 1; text-align: center; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-neutral-700); margin: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.inline-form { display: inline; margin: 0; }
.site-header .nav {
  display: flex; flex-wrap: wrap; gap: 10px 30px;
  padding: 14px 32px; max-width: 1680px; margin: 0 auto;
  border-top: 1px solid var(--color-divider);
}
.site-header .nav a { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 6px 0; }

.section { padding: 48px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }

.hero { padding: 56px 0 40px; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 48px; align-items: center; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--space-4); }
.hero-media { position: relative; height: 420px; overflow: hidden; background: var(--color-neutral-300); border-radius: 16px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; animation: photoZoom 22s ease-in-out infinite alternate; }
.media-badge { position: absolute; left: 0; bottom: 0; background: var(--color-accent); color: var(--color-bg); padding: 8px 14px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 0 12px 0 0; }
@keyframes photoZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

/* — hero entrance: kicker, headline lines, lead, buttons rise in; media fades in — */
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero .rise-item, .hero .rise-line {
  opacity: 0; animation: rise 0.75s cubic-bezier(.2, .7, .2, 1) forwards;
}
.rise-line { display: block; }
.hero-fadein { opacity: 0; animation: fadeIn 1s ease forwards; animation-delay: .3s; }

/* — scroll reveal: JS (site.js) adds .reveal/.reveal-rule then toggles .in — */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-rule { transform: scaleX(0); transform-origin: left; transition: transform 0.7s ease 0.1s; }
.reveal-rule.in { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .hero .rise-item, .hero .rise-line, .hero-fadein { opacity: 1; animation: none; transform: none; }
  .reveal, .reveal-rule { opacity: 1; transform: none; transition: none; }
}

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--color-divider); border-bottom: 2px solid var(--color-divider); }
.stat-cell { padding: 24px; border-left: 1px solid var(--color-divider); }
.stat-cell:first-child { border-left: none; }
.stat-value { font-size: 40px; font-weight: 800; }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-neutral-700); }

.ticker-band { background: var(--color-navy); color: #fff; overflow: hidden; padding: 12px 0; }
.ticker-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track span { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.event-card { border-top: 2px solid var(--color-divider); padding: 16px 0; }
.event-card.is-open { border-top-color: var(--color-accent); }

.rule-list { list-style: none; margin: 0; padding: 0; }
.rule-list li { padding: 12px 0; border-top: 1px solid var(--color-divider); }
.rule-list li:first-child { border-top: none; }
ol.rule-list { counter-reset: step; }
ol.rule-list li { counter-increment: step; }
ol.rule-list li::before { content: counter(step) ". "; font-weight: 800; color: var(--color-accent); }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }

/* — home page: member benefits as bold bullets, marked with a monochrome golf-ball icon — */
.benefit-bullets { list-style: none; margin: 0; padding: 0; }
.benefit-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-weight: 800;
}
.benefit-bullets li::before {
  content: '';
  flex: none; width: 20px; height: 20px; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%231a6f9f'/%3E%3Ccircle cx='8' cy='8' r='1.3' fill='white' fill-opacity='0.6'/%3E%3Ccircle cx='13' cy='7' r='1.3' fill='white' fill-opacity='0.6'/%3E%3Ccircle cx='17' cy='10' r='1.3' fill='white' fill-opacity='0.6'/%3E%3Ccircle cx='9' cy='13' r='1.3' fill='white' fill-opacity='0.6'/%3E%3Ccircle cx='14' cy='14' r='1.3' fill='white' fill-opacity='0.6'/%3E%3Ccircle cx='18' cy='16' r='1.3' fill='white' fill-opacity='0.6'/%3E%3Ccircle cx='11' cy='18' r='1.3' fill='white' fill-opacity='0.6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

.quote-block { border-top: 2px solid var(--color-divider); padding-top: 32px; margin: 0; font-size: clamp(26px, 3vw, 38px); font-weight: 800; font-style: normal; }
.quote-cite { display: block; margin-top: 12px; font-size: 14px; font-weight: 400; color: var(--color-neutral-700); }

.pathway-banner { background: var(--color-navy); color: #fff; padding: 48px 0; }
.pathway-banner h2 { color: #fff; }
.pathway-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }

.sponsors-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--color-divider); border-bottom: 2px solid var(--color-divider); }
.sponsor-cell { padding: 24px; border-left: 1px solid var(--color-divider); display: flex; align-items: center; justify-content: center; color: var(--color-neutral-700); text-align: center; min-height: 72px; }
.sponsor-cell:first-child { border-left: none; }
.sponsor-cell img { max-width: 100%; max-height: 40px; object-fit: contain; }

/* — home page: sponsors marquee — logos drift sideways continuously, like the ticker. — */
.sponsor-marquee { overflow: hidden; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.sponsor-marquee-track { display: flex; align-items: center; gap: 32px; width: max-content; animation: sponsorScroll 28s linear infinite; }
.sponsor-marquee:hover .sponsor-marquee-track { animation-play-state: paused; }
.sponsor-marquee-item {
  display: flex; align-items: center; justify-content: center;
  min-width: 200px; height: 110px; padding: 20px 32px;
  background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 16px; box-shadow: var(--shadow-sm);
}
.sponsor-marquee-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sponsor-marquee-item span { font-size: 16px; font-weight: 800; color: var(--color-neutral-700); text-align: center; }
@keyframes sponsorScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .sponsor-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .sponsor-marquee-track { animation: none; }
}

/* — sponsors page: feature cards with logo, role, blurb, and a link — */
.sponsor-hero { position: relative; height: 260px; overflow: hidden; border-radius: 16px; margin-bottom: 40px; }
.sponsor-hero img { width: 100%; height: 100%; object-fit: cover; }
.sponsor-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(39, 44, 114, 0.82), rgba(39, 44, 114, 0.1));
}
.sponsor-hero-text { position: absolute; left: 32px; bottom: 28px; z-index: 1; max-width: 560px; }
.sponsor-hero-text .kicker { color: #cbe7f6; }
.sponsor-hero-text h1 { color: #fff; margin: 0; }

.sponsor-tier-heading { margin-top: 40px; }
.sponsor-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.sponsor-card {
  display: flex; flex-direction: column;
  background: rgba(242, 241, 239, 0.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.sponsor-card-logo {
  height: 120px; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(255, 255, 255, 0.9);
}
.sponsor-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.sponsor-card-logo .sponsor-fallback { font-size: 18px; font-weight: 800; color: var(--color-neutral-700); text-align: center; }
.sponsor-card-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sponsor-card-tier { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent-700); margin: 0; }
.sponsor-card-name { font-size: 18px; font-weight: 800; margin: 0; }
.sponsor-card-blurb { font-size: 14px; color: var(--color-neutral-800); flex: 1; margin: 0; }
.sponsor-card-link { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-accent); text-decoration: none; margin-top: 4px; }
.sponsor-card-link:hover { color: var(--color-accent-600); }

/* — home page: "Latest news" — deliberately its own softer, rounder shape and a
   distinct tint, so it reads as a different kind of content from the sharper-cornered
   tour/sponsor cards elsewhere. — */
.news-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  display: flex; flex-direction: column;
  background: rgba(233, 244, 251, 0.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.news-card-media { height: 160px; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.news-card-date { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent-700); margin: 0; }
.news-card-title { font-size: 18px; font-weight: 800; margin: 0; }
.news-card-excerpt { font-size: 14px; color: var(--color-neutral-800); margin: 0; flex: 1; }

.site-footer { border-top: 2px solid var(--color-divider); margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding: 48px 0; }
.footer-grid h6 { font-size: 15px; letter-spacing: 0.06em; margin-bottom: var(--space-3); }
.footer-grid p { font-size: 16px; }
.footer-grid a { display: block; color: var(--color-text); text-decoration: none; font-size: 16px; padding: 6px 0; }
.footer-grid a:hover { color: var(--color-accent); }
.footer-bottom p { font-size: 13px; color: var(--color-neutral-700); padding-bottom: 24px; margin: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.dl-rows { list-style: none; margin: 0; padding: 0; }
.dl-rows li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid var(--color-divider); }
.dl-rows li:first-child { border-top: none; }

.aside-panel {
  background: rgba(242, 241, 239, 0.62);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 20px;
}
/* Translucent so the golf-course background shows through, matching .aside-panel/.site-header. */
.card { background: rgba(242, 241, 239, 0.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.form-error { color: var(--color-accent-700); font-size: 13px; font-weight: 600; margin-bottom: var(--space-2); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.portal-header {
  background: rgba(242, 241, 239, 0.62);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--color-divider); padding: 24px 0 0;
}
.portal-header-row { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.portal-id { width: 76px; height: 76px; flex: none; background: var(--color-navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 22px; border-radius: 12px; }
.portal-name { font-size: 34px; margin: 4px 0; }
.portal-meta { color: var(--color-neutral-700); font-size: 14px; margin: 0; }
.portal-tabs { display: flex; gap: 24px; margin-top: 16px; flex-wrap: wrap; }
.portal-tabs a { padding: 10px 0; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text); text-decoration: none; border-bottom: 3px solid transparent; }
.portal-tabs a[aria-current='page'] { color: var(--color-accent); border-bottom-color: var(--color-accent); }

.login-links { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 13px; }

@media (max-width: 900px) {
  .hero-grid, .benefits-grid, .two-col, .pathway-grid { grid-template-columns: 1fr; }
  .stat-row, .cards-3, .sponsors-strip, .news-cards, .sponsor-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .tagline { display: none; }
}
