:root {
  --black: #f9f9f9;
  --dark: #f0f0f0;
  --card: #ffffff;
  --border: #e0e0e0;
  --green: #2d8f2d;
  --green-dim: rgba(45,143,45,0.08);
  --text: #1a1a1a;
  --muted: #666666;
  --faint: #d5d5d5;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 100;
}

/* ── Ambient glow ── */
.glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}
.glow-1 {
  width: 500px; height: 500px;
  background: rgba(45,143,45,0.06);
  top: -100px; left: -100px;
  animation: drift1 18s ease-in-out infinite alternate;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(100,180,220,0.05);
  bottom: -80px; right: -80px;
  animation: drift2 22s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(60px, 80px); } }
@keyframes drift2 { to { transform: translate(-50px, -60px); } }

/* ── Top bar ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
  z-index: 10;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90vw;
}

nav a {
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.3);
}

nav a:hover,
nav a.active {
  color: var(--green);
  border-color: var(--green);
  background: rgba(45, 143, 45, 0.08);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  text-align: center;
  gap: 0;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 10vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
}

.title em {
  font-style: italic;
  color: var(--green);
}

.title em.title-dark {
  color: var(--text);
}

.hero-image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeUp 0.9s 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}

.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(16px, 3vw, 22px);
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* ── Divider ── */
.h-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--faint), transparent);
  margin: 48px auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

/* ── Coming Soon badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(180,255,180,0.3);
  border-radius: 100px;
  padding: 16px 32px;
  font-size: clamp(13px, 2vw, 16px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(180,255,180,0.05);
  box-shadow: 0 0 40px rgba(180,255,180,0.08), inset 0 0 20px rgba(180,255,180,0.03);
  opacity: 0;
  animation: fadeUp 0.8s 0.75s forwards;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--green); }
  50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 4px var(--green); }
}

/* ── Cards row ── */
.cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}

.card {
  background: var(--dark);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s;
}
.card:hover { background: var(--card); }

.card-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.3;
}

.card-value {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.card-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.card-link:hover { border-color: var(--green); }

/* ── Page content ── */
.page-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.page-body {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
  padding: 0 20px;
}

.page-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.page-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 40px 0 20px;
  line-height: 1.3;
}

.page-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 30px 0 16px;
}

.page-body ul, .page-body ol {
  margin-left: 20px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.page-body li {
  margin-bottom: 12px;
}

.page-body a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.page-body a:hover {
  border-color: var(--green);
}

/* ── Videos Grid ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.4;
}

.videos-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.videos-footer p {
  font-size: 14px;
  color: var(--muted);
}

.videos-footer a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.videos-footer a:hover {
  border-color: var(--green);
}

/* ── Events list ── */
.occasions {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.occasions-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.occasions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.occasion-pill {
  border: 1px solid var(--faint);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #888;
  transition: border-color 0.3s, color 0.3s;
  cursor: default;
}
.occasion-pill:hover { border-color: var(--green); color: #d8d8d8; }

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.footer-domain {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}

/* Bottom accent bar */
.bottombar {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  footer { justify-content: center; text-align: center; }
}
