:root {
  --soil: #2b1b12;
  --deep: #1b100b;
  --loam: #68472f;
  --clay: #a45f3a;
  --cream: #f4edda;
  --paper: #fffaf0;
  --moss: #657148;
  --gold: #e4b84e;
  --line: #cdbd9f;
  --muted: #756657;
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--soil);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.72;
}
a {
  color: var(--clay);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--moss);
}
img,
svg {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  margin: 0.2em 0 0.28em;
  max-width: 1000px;
}
h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin: 1.25em 0 0.35em;
}
h3 {
  font-size: 1.55rem;
  line-height: 1.12;
  margin: 0.65em 0 0.4em;
}
p {
  margin: 0.85em 0;
}
.wrap,
.article {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}
.article {
  max-width: 850px;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: var(--gold);
  padding: 0.5rem 1rem;
  z-index: 20;
}
.site-header {
  background: var(--deep);
  color: var(--cream);
  border-bottom: 8px solid var(--loam);
}
.mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 2rem;
  text-decoration: none;
}
.mark {
  width: 45px;
}
.tagline {
  margin: 0;
  color: #d6c7ac;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  overflow-x: auto;
  padding: 0 0 14px;
  scrollbar-width: none;
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #775d49;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-size: 0.83rem;
  font-weight: 700;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}
.crumbs {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin-top: 30px;
  color: var(--muted);
}
.crumbs a {
  color: inherit;
}
.hero {
  position: relative;
  padding: clamp(45px, 8vw, 90px) 0 70px;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 2px solid #b9a888;
  border-radius: 47% 53% 58% 42%;
  right: -200px;
  top: -130px;
  box-shadow:
    0 0 0 28px var(--cream),
    0 0 0 30px #d4c5a8,
    0 0 0 62px var(--cream),
    0 0 0 64px #d4c5a8;
  z-index: -1;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
}
.answer {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  max-width: 850px;
  border-left: 7px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
}
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.button {
  display: inline-block;
  background: var(--soil);
  color: var(--cream);
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.button:hover {
  background: var(--clay);
  color: white;
}
.button.cream {
  background: var(--gold);
  color: var(--deep);
}
.soil-band {
  background: var(--soil);
  color: var(--cream);
  padding: 65px 0;
  position: relative;
}
.soil-band a {
  color: #f0ca70;
}
.soil-band h2 {
  margin-top: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.card {
  grid-column: span 4;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: 0 8px 0 #d8c9aa;
}
.card.wide {
  grid-column: span 6;
}
.card.dark {
  background: var(--loam);
  color: var(--cream);
  border-color: #8a674b;
  box-shadow: none;
}
.card a:not(.button) {
  color: inherit;
}
.score {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--gold);
  color: var(--deep);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-weight: 900;
}
.score b {
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
}
.score small {
  font-size: 0.72rem;
}
.feature {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
  background: var(--paper);
  border-radius: 42px;
  padding: clamp(25px, 5vw, 55px);
  border: 1px solid var(--line);
}
.tunnel-map {
  background: var(--soil);
  border-radius: 42% 58% 45% 55%;
  padding: 20px;
  color: var(--cream);
}
.facts,
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0;
}
.fact,
.pros,
.cons,
.callout {
  border-radius: 22px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.pros {
  border-top: 7px solid var(--moss);
}
.cons {
  border-top: 7px solid var(--clay);
}
.clean {
  padding-left: 1.1rem;
}
.clean li {
  margin: 0.4rem 0;
}
.table-wrap {
  overflow-x: auto;
  margin: 26px 0;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
caption {
  text-align: left;
  padding: 18px;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 800;
}
th,
td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  background: #e9dcc1;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
tr:last-child td {
  border-bottom: 0;
}
.scorebar {
  width: 100%;
  height: 11px;
  background: #ded2bb;
  border-radius: 99px;
  overflow: hidden;
}
.scorebar span {
  display: block;
  height: 100%;
  background: var(--clay);
  border-radius: inherit;
}
.figure {
  margin: 35px 0;
  background: var(--soil);
  color: var(--cream);
  border-radius: 34px;
  padding: clamp(18px, 4vw, 34px);
}
.figure figcaption {
  font-size: 0.83rem;
  color: #d5c3a5;
  margin-top: 12px;
}
.figure a {
  color: #f0ca70;
}
.quote {
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  line-height: 1.35;
  margin: 35px 0;
  padding: 20px 25px;
  border-left: 7px solid var(--clay);
  background: #eadfc8;
}
.faq {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq h3 {
  font-family: inherit;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.35;
}
.faq p {
  margin-bottom: 0.2rem;
}
.verdict {
  background: var(--soil);
  color: var(--cream);
  border-radius: 34px;
  padding: 28px;
  margin: 30px 0;
}
.verdict h2 {
  margin-top: 0;
}
.rank {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.rank-num {
  font-family: "Fraunces", serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--clay);
  line-height: 1;
}
.term {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.term h2 {
  font-size: 1.55rem;
  margin: 0.3rem 0;
}
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.person {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}
.person .initial {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--soil);
  color: var(--gold);
  border-radius: 50%;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.5rem;
}
.site-footer {
  margin-top: 70px;
  background: var(--deep);
  color: #d7c8ae;
  padding: 45px 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}
.site-footer a {
  color: var(--cream);
}
.site-footer nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.fine {
  font-size: 0.78rem;
  color: #a9977f;
}
.root-rule {
  height: 35px;
  background: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='35' viewBox='0 0 160 35' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 7c31 0 22 20 55 20S80 9 111 9s18 15 49 15' fill='none' stroke='%2368472f' stroke-width='2'/%3E%3Cpath d='M55 27l-8 8m64-26l7-9' stroke='%2368472f' stroke-width='2'/%3E%3C/svg%3E");
}
.center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.note {
  font-size: 0.86rem;
  color: var(--muted);
}
@media (max-width: 800px) {
  body {
    font-size: 16px;
  }
  .mast {
    align-items: flex-start;
  }
  .tagline {
    max-width: 180px;
    text-align: right;
  }
  .card,
  .card.wide {
    grid-column: span 6;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .facts,
  .proscons {
    grid-template-columns: 1fr;
  }
  .team {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .rank {
    grid-template-columns: 52px 1fr;
  }
  .rank-num {
    font-size: 2.7rem;
  }
}
@media (max-width: 520px) {
  .wrap,
  .article {
    width: min(100% - 24px, 850px);
  }
  .mast {
    gap: 10px;
  }
  .brand {
    font-size: 1.55rem;
  }
  .mark {
    width: 36px;
  }
  .tagline {
    font-size: 0.65rem;
    max-width: 130px;
  }
  .card,
  .card.wide {
    grid-column: 1/-1;
  }
  .hero {
    padding-top: 35px;
  }
  .feature {
    border-radius: 28px;
    padding: 22px;
  }
  .soil-band {
    padding: 45px 0;
  }
  th,
  td {
    padding: 11px;
    font-size: 0.82rem;
  }
  .article h1 {
    font-size: 3.1rem;
  }
  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
