:root {
  --ink: #0b0d0f;
  --ink-soft: #15191c;
  --cream: #f4ecdd;
  --cream-2: #e6d8bd;
  --gold: #c99537;
  --gold-light: #e1b55d;
  --text: #191919;
  --muted: #6e685e;
  --line: rgba(201, 149, 55, .28);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(7, 9, 10, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px);
}
.brand {
  text-decoration: none;
  font: 700 31px/1 "Cormorant Garamond", serif;
  letter-spacing: -.02em;
}
.brand span { color: var(--gold-light); }
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s ease;
}
.site-header nav a:hover { color: var(--gold-light); }
.site-header .nav-cta { color: var(--gold-light); }

.hero {
  min-height: 820px;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 18%, rgba(201,149,55,.18), transparent 28%),
    linear-gradient(115deg, #080a0b 0%, #111416 55%, #08090a 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%; bottom: -180px;
  width: 620px; height: 420px;
  background: radial-gradient(ellipse, rgba(92, 21, 14, .42), transparent 66%);
  filter: blur(30px);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 70%, var(--ink)); }
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 58px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Cormorant Garamond", serif; }
h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.045em;
}
h1 em { color: var(--gold-light); font-style: normal; }
.lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 1.12rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .77rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #111; box-shadow: 0 12px 36px rgba(201,149,55,.22); }
.button-secondary { border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.03); }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 38px; color: rgba(255,255,255,.68); font-size: .88rem; }
.hero-highlights span::before { content: "◆"; margin-right: 9px; color: var(--gold); font-size: .65rem; }
.hero-logo { position: relative; display: grid; place-items: center; }
.hero-logo img { width: min(100%, 560px); position: relative; z-index: 2; filter: drop-shadow(0 26px 50px rgba(0,0,0,.55)); border-radius: 50%; }
.logo-halo { position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%; background: rgba(201,149,55,.16); filter: blur(55px); }

.section { padding: 110px 0; }
.section-light { color: var(--text); background: radial-gradient(circle at 20% 10%, #fffaf1, transparent 35%), var(--cream); }
.section-heading { max-width: 760px; margin: 0 auto 58px; text-align: center; }
.section-heading h2, .manifesto h2, .contact-section h2 { margin: 0 0 18px; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  padding: 32px 26px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(65,51,27,.12);
  box-shadow: 0 12px 35px rgba(74,51,10,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(74,51,10,.12); }
.feature-icon { color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .15em; }
.feature-card h3 { margin: 17px 0 10px; font-size: 1.7rem; line-height: 1.05; }
.feature-card p { margin: 0; color: var(--muted); font-size: .93rem; }

.manifesto { padding: 110px 0; position: relative; overflow: hidden; background: linear-gradient(135deg, #0a0c0d, #171b1d); }
.manifesto::after { content: ""; position: absolute; top: -160px; right: -120px; width: 500px; height: 500px; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 70px rgba(201,149,55,.03), 0 0 0 140px rgba(201,149,55,.02); }
.manifesto-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.manifesto-copy p:last-child { color: rgba(255,255,255,.7); max-width: 680px; }
.quote-card { padding: 50px; border: 1px solid var(--line); background: rgba(255,255,255,.03); box-shadow: var(--shadow); }
.quote-card p { margin: 0; font: 600 clamp(2rem, 4vw, 3.1rem)/1.08 "Cormorant Garamond", serif; color: var(--cream); }

.contact-section { padding: 110px 0; background: #0b0d0f; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-copy { position: sticky; top: 110px; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); max-width: 430px; }
.email-link { display: inline-block; margin-top: 24px; color: var(--gold-light); font: 600 1.5rem "Cormorant Garamond", serif; text-decoration: none; }
.form-panel { padding: 36px; border: 1px solid rgba(255,255,255,.11); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form label { display: block; margin-bottom: 17px; }
form label > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.72); font-size: .82rem; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px;
  background: rgba(255,255,255,.045);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,149,55,.12); }
textarea { resize: vertical; min-height: 160px; }
.consent { display: flex; gap: 11px; align-items: flex-start; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--gold); }
.consent span { margin: 0; font-size: .78rem; color: rgba(255,255,255,.58); }
.submit-button { width: 100%; border: 0; }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,.42); text-align: center; font-size: .75rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.alert { margin-bottom: 20px; padding: 14px 16px; border: 1px solid; font-size: .9rem; }
.alert-success { background: rgba(65, 160, 101, .12); border-color: rgba(65,160,101,.5); color: #b9efca; }
.alert-error { background: rgba(196, 67, 67, .12); border-color: rgba(196,67,67,.5); color: #ffc5c5; }

footer { border-top: 1px solid rgba(255,255,255,.08); background: #070809; }
.footer-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.46); font-size: .82rem; }
.footer-inner strong { color: var(--gold-light); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-logo { order: -1; }
  .hero-logo img { width: min(68vw, 460px); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
}

@media (max-width: 680px) {
  .site-header { height: 66px; padding-inline: 18px; }
  .brand { font-size: 27px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 105px; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .lead { font-size: 1rem; }
  .hero-highlights { justify-content: center; }
  .section, .manifesto, .contact-section { padding: 78px 0; }
  .feature-grid, .form-row { grid-template-columns: 1fr; }
  .form-panel { padding: 24px 18px; }
  .quote-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; justify-content: center; text-align: center; padding: 24px 0; }
}
