:root {
  --bg: #090806;
  --bg-soft: #100e0a;
  --panel: rgba(22, 19, 13, 0.74);
  --panel-strong: #17130d;
  --text: #f5f1e8;
  --muted: #aaa398;
  --muted-2: #7e786f;
  --gold: #d7ad50;
  --gold-light: #f4df9a;
  --gold-deep: #8e6825;
  --line: rgba(226, 190, 105, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --radius: 26px;
  --max: 1240px;
  --serif: "Cormorant Garamond", Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 4%, rgba(183, 132, 42, 0.11), transparent 28rem),
    radial-gradient(circle at 4% 37%, rgba(107, 77, 25, 0.08), transparent 26rem),
    var(--bg);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: #181207; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  z-index: 999;
  background: var(--gold-light);
  color: #111;
  padding: .8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: .9rem; text-decoration: none; width: max-content; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 1.08rem; letter-spacing: .02em; font-weight: 600; }
.brand-copy small { color: var(--muted-2); text-transform: uppercase; letter-spacing: .18em; font-size: .57rem; margin-top: .25rem; }
.primary-navigation { display: flex; align-items: center; gap: 2rem; }
.primary-navigation a, .footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .83rem;
  transition: color .25s ease;
}
.primary-navigation a:hover, .primary-navigation a:focus-visible, .footer-links a:hover, .footer-links a:focus-visible { color: var(--gold-light); }
.header-status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(215, 173, 80, .08); }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100svh - 92px);
  padding: clamp(5rem, 9vw, 8.5rem) 0 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  position: relative;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 1.5rem; display: flex; align-items: center; gap: .75rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-size: .68rem; font-weight: 700; }
.eyebrow span { width: 42px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 7.7vw, 7.45rem);
  line-height: .91;
  letter-spacing: -.045em;
  font-weight: 400;
  margin-bottom: 2rem;
}
h1 em { font-weight: 400; color: var(--gold-light); }
.hero-intro { max-width: 670px; color: #bcb5a9; font-size: clamp(1.02rem, 1.5vw, 1.23rem); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 2.2rem; }
.button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.35rem; border-radius: 999px; text-decoration: none; font-size: .82rem; font-weight: 700; letter-spacing: .03em; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #171005; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 12px 40px rgba(169, 119, 31, .16); }
.button-quiet { border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.015); }
.button-quiet:hover { border-color: rgba(244, 223, 154, .38); color: var(--text); }
.hero-note { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 3rem; color: var(--muted-2); font-size: .69rem; text-transform: uppercase; letter-spacing: .11em; }
.hero-note span { position: relative; }
.hero-note span:not(:last-child)::after { content: ""; position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--gold-deep); right: -.85rem; top: .55rem; }

.hero-visual { min-height: 590px; position: relative; display: grid; place-items: center; perspective: 1200px; }
.visual-stage {
  width: min(100%, 560px);
  aspect-ratio: .82;
  border: 1px solid rgba(229, 191, 102, .28);
  border-radius: 180px 180px 32px 32px;
  background:
    radial-gradient(circle at 50% 33%, rgba(201, 149, 47, .18), transparent 31%),
    linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.01) 45%, rgba(114, 79, 22, .08)),
    rgba(14, 12, 8, .72);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 1.3rem 1.5rem 1.5rem;
  box-shadow: 0 50px 100px rgba(0,0,0,.42), inset 0 0 70px rgba(255,255,255,.02);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}
.visual-stage::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.04); border-radius: 166px 166px 24px 24px; pointer-events: none; }
.visual-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.visual-topline { display: flex; justify-content: space-between; color: var(--muted-2); font-size: .56rem; letter-spacing: .19em; z-index: 1; }
.hero-logo { align-self: center; justify-self: center; width: 68%; filter: drop-shadow(0 28px 36px rgba(0,0,0,.43)); opacity: .96; transform: translateZ(34px); }
.sound-sculpture { width: 100%; height: auto; margin-top: -3rem; overflow: visible; position: relative; z-index: 2; }
.wave { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.wave-back { stroke: rgba(211, 164, 69, .2); stroke-width: 12; filter: url(#softGlow); }
.wave-front { stroke: url(#goldWave); stroke-width: 3.6; stroke-dasharray: 6 8; animation: waveShift 16s linear infinite; }
@keyframes waveShift { to { stroke-dashoffset: -280; } }
.visual-caption { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1rem; z-index: 2; }
.visual-caption p { margin: 0; font-family: var(--serif); font-size: 1.08rem; }
.visual-caption span { color: var(--muted-2); text-transform: uppercase; letter-spacing: .13em; font-size: .52rem; }
.visual-halo { position: absolute; border-radius: 50%; border: 1px solid rgba(215, 173, 80, .13); }
.halo-one { width: 680px; height: 680px; }
.halo-two { width: 790px; height: 790px; border-style: dashed; animation: spin 42s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-label { position: absolute; color: rgba(244, 223, 154, .48); font-size: .53rem; letter-spacing: .2em; writing-mode: vertical-rl; }
.orbit-label-one { left: -5px; top: 29%; }
.orbit-label-two { right: -8px; top: 44%; }
.orbit-label-three { left: 13%; bottom: 3%; writing-mode: initial; }

.section-label { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .64rem; font-weight: 700; white-space: nowrap; }
.manifesto { padding: 8rem 0; border-top: 1px solid var(--line-soft); display: grid; grid-template-columns: 160px 1fr; gap: 3rem; }
.manifesto h2, .section-heading h2, .principles h2, .about h2, .contact h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: 1.07; }
.manifesto h2 { max-width: 1030px; font-size: clamp(2.9rem, 5vw, 5.3rem); margin-bottom: 3.2rem; }
.manifesto-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 6vw, 7rem); max-width: 1000px; }
.manifesto-grid p { color: var(--muted); font-size: 1.02rem; line-height: 1.85; }

.formats { padding: 8rem 0; }
.section-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2 { font-size: clamp(2.8rem, 4.5vw, 4.8rem); margin: 1.1rem 0 0; }
.section-heading > p { color: var(--muted); margin: 0; max-width: 430px; justify-self: end; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.format-card { min-height: 430px; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.5rem; background: rgba(255,255,255,.018); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.format-card:hover { transform: translateY(-7px); border-color: var(--line); background: rgba(255,255,255,.028); }
.format-card.featured { background: linear-gradient(145deg, rgba(215,173,80,.11), rgba(255,255,255,.015) 60%); border-color: rgba(215,173,80,.25); }
.format-card::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; border: 1px solid rgba(215,173,80,.09); right: -90px; top: -80px; }
.format-number { color: var(--muted-2); font-size: .63rem; letter-spacing: .15em; }
.format-icon { width: 64px; height: 64px; margin: 4.2rem 0 3.1rem; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: rgba(215,173,80,.04); }
.format-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-light); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.format-card h3 { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin-bottom: .9rem; }
.format-card p { color: var(--muted); font-size: .91rem; }
.format-tag { margin-top: auto; color: var(--gold); font-size: .65rem; text-transform: uppercase; letter-spacing: .17em; }

.quote-panel { margin: 6rem 0 10rem; min-height: 470px; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 50% 120%, rgba(202,149,48,.16), transparent 48%), #0d0b08; display: grid; place-items: center; text-align: center; padding: 4rem 1.5rem; position: relative; overflow: hidden; }
.quote-panel::before, .quote-panel::after { content: ""; position: absolute; border: 1px solid rgba(215,173,80,.08); border-radius: 50%; width: 470px; height: 470px; }
.quote-panel::after { width: 620px; height: 620px; }
.quote-mark { font-family: var(--serif); color: var(--gold); font-size: 4rem; line-height: .6; opacity: .8; }
.quote-panel blockquote { font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.5rem); letter-spacing: -.045em; line-height: .95; margin: .5rem 0 1.2rem; position: relative; z-index: 1; }
.quote-panel p { color: var(--muted); position: relative; z-index: 1; }
.quote-line { width: 1px; height: 55px; background: linear-gradient(var(--gold), transparent); position: absolute; bottom: 0; }

.principles { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(4rem, 8vw, 9rem); padding: 6rem 0 10rem; }
.principles-intro { position: sticky; top: 3rem; align-self: start; }
.principles h2 { font-size: clamp(3rem, 4.8vw, 5rem); margin: 1.1rem 0 1.6rem; }
.principles-intro > p { max-width: 510px; color: var(--muted); }
.principle-list { border-top: 1px solid var(--line-soft); }
.principle-list article { display: grid; grid-template-columns: 62px 1fr; gap: 1.5rem; padding: 2.1rem 0; border-bottom: 1px solid var(--line-soft); }
.principle-list article > span { color: var(--gold-deep); font-size: .68rem; letter-spacing: .15em; padding-top: .35rem; }
.principle-list h3 { font-family: var(--serif); font-size: 1.85rem; font-weight: 400; margin-bottom: .45rem; }
.principle-list p { color: var(--muted); margin: 0; }

.about { min-height: 620px; border: 1px solid var(--line-soft); border-radius: var(--radius); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; margin-bottom: 10rem; background: rgba(255,255,255,.015); }
.about-graphic { position: relative; min-height: 520px; display: grid; place-items: center; background: radial-gradient(circle, rgba(215,173,80,.11), transparent 58%); border-right: 1px solid var(--line-soft); }
.about-graphic svg { width: min(88%, 520px); overflow: visible; }
.about-graphic svg circle { fill: none; stroke: rgba(215,173,80,.16); stroke-width: 1; }
.about-graphic .river { fill: none; stroke: url(#riverGold); stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 0 10px rgba(215,173,80,.3)); }
.about-graphic .faint { stroke-width: 1; opacity: .45; }
.about-graphic .dots circle { fill: var(--gold-light); stroke: rgba(215,173,80,.25); stroke-width: 9; }
.about-copy { padding: clamp(3rem, 7vw, 7rem); align-self: center; }
.about h2 { font-size: clamp(3rem, 4.8vw, 5.1rem); margin: 1.2rem 0 1.8rem; }
.about-copy p { color: var(--muted); max-width: 560px; }
.text-link { display: inline-flex; gap: .5rem; color: var(--gold-light); text-decoration: none; margin-top: 1rem; border-bottom: 1px solid rgba(215,173,80,.28); padding-bottom: .25rem; }

.contact { min-height: 490px; display: grid; grid-template-columns: 1fr .65fr; gap: 5rem; align-items: center; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 7rem 0; }
.contact h2 { font-size: clamp(3.4rem, 6vw, 6.6rem); margin-bottom: 0; }
.contact-copy p { color: var(--muted); margin-bottom: 1.8rem; }

.site-footer { min-height: 180px; display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 2rem; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--serif); font-weight: 400; }
.footer-brand span, .copyright { color: var(--muted-2); font-size: .68rem; }
.footer-links { display: flex; gap: 1.4rem; }
.copyright { margin: 0; text-align: right; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .primary-navigation { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-copy { max-width: 850px; }
  .hero-visual { width: min(100%, 650px); justify-self: center; }
  .manifesto { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 340px; }
  .format-icon { margin: 2.6rem 0 2rem; }
  .principles { grid-template-columns: 1fr; }
  .principles-intro { position: static; }
  .about { grid-template-columns: 1fr; }
  .about-graphic { border-right: 0; border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 760px) {
  .site-shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { height: 78px; }
  .brand-copy { display: none; }
  .brand img { width: 46px; height: 46px; }
  .header-status { display: none; }
  .menu-toggle { display: inline-flex; justify-self: end; width: 42px; height: 42px; border: 1px solid var(--line-soft); border-radius: 50%; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 16px; height: 1px; background: var(--text); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-navigation { position: absolute; top: 67px; right: 0; left: 0; border: 1px solid var(--line-soft); background: rgba(12,10,7,.97); border-radius: 18px; padding: 1rem; flex-direction: column; align-items: stretch; gap: 0; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation a { padding: .85rem; }
  .hero { min-height: auto; padding: 5rem 0 4rem; gap: 4rem; }
  h1 { font-size: clamp(3.55rem, 18vw, 5.3rem); }
  .hero-visual { min-height: 460px; }
  .visual-stage { padding: 1rem; border-radius: 120px 120px 24px 24px; }
  .visual-stage::before { border-radius: 108px 108px 18px 18px; }
  .halo-one { width: 490px; height: 490px; }
  .halo-two { width: 570px; height: 570px; }
  .visual-caption { align-items: flex-start; flex-direction: column; }
  .visual-caption span { display: none; }
  .hero-note { gap: .7rem 1.2rem; }
  .hero-note span:not(:last-child)::after { right: -.65rem; }
  .manifesto, .formats { padding: 6rem 0; }
  .manifesto-grid, .section-heading, .contact { grid-template-columns: 1fr; }
  .manifesto-grid { gap: .5rem; }
  .section-heading { gap: 1.5rem; }
  .section-heading > p { justify-self: start; }
  .quote-panel { margin: 3rem 0 7rem; min-height: 390px; }
  .principles { padding-bottom: 7rem; gap: 3rem; }
  .about { margin-bottom: 7rem; }
  .about-graphic { min-height: 380px; }
  .contact { padding: 6rem 0; gap: 2rem; }
  .site-footer { grid-template-columns: 1fr; padding: 3rem 0; }
  .footer-links { flex-wrap: wrap; }
  .copyright { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
