/* ============================================================
   HERO — v3 · BOUTIQUE
   Following the actual logo: geometric, heavy, black and bone.
   Aesop / MoMA Design Store / Apple Today vibe.
   Zero accent color. Zero broadcast. Zero F1.
   ============================================================ */

:root {
  --bg:           #0d0d0d;
  --bg-elev:      #161514;
  --bg-surface:   #1c1b18;
  --bg-warmer:    #0f0e0c;
  --paper:        #f0eee6;
  --paper-2:      #d8d4c5;
  --ink-muted:    #8a8579;
  --ink-subtle:   #4a473f;
  --rule:         rgba(240, 238, 230, 0.10);
  --rule-2:       rgba(240, 238, 230, 0.22);

  /* fonts — Archivo Black has the same heavy geometric weight as the logo */
  --f-display:    "Archivo Black", "Archivo", "Helvetica Neue", sans-serif;
  --f-sans:       "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --f-mono:       "JetBrains Mono", "SF Mono", Menlo, monospace;

  --g:            clamp(20px, 4vw, 56px);
  --max:          1640px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; min-width: 0; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--paper); color: var(--bg); }

h1, h2, h3, h4, h5, h6, p, figure { margin: 0; overflow-wrap: break-word; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ============================================================
   PRIMITIVES — display, mono, three-bars motif
   ============================================================ */

.display {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* the 3-bar motif from the logo's "E" — used as section markers */
.bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 24px;
}
.bars i {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--paper);
}
.bars--sm { width: 18px; height: 16px; gap: 2px; }
.bars--sm i { height: 2px; }
.bars--lg { width: 56px; height: 48px; gap: 8px; }
.bars--lg i { height: 8px; }
.bars--mid i:nth-child(2) { width: 70%; }     /* echoes the squarer logo's middle bar */
.bars--asym i:nth-child(2) { width: 80%; }

/* mark / kicker */
.kicker {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
}

/* CTA — solid, boutique */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: var(--paper);
  color: var(--bg);
  border: 0;
  transition: background 250ms var(--ease), color 250ms var(--ease), padding 250ms var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: var(--paper-2); padding-right: 32px; }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  outline: 1px solid var(--rule-2);
}
.btn--ghost:hover { background: var(--paper); color: var(--bg); }
.btn__arrow {
  display: inline-block;
  width: 18px;
  position: relative;
}
.btn__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.btn__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg) translateX(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 18px var(--g);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 28px;
}
.nav__brand img {
  height: 28px;
  width: auto;
  /* PNG already has cream letters on transparent bg */
}
.nav__links {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.nav__link {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--paper);
  transition: width 250ms var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__right { display: flex; gap: 12px; align-items: center; }
@media (max-width: 900px) { .nav__links { display: none; } }

/* ============================================================
   SECTION BASE
   ============================================================ */
section { position: relative; }
.sect {
  padding: 140px var(--g);
  position: relative;
}
.sect-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 80px;
}
.sect-head__num {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--paper);
  letter-spacing: 0;
}
.sect-head__name {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--paper);
}
.sect-head__kicker {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  text-align: right;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: calc(100vh - 64px);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 1000px) { .hero { grid-template-columns: 1fr; } }

.hero__left {
  padding: 80px var(--g);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.hero__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-scene.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(60px) saturate(1.3);
  z-index: 0;
  animation: heroLockIn 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  pointer-events: none;
}
.hero__left::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.85) 100%),
    radial-gradient(60% 80% at 30% 50%, transparent 0%, rgba(13,13,13,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__left > * { position: relative; z-index: 2; }

@keyframes heroLockIn {
  0%   { opacity: 0;    filter: blur(60px) saturate(1.3); transform: translate(3px, -2px) scale(1.08); }
  3%   { transform: translate(-4px, 3px); }
  6%   { transform: translate(3px, 4px); }
  9%   { transform: translate(-5px, -3px); }
  12%  { transform: translate(4px, -4px); opacity: 0.08; }
  15%  { transform: translate(-3px, 2px); filter: blur(50px) saturate(1.3); }
  20%  { transform: translate(3px, -3px); }
  25%  { transform: translate(-2px, 2px); opacity: 0.14; filter: blur(42px) saturate(1.3); }
  35%  { transform: translate(2px, -2px); opacity: 0.18; filter: blur(34px) saturate(1.3); }
  50%  { transform: translate(-1px, 1px); opacity: 0.22; filter: blur(28px) saturate(1.3); }
  70%  { transform: translate(1px, -1px); opacity: 0.26; filter: blur(22px) saturate(1.3); }
  100% { opacity: 0.32; filter: blur(18px) saturate(1.3); transform: translate(0, 0) scale(1.02); }
}

/* subtle "alive" breath after lock-in */
.hero__left .hero__logo--square img {
  animation: heroLogoSettle 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both, heroLogoBreath 6s ease-in-out 3.2s infinite;
}
@keyframes heroLogoSettle {
  0%   { transform: translate(2px, -1px); filter: blur(0.6px); }
  3%   { transform: translate(-3px, 2px); }
  6%   { transform: translate(2px, 3px); filter: blur(0.4px); }
  9%   { transform: translate(-3px, -2px); }
  15%  { transform: translate(2px, -2px); filter: blur(0.3px); }
  25%  { transform: translate(-1px, 1px); filter: blur(0.2px); }
  50%  { transform: translate(1px, -1px); filter: blur(0px); }
  100% { transform: translate(0, 0); filter: blur(0); }
}
@keyframes heroLogoBreath {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, -2px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__left::before { animation: none; opacity: 0.28; filter: blur(20px); transform: none; }
  .hero__left .hero__logo--square img { animation: none; }
}
.hero__logo-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-height: 0;
}
.hero__crumb {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
}
.hero__crumb b { color: var(--paper); font-weight: 400; }

.hero__logo {
  /* the big wordmark mark */
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: stretch;
  justify-content: center;
  min-height: 0;
}
.hero__logo img {
  width: 100%;
  max-width: 720px;
  height: auto;
  filter: invert(1);
}
.hero__logo--square {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero__logo--square img {
  width: 100%;
  max-width: 720px;
  height: auto;
  /* PNG already has transparent background and cream letters */
  filter: none;
  mix-blend-mode: normal;
}
@media (max-width: 1000px) {
  .hero__logo--square img { max-width: 520px; }
}
.hero__est {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.hero__lockup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__tag {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero__tag em {
  font-family: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
  letter-spacing: -0.02em;
}
.hero__sub {
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.hero__sub b { color: var(--paper); font-weight: 500; }

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero__right {
  background: var(--bg-warmer);
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--rule);
  min-height: 600px;
}
@media (max-width: 1000px) { .hero__right { min-height: 60vh; border-left: 0; border-top: 1px solid var(--rule); } }
.hero__photo-cap {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--paper);
}
.hero__photo-cap b { font-weight: 400; }
.hero__photo-cap--top {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  bottom: auto;
}

/* boutique image placeholder — square crop with cream frame */
.boutique-img {
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--bg-elev);
  overflow: hidden;
}
.boutique-img__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(240,238,230,0.04) 0%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(240,238,230,0.018) 0 16px, transparent 16px 32px);
}
.boutique-img__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-subtle);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.boutique-img__center .bars i {
  background: var(--ink-subtle);
}
.boutique-img__frame {
  position: absolute;
  inset: 24px;
  border: 1px solid var(--rule);
  pointer-events: none;
}

/* ============================================================
   PILLARS — 3 quiet architectural panels
   ============================================================ */
.pillars {
  padding: 140px var(--g);
  border-bottom: 1px solid var(--rule);
}
.pillars__lede {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 96px;
  align-items: end;
}
@media (max-width: 900px) { .pillars__lede { grid-template-columns: 1fr; } }
.pillars__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.pillars__title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
  letter-spacing: -0.02em;
}
.pillars__intro p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 52ch;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 1100px) { .pillar-grid { grid-template-columns: 1fr; } }

.pillar {
  padding: 56px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 520px;
  position: relative;
}
.pillar:last-child { border-right: 0; }
@media (max-width: 900px) {
  .pillar { border-right: 0; }
}

.pillar__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pillar__bars .bars i { background: var(--paper); }
.pillar__index {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}

.pillar__name {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 16px;
}

.pillar__copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 32ch;
}
.pillar__copy b { color: var(--paper); font-weight: 500; }

.pillar__list {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.pillar__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper);
}
.pillar__list li .n { color: var(--ink-muted); }

/* ============================================================
   STAGES — boutique product cards
   ============================================================ */
.stages {
  padding: 140px var(--g);
  border-bottom: 1px solid var(--rule);
}
.stages__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 900px) { .stages__head { grid-template-columns: 1fr; } }
.stages__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.stages__title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
  letter-spacing: -0.02em;
}
.stages__intro p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 50ch;
}

.stages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1100px) { .stages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .stages__grid { grid-template-columns: 1fr; } }

.stage-card {
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  transition: background 300ms var(--ease);
}
.stage-card:hover { background: var(--bg-surface); }

.stage-card__img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.stage-card__img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-card__body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.stage-card__sku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.stage-card__num {
  font-family: var(--f-display);
  font-size: clamp(80px, 8vw, 124px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--paper);
}

.stage-card__name {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.stage-card__desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-muted);
}

.stage-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}
.stage-card__price {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.stage-card__price-pre {
  font-family: var(--f-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 4px;
}
.stage-card__cta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 300ms var(--ease);
}
.stage-card__cta::after {
  content: "→";
  font-family: var(--f-sans);
  font-size: 14px;
}
.stage-card:hover .stage-card__cta { gap: 14px; }

/* ============================================================
   SERVICES — refined menu
   ============================================================ */
.svc {
  padding: 140px var(--g);
  border-bottom: 1px solid var(--rule);
}
.svc__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 900px) { .svc__head { grid-template-columns: 1fr; } }
.svc__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.svc__title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
  letter-spacing: -0.02em;
}
.svc__intro p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 50ch;
}

.svc__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
}
.svc__filter {
  padding: 10px 16px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  background: transparent;
  border: 1px solid var(--rule);
  transition: all 200ms;
}
.svc__filter:hover { color: var(--paper); border-color: var(--rule-2); }
.svc__filter.is-active {
  background: var(--paper);
  color: var(--bg);
  border-color: var(--paper);
}

.svc__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.5fr 96px 24px;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: padding 300ms var(--ease);
}
.svc-row:hover { padding-left: 16px; padding-right: -16px; }
.svc-row__n {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}
.svc-row__name {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.svc-row__desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-muted);
}
.svc-row__price {
  font-family: var(--f-mono);
  font-size: 13px;
  text-align: right;
  color: var(--paper);
}
.svc-row__arrow {
  text-align: right;
  font-size: 16px;
  color: var(--ink-muted);
  transition: color 200ms, transform 200ms;
}
.svc-row:hover .svc-row__arrow { color: var(--paper); transform: translateX(4px); }
@media (max-width: 800px) {
  .svc-row {
    grid-template-columns: 40px 1fr auto;
    grid-template-areas:
      "n name price"
      ". desc desc"
      ". arrow arrow";
    gap: 8px 16px;
  }
  .svc-row__n { grid-area: n; }
  .svc-row__name { grid-area: name; }
  .svc-row__desc { grid-area: desc; }
  .svc-row__price { grid-area: price; }
  .svc-row__arrow { grid-area: arrow; text-align: left; }
}

/* ============================================================
   PROCESS — quiet timeline
   ============================================================ */
.proc {
  padding: 140px var(--g);
  border-bottom: 1px solid var(--rule);
}
.proc__head {
  margin-bottom: 80px;
}
.proc__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 18ch;
}
.proc__title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
  letter-spacing: -0.02em;
}

.proc__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.proc-step {
  display: grid;
  grid-template-columns: 64px 1fr 2fr 100px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding 300ms var(--ease);
  cursor: default;
}
.proc-step:hover { padding-left: 12px; }
.proc-step__n {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}
.proc-step__name {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.proc-step__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.proc-step__time {
  font-family: var(--f-mono);
  font-size: 11px;
  text-align: right;
  letter-spacing: 0.22em;
  color: var(--paper);
}
@media (max-width: 900px) {
  .proc-step {
    grid-template-columns: 40px 1fr auto;
    grid-template-areas:
      "n name time"
      ". desc desc";
    gap: 8px 16px;
  }
  .proc-step__n { grid-area: n; }
  .proc-step__name { grid-area: name; }
  .proc-step__desc { grid-area: desc; }
  .proc-step__time { grid-area: time; }
}

/* ============================================================
   STUDIO — architectural gallery
   ============================================================ */
.studio {
  padding: 140px var(--g);
  border-bottom: 1px solid var(--rule);
}
.studio__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 900px) { .studio__head { grid-template-columns: 1fr; } }
.studio__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.studio__title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
  letter-spacing: -0.02em;
}
.studio__intro p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 50ch;
}

.studio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-bottom: 96px;
}
.studio-cell {
  position: relative;
  background: var(--bg-elev);
  overflow: hidden;
}
.studio-cell--a { grid-column: span 7; grid-row: span 2; }
.studio-cell--b { grid-column: span 5; grid-row: span 1; }
.studio-cell--c { grid-column: span 5; grid-row: span 1; }
.studio-cell--d { grid-column: span 4; grid-row: span 2; }
.studio-cell--e { grid-column: span 4; grid-row: span 1; }
.studio-cell--f { grid-column: span 4; grid-row: span 1; }
@media (max-width: 900px) {
  .studio__grid { grid-template-columns: repeat(2, 1fr); }
  .studio-cell { grid-column: span 1 !important; grid-row: span 1 !important; }
  .studio-cell--a { grid-column: span 2 !important; grid-row: span 2 !important; }
}

.studio-cell__cap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--paper);
}
.studio-cell__cap b { font-weight: 400; color: var(--paper); }
.studio-cell__cap span { color: var(--ink-muted); }

.studio__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 700px) { .studio__specs { grid-template-columns: repeat(2, 1fr); } }
.studio__spec {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.studio__spec:last-child { border-right: 0; }
@media (max-width: 700px) {
  .studio__spec:nth-child(2) { border-right: 0; }
}
.studio__spec__n {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.studio__spec__u {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}

/* ============================================================
   ABOUT — manifesto quieto
   ============================================================ */
.about {
  padding: 140px var(--g);
  border-bottom: 1px solid var(--rule);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  margin-bottom: 96px;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }

.about__portrait {
  aspect-ratio: 4/5;
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}
.about__portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__body { display: flex; flex-direction: column; gap: 24px; }
.about__lede {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 22ch;
}
.about__lede em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
  letter-spacing: -0.02em;
}
.about__para {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 56ch;
}
.about__para b { color: var(--paper); font-weight: 500; }
.about__sig {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}
.about__sig b { color: var(--paper); font-weight: 500; }

.about__manifesto {
  font-family: var(--f-display);
  font-size: clamp(48px, 9vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-align: center;
  padding: 64px 0 24px;
  border-top: 1px solid var(--rule);
}
.about__manifesto em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
  letter-spacing: -0.02em;
}
.about__nod {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-muted);
}

/* ============================================================
   BOOKING — concierge form
   ============================================================ */
.book {
  padding: 140px var(--g);
  border-bottom: 1px solid var(--rule);
}
.book__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 16ch;
}
.book__title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
}

.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 64px;
}
@media (max-width: 900px) { .book__grid { grid-template-columns: 1fr; gap: 48px; } }

.book__sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 40ch;
  margin-bottom: 40px;
}
.book__sub b { color: var(--paper); font-weight: 500; }
.book__meta { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.book__meta__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.book__meta__k {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}
.book__meta__v {
  font-size: 14px;
  line-height: 1.5;
  color: var(--paper);
}
.book__meta__v a { color: var(--paper); border-bottom: 1px solid var(--rule-2); }
.book__meta__v a:hover { border-color: var(--paper); }

.book__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.book__row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 500px) { .book__row--double { grid-template-columns: 1fr; } }
.book__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book__label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}
.book__field input,
.book__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-2);
  color: var(--paper);
  font-family: var(--f-sans);
  font-size: 16px;
  padding: 10px 0;
  outline: 0;
  width: 100%;
  resize: vertical;
  transition: border-color 200ms;
}
.book__field input:focus, .book__field textarea:focus { border-color: var(--paper); }
.book__field input::placeholder, .book__field textarea::placeholder { color: var(--ink-subtle); }

.book__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.book__chip {
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  border: 1px solid var(--rule-2);
  transition: all 200ms;
}
.book__chip:hover { color: var(--paper); border-color: var(--paper); }
.book__chip.is-active {
  background: var(--paper);
  color: var(--bg);
  border-color: var(--paper);
}

.book__submit {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
}
.book__note {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}

.book__success {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.book__success__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.book__success__title em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--paper-2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 96px var(--g) 0;
  background: var(--bg-warmer);
}
.foot__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr; gap: 48px; } }

.foot__brand img {
  width: 100%;
  max-width: 280px;
  margin-bottom: 24px;
}
.foot__brand-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
  line-height: 1.6;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 700px) { .foot__cols { grid-template-columns: repeat(2, 1fr); } }
.foot__col { display: flex; flex-direction: column; gap: 16px; }
.foot__col__head {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--paper);
}
.foot__col ul { display: grid; gap: 6px; }
.foot__col li { font-size: 14px; color: var(--ink-muted); }
.foot__col li a { transition: color 200ms; }
.foot__col li a:hover { color: var(--paper); }

.foot__mega {
  padding: 64px 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.foot__mega img {
  width: 100%;
  max-width: 1400px;
}

.foot__bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-subtle);
}

/* DS pill */
.ds-pill {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100;
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--paper);
  background: var(--bg);
  border: 1px solid var(--rule-2);
  text-decoration: none;
  transition: all 200ms;
}
.ds-pill:hover { background: var(--paper); color: var(--bg); border-color: var(--paper); }

/* image cover utility */
.studio-cell__img,
.hero__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.studio-cell, .hero__right { position: relative; }
.studio-cell__cap, .hero__photo-cap { z-index: 2; }
.studio-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
  pointer-events: none;
  z-index: 1;
}
.hero__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.55));
  pointer-events: none;
  z-index: 1;
}

/* video entry — smooth blur-in so the poster→video swap is hidden */
.hero__right video.hero__photo-img,
.studio-cell video.studio-cell__img,
.stage-card__img video.stage-card__img-real {
  animation: videoBlurIn 2.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@keyframes videoBlurIn {
  0%   { filter: blur(48px) saturate(1.3) brightness(0.9); transform: scale(1.06); opacity: 0.45; }
  35%  { filter: blur(28px) saturate(1.2); opacity: 0.7; }
  65%  { filter: blur(12px); opacity: 0.92; }
  100% { filter: blur(0) saturate(1) brightness(1); transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__right video.hero__photo-img,
  .studio-cell video.studio-cell__img,
  .stage-card__img video.stage-card__img-real { animation: none; }
}


/* ============================================================
   PRODUÇÃO — header fixo, menu mobile, controle de som
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(13, 13, 13, 0.58);
  backdrop-filter: blur(12px) ;
  -webkit-backdrop-filter: blur(12px);
  flex-wrap: nowrap;
}
.nav-spacer { height: 84px; }
.nav__links { min-width: 0; overflow-x: auto; scrollbar-width: none; }
.nav__link { white-space: nowrap; }
.btn { white-space: nowrap; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--rule-2);
  cursor: pointer;
}
.nav__burger i { display: block; width: 100%; height: 2px; background: var(--paper); }
.nav__burger i:nth-child(2) { width: 70%; }

@media (max-width: 980px) {
  .nav { padding: 14px var(--g); }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav-spacer { height: 76px; }
}
@media (max-width: 560px) {
  .nav__right .btn { display: none; }
}

/* overlay do menu mobile */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  display: none;
  flex-direction: column;
  padding: 20px var(--g) 32px;
  overflow-y: auto;
}
.mnav.is-open { display: flex; }
.mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.mnav__close {
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--rule-2);
  color: var(--paper);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.mnav__links { display: flex; flex-direction: column; margin-top: 28px; }
.mnav__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-display);
  font-size: clamp(30px, 9vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.mnav__links a em {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}
.mnav__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 26px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: var(--paper);
  color: var(--bg);
}
.mnav__foot {
  padding-top: 18px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
}

/* controle de som */
.sound-pill {
  position: fixed;
  bottom: 16px; left: 16px;
  z-index: 60;
  padding: 11px 15px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--paper);
  background: rgba(13, 13, 13, 0.88);
  border: 1px solid var(--rule-2);
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.sound-pill:hover { background: var(--paper); color: var(--bg); }

/* scroll reveal — o JS só alterna .is-visible, o fade/slide é daqui */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* respiro extra no mobile */
@media (max-width: 700px) {
  .sect, .pillars, .stages, .svc, .proc, .studio, .about, .book { padding: 72px var(--g); }
  .sect-head { margin-bottom: 48px; }
  .pillar { min-height: 0; padding: 40px 24px; }
  .stage-card__num { font-size: 72px; }
  .about__manifesto { padding: 40px 0 16px; }
}
