:root {
  --paper: #fbfaf6;
  --paper-2: #f1efe8;
  --moss-wash: #eef1ea;
  --ink: #0c0b0a;
  --gold: #c5a059;
  --gold-2: #a6843e;
  --moss: #5a6b4e;
  --moss-2: #3f4c38;
  --muted: #6b655c;
  --line: rgba(12, 11, 10, 0.1);
  --pad: 5vw;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-padding-top: 80px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { fill: none; stroke: currentColor; stroke-width: 6.5; stroke-linejoin: miter; }

.progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--moss), var(--gold));
  z-index: 90;
}
.comb {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}
.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 80; opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--paper);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.loader-mark { width: 56px; height: 56px; stroke: var(--gold); }
.loader-mark polygon, .loader-mark path { stroke-dasharray: 280; stroke-dashoffset: 280; }
.loader span { letter-spacing: 0.42em; font-size: 11px; color: var(--moss); }

.bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  padding: 0 var(--pad);
  color: var(--ink);
  background: rgba(251, 250, 246, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.lockup {
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.32em; font-size: 10px;
  justify-self: start;
}
.lockup svg { width: 18px; height: 18px; }
.anchors {
  display: flex; gap: 28px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  justify-self: center;
}
.anchors a { opacity: 0.55; }
.anchors a.is-on { opacity: 1; color: var(--moss); }
.bar-cta {
  justify-self: end;
  margin-top: 0;
  padding: 10px 18px;
}

.mast-mid {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 0 auto 8px;
  text-align: center;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--ink);
}
.sub {
  margin: 18px 0 0;
  text-align: center;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--moss);
}
.kicker {
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-2);
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
}
.hero-stage { position: absolute; inset: 0; z-index: 0; }
.stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
    background:
    radial-gradient(ellipse at 50% 42%, rgba(251,250,246,.12) 0%, rgba(251,250,246,.28) 58%, var(--paper) 92%);
  pointer-events: none;
}
.hero-center {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px var(--pad) 48px;
}
.hero-center h1 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-shadow: 0 0 48px rgba(251, 250, 246, 0.95);
}
.hero-center h1 em {
  font-style: italic;
  color: var(--moss);
}
.btn:hover {
  filter: brightness(1.06);
}
.lede {
  margin: 0 0 28px;
  max-width: 38rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
}
.hero-center .btn { margin-top: 0; }

.how {
  padding: 100px var(--pad) 80px;
  background: var(--moss-wash);
}
.steps {
  list-style: none;
  margin: 56px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: min(1080px, 100%);
}
.steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px 32px;
}
.steps b {
  display: block;
  color: var(--gold-2);
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 16px;
}
.steps h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  margin: 0 0 10px;
  font-weight: 600;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
  font-size: 15px;
}

.nucleo { padding: 100px var(--pad) 80px; background: var(--paper); }
.orb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1080px, 100%);
  margin: 48px auto 0;
}
.orb-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.orb-card canvas {
  display: block;
  width: 100%;
  height: 200px;
  background: var(--paper-2);
}
.orb-card h3 {
  margin: 16px 18px 6px;
  font-size: 17px;
  font-weight: 500;
}
.orb-card p {
  margin: 0 18px 20px;
  color: var(--muted);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}

.atelier {
  position: relative;
  padding: 100px var(--pad) 110px;
  overflow: hidden;
  background: var(--paper-2);
  color: var(--ink);
}
.watermark {
  position: absolute; top: 8px; left: 0; right: 0;
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(80px, 18vw, 220px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(90, 107, 78, 0.18);
  pointer-events: none;
}
.atelier-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 80px auto 0;
}
.mix { font-weight: 500; line-height: 1.05; margin: 0 0 22px; }
.mix small {
  font-family: Outfit, sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold-2);
}
.mix em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-style: italic;
  font-weight: 500;
  color: var(--moss-2);
}
.atelier-copy p {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}
.atelier-copy .aside {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.macro { margin: 0; }
.macro img {
  width: 100%;
  height: min(56vh, 460px);
  object-fit: cover;
  border-radius: 18px;
}

.close {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px var(--pad);
  text-align: center;
  background: var(--paper);
}
.close-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--moss-2);
}
.btn {
  margin-top: 28px;
  background: var(--gold);
  color: #1a140c;
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 0;
  font-family: inherit;
}
.lead {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: min(520px, 100%);
  margin-top: 28px;
}
.lead input {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 8px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 14px;
}
.lead input:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 1px var(--moss);
}
.lead .btn { margin-top: 0; }
.mail-link {
  margin-top: 18px;
  color: var(--moss);
  letter-spacing: 0.12em;
  font-size: 12px;
}

footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 24px var(--pad) 36px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 12px;
  background: var(--paper);
}

@media (max-width: 900px) {
  .anchors { display: none; }
  .bar { grid-template-columns: 1fr auto; }
  .steps, .atelier-grid, .orb-grid { grid-template-columns: 1fr; }
  .hero-center h1 { font-size: clamp(40px, 12vw, 64px); }
}
@media (prefers-reduced-motion: reduce) {
  .grain { display: none; }
  html { scroll-behavior: smooth; }
}
