/* ==========================================================================
   Lamma Cricket Club — shared design system
   Brand: island green #004E42 · chimney gold #FCC917
   ========================================================================== */

:root {
  --green:        #006050;   /* brand green — sampled from official LCC logo */
  --green-dark:   #004a3d;
  --green-deep:   #00352c;
  --gold:         #F8B820;   /* brand gold — sampled from official LCC logo */
  --gold-soft:    #ffe08a;
  --ink:          #1f2421;
  --muted:        #5c635f;
  --paper:        #f6f4ec;   /* warm off-white page background */
  --card:         #ffffff;
  --line:         #e4e0d4;
  --line-strong:  #cfc9b8;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.05), 0 2px 8px rgba(0,42,35,.05);
  --shadow-md:    0 6px 24px rgba(0,42,35,.10);
  --radius:       10px;
  --container:    1120px;
  /* Brand display face is "Timeless Bold"; Tinos is the closest free web match,
     with Times New Roman / Georgia as system fallbacks. */
  --serif:        "Timeless", "Tinos", "Times New Roman", Georgia, serif;
  --sans:         "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--green); }

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

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

/* ==========================================================================
   Banner (preserves wsite-header-section / wsite-section-bg-image intent)
   ========================================================================== */
.lcc-banner.wsite-header-section.wsite-section-bg-image {
  position: relative;
  background-size: cover;
  background-position: 50% 55%;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
.lcc-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,42,35,.45) 0%, rgba(0,42,35,.72) 100%);
}
.lcc-banner__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 86px 24px 72px;
}
.lcc-banner__eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 14px;
}
.lcc-banner h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.04;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.lcc-banner__sub {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 18px;
  color: rgba(255,255,255,.92);
}

/* ==========================================================================
   Navigation (dusk-header)
   ========================================================================== */
.dusk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 14px rgba(0,0,0,.18);
}
.dusk-header .nav-wrap > .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 30px;
  flex-wrap: wrap;
  min-height: 64px;
}
.dusk-header .logo a,
.dusk-header .logo .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  letter-spacing: .01em;
}
.dusk-header .logo .brand-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  object-fit: contain;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.dusk-header .logo .brand-text { white-space: nowrap; }

/* Banner logo coin */
.lcc-banner__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}
.lcc-banner__logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  object-fit: contain;
  margin: 0 auto 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.lcc-banner__headline .lcc-banner__logo {
  width: 96px;
  height: 96px;
  margin: 0;
}

/* desktop menu */
.desktop-nav .wsite-menu-default {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.desktop-nav .wsite-menu-item-wrap { position: relative; }
.desktop-nav .wsite-menu-item,
.desktop-nav a.wsite-menu-item {
  display: block;
  padding: 10px 26px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .03em;
  transition: color .15s, background .15s;
}
.desktop-nav .wsite-menu-item:hover,
.desktop-nav .wsite-menu-item-wrap:hover > a .wsite-menu-item,
.desktop-nav .wsite-menu-item-wrap:hover > a.wsite-menu-item {
  color: #fff;
  background: var(--green-dark);
}
.desktop-nav .wsite-menu-item-wrap.active > a.wsite-menu-item,
.desktop-nav a.wsite-menu-item.active {
  color: var(--green-deep);
  background: var(--gold);
  font-weight: 700;
}

/* flyouts */
.desktop-nav .wsite-menu-wrap {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  display: none;
  z-index: 50;
}
.desktop-nav li:hover > .wsite-menu-wrap { display: block; }
.desktop-nav .wsite-menu { list-style: none; margin: 0; padding: 0; }
.desktop-nav .wsite-menu-subitem-wrap { position: relative; }
.desktop-nav .wsite-menu-subitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
}
.desktop-nav .wsite-menu-subitem:hover { background: var(--paper); color: var(--green); }
.desktop-nav .wsite-menu-subitem-wrap.wsite-nav-current > a .wsite-menu-title { color: var(--green); font-weight: 700; }
.desktop-nav .wsite-menu-subitem-wrap .wsite-menu-wrap { top: -9px; left: 100%; }
.desktop-nav .wsite-menu-arrow { color: var(--muted); font-size: 12px; }

/* hamburger */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  position: relative;
  text-decoration: none;
  margin-left: auto;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 20px; height: 2px;
  background: #fff;
  transition: transform .2s, opacity .2s;
}
.hamburger span { top: 20px; }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
body.nav-open .hamburger span { background: transparent; }
body.nav-open .hamburger span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .hamburger span::after  { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mobile-nav {
  display: none;
  background: var(--green-dark);
  border-bottom: 3px solid var(--gold);
}
.mobile-nav .wsite-menu-default,
.mobile-nav .wsite-menu { list-style: none; margin: 0; padding: 0; }
.mobile-nav .wsite-menu-item,
.mobile-nav .wsite-menu-subitem {
  display: block;
  padding: 13px 24px;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 15px;
}
.mobile-nav .wsite-menu-subitem { padding-left: 40px; color: rgba(255,255,255,.85); font-size: 14px; }
.mobile-nav .wsite-menu-wrap { display: none; background: var(--green-deep); }
.mobile-nav .wsite-menu-item-wrap.open > .wsite-menu-wrap,
.mobile-nav .wsite-menu-subitem-wrap.open > .wsite-menu-wrap { display: block; }
.mobile-nav .wsite-menu-arrow { float: right; }
body.nav-open .mobile-nav { display: block; }

/* ==========================================================================
   Layout
   ========================================================================== */
.lcc-main { padding: 56px 0 72px; }
.lcc-section { margin-bottom: 8px; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: rgba(0,78,66,.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--green); line-height: 1.18; }
.page-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 10px;
}
.page-intro {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 8px;
}

/* ==========================================================================
   Stump divider — signature element
   ========================================================================== */
.stump-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 52px 0;
}
.stump-divider::before,
.stump-divider::after {
  content: "";
  height: 2px;
  flex: 1;
  max-width: 320px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.stump-divider::after { background: linear-gradient(90deg, var(--line-strong), transparent); }
.stump-icon {
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
  height: 30px;
}
.stump-icon span {
  width: 5px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  display: block;
}
.stump-icon span:nth-child(1) { height: 22px; }
.stump-icon span:nth-child(2) { height: 30px; }
.stump-icon span:nth-child(3) { height: 22px; }

/* ==========================================================================
   Footer (sponsors)
   ========================================================================== */
.footer-wrap {
  background: var(--green-deep);
  color: rgba(255,255,255,.78);
  padding: 48px 0 36px;
  border-top: 4px solid var(--gold);
}
.footer-sponsors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
}
.footer-sponsors img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}
/* For sponsor logos with lots of built-in padding (e.g. Belly and the Beer),
   give them a larger max-height so their visible mark matches other logos. */
.footer-sponsors img.sponsor-lg { max-height: 110px; }
.sponsor-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 10px 18px;
  min-height: 70px;
}
.sponsor-wordmark .bs-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--green);
  line-height: 1.1;
}
.sponsor-wordmark .bs-sub {
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.footer-meta {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: .02em;
}
.footer-meta .footer-brand {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}
.footer-meta a { color: var(--gold-soft); }

/* ==========================================================================
   Constitution page
   ========================================================================== */
.const-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  align-items: start;
}
.const-nav {
  position: sticky;
  top: 86px;
  align-self: start;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding-right: 6px;
}
.const-nav h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  margin: 0 0 12px;
  font-family: var(--sans);
  font-weight: 700;
}
.const-nav ol { list-style: none; margin: 0; padding: 0; }
.const-nav a {
  display: flex;
  gap: 10px;
  padding: 6px 10px;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  line-height: 1.35;
}
.const-nav a .n { color: var(--gold); font-weight: 700; font-variant-numeric: tabular-nums; }
.const-nav a:hover { color: var(--green); background: rgba(0,78,66,.05); }
.const-nav a.active {
  color: var(--green);
  font-weight: 600;
  border-left-color: var(--gold);
  background: rgba(252,201,23,.12);
}

.const-content { min-width: 0; }

.mission-block {
  border-left: 5px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 8px 0 16px;
}
.mission-block .label {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.mission-block .mission-words {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green);
  line-height: 1.15;
  margin-top: 6px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 15.5px;
  box-shadow: var(--shadow-sm);
}

.article { scroll-margin-top: 90px; padding-top: 8px; }
.article-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin: 32px 0 16px;
}
.article-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  background: var(--green);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 8px;
  flex: none;
}
.article-head h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0;
  font-weight: 600;
}
.article p { margin: 0 0 14px; }
.article ul { margin: 0 0 14px; padding-left: 0; list-style: none; }
.article ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
}
.crosslink {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.ratify-stamp {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
}
.ratify-stamp .seal {
  width: 46px; height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  flex: none;
}
.ratify-stamp .seal .stump-icon span { background: var(--gold); }
.ratify-stamp strong { display: block; font-size: 15px; }
.ratify-stamp span { font-size: 13.5px; color: rgba(255,255,255,.82); }

/* ==========================================================================
   Executive Committee page
   ========================================================================== */
.featured-chair {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 14px;
  padding: 40px 44px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.featured-chair::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 6px; height: 100%;
  background: var(--gold);
}
.featured-chair .avatar {
  width: 86px; height: 86px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
}
.featured-chair .role {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}
.featured-chair .name {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0;
  line-height: 1.15;
  color: #fff;
}
.featured-chair .blurb { margin: 12px 0 0; color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.65; }

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.member-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
  border-top: 3px solid var(--gold);
}
.member-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.member-card .avatar-sm {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}
.member-card .role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 3px;
}
.member-card .name { font-family: var(--serif); font-size: 21px; color: var(--green); margin: 0; }

.note-band {
  background: rgba(0,78,66,.06);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15.5px;
}

.responsibilities-grid {
  display: grid;
  gap: 16px;
}
.resp-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.resp-card-role {
  background: var(--green);
  color: #fff;
  padding: 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.resp-card-role::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 5px; height: 100%;
  background: var(--gold);
}
.resp-card-role-name {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.15;
}
.resp-card-role-tag {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.resp-card-duties { padding: 22px 26px; }
.resp-card-duties ul { margin: 0; padding: 0; list-style: none; }
.resp-card-duties li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  font-size: 15px;
}
.resp-card-duties li:last-child { margin-bottom: 0; }
.resp-card-duties li::before {
  content: "";
  position: absolute;
  left: 2px; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
}

/* ==========================================================================
   Home page
   ========================================================================== */
a.member-card { text-decoration: none; color: inherit; display: block; }
.member-card .desc { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.55; }
.member-card .go {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--green);
}
.member-card .go::after { content: " →"; color: var(--gold); }

.featured-chair .blurb a { color: var(--gold-soft); }

.media-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.media-split .media-text h3 { font-size: clamp(24px, 3.2vw, 32px); margin: 0 0 12px; }
.media-split .media-text p { margin: 0 0 14px; }
.media-split figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.media-split figure img { width: 100%; height: auto; display: block; }
.media-split figure figcaption {
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary { background: var(--gold); color: var(--green-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }

/* League standings cards */
.standings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.standing-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
}
.standing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.standing-card .sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.standing-card .sc-rank {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  color: var(--green);
}
.standing-card .sc-rank sup { font-size: 20px; color: var(--gold); }
.standing-card .sc-pos-label {
  text-align: right;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--muted);
}
.standing-card .sc-season {
  display: inline-block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
}
.standing-card .sc-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--green);
  margin: 16px 0 4px;
}
.standing-card .sc-div {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
}
.standing-card .sc-team {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 12px;
}
.standing-card .sc-team strong { color: var(--green); }
.standing-card .sc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 4px 0 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.standing-card .sc-stats div { text-align: center; }
.standing-card .sc-stats .v {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--green);
  line-height: 1;
}
.standing-card .sc-stats .k {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-top: 4px;
}
.standing-card .sc-note { font-size: 14.5px; color: var(--ink); margin: 0 0 14px; }
.standing-card .sc-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(0,96,80,.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.standing-card .go { margin-top: auto; }
@media (max-width: 820px) {
  .standings-grid { grid-template-columns: 1fr; }
}

.section-head { margin: 8px 0 20px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 6px; }
.section-head p { color: var(--muted); margin: 0; max-width: 720px; }

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

/* ==========================================================================
   For the Record page
   ========================================================================== */
.record-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.members-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr 0.8fr;
  gap: 16px;
  align-items: start;
}
.record-card ul.cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 0;
}
@media (max-width: 820px) {
  .members-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .record-card ul.cols { grid-template-columns: 1fr; }
}
.record-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.record-card h3 { font-size: 21px; margin: 0 0 14px; }
.record-card ul { list-style: none; margin: 0; padding: 0; }
.record-card li {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15.5px;
}
.record-card li:last-child { border-bottom: 0; }
.record-card li .yr {
  color: var(--gold);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 48px;
  flex: none;
}
.record-card li .who { color: var(--ink); }

.honour-img {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.honour-img img { width: 100%; height: auto; border-radius: 6px; }

/* Team photos on league pages */
.team-photo {
  margin: 6px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--card);
}
.team-photo img { display: block; width: 100%; height: auto; }
.team-photo figcaption { padding: 12px 18px; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.team-photo.is-empty { min-height: 220px; display: grid; place-items: center; background: rgba(0,78,66,.05); }
.team-photo.is-empty img, .team-photo.is-empty figcaption { display: none; }
.team-photo.is-empty::after { content: "Team photo coming soon"; color: var(--muted); font-style: italic; font-size: 15px; }
.team-photos-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .team-photos-2 { grid-template-columns: 1fr; } }

.table-wrap { overflow-x: auto; border-radius: 10px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
table.record-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  font-size: 15px;
  min-width: 520px;
}
table.record-table thead th {
  background: var(--green);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
table.record-table tbody td {
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}
table.record-table tbody tr:nth-child(even) { background: rgba(0,78,66,.035); }
table.record-table tbody td:first-child {
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
table.record-table .champ { color: var(--green); font-weight: 700; }
table.record-table .champ::after { content: " 🏆"; }
.muted-cell { color: var(--line-strong); }

/* Roll of Honour — fits without horizontal scroll; names/titles wrap to 2 lines */
table.roll-table {
  table-layout: fixed;
  width: 100%;
  min-width: 0;
  font-size: 14.5px;
}
table.roll-table th,
table.roll-table td {
  padding: 9px 8px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}
table.roll-table thead th { font-size: 11px; letter-spacing: 0; white-space: normal; overflow-wrap: normal; }
table.roll-table th:first-child,
table.roll-table td:first-child { width: 76px; white-space: nowrap; }
/* Give the Events Manager column (9th) a little extra width so long surnames stay on one line */
table.roll-table th:nth-child(9),
table.roll-table td:nth-child(9) { width: 12%; }
/* CL Captain Vikings column (5th) — widen so "Wargaonkar" stays on one line */
table.roll-table th:nth-child(5),
table.roll-table td:nth-child(5) { width: 12%; }

.records-defs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.record-def {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 7px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.record-def .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
}
.record-def .val { font-family: var(--serif); color: var(--green); font-size: 19px; margin-top: 3px; }
.record-def .val small { font-family: var(--sans); color: var(--muted); font-size: 13px; font-weight: 400; }

@media (max-width: 640px) {
  .records-defs { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Lamma Roses — women's team page
   Kit-inspired palette: navy & pink (from the Roses playing shirts)
   ========================================================================== */
.roses-page {
  --rose-navy:      #232d5e;
  --rose-navy-deep: #171e42;
  --rose-pink:      #ef7fb2;
  --rose-pink-soft: #fbdceb;
}

/* Hero statement */
.roses-hero {
  background: linear-gradient(120deg, var(--rose-navy) 0%, var(--rose-navy-deep) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.roses-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--rose-pink), var(--gold));
}
.roses-hero .rh-tagline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.25;
  margin: 0 0 14px;
  color: #fff;
}
.roses-hero .rh-tagline em { color: var(--rose-pink); font-style: normal; }
.roses-hero .rh-sub {
  color: rgba(255,255,255,.82);
  font-size: 16.5px;
  max-width: 640px;
  margin: 0;
}

/* Stat band */
.roses-statband {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.roses-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--rose-pink);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.roses-stat .v {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: var(--rose-navy);
}
.roses-stat .k {
  display: block;
  margin-top: 5px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--muted);
}

/* Editorial story */
.roses-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.roses-editorial h3 {
  font-size: 22px;
  color: var(--rose-navy);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rose-pink);
  display: inline-block;
}
.roses-editorial p { margin: 0; font-size: 16px; }

/* Support pillars — numbered, no gimmicks */
.roses-pillars { display: grid; gap: 10px; }
.roses-pillar {
  display: grid;
  grid-template-columns: 56px 220px 1fr;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.roses-pillar .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--rose-pink);
  background: var(--rose-navy);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 8px;
}
.roses-pillar .t {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--rose-navy);
}
.roses-pillar .d { color: var(--muted); font-size: 15px; }

/* Squad roster */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}
.roster-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.roster-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rose-navy), var(--rose-pink));
}
.roster-card .rc-role {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--muted);
}
.roster-card .rc-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  color: var(--rose-navy);
  margin: 3px 0 0;
}
.roster-card.captain { background: var(--rose-navy); border-color: var(--rose-navy); }
.roster-card.captain .rc-role { color: var(--rose-pink); }
.roster-card.captain .rc-name { color: #fff; }
.roster-card.captain::after { background: var(--gold); }
.roster-card .rc-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--rose-navy-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 12px;
}

/* Gallery — figures remove themselves if the image file is missing */
.roses-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.roses-gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.roses-gallery figure.wide { grid-column: span 2; grid-row: span 2; }
.roses-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.roses-gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 10px;
  font-size: 12.5px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(23,30,66,.85));
}

@media (max-width: 900px) {
  .roses-statband { grid-template-columns: repeat(2, 1fr); }
  .roses-editorial { grid-template-columns: 1fr; gap: 24px; }
  .roses-pillar { grid-template-columns: 44px 1fr; }
  .roses-pillar .d { grid-column: 2; }
  .roses-gallery { grid-template-columns: 1fr 1fr; }
  .roses-gallery figure.wide { grid-column: span 2; grid-row: span 1; }
  .roses-hero { padding: 30px 26px; }
}

/* ==========================================================================
   Order form
   ========================================================================== */
.order-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.order-section-head {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.order-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.form-field .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 13px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,78,66,.1);
  background: #fff;
}
.form-field textarea { resize: vertical; }

.order-items { display: flex; flex-direction: column; gap: 4px; }
.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.order-item-name { font-size: 15px; font-weight: 500; flex: 1; min-width: 0; }
.order-item-price { color: var(--muted); font-size: 13px; font-weight: 400; margin-left: 6px; }
.order-item-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.order-item-controls select,
.order-item-controls input[type="number"] {
  font-family: var(--sans);
  font-size: 14px;
  padding: 7px 10px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.order-item-controls input[type="number"] { width: 72px; text-align: center; }
.order-item-controls select:focus,
.order-item-controls input:focus { border-color: var(--green); }

@media (max-width: 820px) {
  .order-grid-2 { grid-template-columns: 1fr; }
  .order-item { flex-direction: column; align-items: flex-start; }
  .order-item-controls { justify-content: flex-start; }
  .order-form { padding: 22px 20px; }
}

/* ==========================================================================
   Club History page (timeline)
   ========================================================================== */
.history-intro {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  font-size: 18px;
}
.history-intro .kicker {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}

.era { margin: 8px 0; }
.era-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.era-year {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
  background: var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
  flex: none;
}
.era-head h3 { font-size: clamp(24px, 3.4vw, 32px); margin: 0; font-weight: 600; }
.era-logo { height: 68px; width: auto; flex: none; object-fit: contain; }
.era p { margin: 0 0 16px; font-size: 17px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 4px;
}
.photo-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--line);
}
.photo-card figcaption {
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
  flex: 1;
}

.pullquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--green);
  line-height: 1.3;
  border-left: 5px solid var(--gold);
  padding-left: 24px;
  margin: 8px 0;
}

/* Tour destinations */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
  margin: 4px 0 22px;
}
.tour-chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

/* Feature bullets (history highlights, supporter offer) */
.feature-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.feature-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 17px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .const-layout { grid-template-columns: 1fr; }
  .const-nav { display: none; }
  .resp-card { grid-template-columns: 1fr; }
  .resp-card-role::after { width: 100%; height: 5px; top: auto; bottom: 0; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .hamburger { display: block; }
  .dusk-header .nav-wrap > .container { min-height: 58px; }
  .dusk-header .logo .brand-logo { width: 40px; height: 40px; }
  .dusk-header .logo a, .dusk-header .logo .brand { font-size: 18px; }
  .lcc-banner__logo { width: 92px; height: 92px; }
  .featured-chair { flex-direction: column; text-align: center; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  /* Wide tables: stop squeezing columns — keep readable and swipe sideways */
  table.roll-table { table-layout: auto; min-width: 720px; font-size: 13.5px; }
  .table-wrap { -webkit-overflow-scrolling: touch; }
}

@media (max-width: 560px) {
  body { font-size: 16px; overflow-x: hidden; }
  .container { padding: 0 18px; }
  .photo-grid { grid-template-columns: 1fr; }
  .lcc-main { padding: 36px 0 56px; }
  .footer-sponsors { gap: 24px; padding: 22px; }
  .footer-sponsors img { max-height: 52px; }
  .footer-sponsors img.sponsor-lg { max-height: 82px; }

  /* Banner: shorter, tighter on phones */
  .lcc-banner__inner { padding: 48px 18px 42px; }
  .lcc-banner__eyebrow { letter-spacing: .18em; font-size: 11px; }
  .lcc-banner__headline { gap: 14px; }
  .lcc-banner__headline .lcc-banner__logo { width: 72px; height: 72px; }
  .lcc-banner__sub { font-size: 16px; }

  .page-intro { font-size: 17px; }

  /* Era/timeline headers wrap instead of overflowing */
  .era-head { flex-wrap: wrap; gap: 12px; }
  .era-logo { height: 54px; }
  .history-intro { padding: 20px 18px; }
  .pullquote { padding-left: 16px; }

  /* Cards & grids that read better single-column on phones */
  .roses-gallery { grid-template-columns: 1fr; }
  .roses-gallery figure.wide { grid-column: auto; }
  .roses-statband { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr 1fr; }
  .standing-card .sc-stats { gap: 8px; }
}
