
:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --black-3: #151515;
  --white: #fff;
  --paper: #f5f5f3;
  --ink: #131313;
  --muted: #bcbcbc;
  --muted-dark: #575757;
  --line: rgba(255,255,255,.13);
  --line-dark: rgba(0,0,0,.10);
  --radius: 22px;
  --container: 1180px;
  --shadow: 0 18px 42px rgba(0,0,0,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #f4f4f4;
  background: #050505;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 9999; padding: .75rem 1rem; background: #fff; color: #000; border-radius: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,5,5,.90); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; font-weight: 850; letter-spacing: -.01em; white-space: nowrap; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a { color: #d7d7d7; font-weight: 720; padding: .72rem .82rem; border-radius: 999px; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a.active { background: #fff; color: #000; outline: none; }
.menu-toggle { display: none; color: #fff; background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: .65rem .9rem; font-weight: 800; }

.hero {
  background:
    radial-gradient(circle at 84% 48%, rgba(255,255,255,.055), transparent 28%),
    linear-gradient(180deg, #080808 0%, #030303 100%);
  overflow: hidden;
  padding: clamp(2.8rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5.2rem);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 .8rem; text-transform: uppercase; letter-spacing: .16em; font-size: .84rem; font-weight: 850; color: #d9d9d9; }
.hero h1, .page-hero h1 { margin: 0; font-size: clamp(2.8rem, 6.5vw, 5.2rem); line-height: .96; letter-spacing: -.045em; }
.hero .lead { font-size: clamp(1.08rem, 2vw, 1.28rem); max-width: 45rem; color: #dedede; margin: 1.35rem 0 0; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 1.15rem; border-radius: 999px; font-weight: 830; border: 1px solid transparent; transition: transform .18s ease, border-color .18s ease, background .18s ease; cursor: pointer; }
.button:hover { transform: translateY(-1px); }
.button-light { background: #fff; color: #050505; }
.button-dark { background: #111; color: #fff; border-color: rgba(255,255,255,.16); }
.button-outline { background: transparent; color: inherit; border-color: currentColor; opacity: .9; }
.button-small { min-height: 42px; padding-inline: .95rem; font-size: .94rem; }

/* Approved V5 hero emblem treatment */
.hero-emblem-stage { min-height: 560px; position: relative; display: flex; align-items: center; justify-content: center; background: none; border: 0; box-shadow: none; overflow: visible; isolation: isolate; }
.hero-dart-rings {
  position: absolute; width: min(118%, 690px); aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-46%, -50%); border-radius: 50%;
  background:
    linear-gradient(rgba(255,255,255,.085), rgba(255,255,255,.085)) center/1px 88% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.085), rgba(255,255,255,.085)) center/88% 1px no-repeat,
    radial-gradient(circle at center,
      transparent 0 24.6%, rgba(255,255,255,.14) 24.8% 25%, transparent 25.2% 37.6%,
      rgba(255,255,255,.11) 37.8% 38%, transparent 38.2% 50.6%,
      rgba(255,255,255,.09) 50.8% 51%, transparent 51.2% 63.6%,
      rgba(255,255,255,.075) 63.8% 64%, transparent 64.2% 76.5%,
      rgba(255,255,255,.06) 76.7% 76.9%, transparent 77.1%);
  opacity: 1; z-index: 0; pointer-events: none;
}
.hero-dart-rings::after { content: ""; position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle at center, rgba(255,255,255,.065), transparent 64%); filter: blur(20px); }
.hero-emblem { position: relative; z-index: 1; width: min(112%, 620px); height: auto; object-fit: contain; background: transparent; border: 0; box-shadow: none; filter: none; transform: translate(4%, 1%); }

.section { padding: clamp(3.2rem, 6vw, 5.5rem) 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: #080808; color: #f5f5f5; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-white { background: #fff; color: #111; }
.section-head { max-width: 50rem; margin-bottom: 1.7rem; }
.section-head h2 { margin: 0 0 .55rem; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1; letter-spacing: -.035em; }
.section-head p { margin: 0; color: var(--muted-dark); font-size: 1.06rem; }
.section-dark .section-head p, .section-dark .muted { color: var(--muted); }
.section-light .eyebrow, .section-white .eyebrow { color: #4d4d4d; }

.facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2rem; }
.fact { padding: 1.25rem; border: 1px solid var(--line-dark); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.05); }
.fact strong { display: block; font-size: 1.55rem; line-height: 1.1; margin-bottom: .35rem; }
.fact span { color: var(--muted-dark); }

.cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.card { border-radius: var(--radius); padding: 1.45rem; border: 1px solid var(--line-dark); background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.card-dark { background: #101010; border-color: var(--line); color: #fff; box-shadow: var(--shadow); }
.card h3 { margin: .1rem 0 .45rem; font-size: 1.5rem; }
.card p { margin: .4rem 0; color: #5c5c5c; }
.card-dark p { color: #c6c6c6; }
.card-meta { display: flex; gap: .55rem; flex-wrap: wrap; margin: .9rem 0 0; }
.pill { display: inline-flex; align-items: center; border: 1px solid currentColor; border-radius: 999px; padding: .36rem .65rem; font-size: .9rem; font-weight: 750; opacity: .76; }
.pill:hover, .pill:focus-visible { opacity: 1; background: rgba(255,255,255,.06); outline: none; }
.link-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .8rem; }
.link-tile { padding: 1.1rem; border-radius: 18px; border: 1px solid var(--line); background: #101010; }
.link-tile strong { display: block; margin-bottom: .2rem; }
.link-tile span { color: #bdbdbd; font-size: .94rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.3rem, 4vw, 3.5rem); align-items: center; }
.venue-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.venue-photo.wide { aspect-ratio: 16/9; }
.photo-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1rem; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; border-radius: 22px; }
.photo-credit { font-size: .86rem; color: #666; margin-top: .7rem; }

.page-hero { padding: clamp(3rem, 5vw, 5rem) 0 2.6rem; background: #070707; }
.page-hero p { max-width: 48rem; color: #c9c9c9; font-size: 1.08rem; }
.breadcrumb { color: #aaa; font-size: .9rem; margin-bottom: .8rem; }
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }

.team-block { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.2rem; align-items: start; padding: 1.4rem 0; }
.team-number { font-size: clamp(4rem, 10vw, 7rem); line-height: .8; font-weight: 900; color: #dadada; letter-spacing: -.06em; }
.team-content h2 { margin: 0 0 .35rem; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.team-content .league { font-weight: 820; font-size: 1.15rem; }
.team-links { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.2rem; }

.contact-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.contact-card { border: 1px solid var(--line-dark); border-radius: 20px; padding: 1.3rem; background: #fff; }
.contact-card h3 { margin: 0 0 .3rem; }
.contact-card .role { color: #666; margin-bottom: .8rem; }
.contact-card a { text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }

.address-card { border: 1px solid var(--line-dark); border-radius: 22px; padding: 1.3rem; background: #fff; color: #111; }
.address-card h3 { margin-top: 0; }
.address-card address { font-style: normal; }
.address-card a { text-decoration: underline; text-underline-offset: 3px; }

.calendar-shell { border: 1px solid var(--line-dark); background: #fff; border-radius: 24px; overflow: hidden; min-height: 620px; }
.calendar-consent { min-height: 620px; display: grid; place-items: center; padding: 2rem; text-align: center; }
.calendar-consent-inner { max-width: 44rem; }
.calendar-consent h2 { margin-top: 0; font-size: clamp(2rem, 4vw, 3rem); }
.calendar-consent p { color: #595959; }
.calendar-frame { width: 100%; height: 720px; border: 0; display: block; background: #fff; }
.schedule-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.schedule-item { border: 1px solid var(--line-dark); border-radius: 18px; padding: 1rem 1.15rem; background: #fff; }
.schedule-item strong { display: block; font-size: 1.15rem; }
.schedule-item span { color: #666; }

.legal { max-width: 860px; }
.legal h2 { margin-top: 2.2rem; font-size: 1.45rem; }
.legal h3 { margin-top: 1.4rem; }
.legal p, .legal li { color: #444; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.notice { padding: 1rem 1.15rem; background: #fff; border: 1px solid var(--line-dark); border-radius: 16px; }

.footer { background: #050505; border-top: 1px solid var(--line); padding: 1.6rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.footer-brand { font-weight: 850; }
.footer .small { color: #aaa; }
.footer-links { display: flex; flex-wrap: wrap; gap: .9rem; color: #c9c9c9; font-size: .94rem; }

@media (max-width: 1050px) {
  .main-nav a { padding-inline: .68rem; font-size: .95rem; }
  .hero-emblem { width: min(100%, 520px); transform: none; }
  .hero-dart-rings { width: min(108%, 590px); transform: translate(-50%, -50%); }
  .link-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; top: calc(100% + .5rem); left: 1rem; right: 1rem; flex-direction: column; align-items: stretch; background: #0b0b0b; border: 1px solid var(--line); border-radius: 20px; padding: .7rem; }
  .main-nav.open { display: flex; }
  .main-nav a { border-radius: 13px; }
  .hero-grid, .split, .team-block { grid-template-columns: 1fr; }
  .hero-emblem-stage { min-height: 390px; margin-top: .6rem; }
  .hero-emblem { width: min(100%, 430px); }
  .hero-dart-rings { width: min(100%, 500px); }
  .facts, .contact-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { min-height: 260px; }
  .team-number { display: none; }
}
@media (max-width: 640px) {
  .brand span { display: none; }
  .hero { padding-top: 2.5rem; }
  .cards, .link-grid, .schedule-strip { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-emblem-stage { min-height: 330px; }
  .calendar-shell, .calendar-consent { min-height: 540px; }
  .calendar-frame { height: 650px; }
  .footer-grid { grid-template-columns: 1fr; }
}

.calendar-view-info { margin-top: .85rem; color: #666; }
@media (max-width: 760px) {
  .calendar-frame { height: 680px; }
}

.team-photo-figure {
  margin: 1.5rem 0 0;
}
.team-photo {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.team-photo-figure figcaption {
  margin-top: .65rem;
  color: #c9c9c9;
  font-size: .95rem;
}
.section-light .team-photo-figure figcaption {
  color: #555;
}
