/* ==========================================================================
   Voxhuma — Studio Edition 01
   Editorial / Catalog aesthetic. Fraunces + Geist + JetBrains Mono.
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #FFFFFF;
  --bg-cream:      #F5F1E8;
  --bg-paper:      #FAF7F0;
  --ink:           #0A0A0A;
  --ink-2:         #5C5A55;
  --ink-3:         #9A968C;
  --line:          #E4DFD2;
  --line-strong:   #C9C2B0;
  --accent:        #A46A3B;   /* warm bronze, used sparingly */
  --accent-soft:   #E8D9C3;

  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.15, 1);
  --ease-back: cubic-bezier(0.2, 0.9, 0.2, 1.1);

  --max: 1320px;
  --gutter: 40px;
}

@media (max-width: 768px) { :root { --gutter: 22px; } }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image:
    radial-gradient(rgba(10,10,10,0.012) 1px, transparent 1px);
  background-size: 3px 3px;
}

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--ink); color: #FFF; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule { height: 1px; background: var(--line); border: 0; }
.rule--strong { background: var(--ink); }

.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;
}

/* ==========================================================================
   Typographic primitives
   ========================================================================== */

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.035em;
  line-height: 0.94;
  color: var(--ink);
}

.display--xl { font-size: clamp(56px, 10vw, 150px); }
.display--lg { font-size: clamp(44px, 7vw, 96px); }
.display--md { font-size: clamp(34px, 4.6vw, 68px); }
.display--sm { font-size: clamp(28px, 3.4vw, 48px); }

.display i, .italic {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.kicker--accent { color: var(--accent); }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 48;
  font-size: clamp(19px, 1.9vw, 26px);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.body-l {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}

p { color: var(--ink-2); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
}

.tag::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.section-tag {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.section-tag .sign { color: var(--accent); }
.section-tag .num {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border-radius: 999px;
  line-height: 1;
  transition: background 220ms var(--ease), color 220ms var(--ease),
              border-color 220ms var(--ease), transform 220ms var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform 260ms var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--ink { background: var(--ink); color: #FFF; }
.btn--ink:hover { background: #000; transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--bg-paper); }

.btn--small { padding: 10px 16px; font-size: 12.5px; }

.chip-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 9px 9px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  background: var(--ink);
  color: #FFF;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.chip-cta:hover { background: #000; transform: translateY(-1px); }
.chip-cta .dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #FFF;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ==========================================================================
   Announcement ticker (top)
   ========================================================================== */

.announce {
  background: var(--ink);
  color: #FFF;
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.announce__track {
  display: inline-flex;
  gap: 48px;
  animation: slide 38s linear infinite;
  will-change: transform;
}
.announce__track > span { display: inline-flex; align-items: center; gap: 10px; }
.announce__track > span::before {
  content: "✺";
  color: var(--accent-soft);
  font-size: 9px;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Wordmark + Nav
   ========================================================================== */

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 0;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.wordmark i {
  font-style: italic;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}
.nav--scrolled {
  border-bottom-color: var(--line);
  background: rgba(255,255,255,0.94);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 24px;
}
.nav__left { display: flex; align-items: center; gap: 14px; }
.nav__badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: center;
}
.nav__links a {
  font-size: 13px;
  color: var(--ink);
  position: relative;
  transition: color 220ms var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--accent);
  transition: right 300ms var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__right { display: flex; justify-content: flex-end; }

@media (max-width: 768px) {
  .nav__inner { grid-template-columns: auto 1fr auto; height: 62px; }
  .nav__links { display: none; }
  .nav__badge { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 72px 0 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.hero__meta .left,
.hero__meta .right {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero__meta .dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: start;
}

.hero__headline {
  margin: 0;
}
.hero__headline .row {
  display: block;
  overflow: hidden;
}
.hero__headline .row span {
  display: inline-block;
  will-change: transform, opacity;
  transform: translateY(110%);
  opacity: 0;
  animation: rise 1000ms var(--ease) forwards;
}
.hero__headline .row:nth-child(2) span { animation-delay: 120ms; }
.hero__headline .row:nth-child(3) span { animation-delay: 240ms; }

@keyframes rise {
  to { transform: translateY(0); opacity: 1; }
}

.hero__sub {
  max-width: 480px;
  margin-top: 28px;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 32;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  opacity: 0;
  animation: fade 900ms var(--ease) 500ms forwards;
}
@keyframes fade { to { opacity: 1; } }

.hero__ctas {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade 900ms var(--ease) 650ms forwards;
}

.hero__foot {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fade 900ms var(--ease) 750ms forwards;
}
.hero__foot .cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__foot .n {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.hero__foot .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.hero__product {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 20px 60px -20px rgba(0,0,0,0.18);
}
.hero__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms var(--ease);
}
.hero__product:hover img { transform: scale(1.03); }

.hero__product .corners {
  position: absolute;
  inset: 18px;
  pointer-events: none;
}
.hero__product .corners::before,
.hero__product .corners::after,
.hero__product .corners > span::before,
.hero__product .corners > span::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid rgba(10,10,10,0.35);
}
.hero__product .corners::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero__product .corners::after { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero__product .corners > span::before { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero__product .corners > span::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero__product .label-tl,
.hero__product .label-br {
  position: absolute;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 3px;
}
.hero__product .label-tl { top: 32px; left: 32px; }
.hero__product .label-br { bottom: 32px; right: 32px; }

.hero__ghost {
  position: absolute;
  left: 0; right: 0;
  bottom: -24px;
  pointer-events: none;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(180px, 28vw, 440px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: var(--ink);
  opacity: 0.035;
  text-align: center;
  user-select: none;
  z-index: -1;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__product { aspect-ratio: 4/3; }
  .hero__foot { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero__foot .n { font-size: 18px; }
  .hero__meta { margin-bottom: 40px; }
}
@media (max-width: 560px) {
  .hero__meta .left, .hero__meta .right { gap: 12px; font-size: 10px; }
  .hero__meta .right span:nth-child(1) { display: none; }
}

/* ==========================================================================
   Spec ticker (horizontal marquee of technical highlights)
   ========================================================================== */

.spec-ticker {
  padding: 26px 0;
  overflow: hidden;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  white-space: nowrap;
}
.spec-ticker__track {
  display: inline-flex;
  gap: 56px;
  animation: slide 48s linear infinite;
  will-change: transform;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 48;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.spec-ticker__track .sep {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}
.spec-ticker:hover .spec-ticker__track { animation-play-state: paused; }

/* ==========================================================================
   Section shell
   ========================================================================== */

.section {
  padding: 140px 0;
  position: relative;
}
.section--tight { padding: 96px 0; }
.section--paper { background: var(--bg-paper); }
.section--cream { background: var(--bg-cream); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-bottom: 88px;
  align-items: end;
}
.section__head .left .section-tag { margin-bottom: 32px; }
.section__head .right {
  max-width: 520px;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 24;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .section { padding: 96px 0; }
  .section--tight { padding: 72px 0; }
  .section__head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 56px; }
  .section__head .left .section-tag { margin-bottom: 18px; }
}

/* ==========================================================================
   Ethos (short manifesto)
   ========================================================================== */

.ethos {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.ethos__label {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ethos__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.ethos__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.ethos__list .r {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 100;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.ethos__list .t {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 24;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ethos__stamp {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ethos__body p {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 48;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.ethos__body p + p { color: var(--ink-2); font-size: clamp(20px, 2vw, 28px); }
.ethos__body .dropcap::first-letter {
  initial-letter: 3;
  -webkit-initial-letter: 3;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent);
  padding-right: 10px;
}
.ethos__sign {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.ethos__sign .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}

@media (max-width: 900px) {
  .ethos { grid-template-columns: 1fr; gap: 28px; }
  .ethos__label { position: static; }
}

/* ==========================================================================
   Considered (feature spread — alternating magazine rows)
   ========================================================================== */

.spread {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.row {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 80px;
  align-items: center;
}
.row--flip { grid-template-columns: 5fr 6fr; }
.row--flip .row__media { order: -1; }

.row__media {
  aspect-ratio: 5/4;
  background: var(--bg-cream);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.row:hover .row__media img { transform: scale(1.04); }
.row__media .mini {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 3px;
}

.row__body .num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-block;
}
.row__body h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.row__body h3 i { font-weight: 300; font-variation-settings: "opsz" 96, "SOFT" 100; }
.row__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 440px;
  margin-bottom: 22px;
}
.row__body .meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.row__body .meta span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

@media (max-width: 900px) {
  .spread { gap: 72px; }
  .row, .row--flip { grid-template-columns: 1fr; gap: 28px; }
  .row--flip .row__media { order: 0; }
}

/* ==========================================================================
   Technicals (specs index with leader dots)
   ========================================================================== */

.index__title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.index__title .title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(44px, 7vw, 100px);
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.index__title .title i {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent);
}

.index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  border-top: 1px solid var(--ink);
}
.index__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.index__item .key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.index__item .dots {
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-4px);
  min-width: 40px;
}
.index__item .val {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 32;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: right;
}

@media (max-width: 760px) {
  .index { grid-template-columns: 1fr; gap: 0; }
}

/* ==========================================================================
   Voices (pull-quote reviews)
   ========================================================================== */

.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 32px;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  transition: transform 320ms var(--ease), border-color 320ms var(--ease);
}
.voice:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.voice::before {
  content: "\201C";
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 84px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}

.voice__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 48;
  font-size: 20px;
  line-height: 1.38;
  color: var(--ink);
  letter-spacing: -0.01em;
  padding-top: 40px;
  margin: 0;
}
.voice__author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.voice__author strong {
  font-weight: 500;
  font-size: 14px;
}
.voice__author span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

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

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
}
.faq__label { position: sticky; top: 100px; }
.faq__label h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.faq__label h2 i { font-variation-settings: "opsz" 96, "SOFT" 100; }
.faq__label p {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 32;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 340px;
}
.faq__label a { color: var(--accent); border-bottom: 1px solid var(--accent); }

.faq__list { border-top: 1px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: baseline;
  transition: color 220ms var(--ease);
}
.faq__q:hover { color: var(--ink-2); }
.faq__q .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}
.faq__q .q {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 48;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}
.faq__q .sign {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 48, "SOFT" 100;
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  transition: transform 360ms var(--ease-back);
  line-height: 1;
}
.faq__item[aria-expanded="true"] .sign { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease);
}
.faq__a-inner {
  padding: 0 40px 32px 48px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 620px;
}
.faq__a-inner a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

@media (max-width: 900px) {
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .faq__label { position: static; }
  .faq__q .q { font-size: 18px; }
  .faq__a-inner { padding: 0 0 26px 28px; }
}

/* ==========================================================================
   Final CTA (editorial block)
   ========================================================================== */

.final {
  padding: 180px 0;
  background: var(--bg-paper);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.final__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.final__tag { margin-bottom: 40px; display: inline-block; }
.final h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
.final h2 i { font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--accent); }
.final p {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 32;
  font-size: 20px;
  line-height: 1.5;
  max-width: 460px;
  margin: 0 auto 40px;
  color: var(--ink-2);
}
.final__ctas {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.final__meta {
  margin-top: 56px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}

@media (max-width: 768px) {
  .final { padding: 120px 0; }
  .final__meta { gap: 16px; font-size: 10px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: #DFDDD7;
  padding: 100px 0 40px;
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 44px;
}
.footer__brand .wordmark {
  color: #FFF;
  font-size: 28px;
}
.footer__brand p {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 24;
  font-size: 16px;
  line-height: 1.55;
  color: #B5B1A8;
  max-width: 300px;
  margin: 18px 0 32px;
}
.newsletter {
  display: flex;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
  max-width: 380px;
  transition: border-color 220ms var(--ease);
}
.newsletter:focus-within { border-color: rgba(255,255,255,0.55); }
.newsletter input {
  flex: 1;
  border: 0; outline: 0; background: transparent;
  color: #FFF;
  font-size: 14px;
  padding: 8px 0;
}
.newsletter input::placeholder { color: #9A968C; }
.newsletter button {
  background: #FFF;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: background 200ms var(--ease);
}
.newsletter button:hover { background: var(--accent-soft); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 500;
  margin-bottom: 22px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: #B5B1A8;
  transition: color 180ms var(--ease);
  position: relative;
}
.footer__col a:hover { color: #FFF; }

.footer__contact {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 24;
  font-size: 14.5px;
  line-height: 1.75;
  color: #B5B1A8;
  font-style: normal;
}
.footer__contact a { color: #B5B1A8; }
.footer__contact a:hover { color: #FFF; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7C7970;
}
.footer__legal {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
}
.footer__legal a { color: #7C7970; }
.footer__legal a:hover { color: #FFF; }

.footer__big {
  margin-top: 48px;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(100px, 22vw, 340px);
  line-height: 0.8;
  letter-spacing: -0.055em;
  color: #111;
  text-align: center;
  user-select: none;
  pointer-events: none;
}
.footer__big i {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: #1A1A1A;
}

@media (max-width: 960px) {
  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 520px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Modal (order)
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 280ms var(--ease), visibility 0s linear 280ms;
}
.modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition: opacity 280ms var(--ease), visibility 0s;
}
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  background: #FFF;
  border-radius: 14px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 40px 36px;
  transform: scale(0.96) translateY(12px);
  opacity: 0;
  transition: transform 320ms var(--ease-back), opacity 240ms var(--ease);
}
.modal[aria-hidden="false"] .modal__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 180ms var(--ease);
}
.modal__close:hover { background: var(--bg-paper); }
.modal__close svg { width: 14px; height: 14px; }

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 28px;
}
.modal__head .left { display: flex; flex-direction: column; gap: 4px; }
.modal__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.modal__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 48;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.modal__title i { font-variation-settings: "opsz" 48, "SOFT" 100; }
.modal__price {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.modal__form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field input, .field select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  background: #FFF;
  font-size: 14px;
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms var(--ease);
}
.field input:focus, .field select:focus { border-color: var(--ink); }
.field-row {
  display: grid;
  grid-template-columns: 2fr 0.8fr 1fr;
  gap: 10px;
}
.field-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.modal__submit {
  margin-top: 10px;
  padding: 15px;
  background: var(--ink);
  color: #FFF;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 180ms var(--ease);
}
.modal__submit:hover { background: #000; }

.modal__foot {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}

.modal__success {
  padding: 24px 8px 8px;
  text-align: center;
}
.modal__success-mark {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__success h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 48;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal__success h3 i { font-variation-settings: "opsz" 48, "SOFT" 100; color: var(--accent); }
.modal__success p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink-2);
}

body.modal-open { overflow: hidden; }

@media (max-width: 520px) {
  .modal__panel { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.js-anim .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.js-anim .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Policy pages
   ========================================================================== */

.policy { padding: 80px 0 140px; background: var(--bg); }
.policy__head {
  max-width: 820px;
  margin: 0 auto 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.policy__head .kicker { margin-bottom: 16px; }
.policy__head h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 20px;
}
.policy__head h1 i { font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--accent); }
.policy__head time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.policy__body {
  max-width: 720px;
  margin: 0 auto;
}
.policy__body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 48px 0 14px;
  color: var(--ink);
}
.policy__body h2:first-child { margin-top: 0; }
.policy__body h2 .sec {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-right: 12px;
  text-transform: uppercase;
  font-weight: 500;
  vertical-align: 3px;
}
.policy__body p {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 18;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.policy__body p + p { color: var(--ink-2); }
.policy__body ul {
  margin: 8px 0 20px 22px;
  color: var(--ink-2);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
}
.policy__body li { margin-bottom: 6px; line-height: 1.65; }
.policy__body a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 180ms var(--ease);
}
.policy__body a:hover { border-color: var(--accent); }
