/* ============================================================
   Belmares Studio Warning — a personal, first-hand review
   Warm editorial system · Inter · paper + restrained oxblood
   ============================================================ */

:root {
  /* clean white background + light neutrals */
  --paper:      oklch(1 0 0);
  --paper-2:    oklch(0.975 0.003 40);
  --paper-3:    oklch(0.948 0.004 40);
  --ink:        oklch(0.215 0.012 45);
  --ink-soft:   oklch(0.420 0.011 48);
  --ink-faint:  oklch(0.575 0.009 50);
  --line:       oklch(0.900 0.004 45);
  --line-soft:  oklch(0.945 0.003 45);

  /* warning accent — bright, saturated red (a bad-experience signal) */
  --accent:      oklch(0.565 0.218 27);
  --accent-deep: oklch(0.490 0.205 27);
  --accent-tint: oklch(0.565 0.218 27 / 0.12);
  --accent-line: oklch(0.565 0.218 27 / 0.32);
  --accent-wash: oklch(0.965 0.030 27);   /* faint red band on white */

  --measure: 46rem;        /* reading column ~736px */
  --wide: 74rem;           /* nav / bands / footer */
  --type-scale: 1;         /* tweakable */
  --section-y: clamp(3.5rem, 6vw, 5.5rem);  /* ONE vertical rhythm for every section */

  --serif: 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

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

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: calc(1.06rem * var(--type-scale));
  line-height: 1.72;
  font-feature-settings: "ss01", "cv05", "cv11";
  letter-spacing: -0.003em;
}

::selection { background: var(--accent-tint); color: var(--accent-deep); }

a { color: inherit; }

/* ---------- reading-progress bar ---------- */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--accent);
  z-index: 60; transition: width 0.08s linear;
}

/* =========================== NAV =========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem clamp(1.3rem, 4vw, 2.6rem);
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
}
.nav__brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.nav__brand .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); flex: none;
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.nav__brand small {
  color: var(--ink-faint); font-weight: 500;
}
.nav__links {
  display: flex; align-items: center; gap: 0.35rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  display: block; text-decoration: none;
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.5rem 0.9rem; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--ink); background: var(--paper-2); }
.nav__links a.active { color: var(--accent-deep); }
.nav__cta {
  margin-left: 0.5rem;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none; color: var(--paper);
  background: var(--accent); padding: 0.68rem 1.25rem;
  border-radius: 9px; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* =========================== LAYOUT =========================== */
.wrap { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.4rem); }
.col  { width: 100%; max-width: var(--measure); }
.col-center { margin-inline: auto; }

section { position: relative; }

/* eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 1.3rem;
}
.eyebrow::before {
  content: ""; width: 2.2rem; height: 3px; background: var(--accent);
}

h2.section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.08; font-weight: 800; letter-spacing: -0.03em;
  margin: 0 0 1.5rem; text-wrap: balance;
}
h2.section-title .red { color: var(--accent); }
.lede {
  font-size: calc(1.18rem * var(--type-scale));
  line-height: 1.62; color: var(--ink-soft); font-weight: 400;
}
p { margin: 0 0 1.25rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 600; color: var(--ink); }

/* =========================== HERO =========================== */
.hero {
  padding-top: clamp(7rem, 14vh, 9.5rem);
  padding-bottom: var(--section-y);
}
.hero__grid {
  display: grid; grid-template-columns: 1.35fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
  background: var(--accent);
  padding: 0.5rem 0.95rem 0.5rem 0.75rem; border-radius: 100px;
  margin-bottom: 1.8rem; white-space: nowrap;
  box-shadow: 0 6px 18px -8px var(--accent);
}
.hero__tag svg { width: 15px; height: 15px; }

.hero h1 {
  font-size: clamp(2.3rem, 4.8vw, 3.4rem);
  line-height: 1.12; font-weight: 800; letter-spacing: -0.03em;
  margin: 0 0 2.2rem; text-wrap: pretty;
}
.hero h1 .em { color: var(--accent); }

.hero__lede {
  font-size: calc(1.28rem * var(--type-scale));
  line-height: 1.55; color: var(--ink-soft); max-width: 38rem; font-weight: 450;
  margin: 0 0 2rem;
}
.hero__lede strong { color: var(--accent); font-weight: 700; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.hero__meta {
  margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  font-size: 0.82rem; color: var(--ink-faint);
}
.hero__meta b { color: var(--ink-soft); font-weight: 600; }

/* shared figure (used in image bands lower down the page) */
.figure {
  position: relative; margin: 0;
  border-radius: 4px; overflow: hidden;
  background: var(--paper-3);
  box-shadow: 0 1px 2px rgba(40,30,20,.06), 0 18px 40px -18px rgba(40,30,20,.22);
}
.figure img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* hero verdict card — a loud 1.0 / 5 "buyer beware" rating */
.hero__verdict { position: relative; }
.verdict-card {
  background: var(--ink); color: #fff;
  border-radius: 20px; padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid var(--ink);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.55);
  display: grid; gap: 1.1rem; text-align: center;
  position: relative; overflow: hidden;
}
.verdict-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: var(--accent);
}
.verdict-eyebrow {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: oklch(0.72 0.05 40);
  margin-top: 0.4rem;
}
.verdict-stars { display: flex; justify-content: center; gap: 5px; }
.verdict-stars svg { width: clamp(28px, 4vw, 36px); height: clamp(28px, 4vw, 36px); }
.verdict-stars .on { color: var(--accent); }
.verdict-stars .off { color: oklch(0.34 0.012 45); }
.verdict-score {
  font-size: clamp(3.4rem, 7vw, 4.8rem); font-weight: 800;
  line-height: 0.9; letter-spacing: -0.04em; color: #fff;
}
.verdict-score span { font-size: 0.34em; font-weight: 700; color: oklch(0.7 0.04 40); letter-spacing: 0; }
.verdict-flag {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  justify-self: center;
  background: var(--accent); color: #fff;
  font-size: 0.92rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.6rem 1.2rem; border-radius: 100px;
  box-shadow: 0 10px 24px -10px var(--accent);
}
.verdict-flag svg { width: 17px; height: 17px; flex: none; }
.verdict-logo {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  margin-top: 0.3rem; padding-top: 1.1rem;
  border-top: 1px solid oklch(0.32 0.012 45);
}
.verdict-logo span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: oklch(0.66 0.04 40);
}
.verdict-logo img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.92; }
.verdict-company {
  font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; color: #fff;
}

.figure figcaption,
.figcap {
  font-size: 0.82rem; line-height: 1.5; color: var(--ink-faint);
  margin: 0.9rem 0 0; padding-left: 0.9rem;
  border-left: 2px solid var(--accent); font-style: italic;
}

/* =========================== BUTTONS =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.98rem; font-weight: 700;
  letter-spacing: -0.01em; cursor: pointer; text-decoration: none;
  padding: 0.92rem 1.5rem; border-radius: 11px; border: 2px solid transparent;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px var(--accent); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--paper-2); }
.btn--block { width: 100%; justify-content: center; }

/* =========================== CALLOUTS (under hero) =========================== */
.callouts {
  background: var(--accent-wash);
  border-block: 2px solid var(--accent);
  padding: var(--section-y) 0;
}
.callouts__head { margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.callouts__head .eyebrow { margin: 0 0 1rem; font-size: 0.9rem; }
.callouts__head .section-title { margin: 0; }
.callout-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 820px) { .callout-grid { grid-template-columns: 1fr; } }

.callout {
  position: relative; background: #fff;
  border: 1.5px solid var(--accent-line); border-radius: 14px;
  padding: 1.6rem 1.5rem 1.7rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  box-shadow: 0 1px 2px rgba(120,20,20,.05), 0 20px 40px -28px rgba(180,30,30,.5);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.callout:hover { transform: translateY(-3px); box-shadow: 0 1px 2px rgba(120,20,20,.06), 0 26px 50px -26px rgba(180,30,30,.55); }
.callout__top {
  display: flex; align-items: center; justify-content: space-between;
}
.callout__num {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent); text-transform: uppercase;
}
.callout__icon {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  display: grid; place-items: center; background: var(--accent); color: #fff;
  box-shadow: 0 6px 16px -8px var(--accent);
}
.callout__icon svg { width: 20px; height: 20px; }
.callout h3 {
  margin: 0.3rem 0 0; font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; color: var(--ink);
}
.callout h3 .red { color: var(--accent); }
.callout p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }

/* the one filled card for maximum punch */
.callout--filled {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 24px 48px -22px var(--accent);
}
.callout--filled .callout__num { color: rgba(255,255,255,.8); }
.callout--filled .callout__icon { background: rgba(255,255,255,.16); color: #fff; box-shadow: none; }
.callout--filled h3 { color: #fff; }
.callout--filled h3 .red { color: #fff; }
.callout--filled p { color: rgba(255,255,255,.88); }

/* =========================== STORY (prose) =========================== */
.story { padding: var(--section-y) 0; }
.story .col { margin-inline: auto; }
/* collapse the gap between two consecutive prose sections into one rhythm unit */
.story + .story { padding-top: 0; }

.prose-block { padding: 0; }
.prose-block + .prose-block { margin-top: var(--section-y); padding-top: var(--section-y); border-top: 1px solid var(--line-soft); }

/* editorial split: heading rail (left) + wide body (right) — fills the page width */
.split {
  display: grid; grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 1.4rem; } }
.split__head .eyebrow { margin-bottom: 1.1rem; }
.split__head .section-title {
  margin-bottom: 0; font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.12;
}
.split__body { max-width: 46rem; }
.split__body > p { font-size: calc(1.16rem * var(--type-scale)); line-height: 1.68; }
.split__body > p:first-child { margin-top: -0.4rem; }
@media (max-width: 880px) { .split__body > p:first-child { margin-top: 0; } }

/* "who is he" — image + profile body, then a loud turn line */
.whois__grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 880px) { .whois__grid { grid-template-columns: 1fr; gap: 2rem; } }
.whois__media .figure { aspect-ratio: 4 / 5; }
.whois__body { max-width: 42rem; }
.whois__body .section-title { font-size: clamp(2.1rem, 4.2vw, 3.1rem); line-height: 1.04; }
.whois__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.9rem; }
.whois__chips span {
  font-size: 0.84rem; font-weight: 700; color: var(--ink-soft);
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 0.5rem 0.95rem; border-radius: 100px; letter-spacing: -0.005em;
  white-space: nowrap;
}
.bigturn {
  margin: clamp(2.6rem, 5vw, 4rem) 0 0;
  padding-top: clamp(2.6rem, 5vw, 4rem);
  border-top: 3px solid var(--accent);
  font-size: clamp(1.55rem, 3.3vw, 2.2rem);
  font-weight: 800; line-height: 1.22; letter-spacing: -0.025em;
  color: var(--ink); text-wrap: balance; max-width: 58rem;
}
.bigturn .red { color: var(--accent); }

/* bold lead-in before the story */
.intro p {
  font-size: calc(1.6rem * var(--type-scale));
  line-height: 1.42; font-weight: 600; color: var(--ink);
  letter-spacing: -0.018em;
}
.intro p strong { color: var(--accent); font-weight: 700; }
/* drop cap on the intro */
.intro__lead p:first-of-type::first-letter,
.intro > p:first-of-type::first-letter {
  float: left; font-size: 3.6em; line-height: 0.78;
  font-weight: 700; padding: 0.04em 0.14em 0 0; color: var(--accent);
}

/* two-column intro: bold lead + verify card */
.intro--wide {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
@media (max-width: 880px) { .intro--wide { grid-template-columns: 1fr; gap: 2.4rem; } }
.intro__lead { min-width: 0; }
.intro__lead p { margin: 0; }
.intro__title {
  margin: 1.7rem 0 0; font-size: clamp(1.5rem, 2.9vw, 2.15rem);
  font-weight: 800; line-height: 1.16; letter-spacing: -0.028em;
  color: var(--ink); text-wrap: balance;
}
.intro__title .red { color: var(--accent); }

/* verify card */
.verify-card {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.5rem 1.5rem 1.65rem;
  position: sticky; top: 6rem;
}
.verify-card__brand {
  display: flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1.3rem; padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}
.verify-card__brand img { height: 40px; width: auto; display: block; }
.verify-card__brand span {
  font-size: 0.72rem; font-weight: 700; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: 0.09em; line-height: 1.3;
}
.brand-mark { height: 58px; width: auto; display: block; margin-bottom: 1.6rem; }
.verify-card .eyebrow { margin: 0 0 1.1rem; }
.verify-card__list { display: grid; gap: 0.5rem; }
.verify-link {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.7rem 0.85rem; border-radius: 11px;
  text-decoration: none; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); min-width: 0;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), transform 0.15s var(--ease);
}
.verify-link:hover {
  border-color: var(--accent-line); background: #fff; transform: translateX(2px);
}
.verify-link .pico {
  flex: none; width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center; background: var(--accent-tint); color: var(--accent);
}
.verify-link .pico svg { width: 17px; height: 17px; }
.verify-link .vl { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; flex: 1; }
.verify-link .vl .k {
  font-size: 0.7rem; color: var(--ink-faint); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.verify-link .vl .v {
  font-size: 0.94rem; font-weight: 600; letter-spacing: -0.01em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* pull-quote — loud dark band with red emphasis */
.pullquote {
  margin: 0; padding: 0;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.18;
  font-weight: 800; letter-spacing: -0.03em; color: #fff;
  text-wrap: balance;
}
.pullquote .em { color: oklch(0.72 0.19 30); }
.quote-band {
  padding: var(--section-y) 0;
  background: var(--ink);
  border-block: none;
}
.quote-inner { max-width: 62rem; margin-inline: auto; }
.quote-band .mark {
  font-size: 5rem; line-height: 0.5; color: var(--accent);
  font-weight: 800; display: block; margin-bottom: 1rem;
}

/* full-bleed image band */
.imgband { padding: var(--section-y) 0; }
.imgband .figure { aspect-ratio: 16 / 9; border-radius: 5px; }
@media (max-width: 640px){ .imgband .figure { aspect-ratio: 4 / 3; } }

/* === why this page === smooth single-column flow === */
.why__head { max-width: 50rem; margin-bottom: clamp(2.2rem, 4vw, 3rem); }
.why__head .section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.3rem; }
.why__intro { font-size: calc(1.22rem * var(--type-scale)); line-height: 1.6; color: var(--ink-soft); max-width: 44rem; margin: 0; }

/* full-width horizontal facts row (big cards) */
.facts--row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  border: none; border-radius: 0; background: none; gap: 1.25rem;
}
.facts--row li {
  flex-direction: column; align-items: flex-start; gap: 1.2rem;
  border: 2px solid var(--accent-line); border-radius: 16px;
  background: #fff; padding: 1.9rem 1.8rem;
  box-shadow: 0 1px 2px rgba(120,20,20,.05), 0 22px 44px -30px rgba(180,30,30,.5);
}
.facts--row li + li { border: 2px solid var(--accent-line); }
.facts--row .x { width: 42px; height: 42px; }
.facts--row .x svg { width: 20px; height: 20px; }
.facts--row span.t { font-size: clamp(1.22rem, 1.7vw, 1.45rem); line-height: 1.3; }
@media (max-width: 760px) { .facts--row { grid-template-columns: 1fr; } }

/* closing block */
.why__close { max-width: 50rem; margin-top: clamp(2.2rem, 4vw, 3rem); }
.why__close p { font-size: calc(1.16rem * var(--type-scale)); line-height: 1.68; }

/* "what happened" facts list */
.facts {
  list-style: none; margin: 2.2rem 0 0; padding: 0;
  display: grid; gap: 0;
  border: 2px solid var(--accent-line); border-radius: 14px; overflow: hidden;
  background: var(--paper);
}
.facts li {
  display: flex; gap: 1.1rem; align-items: center;
  padding: 1.25rem 1.5rem;
}
.facts li + li { border-top: 1px solid var(--line); }
.facts .x {
  flex: none; width: 30px; height: 30px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--accent); color: #fff;
}
.facts .x svg { width: 15px; height: 15px; }
.facts span.t { font-size: 1.12rem; color: var(--ink); line-height: 1.4; font-weight: 500; }
.facts span.t b { font-weight: 800; }

/* =========================== CONTACT =========================== */
.contact { padding: var(--section-y) 0; background: var(--ink); color: var(--paper); }
.contact .eyebrow { color: oklch(0.82 0.16 30); }
.contact .eyebrow::before { background: oklch(0.82 0.16 30 / 0.5); }
.contact h2.section-title { color: var(--paper); }
.contact .lede { color: oklch(0.82 0.01 70); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start; margin-top: 0;
}
@media (max-width: 820px){ .contact__grid { grid-template-columns: 1fr; } }
.contact__left .section-title { color: var(--paper); }
.contact__left .lede { margin-bottom: 1.6rem; }
.contact__left p { color: oklch(0.80 0.01 70); }
.contact__left .lede { color: oklch(0.86 0.01 70); }
.contact__left .share {
  list-style: none; margin: 1.6rem 0 0; padding: 0;
  display: grid; gap: 0.7rem;
}
.contact__left .share li {
  display: flex; gap: 0.7rem; align-items: center;
  font-size: 0.96rem; color: var(--paper);
}
.contact__left .share .tick {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: oklch(0.82 0.16 30 / 0.20); color: oklch(0.82 0.17 35);
}
.contact__left .share .tick svg { width: 12px; height: 12px; }
.contact__email {
  margin-top: 1.9rem; display: inline-flex;
}

/* form card */
.formcard {
  background: var(--paper); color: var(--ink);
  border-radius: 14px; padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.formcard h3 {
  margin: 0 0 1.3rem; font-size: 1.04rem; font-weight: 600; letter-spacing: -0.01em;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 0.45rem; letter-spacing: -0.005em;
}
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 9px; padding: 0.72rem 0.85rem; resize: vertical;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  background: var(--paper); box-shadow: 0 0 0 3px var(--accent-tint);
}
.field.invalid input, .field.invalid textarea { border-color: var(--accent); }
.field .err {
  display: none; font-size: 0.76rem; color: var(--accent-deep); margin-top: 0.4rem;
}
.field.invalid .err { display: block; }

.form-note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.4rem; line-height: 1.5; }

/* form error (shown only if a real send fails) */
.form-error {
  display: none; margin: 0.9rem 0 0; padding: 0.7rem 0.85rem;
  font-size: 0.82rem; line-height: 1.45;
  color: var(--accent-deep); background: var(--accent-tint);
  border: 1px solid var(--accent-line); border-radius: 9px;
}
.form-error.show { display: block; }
.form-error a { color: var(--accent-deep); font-weight: 700; }

/* success state */
.formcard .success {
  display: none; text-align: center; padding: 1.5rem 0.5rem;
}
.formcard.sent .success { display: block; animation: pop 0.45s var(--ease); }
.formcard.sent form { display: none; }
.success .check {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 1rem;
  display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-deep);
}
.success .check svg { width: 26px; height: 26px; }
.success h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.success p { color: var(--ink-soft); font-size: 0.95rem; }
.success .mailto { color: var(--accent-deep); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--accent-line); }
@keyframes pop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

/* =========================== BACKGROUND / VERIFY =========================== */
.background { padding: var(--section-y) 0; }
.specs {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.specs div {
  display: grid; grid-template-columns: 11rem 1fr; gap: 1.5rem;
  padding: 1.05rem 0; border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 560px){ .specs div { grid-template-columns: 1fr; gap: 0.25rem; } }
.specs dt {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-faint);
}
.specs dd { margin: 0; color: var(--ink); }

/* profiles grid */
.profiles {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem;
}
@media (max-width: 560px){ .profiles { grid-template-columns: 1fr; } }
.profiles a, .profiles li > span {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  text-decoration: none; color: var(--ink); background: var(--paper);
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
}
.profiles a:hover { border-color: var(--accent-line); background: var(--paper-2); transform: translateY(-1px); }
.profiles .pico {
  flex: none; width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; background: var(--paper-2);
  color: var(--ink-soft); border: 1px solid var(--line-soft);
}
.profiles .pico svg { width: 16px; height: 16px; }
.profiles .pl { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.profiles .pl .k { font-size: 0.72rem; color: var(--ink-faint); font-weight: 500; }
.profiles .pl .v { font-size: 0.92rem; font-weight: 600; letter-spacing: -0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* =========================== FOOTER =========================== */
.foot {
  padding: var(--section-y) 0; border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.foot__inner { display: flex; flex-direction: column; gap: 1.3rem; }
.foot .brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.9rem;
}
.foot .brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.foot .disclaimer { font-size: 0.82rem; line-height: 1.65; color: var(--ink-faint); max-width: 46rem; }

/* entrance: content is ALWAYS visible. No entrance animation — transform/opacity
   animations proved unreliable in this environment (froze at start frame, hiding
   or misplacing content). Reliability over flourish. */
.reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
