:root {
  --bg: #0a0d0a;
  --bg-2: #0e1310;
  --bg-3: #131a14;
  --ink: #f4ecd8;
  --ink-soft: #cdc6b4;
  --ink-muted: #8a8472;
  --gold: #c9a35f;
  --gold-2: #e8c878;
  --gold-deep: #8a6a30;
  --line: rgba(201, 163, 95, 0.22);
  --line-soft: rgba(244, 236, 216, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,163,95,0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(201,163,95,0.04), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

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

/* Typography */
.serif { font-family: 'Cormorant Garamond', 'Times New Roman', serif; }
.gold { color: var(--gold); }
.gold-grad {
  background: linear-gradient(180deg, #efd28a 0%, #c9a35f 55%, #8a6a30 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 0.6em;
  vertical-align: middle;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider .glyph {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Sections */
section {
  position: relative;
  padding: 120px 32px;
}
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-narrow { max-width: 880px; margin: 0 auto; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
}

p { line-height: 1.65; color: var(--ink-soft); }

a { color: inherit; }

/* HERO */
.hero {
  max-width: 1200px;
  margin: 60px auto;
  min-height: 72vh;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,13,10,0.92) 0%, rgba(10,13,10,0.72) 45%, rgba(10,13,10,0.18) 100%),
    linear-gradient(180deg, rgba(10,13,10,0.35) 0%, transparent 30%, transparent 65%, rgba(10,13,10,0.7) 100%);
  pointer-events: none;
}
.hero__copy {
  padding: 52px 64px 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
}
.hero__brand .mark {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.hero__brand .name {
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__brand .role {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 9.5px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.hero__title {
  font-size: clamp(40px, 4.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-top: 32px;
  font-weight: 500;
}
.hero__title .line { display: block; }
.hero__title .l1 { color: var(--ink); }
.hero__title .l2 { font-weight: 500; }

.hero__sub {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.4;
}
.hero__cta { margin-top: 28px; align-self: flex-start; }

.hero__meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
  align-items: end;
  border-top: 1px solid rgba(201,163,95,0.35);
  padding-top: 24px;
}
.hero__meta .cell .k {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 9.5px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.hero__meta .cell .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--ink);
}
.hero__meta .cell .v.gold { color: var(--gold); }

/* INTRO / Manifesto */
.intro {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.intro__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.intro__lead em { color: var(--gold); font-style: italic; }
.intro__body {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.intro__body p {
  font-size: 17px;
  color: var(--ink-soft);
}
.intro__pull {
  border-left: 1px solid var(--gold);
  padding: 4px 0 4px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}
.intro__pull strong { color: var(--gold); font-weight: 500; }

/* TYPES */
.types {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.types::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(201,163,95,0.06), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(201,163,95,0.04), transparent 60%);
  pointer-events: none;
}
.types__head { text-align: center; max-width: 720px; margin: 0 auto 80px; position: relative; }
.types__head h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin-top: 24px;
}
.types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
}
.type-card {
  background: var(--bg-2);
  padding: 44px 32px;
  position: relative;
  transition: background 0.4s ease;
}
.type-card:hover { background: var(--bg-3); }
.type-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.18em;
}
.type-card h3 {
  font-size: 30px;
  margin-top: 16px;
  color: var(--ink);
}
.type-card p {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* DISCOVER */
.discover {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.discover__head { text-align: center; margin-bottom: 80px; }
.discover__head h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin-top: 24px;
}
.discover__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.discover-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
}
.discover-row:last-child { border-bottom: 1px solid var(--line-soft); }
.discover-row .idx {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.discover-row .text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.3;
  font-weight: 400;
}
.discover-row .text strong { color: var(--gold); font-weight: 500; }

/* EVENT card */
.event {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.event::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 50% -10%, rgba(201,163,95,0.10), transparent 60%);
  pointer-events: none;
}
.event__card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(201,163,95,0.05), transparent 60%),
    var(--bg);
  border: 1px solid var(--line);
  padding: 64px 56px;
  max-width: 1040px;
  margin: 0 auto;
}
.event__card::before, .event__card::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
}
.event__card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.event__card::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.event__head { text-align: center; }
.event__head h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  margin-top: 20px;
}
.event__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 40px 0;
}
.event__cell { text-align: center; }
.event__cell .icon {
  width: 36px; height: 36px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.event__cell .k {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 9.5px;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.event__cell .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.15;
}
.event__cell .v.big { font-size: 32px; color: var(--gold); }

.event__cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #efd28a 0%, #c9a35f 60%, #a18345 100%);
  color: #0a0d0a;
  padding: 20px 44px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--gold-2);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 18px 40px -18px rgba(201,163,95,0.6);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -18px rgba(201,163,95,0.8);
}
.btn-gold .arrow { font-size: 16px; letter-spacing: 0; transition: transform 0.3s ease; }
.btn-gold:hover .arrow { transform: translateX(4px); }

.event__note {
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  letter-spacing: 0.05em;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  max-width: 560px;
  line-height: 1.45;
}
.event__note .star { color: var(--gold); }

/* ABOUT */
.about {
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about__portrait--photo { padding: 0; background: #000; }
.about__portrait--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.92) contrast(1.02);
}
.about__portrait--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(10,13,10,0.55) 100%),
    radial-gradient(80% 60% at 50% 0%, rgba(201,163,95,0.10), transparent 70%);
  pointer-events: none;
}
.about__portrait--photo .ornament,
.about__portrait--photo .ornament-2 { z-index: 2; }

.about__portrait {
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(201,163,95,0.06) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #1a1f1b, #0e1310);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.about__portrait::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.about__portrait .placeholder {
  font-family: 'Inter', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  position: relative;
  z-index: 2;
}
.about__portrait .placeholder span { display: block; color: var(--gold); margin-bottom: 6px; }
.about__portrait .ornament {
  position: absolute;
  top: 28px; left: 28px;
  width: 32px; height: 32px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.about__portrait .ornament-2 {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 32px; height: 32px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.about__copy h2 {
  font-size: clamp(40px, 4.6vw, 64px);
  margin-top: 24px;
}
.about__copy h2 .italic { font-style: italic; color: var(--gold); font-weight: 400; }
.about__copy p {
  margin-top: 24px;
  font-size: 17px;
  color: var(--ink-soft);
}
.about__creds {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cred {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}
.cred:last-child { border-bottom: 1px solid var(--line-soft); }
.cred .k {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.04em;
  width: 110px;
  flex-shrink: 0;
}
.cred .v { font-size: 15px; color: var(--ink); }

/* CAUSE */
.cause {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cause h2 {
  font-size: clamp(34px, 3.8vw, 48px);
  font-style: italic;
  font-weight: 400;
  max-width: 800px;
  margin: 24px auto 0;
  line-height: 1.25;
  color: var(--ink);
}
.cause h2 .gold { font-style: normal; }
.cause p {
  margin-top: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  color: var(--ink-soft);
}

/* FOOTER */
footer {
  background: var(--bg);
  padding: 64px 32px 40px;
  border-top: 1px solid var(--line);
}
.footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__brand .gold { font-style: italic; }
.footer__meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Responsive */
@media (max-width: 1180px) {
  .hero__copy { padding: 64px 48px 56px; }
  .hero__title { font-size: clamp(40px, 4vw, 60px); }
  .event__card { padding: 56px 40px; }
  .about__grid { gap: 56px; }
}

@media (max-width: 1264px) {
  .hero { margin: 60px 32px; }
}

@media (max-width: 960px) {
  section { padding: 88px 28px; }
  .hero {
    min-height: auto;
    margin: 40px 20px;
  }
  .hero__copy {
    padding: 40px 28px 40px;
    max-width: 100%;
    justify-content: flex-start;
    gap: 0;
    text-align: center;
    align-items: center;
  }
  .hero__brand {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero__brand > div {
    text-align: center;
  }
  .hero__image img { object-position: 75% center; }
  .hero__image::after {
    background: rgba(10,13,10,0.80) !important;
  }
  .hero__title {
    font-size: clamp(36px, 8vw, 56px);
    margin-top: 28px;
    line-height: 1.05;
  }
  .hero__title .line { white-space: normal; }
  .hero__sub {
    font-size: 21px;
    margin-top: 20px;
    text-align: center;
    max-width: 100%;
  }
  .hero__cta {
    margin-top: 28px;
    align-self: center;
  }
  .hero__brand .name { font-size: 14px; letter-spacing: 0.16em; }
  .hero__brand .role { font-size: 8.5px; }
  .hero__meta {
    grid-template-columns: repeat(3, auto);
    gap: 20px 32px;
    margin-top: 36px;
    padding-top: 24px;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .hero__meta .cell .v { font-size: 20px; }
  .hero__meta .cell .k { font-size: 8.5px; letter-spacing: 0.18em; }

  .intro__lead { font-size: clamp(28px, 5.6vw, 40px); }
  .intro__body { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
  .intro__pull { font-size: 22px; padding-left: 20px; }
  .types__grid { grid-template-columns: 1fr; }
  .types__head { margin-bottom: 56px; }

  .event__card { padding: 40px 24px; }
  .event__grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 28px 0; }
  .event__cell .v.big { font-size: 26px; }
  .event__cell .v { font-size: 20px; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__portrait { max-width: 380px; margin: 0 auto; width: 100%; }
  .about__copy { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .about__copy .eyebrow { text-align: center; }
  .about__creds { width: 100%; }
  .cred { text-align: left; }

  .discover__list { padding: 0; }
  .discover-row { grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; }
  .discover-row .text { font-size: 19px; }
  .discover-row .idx { font-size: 26px; }

  .btn-gold {
    padding: 18px 32px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .footer__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  section { padding: 64px 20px; }
  .hero__copy { padding: 32px 20px 36px; }
  .hero__brand .mark { width: 32px; height: 32px; font-size: 15px; }
  .hero__title { font-size: clamp(32px, 9.5vw, 46px); }
  .hero__sub { font-size: 19px; }
  .hero__meta {
    grid-template-columns: repeat(3, auto);
    gap: 14px 24px;
    justify-content: center;
  }
  .hero__cta {
    align-self: center;
    width: auto;
  }
  .btn-gold {
    padding: 16px 36px;
  }

  .event__card { padding: 32px 18px; }
  .event__card::before, .event__card::after { width: 16px; height: 16px; }
  .event__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .event__cell .icon { width: 28px; height: 28px; }
  .event__cell .icon svg { width: 28px; height: 28px; }
  .event__cell .v.big { font-size: 22px; }
  .event__cell .v { font-size: 17px; }

  .about__copy h2 { font-size: clamp(34px, 9vw, 44px); }
  .cred { flex-direction: column; gap: 4px; }
  .cred .k { width: auto; }

  .discover-row { padding: 18px 0; }
  .discover-row .text { font-size: 17px; }
  .discover-row .idx { font-size: 22px; }

  footer { padding: 48px 20px 32px; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
