:root {
  --green: #0f2d26;
  --green-2: #173f35;
  --cream: #f2e7cf;
  --paper: #e9dcc0;
  --ink: #171815;
  --muted: #6e6d63;
  --line: rgba(15,45,38,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(242,231,207,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.nav { display: flex; gap: 26px; font-size: .95rem; }
.nav a { border-bottom: 1px solid transparent; }
.nav a:hover { border-color: var(--green); }
.menu-toggle { display: none; border: 0; background: none; font-size: 1.5rem; }

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  padding: 70px clamp(20px, 6vw, 92px) 80px;
  overflow: hidden;
}
.eyebrow { letter-spacing: .18em; font-size: .78rem; font-weight: 800; color: var(--green-2); margin: 0 0 12px; }
h1,h2,h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.02; margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 7.2rem); max-width: 8ch; margin-bottom: 28px; }
h1 span { color: var(--green-2); }
h2 { font-size: clamp(2.4rem, 5vw, 5rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.45rem, 2vw, 2.1rem); margin-bottom: 8px; }
.lead { max-width: 630px; font-size: 1.2rem; color: #424239; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { border: 1px solid var(--green); padding: 12px 18px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: var(--cream); }
.button.ghost { background: transparent; color: var(--green); }

.hero-art { min-height: 540px; position: relative; display: grid; place-items: center; }
.hero-logo-top { margin-bottom: 22px; }
.hero-logo-top img { width: min(230px, 52vw); border-radius: 50%; box-shadow: 0 18px 45px rgba(15,45,38,.18); }
.hero-logo { width: min(430px, 80%); position: relative; z-index: 2; border-radius: 50%; box-shadow: 0 28px 70px rgba(15,45,38,.22); }
.record-wrap { position: absolute; inset: 0; display: grid; place-items: center; opacity: .38; transform: translate(18%, 4%); }
.record { width: min(620px, 90%); aspect-ratio: 1; border-radius: 50%; background: repeating-radial-gradient(circle at center, #0f2d26 0 5px, #173f35 6px 7px, #0d251f 8px 10px); animation: spin 30s linear infinite; box-shadow: inset 0 0 0 16px #0c211c; }
.label { width: 28%; aspect-ratio: 1; border-radius: 50%; background: var(--paper); display: grid; place-items: center; margin: 36% auto; font-family: "Playfair Display"; font-size: clamp(1.6rem,4vw,3rem); color: var(--green); }
@keyframes spin { to { transform: rotate(360deg); } }

.marquee { overflow: hidden; border-block: 1px solid var(--green); background: var(--green); color: var(--cream); white-space: nowrap; }
.marquee div { width: max-content; padding: 12px 0; font-weight: 800; letter-spacing: .16em; animation: marquee 22s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 90px clamp(20px, 6vw, 92px); border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.prose { max-width: 760px; font-size: 1.18rem; }
.prose p:first-child { margin-top: 0; }

.membership { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; background: #eadfc7; }
.membership-copy { max-width: 760px; }
.price-card { background: var(--green); color: var(--cream); border-radius: 28px; padding: clamp(30px, 5vw, 58px); min-height: 330px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; box-shadow: 18px 18px 0 rgba(15,45,38,.12); transform: rotate(1deg); }
.price-label { font-size: .78rem; letter-spacing: .18em; font-weight: 800; opacity: .75; }
.price { font-family: "Playfair Display", Georgia, serif; font-size: clamp(4.8rem, 9vw, 8rem); line-height: .9; margin-top: 20px; }
.price small { font-size: .33em; }
.price-period { font-weight: 700; font-size: 1.1rem; margin-top: 8px; }
.price-divider { width: 100%; height: 1px; background: rgba(242,231,207,.28); margin: 30px 0 18px; }
.price-card > span:last-child { font-size: .78rem; letter-spacing: .14em; opacity: .75; }

.board-section { background: var(--cream); }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.board-card { border: 1px solid var(--green); border-radius: 22px; padding: 30px; min-height: 180px; background: rgba(233,220,192,.45); display: flex; flex-direction: column; justify-content: flex-end; }
.board-role { font-size: .76rem; letter-spacing: .16em; font-weight: 800; color: var(--green-2); margin-bottom: 12px; }
.board-card h3 { margin-bottom: 0; }

.event-card { margin: 0 clamp(20px, 4vw, 58px) 40px; border: 1px solid var(--green); border-radius: 28px; background: var(--paper); }
.event-topline { display: flex; justify-content: space-between; font-weight: 800; letter-spacing: .08em; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 34px; }
.status-dot { color: var(--green-2); }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-bottom: 28px; }
.muted { color: var(--muted); }

.album-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.album-cover { aspect-ratio: 1; background: var(--green); padding: 7%; box-shadow: 18px 18px 0 rgba(15,45,38,.12); transform: rotate(-2deg); }
.album-inner { height: 100%; border: 1px solid var(--cream); display: grid; place-items: center; text-align: center; color: var(--cream); font-family: "Playfair Display"; font-size: clamp(2.5rem, 6vw, 6.5rem); line-height: .9; background: radial-gradient(circle at center, transparent 0 8%, rgba(242,231,207,.08) 9% 10%, transparent 11% 20%, rgba(242,231,207,.08) 21% 22%, transparent 23%); }
.quote { font-family: "Playfair Display"; font-size: clamp(1.8rem, 3vw, 3rem); border-left: 4px solid var(--green); padding-left: 20px; margin: 30px 0; }

.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 32px; }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.gallery-card { min-height: 310px; border-radius: 20px; overflow: hidden; position: relative; display: flex; align-items: end; padding: 18px; font-weight: 800; letter-spacing: .08em; color: var(--cream); }
.gallery-card span { position: relative; z-index: 2; }
.record-photo { background: repeating-radial-gradient(circle at 35% 45%, #152d27 0 5px, #24483e 6px 8px, #11241f 9px 11px); }
.smoke-photo { background: radial-gradient(circle at 50% 75%, rgba(242,231,207,.35), transparent 28%), linear-gradient(135deg, #1d493d, #0c201b); }
.logo-photo { background: #d8c8a8; display: grid; place-items: center; padding: 32px; }
.logo-photo img { width: 80%; border-radius: 50%; }

.manifesto { background: var(--green); color: var(--cream); }
.manifesto .eyebrow { color: #cfbea0; }
.rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rules article { border-top: 1px solid rgba(242,231,207,.35); padding-top: 18px; }
.rules span { font-size: .8rem; opacity: .7; }
.rules h3 { margin-top: 10px; }

footer { padding: 34px clamp(20px, 6vw, 92px); display: flex; align-items: center; gap: 16px; background: #0c211c; color: var(--cream); }
footer img { width: 56px; border-radius: 50%; }
footer div { display: grid; }
footer span { opacity: .6; font-size: .85rem; }
footer a { margin-left: auto; opacity: .8; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 30px); background: #111; color: white; padding: 12px 18px; border-radius: 999px; opacity: 0; pointer-events: none; transition: .25s ease; z-index: 50; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 73px; left: 16px; right: 16px; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .brand span { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-art { min-height: 390px; }
  .split, .album-section, .membership { grid-template-columns: 1fr; }
  .price-card { transform: none; min-height: 280px; }
  .event-grid, .rules, .board-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  
.board-section { background: var(--cream); }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.board-card { border: 1px solid var(--green); border-radius: 22px; padding: 30px; min-height: 180px; background: rgba(233,220,192,.45); display: flex; flex-direction: column; justify-content: flex-end; }
.board-role { font-size: .76rem; letter-spacing: .16em; font-weight: 800; color: var(--green-2); margin-bottom: 12px; }
.board-card h3 { margin-bottom: 0; }

.event-card { margin-left: 14px; margin-right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

.album-inner small {
  display: inline-block;
  margin-top: .55rem;
  font-size: .44em;
  letter-spacing: .12em;
  line-height: 1.2;
}


.smoker-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
  background: #eadfc7;
}
.smoker-badge {
  aspect-ratio: 1;
  max-width: 430px;
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  align-content: center;
  position: relative;
  box-shadow: 18px 18px 0 rgba(15,45,38,.12);
}
.smoker-badge::before, .smoker-badge::after {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(242,231,207,.45);
}
.smoker-badge::after { inset: 13%; opacity: .45; }
.smoker-initial {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(6rem, 16vw, 12rem);
  line-height: .75;
  position: relative;
  z-index: 1;
}
.smoker-pipe {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.12em;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.smoker-badge small {
  margin-top: 22px;
  letter-spacing: .16em;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.smoker-copy { max-width: 800px; }
.smoker-copy > p:not(.eyebrow):not(.muted):not(.source-note) { font-size: 1.08rem; }
.smoker-quote { margin-bottom: 18px; }
.smoker-note { font-size: .92rem; max-width: 720px; }
.source-note { font-size: .78rem; letter-spacing: .04em; color: var(--muted); margin-top: 18px; }

@media (max-width: 900px) {
  .smoker-section { grid-template-columns: 1fr; gap: 46px; }
  .smoker-badge { max-width: 330px; margin-inline: auto; }
}
