:root {
  --orange: #f58a1f;
  --orange-dark: #d96900;
  --green: #15823b;
  --green-dark: #0d5f2a;
  --blue: #214c88;
  --ink: #17202a;
  --muted: #5f6b76;
  --surface: #ffffff;
  --soft: #f4f6f7;
  --line: #dde3e7;
  --max: 1180px;
  --shadow: 0 14px 40px rgba(23, 32, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: #fff;
  padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 58px; height: 70px; object-fit: contain; }
.brand-copy strong { display: block; font-size: 1.1rem; line-height: 1.15; }
.brand-copy span { display: block; color: var(--muted); font-size: .78rem; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: .55rem .75rem;
  cursor: pointer;
}
.main-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .25rem; }
.main-nav a {
  text-decoration: none;
  font-weight: 650;
  font-size: .92rem;
  padding: .55rem .65rem;
  border-radius: 7px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: #fff2e5; color: var(--orange-dark); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(8,31,19,.93), rgba(17,94,46,.8)),
    radial-gradient(circle at 78% 22%, rgba(245,138,31,.9), transparent 35%);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -35% 38%;
  height: 470px;
  border-radius: 50%;
  background: rgba(245,138,31,.2);
  transform: rotate(-8deg);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 650px;
  padding: 5.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 3rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 800;
  color: #ffd2a4;
}
.hero h1 { margin: .65rem 0 1rem; font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.045em; }
.hero p { max-width: 720px; font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: rgba(255,255,255,.9); }
.hero-logo {
  width: min(360px, 78vw);
  justify-self: center;
  filter: drop-shadow(0 26px 32px rgba(0,0,0,.25));
}
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .72rem 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--orange); color: #111; }
.button-primary:hover { background: #ff9b38; }
.button-secondary { color: #fff; border-color: rgba(255,255,255,.65); }
.button-secondary:hover { background: rgba(255,255,255,.1); }
.button-dark { background: var(--green-dark); color: #fff; }
.button-light { background: #fff; color: var(--green-dark); }

.section { padding: 5rem 1.25rem; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--green-dark); color: #fff; }
.container { max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.section-head h2, .page-hero h1 { margin: 0 0 .7rem; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.035em; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.06rem; }
.section-dark .section-head p { color: rgba(255,255,255,.78); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.45rem;
  box-shadow: 0 6px 20px rgba(23,32,42,.06);
}
.card h3 { margin: 0 0 .55rem; font-size: 1.24rem; }
.card p { margin: 0 0 1rem; color: var(--muted); }
.card .label { color: var(--orange-dark); font-size: .75rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.icon-tile {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #fff2e5;
  border-radius: 10px;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.placeholder {
  border: 2px dashed #bcc6cc;
  background: linear-gradient(135deg, #fbfcfc, #f0f3f4);
  color: var(--muted);
}
.placeholder strong { color: var(--ink); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.feature-panel {
  border-radius: 18px;
  background: linear-gradient(145deg, #fff0df, #fff);
  border: 1px solid #ffd4aa;
  padding: 2rem;
}
.feature-panel ul { padding-left: 1.2rem; }
.feature-panel li + li { margin-top: .6rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.stat { padding: 1.2rem; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; }
.stat strong { display: block; font-size: 1.7rem; }
.stat span { color: rgba(255,255,255,.72); font-size: .9rem; }

.page-hero { background: var(--green-dark); color: #fff; padding: 4rem 1.25rem; }
.page-hero .container { max-width: 900px; }
.page-hero p { max-width: 740px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.content { max-width: 900px; margin: 0 auto; }
.content h2 { margin-top: 2.3rem; }
.notice { border-left: 5px solid var(--orange); background: #fff6ec; padding: 1rem 1.2rem; border-radius: 0 8px 8px 0; }
.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: .55rem 0; border-bottom: 1px solid var(--line); }

.site-footer { background: #0b2114; color: #fff; padding: 3.5rem 1.25rem 1.2rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.footer-logo { width: 90px; margin-bottom: .9rem; }
.site-footer a { color: #fff; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.75); }
.site-footer ul { list-style: none; padding: 0; }
.footer-bottom { max-width: var(--max); margin: 2rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6); font-size: .85rem; }

[data-feature][hidden] { display: none !important; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: .8rem 1rem 1.2rem; flex-direction: column; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .75rem; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 4rem; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .actions { justify-content: center; }
  .hero-logo { width: 240px; order: -1; }
  .grid, .grid-2, .split, .stats, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .brand-copy span { display: none; }
  .brand img { width: 45px; height: 56px; }
  .grid, .grid-2, .split, .stats, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1rem; }
  .hero-inner { padding: 3rem 1rem 4rem; }
  .hero h1 { font-size: 3rem; }
  .actions .button { width: 100%; }
}

/* Club updates */
.update-meta {
  margin-bottom: .55rem;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.update-card .button, .resource-card .button { margin-top: .25rem; }
.link-status {
  display: inline-flex;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 750;
}
.section-actions { margin-top: 1.5rem; }


/* Forms, tables and media */
.table-wrap { overflow-x: auto; margin: 1rem 0 1.25rem; border: 1px solid var(--line); border-radius: 12px; }
.club-table { width: 100%; border-collapse: collapse; min-width: 760px; background: #fff; }
.club-table th, .club-table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.club-table th { background: var(--green-dark); color: #fff; }
.club-table tbody tr:nth-child(even) { background: #f8faf9; }
.video-feature { margin-bottom: 2.4rem; }
.video-feature video { width: 100%; aspect-ratio: 16 / 9; background: #0b2114; border-radius: 16px; box-shadow: var(--shadow); }
.media-caption { color: var(--muted); font-size: .9rem; }
.update-image { width: calc(100% + 2.9rem); max-width: none; height: 220px; object-fit: cover; margin: -1.45rem -1.45rem 1.2rem; border-radius: 14px 14px 0 0; }
.update-report { margin: .8rem 0; border-top: 1px solid var(--line); padding-top: .7rem; }
.update-report summary { cursor: pointer; font-weight: 800; color: var(--green-dark); }
.update-report p { margin-top: .7rem; }
.modal { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,20,12,.76); }
.modal-panel { position: relative; width: min(760px, 100%); max-height: 92vh; overflow-y: auto; background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.modal-panel h2 { margin: .35rem 0 .5rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.modal-close { position: absolute; right: .8rem; top: .65rem; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--soft); font-size: 1.8rem; cursor: pointer; }
.modal-open { overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-span-2 { grid-column: 1 / -1; }
.interest-form label, .interest-form legend { font-weight: 750; }
.interest-form input, .interest-form select, .interest-form textarea { display: block; width: 100%; margin-top: .35rem; padding: .75rem .8rem; border: 1px solid #aeb8be; border-radius: 8px; background: #fff; }
.interest-form fieldset { border: 1px solid var(--line); border-radius: 10px; padding: 1rem; }
.choice-row { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: .6rem; }
.choice-row label { display: flex; align-items: center; gap: .45rem; font-weight: 650; }
.choice-row input, .consent-check input { width: auto; margin: 0; }
.conditional-fields { margin: 1.2rem 0; padding: 1rem; border-radius: 12px; background: #f6faf7; border: 1px solid #cfe2d5; }
.conditional-fields h3 { margin-top: 0; }
.form-help { color: var(--muted); font-size: .9rem; }
.consent-check { display: flex; gap: .65rem; align-items: flex-start; margin: 1.2rem 0; font-weight: 600 !important; }
.form-status { min-height: 1.5rem; margin-bottom: .7rem; font-weight: 750; }
.form-status.success { color: var(--green-dark); }
.form-status.error { color: #a52121; }
.honeypot { position: absolute !important; left: -9999px !important; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } .form-span-2 { grid-column: auto; } .modal-panel { padding: 1.35rem; } .update-image { height: 190px; } }


/* Club history */
.history-section { margin-top: 2.7rem; }
.history-heading { margin-bottom: 1.5rem; }
.history-heading h2 { margin: .35rem 0 .75rem; }
.history-lead { font-size: 1.12rem; line-height: 1.75; color: var(--muted); max-width: 780px; }
.history-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; margin: 1.5rem 0 2rem; }
.history-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.55rem; box-shadow: 0 8px 24px rgba(11,33,20,.06); overflow: hidden; }
.history-card h3 { margin: .1rem 0 .8rem; color: var(--green-dark); }
.history-card p:last-child { margin-bottom: 0; }
.history-number { position: absolute; right: 1rem; top: .65rem; font-size: 2.8rem; font-weight: 900; line-height: 1; color: rgba(15,72,43,.08); }
.history-milestones { margin: 2rem 0; padding: 1.6rem; border-radius: 18px; background: linear-gradient(145deg, var(--green-dark), #163d29); color: #fff; }
.history-milestone-heading h3 { margin: .35rem 0 1.25rem; color: #fff; }
.history-milestone-heading .eyebrow { color: #ffd7ad; }
.timeline { display: grid; gap: .8rem; }
.timeline-item { display: grid; grid-template-columns: 92px 1fr; gap: 1rem; align-items: start; padding: 1rem; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.06); }
.timeline-year { font-size: 1.5rem; font-weight: 900; color: #ffb86b; }
.timeline-copy strong { display: block; margin-bottom: .15rem; color: #fff; }
.timeline-copy span { color: rgba(255,255,255,.78); }
.history-growth { margin-top: 2rem; }
.history-card-accent { border-top: 4px solid var(--orange); }
.history-closing { margin: 1.8rem 0 2.7rem; padding: 1.35rem 1.5rem; border-radius: 14px; background: #fff6ec; border-left: 5px solid var(--orange); }
.history-closing strong { display: block; margin-bottom: .35rem; color: var(--green-dark); font-size: 1.05rem; }
.history-closing p { margin: 0; }
@media (max-width: 700px) {
  .history-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: .25rem; }
  .history-milestones { padding: 1.2rem; }
}

/* Player pathway */
.player-pathway-section {
  margin: 3rem 0;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  border: 1px solid rgba(244, 116, 32, 0.22);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}
.player-pathway-copy {
  max-width: 760px;
  margin-bottom: 1.25rem;
}
.player-pathway-copy h2 {
  margin-top: 0.25rem;
}
.player-pathway-figure {
  margin: 0;
  text-align: center;
}
.player-pathway-figure img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}
.player-pathway-figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: var(--muted, #5f6368);
}
@media (max-width: 640px) {
  .player-pathway-section {
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 16px;
  }
}

/* Club update action buttons */
.update-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .8rem; }
.update-actions .button { margin-top: 0; }


/* Five-item navigation */
.main-nav { flex-wrap: nowrap; align-items: center; }
.nav-group { position: relative; }
.nav-group > summary { list-style: none; cursor: pointer; font-weight: 700; font-size: .92rem; padding: .62rem .72rem; border-radius: 8px; white-space: nowrap; }
.nav-group > summary::-webkit-details-marker { display:none; }
.nav-group > summary::after { content: "▾"; margin-left: .35rem; font-size: .72rem; }
.nav-group > summary:hover, .nav-group[open] > summary { background:#fff2e5; color:var(--orange-dark); }
.nav-dropdown { position:absolute; top:calc(100% + .45rem); right:0; z-index:1100; width:240px; padding:.45rem; border:1px solid var(--line); border-radius:12px; background:#fff; box-shadow:var(--shadow); }
.nav-dropdown a { display:block; padding:.7rem .75rem; }
.nav-dropdown a:hover, .nav-dropdown a[aria-current="page"] { background:#fff2e5; color:var(--orange-dark); }
.anchor-offset { position:relative; top:-110px; }
@media (min-width:901px) { .nav-group:not([open]):hover .nav-dropdown { display:block; } .nav-group:not([open]) .nav-dropdown { display:none; } }
@media (max-width:900px) { .main-nav { align-items:stretch; } .nav-group > summary { padding:.75rem; } .nav-dropdown { position:static; width:auto; margin:.2rem .5rem .5rem 1rem; box-shadow:none; border-left:3px solid var(--orange); border-top:0; border-right:0; border-bottom:0; border-radius:0; } }

/* History book and medium-length history */
.history-story { display:grid; gap:1rem; margin:1.5rem 0 2.5rem; }
.history-story p { margin:0; padding:1rem 1.1rem; border-left:4px solid var(--orange); background:#fffaf5; border-radius:0 10px 10px 0; }
.history-book { display:grid; grid-template-columns:minmax(220px, 330px) 1fr; gap:2rem; align-items:center; margin:2.5rem 0; padding:2rem; border-radius:20px; background:linear-gradient(145deg,#fff3e7,#fff); border:1px solid #ffd2a7; box-shadow:0 14px 36px rgba(23,32,42,.08); }
.history-book-cover { margin:0; }
.history-book-cover img { width:100%; border-radius:12px; box-shadow:0 16px 34px rgba(0,0,0,.18); }
.history-book-copy h3 { margin:.3rem 0 .8rem; font-size:clamp(1.6rem,3vw,2.4rem); color:var(--green-dark); }
.book-purchase-grid { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; margin:1.2rem 0; }
.book-purchase-grid div { padding:1rem; border-radius:10px; background:#fff; border:1px solid var(--line); }
.book-purchase-grid strong, .book-purchase-grid span { display:block; }
.book-purchase-grid span { color:var(--muted); margin-top:.25rem; }
.book-postal { padding:.9rem 1rem; background:#fff6ec; border-radius:10px; }

/* Membership and lotto */
.membership-fees { margin-top:2.3rem; }
.fees-table td:nth-child(2), .fees-table td:nth-child(3) { white-space:nowrap; }
.check-list { padding-left:1.2rem; }
.check-list li + li, .signup-steps li + li { margin-top:.55rem; }
.signup-steps { padding-left:1.35rem; }
.lotto-impact { margin-top:1.4rem; }
@media (max-width:700px) { .history-book { grid-template-columns:1fr; padding:1.25rem; } .history-book-cover img { max-width:330px; margin:0 auto; } .book-purchase-grid { grid-template-columns:1fr; } }


/* v1.8 imagery, committee and student placements */
.home-team-feature { margin:0; overflow:hidden; border-radius:18px; background:#fff; box-shadow:var(--shadow); border:1px solid var(--line); }
.home-team-feature img { display:block; width:100%; aspect-ratio:16 / 10; object-fit:cover; }
.home-team-feature figcaption { padding:.8rem 1rem; color:var(--muted); font-size:.92rem; }
.committee-section { margin:2.7rem 0; }
.committee-table-wrap { max-width:850px; }
.committee-table { min-width:580px; }
.committee-table td:first-child { width:55%; font-weight:700; }
.student-placement { margin:3rem 0 2.5rem; padding:clamp(1.3rem,3vw,2.2rem); border:1px solid #ffd1a4; border-radius:20px; background:linear-gradient(150deg,#fff7ef 0%,#fff 55%,#f4faf6 100%); box-shadow:0 14px 34px rgba(0,0,0,.06); }
.student-placement-head { max-width:850px; }
.student-placement-head h2 { margin:.35rem 0 .75rem; }
.placement-highlight { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin:1.5rem 0 2rem; }
.placement-highlight div { padding:1.1rem; border-radius:14px; background:var(--green-dark); color:#fff; }
.placement-highlight strong,.placement-highlight span { display:block; }
.placement-highlight strong { color:#ffbc78; margin-bottom:.35rem; }
.placement-highlight span { color:rgba(255,255,255,.86); }
.placement-role-grid { margin-bottom:1.6rem; }
.placement-role-grid h4 { margin:.1rem 0 .55rem; color:var(--green-dark); font-size:1.05rem; }
.placement-terms { margin:1.4rem 0; padding:1.2rem 1.3rem; border-radius:14px; background:#fff; border-left:5px solid var(--orange); }
.placement-terms h3 { margin-top:0; }
.development-vision { margin:1rem 0 2rem; }
.development-vision img { display:block; width:100%; height:auto; max-height:700px; object-fit:cover; border-radius:18px; border:1px solid var(--line); box-shadow:var(--shadow); }
.development-vision figcaption { margin-top:.7rem; color:var(--muted); font-size:.92rem; }
@media (max-width:760px) { .placement-highlight { grid-template-columns:1fr; } .student-placement { border-radius:16px; } }

/* v1.9 club gear, lotto and volunteer image */
.gear-showcase { display:grid; grid-template-columns:minmax(260px, 360px) 1fr; gap:1.5rem; align-items:stretch; }
.gear-showcase-image { margin:0; overflow:hidden; border-radius:18px; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); }
.gear-showcase-image img { width:100%; height:100%; min-height:420px; object-fit:cover; }
.gear-showcase-image figcaption { padding:.85rem 1rem; color:var(--muted); font-size:.92rem; }
.gear-card-stack { display:grid; gap:1.25rem; }
.hero-card { min-height: 200px; display:flex; flex-direction:column; justify-content:space-between; }
.lotto-results-table td, .lotto-results-table th { min-width: 150px; }
.lotto-results-table td:first-child, .lotto-results-table th:first-child { min-width: 120px; }
.volunteer-scene { margin:1.3rem 0 1.8rem; }
.volunteer-scene img { display:block; width:100%; border-radius:18px; border:1px solid var(--line); box-shadow:var(--shadow); }
.volunteer-scene figcaption { margin-top:.7rem; color:var(--muted); font-size:.92rem; }
@media (max-width: 820px) { .gear-showcase { grid-template-columns:1fr; } .gear-showcase-image img { min-height:300px; } }


/* v1.10 compact homepage updates */
.update-card-compact .update-image { height: 190px; }
.update-card-compact p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.update-card-compact .button { margin-top: auto; }
.update-card-compact { display:flex; flex-direction:column; }

/* v1.11 image, lotto and single-supplier refinements */
.club-intro-image { margin:0 0 2rem; overflow:hidden; border-radius:18px; border:1px solid var(--line); background:#fff; box-shadow:var(--shadow); }
.club-intro-image img { display:block; width:100%; aspect-ratio:16 / 9; object-fit:cover; }
.club-intro-image figcaption { padding:.75rem 1rem; color:var(--muted); font-size:.92rem; }
.join-poster-section { padding-top:2rem; padding-bottom:2rem; background:var(--soft); }
.join-poster { width:min(100%,760px); margin:0 auto; overflow:hidden; border-radius:18px; border:1px solid var(--line); box-shadow:var(--shadow); background:#fff; }
.join-poster img { display:block; width:100%; height:auto; }
.lotto-intro { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(280px,.8fr); gap:2rem; align-items:center; margin-bottom:1.5rem; }
.lotto-intro .section-head { margin-bottom:0; }
.lotto-hero-image { margin:0; overflow:hidden; border-radius:18px; border:1px solid var(--line); box-shadow:var(--shadow); background:#0e1421; }
.lotto-hero-image img { display:block; width:100%; aspect-ratio:16 / 10; object-fit:cover; }
.gear-showcase-single { grid-template-columns:minmax(260px,360px) minmax(0,1fr); max-width:940px; margin:0 auto; }
.gear-showcase-single .gear-card-stack { display:flex; }
.gear-showcase-single .hero-card { width:100%; min-height:100%; justify-content:center; padding:clamp(1.5rem,4vw,3rem); }
.update-card-compact .update-image { aspect-ratio:16 / 9; height:auto; object-fit:cover; }
@media (max-width:820px) {
  .lotto-intro, .gear-showcase-single { grid-template-columns:1fr; }
  .lotto-hero-image { max-width:620px; }
}


/* v1.12 development updates */
.home-development-vision { margin: 1rem 0 1.4rem; }
.home-development-vision img { display:block; width:100%; border-radius:18px; border:1px solid rgba(255,255,255,.18); box-shadow:var(--shadow); }

/* v1.13 form privacy and comments field */
.interest-form textarea { resize: vertical; min-height: 7rem; }
.additional-info-field { display: block; margin-top: 1rem; }
.optional-label { font-weight: 500; color: var(--muted); }
.privacy-content h2 { margin-top: 2rem; }
.privacy-content ul { padding-left: 1.25rem; }
.privacy-content li { margin-bottom: .45rem; }

/* v1.14 safeguarding feature */
.safeguarding-feature-image { margin:0 0 2rem; }
.safeguarding-feature-image img { display:block; width:100%; border-radius:18px; border:1px solid var(--line); box-shadow:var(--shadow); }
.safeguarding-feature-image figcaption { margin-top:.7rem; color:var(--muted); font-size:.92rem; }
