/* ---------- tokens ---------- */
:root{
  --ink: #0b1220;
  --ink-2: #121b2c;
  --ink-3: #17223590;
  --surface: #131c2e;
  --line: #ffffff1a;
  --paper: #f3efe6;
  --paper-dim: #b9c0cc;
  --paper-dim-warm: #b7b1a2;
  --brass: #c9a463;
  --brass-dim: #9c8358;
  --radius: 2px;
  --maxw: 1360px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 16px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  color: var(--paper);
}

h2{ font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; }

p{ margin: 0; }

a{ color: inherit; text-decoration: none; }

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

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brass);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

.grain{
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow{
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.9rem;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.95rem 1.9rem;
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--brass);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:active{ transform: translateY(1px) scale(0.98); }

.btn--fill{ background: var(--brass); color: var(--ink); }
.btn--fill:hover{ background: #ddb976; }

.btn--outline{ background: transparent; color: var(--paper); }
.btn--outline:hover{ background: var(--brass); color: var(--ink); }

.btn--ghost{ border-color: var(--line); color: var(--paper); }
.btn--ghost:hover{ border-color: var(--brass); color: var(--brass); }

.btn--sm{ padding: 0.65rem 1.3rem; font-size: 0.74rem; }

/* ---------- nav ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled{
  background: rgba(11, 18, 32, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--paper);
}
.nav__mark{ width: 30px; height: 30px; color: var(--brass); flex: none; }
.nav__word{
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav__word em{ font-style: normal; display: block; font-size: 0.62em; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-top: 0.1rem; }

.nav__links{
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.nav__links a{ position: relative; padding: 0.3rem 0; }
.nav__links a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right 0.35s var(--ease);
}
.nav__links a:hover::after{ right: 0; }

.nav__actions{ display: flex; align-items: center; gap: 1rem; }
.nav__burger{
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu{
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.mobile-menu a{
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.mobile-menu .btn{ margin: 1.25rem var(--gutter); }

@media (max-width: 900px){
  .nav__links{ display: none; }
  .nav__actions .btn--sm{ display: none; }
  .nav__burger{ display: block; }
  .mobile-menu.is-open{ display: flex; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8,12,20,0.92) 0%, rgba(8,12,20,0.35) 52%, rgba(8,12,20,0.55) 100%);
}
.hero__content{
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--gutter) 6.5rem;
}
.hero__title{
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 18ch;
}
.hero__subtitle{
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--paper-dim);
}
.hero__ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.hero__coords{
  position: absolute;
  right: var(--gutter);
  top: 6.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
@media (max-width: 640px){
  .hero__coords{ display: none; }
}

/* ---------- manifesto ---------- */
.manifesto{
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__text{
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.45;
  color: var(--paper-dim);
  padding-bottom: 0.2em;
}
.manifesto__text span{ color: var(--brass); font-style: normal; }

/* ---------- split ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.split--reverse{ direction: rtl; }
.split--reverse > *{ direction: ltr; }

.split__media{ position: relative; }
.split__media img{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.split--reverse .split__media img{ aspect-ratio: 1 / 1; }

.split__media img.split__media-accent{
  position: absolute;
  width: 46%;
  height: auto;
  aspect-ratio: 1 / 1;
  bottom: -8%;
  left: -10%;
  border: 6px solid var(--ink);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.split__content h2{ max-width: 14ch; }
.split__body{
  margin-top: 1.3rem;
  max-width: 46ch;
  color: var(--paper-dim);
  font-size: 1.02rem;
  line-height: 1.7;
}
.split__facts{
  margin: 1.8rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}
.split__facts dt{
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.25rem;
}
.split__facts dd{ margin: 0; color: var(--paper-dim); font-size: 0.95rem; }
.split__content .btn{ margin-top: 2.2rem; }

.split__stats{
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2rem 0 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.split__stats strong{
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--paper);
}
.split__stats span{
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

@media (max-width: 860px){
  .split, .split--reverse{ grid-template-columns: 1fr; direction: ltr; }
  .split__media-accent{ display: none; }
}

/* ---------- feature band ---------- */
.feature-band{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.feature-band img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.feature-band__scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,12,20,0.94) 0%, rgba(8,12,20,0.55) 45%, rgba(8,12,20,0.25) 100%);
}
.feature-band__content{
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: clamp(3rem, 8vw, 5rem) var(--gutter);
}
.feature-band__content p{
  margin-top: 1.1rem;
  max-width: 42ch;
  color: var(--paper-dim);
}

/* ---------- bento ---------- */
.bento{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.bento__head{ max-width: 44ch; margin-bottom: 2.6rem; }
.bento__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  min-height: 560px;
}
.bento__tile{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.bento__tile--lg{ grid-row: 1 / 3; }
.bento__grid > a:nth-child(2){ grid-column: 2; grid-row: 1 / 3; }
.bento__grid > a:nth-child(3){ grid-column: 3; grid-row: 1 / 3; }
.bento__tile img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.bento__tile:hover img{ transform: scale(1.05); }
.bento__tile-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,12,20,0.92) 0%, rgba(8,12,20,0) 55%);
}
.bento__tile-text{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem;
}
.bento__tile-text p{ margin-top: 0.4rem; color: var(--paper-dim); font-size: 0.92rem; max-width: 30ch; }
.bento__cta{ margin-top: 2.6rem; }

@media (max-width: 900px){
  .bento__grid{
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .bento__tile, .bento__tile--lg, .bento__grid > a:nth-child(2), .bento__grid > a:nth-child(3){
    grid-column: 1; grid-row: auto; aspect-ratio: 4 / 3;
  }
}

/* ---------- events ---------- */
.events{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  border-top: 1px solid var(--line);
}
.events__head{ max-width: 56ch; margin-bottom: 2.8rem; }
.events__head p{ margin-top: 1rem; color: var(--paper-dim); max-width: 50ch; }

.events__banner{
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2.2rem 2.4rem;
  margin-bottom: 1px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.events__banner i{ font-size: 2.4rem; color: var(--brass); flex: none; }
.events__banner p{ margin-top: 0.4rem; color: var(--paper-dim); max-width: 60ch; }

.events__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: none;
}
.events__card{
  background: var(--ink);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 160px;
  justify-content: flex-end;
}
.events__card i{ font-size: 1.6rem; color: var(--brass); }
.events__card p{ color: var(--paper-dim); font-size: 0.92rem; }
.events__cta{ margin-top: 2.6rem; }

@media (max-width: 900px){
  .events__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .events__banner{ flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .events__grid{ grid-template-columns: 1fr; }
}

/* ---------- quotes ---------- */
.quotes{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 6rem) var(--gutter);
  border-top: 1px solid var(--line);
}
.quotes__head{ max-width: 44ch; margin: 0 auto 2.8rem; text-align: center; }
.quotes__head h2{ margin: 0; }
.quotes__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quotes__item{
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.quotes__item i{ color: var(--brass); font-size: 1.4rem; }
.quotes__item blockquote{
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--paper);
  flex: 1;
}
.quotes__person{
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.quotes__person img{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brass);
  flex: none;
}
.quotes__person span{ display: flex; flex-direction: column; gap: 0.15rem; }
.quotes__person strong{
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--paper);
}
.quotes__person em{
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--paper-dim);
}
@media (max-width: 860px){
  .quotes__grid{ grid-template-columns: 1fr; }
}

/* ---------- contact ---------- */
.contact{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.contact__head{ max-width: 44ch; margin-bottom: 2.8rem; }
.contact__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.contact__card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.contact__card h3{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.contact__card h3 i{ color: var(--brass); font-size: 1.2rem; }
.contact__card p{ color: var(--paper-dim); margin-bottom: 0.4rem; }
.contact__card a{ color: var(--paper); font-size: 0.95rem; transition: color 0.25s var(--ease); }
.contact__card a:hover{ color: var(--brass); }

@media (max-width: 860px){
  .contact__grid{ grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer{
  border-top: 1px solid var(--line);
  padding: 3rem var(--gutter);
}
.footer__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer__social{ display: flex; gap: 1.2rem; font-size: 1.2rem; }
.footer__social a{ color: var(--paper-dim); transition: color 0.25s var(--ease); }
.footer__social a:hover{ color: var(--brass); }
.footer__copy{ color: var(--paper-dim); font-size: 0.8rem; }

/* ---------- back to top ---------- */
.back-to-top{
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 18, 32, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease);
}
.back-to-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover{ background: var(--brass); color: var(--ink); }
.back-to-top:active{ transform: translateY(-1px) scale(0.96); }

@media (max-width: 640px){
  .back-to-top{ right: 1.1rem; bottom: 1.1rem; width: 46px; height: 46px; font-size: 1.15rem; }
}

/* ---------- reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}
