/* =========================================================
   MandapBook — explainer site
   Palette:
     --accent  #9F1239  maroon-rose (weddings)
     --ink     #1C1A17  warm near-black
     --paper   #FBF7F2  warm off-white
     --tint    #F0E3D6  blush-sand muted
     --mari    #E8A33D  marigold (warning/auspicious signal, used with restraint)
   Type: system stack; hierarchy from weight/width/tracking + tabular numerals.
   ========================================================= */

:root {
  --accent: #9F1239;
  --accent-deep: #7A0E2C;
  --ink: #1C1A17;
  --ink-soft: #4A443C;
  --paper: #FBF7F2;
  --tint: #F0E3D6;
  --tint-line: #E4D3C2;
  --mari: #E8A33D;
  --mari-deep: #C9832A;
  --paper-2: #FFFFFF;

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1120px;
  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 1px 2px rgba(28,26,23,.06), 0 18px 40px -24px rgba(28,26,23,.28);
  --shadow-lg: 0 2px 4px rgba(28,26,23,.06), 0 40px 80px -40px rgba(122,14,44,.35);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- shared type ---------- */
.eyebrow {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--paper { color: var(--mari); }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--tint); }
.section__title {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 1rem;
  max-width: 20ch;
}
.section__title.center { margin-inline: auto; text-align: center; }
.section__lede {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  max-width: 60ch;
}
.section__lede.center { margin-inline: auto; text-align: center; }
.center { text-align: center; }
.u-accent { color: var(--accent); }
.u-mari { color: var(--mari-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: inherit; font-weight: 700; font-size: .98rem;
  text-decoration: none; cursor: pointer;
  border-radius: 999px;
  padding: .72rem 1.35rem;
  background: var(--accent); color: #fff;
  border: 1.5px solid var(--accent);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 22px -14px rgba(122,14,44,.9);
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .55rem 1.05rem; font-size: .9rem; }
.btn--lg { padding: .92rem 1.7rem; font-size: 1.04rem; }
.btn--block { width: 100%; }
.btn--ghost {
  background: transparent; color: var(--accent);
  border-color: var(--tint-line);
  box-shadow: none;
}
.btn--ghost:hover { background: #fff; border-color: var(--accent); color: var(--accent); }

/* ---------- brand ---------- */
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--accent); }
.brand__mark { display: inline-flex; color: var(--accent); }
.brand__word { font-weight: 800; letter-spacing: -0.01em; font-size: 1.14rem; color: var(--ink); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--tint-line);
}
.nav__inner { display: flex; align-items: center; gap: 1.2rem; height: 66px; }
.nav__links { display: flex; gap: 1.5rem; margin-left: auto; }
.nav__links a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink-soft); position: relative; }
.nav__links a:hover { color: var(--accent); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--accent);
  transition: right .2s ease;
}
.nav__links a:hover::after { right: 0; }
.nav .btn--sm { margin-left: 0; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__inner .btn--sm { margin-left: auto; }
}

/* ---------- 1. HERO ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(232,163,61,.16), transparent 45%),
    radial-gradient(100% 100% at -10% 10%, rgba(159,18,57,.08), transparent 50%),
    var(--paper);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: .98;
  letter-spacing: -0.035em;
  font-weight: 900;
  margin: 0 0 1.2rem;
}
.hero__lede {
  font-size: clamp(1.05rem, 2.2vw, 1.24rem);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 1.9rem;
}
.hero__lede em { font-style: italic; color: var(--ink); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.1rem; }
.hero__note { font-size: .9rem; color: var(--ink-soft); margin: 0; font-weight: 600; }

/* hero collision demo (signature) */
.hero__demo { display: flex; flex-direction: column; gap: .8rem; }
.collide {
  background: var(--paper-2);
  border: 1px solid var(--tint-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.15rem 1.15rem 1.3rem;
  position: relative;
}
.collide__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: .5rem; flex-wrap: wrap;
  padding-bottom: .85rem; margin-bottom: .85rem;
  border-bottom: 1px dashed var(--tint-line);
}
.collide__date { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.collide__cap { font-size: .82rem; color: var(--ink-soft); }
.collide__cap strong { color: var(--ink); }
.collide__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.bkg {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .6rem;
  padding: .6rem .7rem;
  background: var(--paper);
  border: 1px solid var(--tint-line);
  border-radius: 10px;
  font-size: .92rem;
}
.bkg__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.bkg__name { font-weight: 700; }
.bkg__area { font-size: .78rem; color: var(--ink-soft); letter-spacing: .01em; }
.bkg--new {
  border-color: var(--mari);
  background: color-mix(in srgb, var(--mari) 12%, var(--paper-2));
  opacity: 0; height: 0; padding-block: 0; margin: 0; border-width: 0;
  transform: translateY(-6px);
  overflow: hidden;
  transition: opacity .3s ease, height .3s ease, padding .3s ease, transform .3s ease, border-width .3s ease;
}
.bkg--new .bkg__dot { background: var(--mari-deep); }
.collide.is-over .bkg--new {
  opacity: 1; height: auto; padding: .6rem .7rem; border-width: 1px; transform: translateY(0);
}
.collide.is-over { animation: shake .4s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.collide__warn {
  display: flex; gap: .6rem; align-items: flex-start;
  margin-top: .9rem; padding: .75rem .85rem;
  background: color-mix(in srgb, var(--mari) 18%, #fff);
  border: 1px solid var(--mari-deep);
  border-radius: 12px;
  font-size: .88rem; line-height: 1.45;
}
.collide__warn[hidden] { display: none; }
.collide__warn-ic {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: var(--mari-deep); color: #fff; font-weight: 900;
  display: grid; place-items: center; font-size: .95rem; margin-top: 1px;
}
.collide__toggle {
  font-family: inherit; font-weight: 700; font-size: .9rem;
  color: var(--accent); background: #fff;
  border: 1.5px dashed var(--tint-line); border-radius: 999px;
  padding: .6rem 1rem; cursor: pointer; align-self: flex-start;
  transition: border-color .15s ease, color .15s ease;
}
.collide__toggle:hover { border-color: var(--accent); }
.collide__toggle.is-active { color: var(--ink-soft); }

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

/* ---------- 2. PROBLEM ---------- */
.pain {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 2.6rem;
}
.pain__card {
  background: var(--paper-2);
  border: 1px solid var(--tint-line);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
}
.pain__ic {
  display: inline-flex; color: var(--accent);
  width: 46px; height: 46px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 9%, #fff);
  align-items: center; justify-content: center; margin-bottom: 1rem;
}
.pain__card h3 { margin: 0 0 .5rem; font-size: 1.16rem; letter-spacing: -0.01em; }
.pain__card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.pain__punch {
  margin: 2.6rem auto 0; max-width: 42ch; text-align: center;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem); font-weight: 800; line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (max-width: 780px) { .pain { grid-template-columns: 1fr; } }

/* ---------- 3. INSIGHT ---------- */
.insight {
  background: var(--ink); color: var(--paper);
  padding: clamp(3.5rem, 9vw, 7rem) 0;
}
.insight__inner { max-width: 960px; margin-inline: auto; text-align: center; }
.insight__big {
  font-size: clamp(1.5rem, 4.4vw, 2.6rem);
  line-height: 1.24; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
}
.insight__big .u-mari { color: var(--mari); }
.insight__sig {
  font-size: .95rem; letter-spacing: .04em; color: color-mix(in srgb, var(--paper) 62%, transparent);
  margin: 0; font-weight: 600;
}

/* ---------- 4. STEPS ---------- */
.steps {
  list-style: none; margin: 2.6rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--tint-line);
  border-radius: var(--r);
  padding: 1.5rem 1.35rem 1.55rem;
}
.step__n {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent); color: #fff;
  font-weight: 900; font-size: 1.15rem;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}
.step__body h3 { margin: 0 0 .45rem; font-size: 1.1rem; letter-spacing: -0.01em; }
.step__body p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- 5. FEATURES ---------- */
.feat {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: 2.6rem;
}
.feat__card {
  background: var(--paper-2);
  border: 1px solid var(--tint-line);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.feat__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feat__card h3 {
  margin: 0 0 .55rem; font-size: 1.12rem; letter-spacing: -0.01em;
  display: flex; flex-direction: column; gap: .55rem; align-items: flex-start;
}
.feat__tag {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  padding: .28rem .6rem; border-radius: 999px;
}
.feat__card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 900px) { .feat { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat { grid-template-columns: 1fr; } }

/* ---------- 6. PRODUCT PREVIEW ---------- */
.shot {
  margin: 2.6rem auto 0; max-width: 1000px;
  background: var(--paper-2);
  border: 1px solid var(--tint-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.shot__chrome {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem 1rem;
  background: var(--tint);
  border-bottom: 1px solid var(--tint-line);
}
.shot__dots { display: inline-flex; gap: .4rem; }
.shot__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--tint-line); display: block; }
.shot__dots i:first-child { background: var(--accent); }
.shot__url {
  font-family: var(--mono); font-size: .78rem; color: var(--ink-soft);
  background: var(--paper); padding: .28rem .8rem; border-radius: 999px;
  border: 1px solid var(--tint-line);
}
.shot__body { padding: clamp(1rem, 3vw, 1.7rem); }

.dash__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.3rem;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--tint-line);
  border-radius: 12px; padding: 1rem 1.1rem;
}
.stat--warn { border-color: var(--mari); background: color-mix(in srgb, var(--mari) 10%, var(--paper)); }
.stat__label { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 700; }
.stat__num {
  display: block; font-size: clamp(1.35rem, 3.6vw, 1.85rem); font-weight: 900; letter-spacing: -0.02em;
  margin: .25rem 0 .1rem; font-variant-numeric: tabular-nums; line-height: 1.1;
}
.stat--warn .stat__num { color: var(--mari-deep); }
.stat__sub { font-size: .8rem; color: var(--ink-soft); }

.dash__cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.2rem; }
.dash__panel, .dash__side { min-width: 0; }
.dash__h {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft);
  font-weight: 800; margin: 0 0 .7rem;
}
.dash__h--tight { margin-top: 1.2rem; }

.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 10px; }
.dtbl {
  width: 100%; border-collapse: collapse; font-size: .88rem;
  min-width: 420px;
}
.dtbl th {
  text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-soft); font-weight: 800;
  padding: .5rem .7rem; border-bottom: 1.5px solid var(--tint-line);
}
.dtbl td { padding: .62rem .7rem; border-bottom: 1px solid var(--tint-line); vertical-align: top; }
.dtbl tbody tr:last-child td, .dtbl tbody tr:last-child td { border-bottom: none; }
.dtbl .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.dtbl__ev { display: block; font-weight: 700; }
.dtbl__ar { display: block; font-size: .76rem; color: var(--ink-soft); }
.dtbl .due { color: var(--accent); font-weight: 700; }
.dtbl .paid { color: #2E7D57; font-weight: 700; }
.dtbl tr.clash { background: color-mix(in srgb, var(--mari) 12%, transparent); }
.chip {
  display: inline-block; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: .1rem .42rem; border-radius: 999px; margin-left: .3rem; vertical-align: middle;
}
.chip--clash { background: var(--mari-deep); color: #fff; }

.conflict {
  display: flex; gap: .7rem; align-items: flex-start;
  background: color-mix(in srgb, var(--mari) 16%, #fff);
  border: 1px solid var(--mari-deep); border-radius: 12px;
  padding: .9rem; margin-bottom: .4rem;
}
.conflict__ic {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--mari-deep); color: #fff; font-weight: 900;
  display: grid; place-items: center; font-size: 1rem;
}
.conflict__t { margin: 0 0 .2rem; font-weight: 800; font-size: .92rem; }
.conflict__d { margin: 0; font-size: .82rem; color: var(--ink-soft); line-height: 1.4; }

.rem { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.rem__row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .55rem;
  background: var(--paper); border: 1px solid var(--tint-line); border-radius: 10px;
  padding: .55rem .65rem; font-size: .84rem;
}
.rem__dot { width: 8px; height: 8px; border-radius: 50%; }
.rem__dot--bal { background: var(--accent); }
.rem__dot--adv { background: var(--mari-deep); }
.rem__txt { min-width: 0; }
.rem__txt strong { font-weight: 800; }
.rem__when { font-size: .74rem; color: var(--ink-soft); white-space: nowrap; font-weight: 600; }

.shot__cap { text-align: center; margin: 1rem auto 0; font-size: .82rem; color: var(--ink-soft); max-width: 55ch; }

@media (max-width: 820px) { .dash__cols { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .dash__stats { grid-template-columns: 1fr; } }

/* ---------- 7. PRICING ---------- */
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .section__title.invert { color: var(--paper); }
.price {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.5rem;
  margin-top: 2.6rem; align-items: stretch;
  max-width: 940px; margin-inline: auto;
}
.price__card {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-lg); padding: 2rem 1.9rem;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--accent);
}
.price__plan { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; margin: 0 0 .3rem; color: var(--accent); }
.price__amt { font-size: clamp(3rem, 8vw, 4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin: 0 0 .8rem; font-variant-numeric: tabular-nums; }
.price__cur { font-size: .42em; font-weight: 800; vertical-align: .55em; margin-right: .12em; }
.price__per { font-size: .28em; font-weight: 700; color: var(--ink-soft); vertical-align: .3em; }
.price__roi { margin: 0 0 1.3rem; font-weight: 700; color: var(--ink); font-size: 1rem; line-height: 1.4; }
.price__list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.price__list li { position: relative; padding-left: 1.7rem; font-size: .95rem; color: var(--ink-soft); }
.price__list li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 16px; height: 9px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}
.price__fine { margin: .9rem 0 0; font-size: .82rem; color: var(--ink-soft); text-align: center; }

.price__aside {
  align-self: center; color: var(--paper); padding: .5rem 1rem;
}
.price__math-h { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; color: var(--mari); margin: 0 0 1rem; }
.price__math { font-size: 1.12rem; line-height: 1.55; margin: 0 0 1.1rem; color: color-mix(in srgb, var(--paper) 90%, transparent); }
.price__math strong { color: #fff; }
.price__math--muted { font-size: .98rem; color: color-mix(in srgb, var(--paper) 68%, transparent); }
.price__math--muted strong { color: color-mix(in srgb, var(--paper) 92%, transparent); }
@media (max-width: 820px) { .price { grid-template-columns: 1fr; } .price__aside { padding: 0; } }

/* ---------- 8. WHO + FAQ ---------- */
.who__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.who__list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .9rem; }
.who__list li {
  padding-left: 1.5rem; position: relative; color: var(--ink-soft); font-size: 1rem; line-height: 1.5;
}
.who__list li strong { color: var(--ink); }
.who__list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.faq__item { padding: 1.15rem 0; border-bottom: 1px solid var(--tint-line); }
.faq__item:first-of-type { border-top: 1px solid var(--tint-line); }
.faq__item h3 { margin: 0 0 .45rem; font-size: 1.06rem; letter-spacing: -0.01em; }
.faq__item p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
@media (max-width: 820px) { .who__grid { grid-template-columns: 1fr; } }

/* ---------- 9. FOOTER ---------- */
.footer { background: var(--paper); border-top: 1px solid var(--tint-line); padding: 2.8rem 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: .55rem; text-align: center; }
.footer__tag { margin: .2rem 0 0; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.footer__contact { margin: 0; }
.footer__contact a { color: var(--accent); font-weight: 700; text-decoration: none; }
.footer__contact a:hover { text-decoration: underline; }
.footer__studio { margin: .6rem 0 0; font-size: .86rem; color: var(--ink-soft); letter-spacing: .04em; }
.footer__studio strong { color: var(--ink); letter-spacing: .1em; }
