/* Cavendishrow — aurora gradient design system.
   Hand-written; never generated. Light, cool, high-whitespace. */

:root {
  --mint: #7fcfd8;
  --sky: #a9c6f2;
  --lilac: #cdb9ee;
  --rose: #e8c3d8;
  --ink: #1d2b33;
  --ink-2: #4a5c66;
  --ink-3: #74868f;
  --paper: #fafcfe;
  --line: rgba(29, 43, 51, 0.10);
  --glass: rgba(255, 255, 255, 0.62);
  --aurora: linear-gradient(100deg, var(--mint), var(--sky) 42%, var(--lilac) 74%, var(--rose));
  --shadow: 0 1px 2px rgba(29, 43, 51, .04), 0 12px 32px -18px rgba(29, 43, 51, .18);
  --r: 18px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --sans: "Inter", "Segoe UI Variable Display", "Segoe UI", -apple-system,
          BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 300 17px/1.72 var(--sans);
  letter-spacing: .008em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p a:not(.btn):not(.pick) {
  border-bottom: 1px solid rgba(127, 207, 216, .8);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
p a:not(.btn):not(.pick):hover { border-color: var(--lilac); color: var(--ink-2); }

h1, h2, h3 { font-weight: 300; letter-spacing: -.018em; line-height: 1.16; margin: 0; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.45rem, 2.7vw, 2.05rem); }
h3 { font-size: 1.16rem; letter-spacing: -.01em; }

.vh, .skip {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip:focus {
  position: fixed; top: 12px; left: 12px; z-index: 99; width: auto; height: auto;
  clip: auto; padding: 10px 16px; background: #fff; border-radius: 999px;
  box-shadow: var(--shadow);
}
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1180px, 100% - 2.6rem); margin-inline: auto; }

/* ---------------------------------------------------- aurora background --- */

.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.aurora i {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(90px); opacity: .5;
  animation: drift 34s var(--ease) infinite alternate;
}
.aurora i:nth-child(1) {
  width: 62vw; height: 62vw; left: -16vw; top: -22vw;
  background: radial-gradient(circle at 40% 40%, var(--mint), transparent 68%);
}
.aurora i:nth-child(2) {
  width: 55vw; height: 55vw; right: -14vw; top: 4vw;
  background: radial-gradient(circle at 50% 50%, var(--lilac), transparent 68%);
  animation-duration: 44s; animation-delay: -8s;
}
.aurora i:nth-child(3) {
  width: 70vw; height: 70vw; left: 18vw; bottom: -34vw;
  background: radial-gradient(circle at 50% 50%, var(--sky), transparent 70%);
  animation-duration: 52s; animation-delay: -18s;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, -3vw, 0) scale(1.14); }
}
@media (prefers-reduced-motion: reduce) { .aurora i { animation: none; } }

.grad {
  background: var(--aurora);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: slide 14s linear infinite;
}
@keyframes slide { to { background-position: 220% 0; } }
@media (prefers-reduced-motion: reduce) { .grad { animation: none; } }

/* ------------------------------------------------------------- header --- */

.site-head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 252, 254, .58);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.site-head.stuck {
  background: rgba(250, 252, 254, .84);
  border-bottom-color: var(--line);
}
.head-row {
  display: flex; align-items: center; gap: 1.1rem;
  min-height: 74px; padding-block: .5rem;
}

.logo { display: inline-flex; align-items: center; gap: .55rem; position: relative; }
.logo-mark { width: 30px; height: 30px; flex: none; transition: transform .5s var(--ease); }
.logo-word {
  font-size: 1.22rem; font-weight: 400; letter-spacing: .02em;
  color: var(--ink); transition: color .4s var(--ease);
  background: var(--aurora); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
}
.logo:hover .logo-word, .logo:focus-visible .logo-word {
  color: transparent; animation: slide 6s linear infinite;
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }

.nav { margin-inline: auto; }
.nav-list { display: flex; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: block; padding: .48rem .8rem; border-radius: 999px;
  font-size: .925rem; color: var(--ink-2);
  background-image: var(--aurora);
  background-size: 200% 100%; background-position: 100% 0;
  background-color: rgba(255, 255, 255, 0);
  transition: color .3s var(--ease), background-position .55s var(--ease),
              background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-list a:hover, .nav-list a:focus-visible {
  color: var(--ink); background-position: 0 0;
  background-color: rgba(255, 255, 255, .5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}
.nav-list a.on {
  color: var(--ink); background-color: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px var(--line);
}

.search-mini { position: relative; display: flex; align-items: center; }
.search-mini input {
  width: 8.6rem; padding: .52rem 2.1rem .52rem .9rem;
  font: inherit; font-size: .9rem; color: var(--ink);
  background: rgba(255, 255, 255, .42); border: 1px solid var(--line);
  border-radius: 999px; transition: width .45s var(--ease),
    background .35s var(--ease), box-shadow .35s var(--ease);
}
.search-mini input::placeholder { color: var(--ink-3); }
.search-mini input:focus {
  width: 13rem; outline: none; background: rgba(255, 255, 255, .78);
  box-shadow: 0 0 0 3px rgba(169, 198, 242, .32);
}
.search-mini button {
  position: absolute; right: .3rem; display: grid; place-items: center;
  width: 28px; height: 28px; padding: 0; border: 0; border-radius: 50%;
  background: transparent; color: var(--ink-3); cursor: pointer;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.search-mini button:hover { color: var(--ink); background: rgba(255, 255, 255, .7); }
.search-mini svg { width: 16px; height: 16px; fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; }

.soc { display: flex; gap: .4rem; }
.soc-dot {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; color: var(--ink-2);
  background: rgba(255, 255, 255, .5); box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .35s var(--ease), color .3s var(--ease),
              box-shadow .35s var(--ease);
}
.soc-dot svg { width: 15px; height: 15px; fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.soc-dot::before {
  content: ""; position: absolute; width: 30px; height: 30px; border-radius: 50%;
  background: var(--aurora); opacity: 0; transition: opacity .35s var(--ease);
}
.soc-dot { position: relative; isolation: isolate; }
.soc-dot svg { position: relative; z-index: 1; }
.soc-dot:hover, .soc-dot:focus-visible {
  transform: translateY(-2px) scale(1.06); color: #fff;
  box-shadow: 0 6px 16px -8px rgba(29, 43, 51, .5);
}
.soc-dot:hover::before, .soc-dot:focus-visible::before { opacity: 1; }

.burger { display: none; }
@media (max-width: 1040px) {
  .head-soc { display: none; }
  .nav { margin-left: auto; margin-right: 0; }
}
@media (max-width: 860px) {
  .burger {
    display: grid; gap: 4px; margin-left: auto; order: 3;
    width: 38px; height: 34px; padding: 8px 7px; cursor: pointer;
    background: rgba(255, 255, 255, .5); border: 1px solid var(--line);
    border-radius: 11px;
  }
  .burger span { height: 1.5px; background: var(--ink-2); border-radius: 2px;
    transition: transform .35s var(--ease), opacity .25s var(--ease); }
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .nav {
    order: 5; flex-basis: 100%; margin: 0;
    max-height: 0; overflow: hidden; transition: max-height .45s var(--ease);
  }
  .nav.open { max-height: 26rem; }
  .nav-list { flex-wrap: wrap; padding-bottom: .9rem; }
  .nav-list a { padding: .6rem 1rem; }
  .search-mini { order: 4; flex: 1 1 auto; }
  .search-mini input, .search-mini input:focus { width: 100%; }
}

/* --------------------------------------------------------------- hero --- */

.hero { padding: clamp(3.4rem, 9vw, 7rem) 0 clamp(1.6rem, 4vw, 3rem); }
.hero-in { max-width: 54rem; }
.eyebrow {
  margin: 0 0 1rem; font-size: .76rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3);
}
.hero-h { font-size: clamp(2.4rem, 6.6vw, 4.6rem); font-weight: 200; }
.hero-p {
  max-width: 40rem; margin: 1.5rem 0 0;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--ink-2);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.1rem; }

.btn {
  position: relative; isolation: isolate; display: inline-block;
  padding: .82rem 1.7rem; border: 0; border-radius: 999px; cursor: pointer;
  font: inherit; font-size: .95rem; color: var(--ink);
  background: rgba(255, 255, 255, .6); box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              color .35s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--aurora); background-size: 200% 100%;
  opacity: 0; transition: opacity .4s var(--ease), background-position .7s var(--ease);
  background-position: 100% 0;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(29, 43, 51, .6); }
.btn:hover::before, .btn:focus-visible::before { opacity: .92; background-position: 0 0; }
.btn:active { transform: translateY(0); }
.btn.ghost { background: transparent; }

/* --------------------------------------------------------------- cards --- */

.band { padding-block: clamp(2.4rem, 5vw, 4.4rem); }
.band-row { display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.8rem; }
.band-h { margin: 0 0 1.8rem; font-weight: 300; }
.band-row .band-h { margin: 0; }
.more { font-size: .92rem; color: var(--ink-3);
  transition: color .3s var(--ease); }
.more:hover { color: var(--ink); }

.grid { display: grid; gap: 1.6rem; }
.grid.three { grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); }

.card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r); overflow: hidden;
  background: var(--glass); box-shadow: var(--shadow);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px; pointer-events: none;
  background: var(--aurora); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity .45s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(29,43,51,.04),
  0 26px 50px -28px rgba(29, 43, 51, .34); }
.card:hover::after { opacity: .85; }
.card-art { display: block; overflow: hidden; background: #eef4f9; }
.card-art img { width: 100%; aspect-ratio: 8 / 5; object-fit: cover;
  transition: transform 1.1s var(--ease); }
.card:hover .card-art img { transform: scale(1.045); }
.card-body { display: flex; flex-direction: column; gap: .6rem;
  padding: 1.2rem 1.3rem 1.45rem; }
.card-body h3 a { transition: color .3s var(--ease); }
.card-body h3 a:hover { color: var(--ink-2); }
.card-body p { margin: 0; font-size: .95rem; color: var(--ink-2); }
.card .meta, .meta { font-size: .82rem; color: var(--ink-3); }
.meta i { margin-inline: .45rem; }

.tag {
  align-self: start; padding: .2rem .68rem; border-radius: 999px;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: color .3s var(--ease), background .35s var(--ease);
}
.tag:hover { color: #fff; background: var(--aurora); }

.lead-grid { display: grid; gap: 1.6rem; grid-template-columns: 1.55fr 1fr; }
.lead-side { display: grid; gap: 1.6rem; align-content: start; }
.card.big .card-art img { aspect-ratio: 16 / 10; }
.card.big .card-body { padding: 1.6rem 1.8rem 1.9rem; }
.card.big h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 300; }
.card.big .card-body p { font-size: 1.04rem; }
.card.slim { flex-direction: row; align-items: stretch; }
.card.slim .card-art { flex: 0 0 38%; }
.card.slim .card-art img { height: 100%; aspect-ratio: auto; }
.card.slim .card-body { padding: 1rem 1.15rem 1.1rem; }
.card.slim h3 { font-size: 1.04rem; }
@media (max-width: 880px) {
  .lead-grid { grid-template-columns: 1fr; }
  .card.slim { flex-direction: column; }
  .card.slim .card-art img { aspect-ratio: 8 / 5; }
}

/* --------------------------------------------------------------- desks --- */

.desk-grid { display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.desk {
  display: flex; align-items: center; gap: 1.1rem; padding: .85rem;
  border-radius: var(--r); background: rgba(255, 255, 255, .5);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              transform .4s var(--ease);
}
.desk:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow); }
.desk-art { flex: none; width: 92px; border-radius: 13px; overflow: hidden; }
.desk-art img { width: 92px; height: 68px; object-fit: cover; }
.desk-txt { display: grid; gap: .22rem; }
.desk-txt strong { font-weight: 400; font-size: 1.02rem; }
.desk-txt em { font-style: normal; font-size: .88rem; color: var(--ink-2); }
.desk-n { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); }
.desk-hero { margin: 0 0 2.2rem; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); }
.desk-hero img { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; }

/* ------------------------------------------------- page heads and chips --- */

.crumbs { padding-top: 1.5rem; font-size: .8rem; color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); }
.crumbs i { margin-inline: .5rem; opacity: .5; }
.crumbs span { color: var(--ink-2); }

.page-head { max-width: 46rem; margin-bottom: 2.4rem; }
.page-head.wide { max-width: 54rem; }
.page-p { margin: 1.1rem 0 0; font-size: 1.06rem; color: var(--ink-2); }
.page-head .chips { margin-top: 1.7rem; }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  position: relative; isolation: isolate; padding: .42rem 1rem;
  border: 0; border-radius: 999px; cursor: pointer;
  font: inherit; font-size: .86rem; color: var(--ink-2);
  background: rgba(255, 255, 255, .55); box-shadow: inset 0 0 0 1px var(--line);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.chip::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--aurora); background-size: 200% 100%; background-position: 100% 0;
  opacity: 0; transition: opacity .35s var(--ease), background-position .6s var(--ease);
}
.chip:hover { color: var(--ink); transform: translateY(-1px); }
.chip:hover::before { opacity: .55; background-position: 0 0; }
.chip.on { color: var(--ink); }
.chip.on::before { opacity: .85; background-position: 0 0; }

/* ------------------------------------------------------------- pager --- */

.pager { padding-bottom: 3.4rem; }
.pager .wrap { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  justify-content: center; }
.pg {
  position: relative; isolation: isolate; display: grid; place-items: center;
  min-width: 42px; height: 42px; padding-inline: .9rem; border-radius: 999px;
  font-size: .92rem; color: var(--ink-2);
  background: rgba(255, 255, 255, .55); box-shadow: inset 0 0 0 1px var(--line);
  transition: color .3s var(--ease), transform .35s var(--ease);
}
.pg::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--aurora); background-size: 220% 100%; background-position: 100% 0;
  opacity: 0; transition: opacity .4s var(--ease), background-position .7s var(--ease);
}
.pg:hover { color: var(--ink); transform: translateY(-2px); }
.pg:hover::before { opacity: .7; background-position: 0 0; }
.pg:active::before { opacity: 1; }
.pg.on { color: var(--ink); }
.pg.on::before { opacity: .9; background-position: 0 0; }

/* --------------------------------------------------------------- post --- */

.post-head { max-width: 50rem; padding-top: 2.4rem; display: grid; gap: .9rem; }
.post-h { font-weight: 200; }
.post-dek { margin: .3rem 0 0; font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--ink-2); max-width: 42rem; }
.post-hero { margin: 2.6rem 0 0; width: min(1320px, 100% - 2rem);
  margin-inline: auto; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); }
.post-hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

.post-wrap { display: grid; gap: 3rem; grid-template-columns: 15rem 1fr;
  padding-block: clamp(2.4rem, 5vw, 4rem); }
.post-aside { align-self: start; position: sticky; top: 100px; display: grid;
  gap: 1.8rem; }
.toc-h { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 .7rem; font-weight: 400; }
.toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem;
  border-left: 1px solid var(--line); }
.toc a { display: block; padding-left: .9rem; margin-left: -1px;
  font-size: .9rem; color: var(--ink-3); border-left: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease); }
.toc a:hover, .toc a.on { color: var(--ink); border-left-color: var(--mint); }
.bio p { margin: 0 0 .5rem; font-size: .9rem; color: var(--ink-2); }
.tags { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none;
  margin: 0; padding: 0; }
.tags li { padding: .18rem .6rem; border-radius: 999px; font-size: .74rem;
  color: var(--ink-3); background: rgba(255, 255, 255, .6);
  box-shadow: inset 0 0 0 1px var(--line); }
@media (max-width: 980px) {
  .post-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .post-aside { position: static; }
  .toc { display: none; }
}

/* -------------------------------------------------------------- prose --- */

.prose { max-width: 40rem; }
.prose > * + * { margin-top: 1.5rem; }
.prose p { margin: 0; color: var(--ink-2); font-size: 1.06rem; line-height: 1.82; }
.prose h2 { margin-top: 3rem; color: var(--ink); scroll-margin-top: 100px; }
.prose h2 + p { margin-top: 1.1rem; }
.bullets { margin: 0; padding-left: 1.2rem; display: grid; gap: .8rem; }
.bullets li { color: var(--ink-2); font-size: 1.02rem; }
.bullets li::marker { color: var(--mint); }
.bullets strong { font-weight: 500; color: var(--ink); }

blockquote {
  margin: 2.6rem 0; padding: 1.5rem 1.7rem; border-radius: var(--r);
  background: rgba(255, 255, 255, .55);
  box-shadow: inset 0 0 0 1px var(--line);
  border-left: 3px solid transparent;
  border-image: var(--aurora) 1;
}
blockquote p { margin: 0; font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  line-height: 1.6; color: var(--ink); font-weight: 300; }

.fig { margin: 2.8rem 0; width: min(54rem, 100vw - 2.6rem); }
.fig img { border-radius: var(--r); box-shadow: var(--shadow);
  aspect-ratio: 8 / 5; object-fit: cover; width: 100%; }
figcaption { margin-top: .8rem; font-size: .88rem; color: var(--ink-3);
  line-height: 1.6; max-width: 34rem; }

.t-wrap { overflow-x: auto; margin: 2.2rem 0; border-radius: var(--r);
  background: rgba(255, 255, 255, .6); box-shadow: inset 0 0 0 1px var(--line); }
.t-wrap.flush { margin: 1.4rem 0 0; }
table { width: 100%; border-collapse: collapse; font-size: .94rem; }
caption { text-align: left; padding: .9rem 1.1rem 0; color: var(--ink-3);
  font-size: .82rem; }
th, td { padding: .78rem 1.1rem; text-align: left;
  border-bottom: 1px solid var(--line); }
thead th { font-weight: 400; font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
  background: rgba(255, 255, 255, .5); }
tbody th { font-weight: 400; color: var(--ink); }
td { color: var(--ink-2); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .3s var(--ease); }
tbody tr:hover { background: rgba(169, 198, 242, .1); }

/* ------------------------------------------------------- product picks --- */

.picks { margin: 3rem 0; padding: 1.5rem; border-radius: var(--r);
  background: rgba(255, 255, 255, .5); box-shadow: inset 0 0 0 1px var(--line); }
.picks-h { margin: 0 0 1.1rem; font-size: .76rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 400; }
.pick-row { display: grid; gap: .8rem; }
.pick { display: flex; align-items: center; gap: .9rem; padding: .6rem;
  border-radius: 14px; background: rgba(255, 255, 255, .6);
  transition: background .35s var(--ease), transform .35s var(--ease); }
.pick:hover { background: #fff; transform: translateX(3px); }
.pick img { flex: none; width: 76px; height: 56px; object-fit: cover;
  border-radius: 10px; }
.pick-txt { display: grid; gap: .15rem; }
.pick-txt strong { font-weight: 400; font-size: .98rem; }
.pick-txt em { font-style: normal; font-size: .86rem; color: var(--ink-2); }
.pick-price { font-size: .78rem; letter-spacing: .1em; color: var(--ink-3);
  text-transform: uppercase; }
.picks-note { margin: 1.1rem 0 0; font-size: .8rem; color: var(--ink-3); }

.post-nav { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr;
  padding-block: 1rem 3rem; }
.pnav { display: grid; gap: .3rem; padding: 1.2rem 1.4rem; border-radius: var(--r);
  background: rgba(255, 255, 255, .5); box-shadow: inset 0 0 0 1px var(--line);
  transition: background .4s var(--ease), transform .4s var(--ease); }
.pnav:hover { background: rgba(255, 255, 255, .85); transform: translateY(-2px); }
.pnav span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3); }
.pnav strong { font-weight: 300; font-size: 1.04rem; }
.pnav.next { text-align: right; }
@media (max-width: 700px) { .post-nav { grid-template-columns: 1fr; }
  .pnav.next { text-align: left; } }

/* ------------------------------------------------------------ product --- */

.prod-card .prod-art img { aspect-ratio: 4 / 3; }
.maker { font-size: .82rem !important; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3) !important; }
.row-price { display: flex; align-items: center; justify-content: space-between;
  gap: .8rem; margin-top: .2rem !important; }
.price { font-size: 1.04rem; color: var(--ink); }
.score { padding: .16rem .6rem; border-radius: 999px; font-size: .82rem;
  color: var(--ink); background: rgba(255, 255, 255, .8);
  box-shadow: inset 0 0 0 1px var(--line); }

.prod-top { display: grid; gap: 2.6rem; grid-template-columns: 1.1fr 1fr;
  align-items: start; padding-block: 2.6rem; }
.prod-shot { margin: 0; border-radius: 22px; overflow: hidden;
  background: transparent; box-shadow: var(--shadow); }
.prod-shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.prod-intro { display: grid; gap: .8rem; }
.prod-h { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 200; }
.prod-dek { margin: 0; font-size: 1.1rem; color: var(--ink-2); }
.verdict { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
  margin-top: .5rem; }
.v-score { padding: .5rem 1rem; border-radius: 999px; font-size: 1.3rem;
  color: var(--ink); background: rgba(255, 255, 255, .7);
  box-shadow: inset 0 0 0 1px var(--line); }
.v-score em { font-style: normal; font-size: .82rem; color: var(--ink-3); }
.v-word { padding: .5rem 1rem; border-radius: 999px; font-size: .9rem;
  color: var(--ink); background: var(--aurora); background-size: 180% 100%;
  animation: slide 16s linear infinite; }
.v-price { margin-left: auto; font-size: 1.15rem; color: var(--ink-2); }
.specs th { width: 42%; color: var(--ink-3); font-weight: 400; font-size: .86rem; }
.prod-body { padding-bottom: 1rem; }
.pc-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr;
  margin-top: 2.4rem; }
.pc { padding: 1.3rem 1.4rem; border-radius: var(--r);
  background: rgba(255, 255, 255, .55); box-shadow: inset 0 0 0 1px var(--line); }
.pc h2 { margin: 0 0 .9rem !important; font-size: .76rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3); }
.pc .bullets li { font-size: .95rem; }
.pc.good .bullets li::marker { color: var(--mint); }
.pc.bad .bullets li::marker { color: var(--rose); }
@media (max-width: 900px) {
  .prod-top { grid-template-columns: 1fr; gap: 1.6rem; }
  .pc-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------- about / contact --- */

.two-col { display: grid; gap: 2.6rem; grid-template-columns: 1fr 1fr;
  margin-bottom: 3rem; }
.two-col.prose { max-width: none; }
.two-col .prose { max-width: none; }
.two-col h2 { font-size: 1.3rem; margin-bottom: .9rem; }
.people { display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.person { padding: 1.2rem 1.3rem; border-radius: var(--r);
  background: rgba(255, 255, 255, .55); box-shadow: inset 0 0 0 1px var(--line);
  transition: background .4s var(--ease), transform .4s var(--ease); }
.person:hover { background: rgba(255, 255, 255, .85); transform: translateY(-2px); }
.person h3 { font-size: 1rem; font-weight: 400; margin-bottom: .4rem; }
.person p { margin: 0; font-size: .9rem; color: var(--ink-2); }

.form { padding: 1.7rem; border-radius: var(--r);
  background: rgba(255, 255, 255, .58); box-shadow: var(--shadow); }
.form-h { font-size: 1.2rem; margin-bottom: 1.2rem; }
.field { display: grid; gap: .4rem; margin: 0 0 1.1rem; }
.field label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink); padding: .72rem .9rem;
  background: rgba(255, 255, 255, .7); border: 1px solid var(--line);
  border-radius: 12px; transition: box-shadow .3s var(--ease),
    border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(169, 198, 242, .3);
}
.field-note { min-height: 1.2rem; margin: 0 0 .6rem; font-size: .86rem;
  color: var(--ink-2); }
.small { font-size: .82rem; color: var(--ink-3); }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- search --- */

.search-big input {
  width: 100%; margin-top: 1.6rem; padding: 1rem 1.3rem; font: inherit;
  font-size: 1.1rem; color: var(--ink); background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line); border-radius: 999px;
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
.search-big input:focus { outline: none; background: #fff;
  box-shadow: 0 0 0 4px rgba(169, 198, 242, .28); }
.s-count { margin: 0 0 1.4rem; font-size: .86rem; color: var(--ink-3); }
.empty { padding: 2rem 0; color: var(--ink-3); }
mark { background: rgba(127, 207, 216, .34); color: inherit; border-radius: 3px;
  padding: 0 .1em; }

/* ------------------------------------------------------------- footer --- */

.site-foot {
  margin-top: 3rem; padding-top: 3rem;
  background: rgba(255, 255, 255, .5);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.foot-grid { display: grid; gap: 2.2rem;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr; padding-bottom: 2.6rem; }
.foot-about p { margin: 1rem 0 1.2rem; font-size: .92rem; color: var(--ink-2);
  max-width: 26rem; }
.foot-h { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 400; margin-bottom: .9rem; }
.foot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot-list a, .foot-list.plain li { font-size: .92rem; color: var(--ink-2); }
.foot-list a { transition: color .3s var(--ease); }
.foot-list a:hover { color: var(--ink); }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: .6rem; padding-block: 1.4rem 2rem; border-top: 1px solid var(--line); }
.foot-base p { margin: 0; font-size: .82rem; color: var(--ink-3); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- reveal-in --- */

.rise { opacity: 0; transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
}
