/* Dublin Druids — visual system derived from the supplied logo */
:root {
  --green-950: #003d20;
  --green-900: #005d2d;
  --green-800: #007d34;
  --green-700: #00bf6f;
  --green-500: #78e391;
  --cream: #e6f0be;
  --cream-soft: #f2f5d9;
  --black: #050806;
  --white: #fbfcf4;
  --line: rgba(230, 240, 190, .24);
  --shadow: 0 24px 70px rgba(0, 0, 0, .24);
  --display: "Uncial Antiqua", Georgia, serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--green-800);
  font-family: var(--body);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  min-height: 36px;
  padding: 7px 5vw;
  background: var(--black);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.topbar a { color: var(--green-500); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  padding: 12px 5vw;
  background: rgba(0, 61, 32, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .05em;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}
.site-header nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}
.site-header nav a { opacity: .82; transition: opacity .2s; }
.site-header nav a:hover { opacity: 1; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  border: 1px solid transparent;
  transition: transform .2s, background .2s, color .2s;
}
.nav-cta, .button-primary {
  color: var(--green-950);
  background: var(--cream);
}
.nav-cta:hover, .button-primary:hover { transform: translateY(-2px); background: white; }

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 114px));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: 80px 8vw;
  background:
    radial-gradient(circle at 80% 48%, rgba(0,191,111,.42), transparent 28%),
    radial-gradient(circle at 15% 30%, rgba(120,227,145,.13), transparent 30%),
    var(--green-800);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(30deg, transparent 48%, var(--green-500) 49%, transparent 51%),
    linear-gradient(-30deg, transparent 48%, var(--green-500) 49%, transparent 51%);
  background-size: 90px 90px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero-copy, .hero-art { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--green-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
}
.eyebrow.light { color: var(--green-700); }
h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
h1 { max-width: 780px; font-size: clamp(54px, 7vw, 100px); }
h2 { font-size: clamp(44px, 5vw, 76px); }
h1 em, h2 em { color: var(--green-500); font-style: normal; }
.hero-text {
  max-width: 570px;
  margin: 30px 0;
  color: rgba(242,245,217,.86);
  font-size: 17px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-ghost {
  border-color: rgba(230,240,190,.55);
  color: var(--cream);
}
.button-ghost:hover { transform: translateY(-2px); background: rgba(230,240,190,.08); }
.hero-note {
  margin-top: 24px;
  color: rgba(230,240,190,.72);
  font-size: 12px;
  font-weight: 600;
}
.dot {
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 5px rgba(0,191,111,.13);
}
.hero-art {
  display: grid;
  place-items: center;
}
.hero-art img {
  width: min(520px, 43vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 8px solid var(--green-500);
}
.hero-badge {
  position: absolute;
  right: 1%;
  bottom: 4%;
  width: 138px;
  height: 138px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--cream);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .1em;
  transform: rotate(8deg);
}
.hero-badge strong { color: var(--green-500); font-size: 14px; }

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  background: var(--cream);
  color: var(--green-950);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .09em;
}
.marquee div {
  display: inline-block;
  animation: drift 24s linear infinite;
}
.marquee span { margin: 0 24px; color: var(--green-700); }
@keyframes drift { to { transform: translateX(-35%); } }

.section { padding: 120px 8vw; }
.section-label {
  margin-bottom: 54px;
  color: var(--green-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}
.intro {
  background: var(--cream);
  color: var(--green-950);
}
.intro h2 em { color: var(--green-800); }
.intro-grid, .club-grid, .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.intro-copy { max-width: 620px; }
.lead {
  margin-top: 0;
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}
.intro-copy > p:not(.lead) { color: rgba(0,61,32,.72); }
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid rgba(0,61,32,.2);
  border-bottom: 1px solid rgba(0,61,32,.2);
}
.facts div { padding: 20px 15px 20px 0; }
.facts div + div { padding-left: 15px; border-left: 1px solid rgba(0,61,32,.2); }
.facts strong, .facts span { display: block; }
.facts strong { font-size: 18px; }
.facts span { color: rgba(0,61,32,.6); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.dark {
  background:
    radial-gradient(circle at 90% 15%, rgba(0,191,111,.2), transparent 25%),
    var(--green-950);
}
.club-copy > p { color: rgba(230,240,190,.76); max-width: 620px; }
.goal-list { margin-top: 42px; border-top: 1px solid var(--line); }
.goal-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.goal-list span { color: var(--green-700); font-size: 11px; font-weight: 800; }
.goal-list strong { font-size: 14px; }

.join {
  background:
    radial-gradient(circle at 10% 20%, rgba(0,191,111,.18), transparent 24%),
    var(--green-800);
}
.join-card {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--black);
  box-shadow: var(--shadow);
}
.join-art { min-height: 580px; overflow: hidden; }
.join-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.join-copy { padding: 75px; align-self: center; }
.join-copy h2 { margin-bottom: 25px; }
.join-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(230,240,190,.72); }
.join-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 28px 0 34px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
}
.microcopy { margin: 10px 0 0; color: rgba(230,240,190,.42) !important; font-size: 10px; }

.faq { background: var(--cream); color: var(--green-950); }
.faq h2 em { color: var(--green-800); }
.questions details { border-top: 1px solid rgba(0,61,32,.25); padding: 20px 0; }
.questions details:last-child { border-bottom: 1px solid rgba(0,61,32,.25); }
.questions summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
}
.questions summary::-webkit-details-marker { display: none; }
.questions summary::after { content: "+"; font-size: 20px; font-weight: 400; }
.questions details[open] summary::after { content: "−"; }
.questions p { max-width: 650px; margin-bottom: 0; color: rgba(0,61,32,.65); }

footer {
  padding: 45px 8vw 28px;
  background: var(--black);
  color: var(--cream);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: var(--display); font-weight: 400; }
.footer-brand span { color: rgba(230,240,190,.55); font-size: 11px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
  font-size: 12px;
  font-weight: 700;
}
.footer-links a:hover { color: var(--green-500); }
footer > p { padding-top: 22px; border-top: 1px solid var(--line); color: rgba(230,240,190,.38); font-size: 10px; }

@media (max-width: 850px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding: 70px 6vw 50px; }
  .hero-art { margin-top: 45px; }
  .hero-art img { width: min(430px, 82vw); }
  .hero-badge { right: 8%; }
  .section { padding: 85px 6vw; }
  .intro-grid, .club-grid, .faq-grid, .join-card { grid-template-columns: 1fr; gap: 42px; }
  .join-art { min-height: auto; aspect-ratio: 1 / 1; max-height: 560px; }
  .join-copy { padding: 55px 7vw; }
}
@media (max-width: 560px) {
  .topbar { font-size: 9px; }
  .topbar span { max-width: 70%; }
  .brand span { display: none; }
  .nav-cta { min-height: 40px; padding: 0 12px; font-size: 10px; }
  h1 { font-size: clamp(46px, 14vw, 70px); }
  h2 { font-size: 44px; }
  .hero-text { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .facts { grid-template-columns: 1fr; }
  .facts div, .facts div + div { padding: 16px 0; border-left: 0; border-bottom: 1px solid rgba(0,61,32,.2); }
  .facts div:last-child { border-bottom: 0; }
  .join-points { grid-template-columns: 1fr; }
  .hero-badge { width: 108px; height: 108px; font-size: 8px; }
  .hero-badge strong { font-size: 11px; }
}
