/* ============================================================
   IZAN RSVP — Concierge Atelier
   Direction A (default): Cream + Brass (letterpress)
   Direction B: Ivory + Indigo (via [data-direction="indigo"])
   ============================================================ */

:root {
  /* Cream + Brass */
  --paper:        oklch(96% 0.012 78);
  --paper-2:      oklch(94% 0.014 78);
  --paper-3:      oklch(91% 0.018 78);
  --ink:          oklch(20% 0.018 60);
  --ink-2:        oklch(34% 0.018 60);
  /* Was 54% — too faint on cream at small sizes; darkened for readable secondary text. */
  --ink-3:        oklch(45% 0.020 60);
  --rule:         oklch(80% 0.018 78);
  --rule-soft:    oklch(86% 0.014 78);
  --gilt:         oklch(58% 0.10 78);
  --gilt-2:       oklch(70% 0.08 78);
  --stamp:        oklch(40% 0.13 25);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --body:  "Newsreader", "EB Garamond", Georgia, serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --letterpress: 0 1px 0 oklch(98% 0.010 78), 0 -0.5px 0 oklch(86% 0.018 78);
}

[data-direction="indigo"] {
  --paper:        oklch(97% 0.008 90);
  --paper-2:      oklch(95% 0.010 90);
  --paper-3:      oklch(92% 0.012 90);
  --ink:          oklch(26% 0.06 270);
  --ink-2:        oklch(38% 0.05 270);
  --ink-3:        oklch(46% 0.045 270);
  --rule:         oklch(78% 0.03 270);
  --rule-soft:    oklch(86% 0.02 270);
  --gilt:         oklch(48% 0.10 30);
  --gilt-2:       oklch(60% 0.09 30);
  --stamp:        oklch(40% 0.10 30);
}

/* ===== Reset & base ===== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.62;
  /* Was 380 (near-light) — read as too thin on cream. 400 keeps the Newsreader
     elegance while being comfortably legible. */
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* Subtle paper grain via SVG noise */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ===== Atomic ===== */

.rule {
  border: 0;
  border-top: 0.5px solid var(--rule);
  margin: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 38px;
}
.section-label .numeral {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--gilt);
  letter-spacing: 0;
  text-transform: none;
}
.section-label .label-line {
  flex: 1;
  height: 0.5px;
  background: var(--rule);
  max-width: 80px;
}

.caption {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.dot-sep {
  margin: 0 8px;
  color: var(--rule);
}

/* ===== Type scale ===== */

.display, .display-1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--ink); }
.display-2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.014em;
  margin: 0 0 24px;
  color: var(--ink);
}
.kicker {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
}
.lede {
  font-family: var(--body);
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 40px;
}

sup {
  font-size: 0.55em;
  vertical-align: super;
  font-feature-settings: "sups";
}

/* ===== Buttons & links ===== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px 19px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 0.5px solid var(--ink);
  border-radius: 0;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn-primary .btn-arrow { transition: transform 0.2s ease; }
.btn-primary:hover { background: oklch(15% 0.018 60); }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }
.btn-primary.big {
  padding: 22px 36px 23px;
  font-size: 16px;
}

.btn-quiet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  border: 0.5px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-quiet:hover { background: var(--ink); color: var(--paper); }
.btn-quiet[disabled] { opacity: 0.35; pointer-events: none; }
.btn-quiet.sm { padding: 8px 14px; font-size: 13px; }

.link-quiet {
  font-size: 15px;
  color: var(--ink-2);
}
.link-quiet:hover { color: var(--ink); }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  border-bottom: 0.5px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.link-underline:hover { border-color: var(--ink); }

/* ===== Top bar ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--rule-soft);
}
.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.wordmark {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
}

/* ===== Logo wordmark ===== */
.izan-logo .lw {
  font-family: var(--serif);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.lw-ligature { gap: 10px; line-height: 1; align-items: baseline; }
.lw-ligature .lw-word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  /* enable refined OpenType where available */
  font-feature-settings: "liga", "dlig", "calt", "swsh";
}
.lw-ligature .lw-rule {
  width: 1px;
  height: 0.7em;
  background: var(--rule);
  display: inline-block;
  margin: 0 2px;
  align-self: center;
}
.lw-ligature .lw-rsvp {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  text-transform: lowercase;
}
.lw-monoline { gap: 14px; }
.lw-monoline .lw-word-spaced {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.lw-monoline .lw-mono-rsvp {
  font-family: var(--mono);
  font-size: 0.5em;
  letter-spacing: 0.24em;
  color: var(--ink-3);
}
.lw-stacked { flex-direction: column; align-items: flex-start; gap: 0; line-height: 1; }
.lw-stacked .lw-stack-top .lw-word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.lw-stacked .lw-stack-bot {
  font-family: var(--mono);
  font-size: 0.4em;
  letter-spacing: 0.32em;
  color: var(--ink-3);
  margin-top: 4px;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav a {
  font-size: 15px;
  color: var(--ink-2);
  transition: color 0.15s;
  position: relative;
}
.nav a:hover { color: var(--ink); }
.topbar-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 48px 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.estd {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 56px;
}
.estd-num { color: var(--gilt); font-family: var(--serif); font-size: 14px; letter-spacing: 0.12em; text-transform: none; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 80px;
}

.hero-meta {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding-top: 32px;
  border-top: 0.5px solid var(--rule);
}
.meta-item { display: flex; flex-direction: column; gap: 6px; }
.meta-num {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
}
.meta-num sup { color: var(--gilt); font-size: 0.5em; }
.meta-cap {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.meta-divide {
  width: 0.5px;
  background: var(--rule);
}

.hero-rule { margin-top: 80px; }

/* ===== Invitation Stack ===== */

.stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  isolation: isolate;
}

/* ===== Stack animation timeline =====
   stage-0: paper settles in (drop & rotate)
   stage-1: wax seal stamps down
   stage-2: WhatsApp bubble arrives + incoming message reveals
   stage-3: outgoing reply pings (typing → bubble pop)
   stage-4: quiet rest
*/

.paper-card {
  opacity: 0;
  transform: translate(20px, -30px) rotate(-6deg);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(.2,.7,.25,1);
}
.stack[data-stage]:not([data-stage="0"]) .paper-card,
.stack[data-stage="0"] .paper-card {
  opacity: 1;
  transform: translate(0,0) rotate(-2deg);
}

.wax-seal {
  opacity: 0;
  transform: rotate(-12deg) scale(2.4) translateY(-10px);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(.6,.1,.7,1.4);
  filter: drop-shadow(0 4px 8px oklch(40% 0.13 25 / 0.25));
}
.stack[data-stage="0"] .wax-seal { opacity: 0; }
.stack[data-stage="1"] .wax-seal,
.stack[data-stage="2"] .wax-seal,
.stack[data-stage="3"] .wax-seal,
.stack[data-stage="4"] .wax-seal {
  opacity: 1;
  transform: rotate(-12deg) scale(1) translateY(0);
}
.stack[data-stage="1"] .wax-seal {
  animation: sealImpact 0.45s cubic-bezier(.6,.1,.7,1.4) 0s 1;
}
@keyframes sealImpact {
  0%   { transform: rotate(-12deg) scale(2.4) translateY(-10px); opacity: 0; }
  60%  { transform: rotate(-12deg) scale(0.92) translateY(0); opacity: 1; }
  80%  { transform: rotate(-12deg) scale(1.04) translateY(0); }
  100% { transform: rotate(-12deg) scale(1) translateY(0); }
}

.bubble-card {
  opacity: 0;
  transform: translate(30px, 30px) rotate(6deg);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(.2,.7,.25,1);
}
.stack[data-stage="2"] .bubble-card,
.stack[data-stage="3"] .bubble-card,
.stack[data-stage="4"] .bubble-card {
  opacity: 1;
  transform: translate(0,0) rotate(2deg);
}

/* Inside-bubble reveals */
.bubble-incoming, .bubble-options, .bubble-outgoing, .bubble-time, .bubble-typing {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.bubble-typing { display: none; align-items: center; gap: 5px; padding: 8px 12px; background: var(--paper-2); border: 0.5px solid var(--rule-soft); width: fit-content; margin-bottom: 8px; }
.bubble-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--ink-3);
  animation: typingDot 1.1s ease-in-out infinite;
}
.bubble-typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(-2px); }
}

.stack[data-stage="2"] .bubble-incoming,
.stack[data-stage="3"] .bubble-incoming,
.stack[data-stage="4"] .bubble-incoming {
  opacity: 1; transform: translateY(0);
}
.stack[data-stage="2"] .bubble-options,
.stack[data-stage="3"] .bubble-options,
.stack[data-stage="4"] .bubble-options {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.2s;
}
.stack[data-stage="3"] .bubble-typing { display: flex; opacity: 1; transform: translateY(0); }
.stack[data-stage="3"] .bubble-outgoing,
.stack[data-stage="4"] .bubble-outgoing {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.5s;
  animation: bubblePop 0.4s cubic-bezier(.2,.7,.25,1.3) 0.5s 1 backwards;
}
@keyframes bubblePop {
  0%   { opacity: 0; transform: translateY(8px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.stack[data-stage="4"] .bubble-time {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.1s;
}
.bubble-time .ticks { color: oklch(60% 0.14 230); margin-left: 4px; letter-spacing: -0.05em; }

/* Avatar live-dot pulse (always on once visible) */
.bubble-status .dot { animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(60% 0.12 145 / 0.6); }
  60%      { box-shadow: 0 0 0 5px oklch(60% 0.12 145 / 0); }
}

/* Subtle paper float — runs always so it doesn't feel dead during stage 4 */
.paper-card { will-change: transform; }
.stack[data-stage="4"] .paper-card { animation: paperFloat 6s ease-in-out infinite; }
@keyframes paperFloat {
  0%, 100% { transform: translate(0,0) rotate(-2deg); }
  50%      { transform: translate(0,-3px) rotate(-1.6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .paper-card, .wax-seal, .bubble-card,
  .bubble-incoming, .bubble-options, .bubble-outgoing, .bubble-time {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
  .stack[data-stage="4"] .paper-card { transform: rotate(-2deg) !important; }
  .bubble-card { transform: rotate(2deg) !important; }
  .wax-seal { transform: rotate(-12deg) !important; }
  .bubble-typing { display: none !important; }
}
.paper-grain {
  position: absolute;
  inset: -30px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 40%, color-mix(in oklch, var(--gilt) 8%, transparent), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, color-mix(in oklch, var(--rule) 50%, transparent) 39px, color-mix(in oklch, var(--rule) 50%, transparent) 39.5px);
  opacity: 0.5;
}

.paper-card {
  position: absolute;
  top: 6%;
  left: 8%;
  width: 78%;
  height: 86%;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border: 0.5px solid var(--rule);
  box-shadow:
    0 1px 0 var(--paper-3),
    0 24px 48px -28px oklch(20% 0.02 60 / 0.18),
    0 60px 100px -40px oklch(20% 0.02 60 / 0.12);
  padding: 8% 9%;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.paper-flourish { position: absolute; width: 36px; height: 36px; color: var(--gilt); }
.paper-flourish.top-left { top: 14px; left: 14px; }
.paper-flourish.top-right { top: 14px; right: 14px; }
.paper-flourish.bot-left { bottom: 14px; left: 14px; }
.paper-flourish.bot-right { bottom: 14px; right: 14px; }
.paper-flourish svg { width: 100%; height: 100%; }

.paper-monogram { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 6px; }
.mono-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--gilt);
}
.mono-rule { width: 50px; }
.paper-eyebrow {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.paper-body {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.paper-line-1 {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.3;
}
.paper-line-2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.paper-line-3 {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.3;
}
.paper-name {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.05;
  color: var(--ink);
  margin: 8px 0 4px;
  letter-spacing: -0.01em;
}
.paper-rule-mid {
  width: 70%;
  margin: 8px 0 14px;
}
.paper-when {
  display: flex;
  align-items: center;
  gap: 24px;
}
.paper-date { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.date-day, .date-month {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
}
.date-num {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--gilt);
}
.paper-where {
  font-family: var(--serif);
  font-size: 13.5px;
  text-align: left;
  color: var(--ink-2);
  border-left: 0.5px solid var(--rule);
  padding-left: 18px;
  line-height: 1.5;
}

/* WhatsApp bubble card */
.bubble-card {
  position: absolute;
  bottom: 4%;
  right: 0;
  width: 56%;
  background: var(--paper);
  border: 0.5px solid var(--rule);
  box-shadow:
    0 12px 30px -16px oklch(20% 0.02 60 / 0.22),
    0 40px 70px -30px oklch(20% 0.02 60 / 0.15);
  padding: 18px 18px 16px;
  z-index: 2;
  font-size: 12.5px;
  color: var(--ink);
}
.bubble-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--rule-soft);
  margin-bottom: 12px;
}
.bubble-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gilt);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}
.bubble-name { font-weight: 500; font-size: 13px; }
.bubble-status {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 6px;
}
.bubble-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(60% 0.12 145);
}
.bubble-incoming {
  background: var(--paper-2);
  padding: 10px 12px;
  border-left: 1.5px solid var(--gilt);
  font-family: var(--body);
  line-height: 1.45;
  margin-bottom: 10px;
}
.bubble-options { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.bubble-opt {
  padding: 6px 10px;
  border: 0.5px solid var(--rule);
  font-size: 11px;
  font-family: var(--body);
}
.bubble-opt.muted { color: var(--ink-3); }
.bubble-outgoing {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  align-self: flex-end;
  margin-left: 30%;
  font-size: 12px;
}
.bubble-time {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-align: right;
  margin-top: 6px;
}

/* Wax seal */
.wax-seal {
  position: absolute;
  bottom: 32%;
  left: 0;
  width: 92px;
  height: 92px;
  z-index: 3;
}
.wax-seal .seal-bg { fill: var(--stamp); }
.wax-seal .seal-ring { stroke: oklch(85% 0.05 30); stroke-width: 0.6; }
.wax-seal .seal-ring-inner { stroke: oklch(85% 0.05 30); stroke-width: 0.4; }
.wax-seal .seal-text-1 {
  font-family: var(--serif);
  font-size: 9.5px;
  font-style: italic;
  fill: oklch(92% 0.04 30);
  letter-spacing: 0.16em;
}
.wax-seal .seal-text-2 {
  font-family: var(--serif);
  font-size: 7.5px;
  fill: oklch(92% 0.04 30);
  letter-spacing: 0.18em;
}
.wax-seal .seal-text-3 {
  font-family: var(--mono);
  font-size: 4px;
  fill: oklch(92% 0.04 30);
  letter-spacing: 0.18em;
}

/* ===== Quietband ===== */

.quietband {
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  background: var(--paper-2);
  overflow: hidden;
}
.qb-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.qb-line {
  display: block;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink-2);
  max-width: 80ch;
  line-height: 1.5;
}
.qb-dot { color: var(--gilt); font-size: 14px; }

/* ===== Services ===== */

.services {
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 48px;
}
.services-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--rule);
}
.service {
  padding: 40px 36px 48px;
  border-bottom: 0.5px solid var(--rule);
  border-right: 0.5px solid var(--rule);
  position: relative;
}
.services-grid .service:nth-child(3n) { border-right: 0; }
.services-grid .service:nth-last-child(-n+3) { border-bottom: 0; }
.service-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.service-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gilt);
}
.service-rule { flex: 1; }
.service-title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
  min-height: 2.3em;
  display: block;
}
.service-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 38ch;
}

/* ===== Method ===== */

.method {
  background: var(--paper-2);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.method > * { max-width: 1320px; margin-left: auto; margin-right: auto; padding-left: 48px; padding-right: 48px; }
.method { padding: 140px 0; }
.method-head { margin-bottom: 80px; max-width: 700px; }
.method-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.movement {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.movement-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--gilt);
}
.movement-title {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}
.movement-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.movement-rule {
  width: 0.5px;
  background: var(--rule);
  margin: 60px 0 30px;
}

/* ===== The Moment ===== */

.moment {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.moment-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.moment-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: grayscale(0.15) brightness(0.55) contrast(1.05);
  animation: moment-burn 28s ease-in-out infinite alternate;
}
@keyframes moment-burn {
  0% { transform: scale(1) translate(-1%, 0); }
  100% { transform: scale(1.1) translate(1%, -1.5%); }
}
.moment-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, oklch(15% 0.018 60 / 0.15) 0%, oklch(15% 0.018 60 / 0.55) 80%),
    linear-gradient(180deg, oklch(18% 0.018 60 / 0.25) 0%, oklch(15% 0.02 60 / 0.45) 100%);
}
.moment-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.moment .display-2 { color: var(--paper); }
.moment .display-2 em { color: var(--gilt-2); }
.moment .kicker { color: oklch(82% 0.014 60); }
.moment .section-label { color: oklch(70% 0.014 60); }
.moment .section-label .label-line { background: oklch(40% 0.018 60); }
.moment-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.moment-stage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.moment-canvas {
  background: var(--paper-2);
  border: 0.5px solid var(--rule);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px oklch(8% 0 0 / 0.6),
    0 0 0 1px oklch(40% 0.018 60 / 0.4);
}
.moment-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 35px, color-mix(in oklch, var(--rule) 60%, transparent) 35px, color-mix(in oklch, var(--rule) 60%, transparent) 35.5px);
  opacity: 0.5;
  pointer-events: none;
}
.vignette { position: relative; z-index: 1; max-width: 480px; width: 100%; }
.vignette-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.msg-bubble {
  padding: 16px 20px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  max-width: 380px;
}
.msg-bubble.incoming {
  background: var(--paper);
  border-left: 2px solid var(--gilt);
  color: var(--ink);
}
.msg-bubble.outgoing {
  background: var(--ink);
  color: var(--paper);
  margin-left: auto;
}
.vignette.pause .pause-art {
  display: flex; gap: 14px;
  margin-bottom: 28px;
}
.pause-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-3);
  animation: pulse 1.6s ease-in-out infinite;
}
.pause-dot:nth-child(2) { animation-delay: 0.2s; }
.pause-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.vignette-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0;
  max-width: 24ch;
}
.vignette.voice { color: var(--ink); }
.phone-trace {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  color: var(--gilt);
}
.vignette-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 20px;
  border-left: 1px solid var(--gilt);
  padding-left: 22px;
  min-height: 4em;
}

.caret {
  display: inline-block;
  width: 1px;
  color: var(--gilt);
  font-weight: 300;
  margin-left: 1px;
  animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.vignette-attribution {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.moment-controls {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}
.moment-steps {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 0.5px solid oklch(40% 0.018 60);
}
.moment-steps li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 0.5px solid oklch(40% 0.018 60);
  cursor: pointer;
  transition: background 0.15s, padding 0.15s;
}
.moment-steps li:hover { background: oklch(25% 0.018 60 / 0.5); padding-left: 12px; }
.moment-steps li.active {
  padding-left: 12px;
  background: oklch(25% 0.018 60 / 0.6);
}
.moment-steps li.active .step-label { color: var(--paper); font-style: italic; }
.moment-steps li.active .step-n { color: var(--gilt-2); }
.step-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: oklch(65% 0.014 60);
  min-width: 24px;
}
.step-label {
  font-family: var(--serif);
  font-size: 19px;
  color: oklch(82% 0.014 60);
  white-space: nowrap;
}
.moment .btn-quiet {
  border-color: oklch(50% 0.018 60);
  color: oklch(82% 0.014 60);
}
.moment .btn-quiet:hover:not(:disabled) {
  border-color: var(--gilt-2);
  color: var(--gilt-2);
}
.moment-nav {
  display: flex;
  gap: 12px;
}

/* ===== Voices ===== */

.voices {
  background: var(--paper-2);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  padding: 140px 0;
}
.voices > .section-label,
.voices > h2,
.voices-grid,
.voices-rating {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
.voices-head { margin-bottom: 80px; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--rule);
  padding-left: 0; padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1320px;
  width: calc(100% - 0px);
}
.voices-grid {
  padding-left: 48px; padding-right: 48px;
}
.voice {
  margin: 0;
  padding: 48px 36px 56px;
  border-bottom: 0.5px solid var(--rule);
  border-right: 0.5px solid var(--rule);
  position: relative;
}
.voices-grid .voice:nth-child(2n) { border-right: 0; }
.voices-grid .voice:nth-last-child(-n+2) { border-bottom: 0; }
.voice-mark {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--gilt);
  margin-bottom: 16px;
}
.voice-pull {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.voice-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 50ch;
}
.voice-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.voice-who { color: var(--ink); }
.voice-what { color: var(--ink-3); }
.voices-rating {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 0.5px solid var(--rule);
  flex-wrap: wrap;
}
.rating-stars { color: var(--gilt); font-size: 18px; letter-spacing: 0.05em; }
.rating-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
}
.rating-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.voices-rating .link-underline { margin-left: auto; }

/* ===== Trust ===== */

.trust {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.trust-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trust-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(0.2) brightness(0.55) contrast(1.05);
  animation: trust-burn 32s ease-in-out infinite alternate;
}
@keyframes trust-burn {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, 1%); }
}
.trust-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 40%, oklch(15% 0.018 60 / 0.18) 0%, oklch(15% 0.018 60 / 0.6) 80%),
    linear-gradient(180deg, oklch(18% 0.018 60 / 0.3) 0%, oklch(15% 0.02 60 / 0.5) 100%);
}
.trust-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.trust-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--rule);
}
.trust-card {
  padding: 40px 36px;
  border-right: 0.5px solid var(--rule);
}
.trust-grid .trust-card:last-child { border-right: 0; }
.trust-glyph { color: var(--gilt); margin-bottom: 22px; }
.trust-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 16px;
}
.trust-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ===== Closing ===== */

.closing {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: grayscale(20%) brightness(0.78) contrast(1.05) saturate(0.9);
  transform: scale(1.06);
  animation: closingKenBurns 28s ease-in-out infinite alternate;
}
@keyframes closingKenBurns {
  0%   { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.12) translate(1.5%, -1%); }
}
.closing-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 50%, oklch(20% 0.018 60 / 0.55) 0%, oklch(20% 0.018 60 / 0.85) 70%, oklch(18% 0.02 60 / 0.95) 100%),
    linear-gradient(180deg, oklch(20% 0.018 60 / 0.45) 0%, oklch(18% 0.02 60 / 0.7) 100%);
}
.closing .rule { position: relative; z-index: 2; border-color: oklch(40% 0.018 60); }
.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.closing .display-1 { color: var(--paper); }
.closing .display-1 em { color: var(--gilt-2); }
.closing .kicker { color: oklch(82% 0.014 60); max-width: 60ch; }
.closing .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.closing .btn-primary:hover { background: var(--gilt-2); border-color: var(--gilt-2); }
.closing-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(70% 0.014 60);
  display: flex; align-items: center;
}
.closing-meta .dot-sep { color: oklch(50% 0.018 60); }

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

.foot {
  background: var(--paper);
  border-top: 0.5px solid var(--rule);
}
.foot-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
}
.foot-mark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.foot-copy {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 36ch;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.foot-col a, .foot-col span {
  font-size: 16px;
  color: var(--ink-2);
  transition: color 0.15s;
}
.foot-col a:hover { color: var(--ink); }

.foot-fine {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 48px 60px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Ornament dividers ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 48px;
}
.ornament-rule {
  height: 0.5px;
  background: var(--rule);
  width: 90px;
}
.ornament-symbol {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gilt);
  line-height: 1;
}

/* ===== Statement spread ===== */
.statement {
  background: var(--ink);
  color: var(--paper);
  border-top: 0.5px solid oklch(40% 0.018 60);
  border-bottom: 0.5px solid oklch(40% 0.018 60);
  position: relative;
  overflow: hidden;
}
.statement-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.statement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: grayscale(15%) brightness(0.85) contrast(1.05);
  transform: scale(1.08);
  animation: statementKenBurns 24s ease-in-out infinite alternate;
}
@keyframes statementKenBurns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1.5%, -1%); }
}
.statement-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, oklch(20% 0.018 60 / 0.55) 0%, oklch(20% 0.018 60 / 0.85) 70%, oklch(18% 0.02 60 / 0.95) 100%),
    linear-gradient(180deg, oklch(20% 0.018 60 / 0.4) 0%, oklch(18% 0.02 60 / 0.7) 100%);
}
.statement-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.statement-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(70% 0.014 60);
}
.statement-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.014em;
  margin: 0;
  color: var(--paper);
  max-width: 18ch;
}
.statement-line em { color: var(--gilt-2); }
.statement-attr {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(72% 0.014 60);
}

/* ===== Numbers spread ===== */
.numbers {
  background: var(--paper);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.numbers-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 48px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--rule);
}
.num-cell {
  padding: 56px 32px 0;
  border-right: 0.5px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.num-cell:last-child { border-right: 0; }
.num-big {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 400;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.num-big sup { font-size: 0.35em; color: var(--gilt); top: -0.4em; position: relative; }
.num-cap {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ===== Service icon — slot in head row ===== */
.service-head { gap: 14px; }
.service-head svg { flex-shrink: 0; }

/* ===== Trust inversion (deep ink panel) ===== */
.trust { background: var(--ink); color: var(--paper); }
.trust .display-2 { color: var(--paper); }
.trust .display-2 em { color: var(--gilt-2); }
.trust .kicker { color: oklch(78% 0.014 60); }
.trust .section-label { color: oklch(70% 0.014 60); }
.trust .section-label .label-line { background: oklch(40% 0.018 60); }
.trust-grid { border-color: oklch(40% 0.018 60); }
.trust-card { border-color: oklch(40% 0.018 60); color: var(--paper); }
.trust-title { color: var(--paper); }
.trust-body { color: oklch(78% 0.014 60); }
.trust-glyph { color: var(--gilt-2); }

@media (max-width: 1080px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-cell { border-right: 0.5px solid var(--rule); border-bottom: 0.5px solid var(--rule); padding: 40px 24px; }
  .num-cell:nth-child(2n) { border-right: 0; }
  .num-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
/* ===== Responsive ===== */

@media (max-width: 1080px) {
  .hero-grid, .services-head, .moment-head, .trust-head {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service:nth-child(3n) { border-right: 0.5px solid var(--rule); }
  .services-grid .service:nth-child(2n) { border-right: 0; }
  .services-grid .service:nth-last-child(-n+3) { border-bottom: 0.5px solid var(--rule); }
  .services-grid .service:nth-last-child(-n+2) { border-bottom: 0; }
  .method-grid { grid-template-columns: 1fr; }
  .movement-rule { display: none; }
  .moment-stage { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }
  .voices-grid .voice { border-right: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { border-right: 0; border-bottom: 0.5px solid var(--rule); }
  .foot-inner { grid-template-columns: 1fr; gap: 48px; }
  .foot-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .topbar-inner { grid-template-columns: 1fr auto; padding: 14px 24px; }
  .nav { display: none; }
  .hero { padding: 60px 24px 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 56px; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
  .meta-divide { display: none; }
  .services, .method { padding: 80px 24px; }
  .moment, .trust { padding: 80px 0; }
  .moment-inner, .trust-inner { padding: 0 24px; }
  .closing-inner { padding: 80px 24px; }
  .foot-inner, .foot-fine { padding-left: 24px; padding-right: 24px; }
  .foot-cols { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service { border-right: 0; }
  .display, .display-1 { font-size: 44px; }
  .display-2 { font-size: 32px; }
}
