:root {
  --black: #20221e;
  --white: #fff;
  --gray: #f0f0e8;
  --line: #dedfd6;
  --ice: #bfeaf2;
  --ice-soft: #eef9fa;
  --cool: #16788a;
  --deep: #10272c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font:
    16px/1.5 Arial,
    Helvetica,
    sans-serif;
  color: var(--black);
  background: #fcfcf8;
}
a {
  color: inherit;
}
header {
  height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #fcfcf8f2;
  backdrop-filter: blur(12px);
  z-index: 5;
}
.logo {
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
  font-size: 32px;
}
.logo span {
  font-size: 30px;
  vertical-align: super;
  line-height: 0;
}
nav {
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  font-weight: 700;
}
.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
}
.hero {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 7vw, 110px);
  min-height: 72vh;
  background:
    linear-gradient(
      90deg,
      #f0f0e8 0 43%,
      rgba(240, 240, 232, 0.78) 55%,
      transparent 72%
    ),
    url("/media/emotional-hero.png") center/cover no-repeat;
}
.eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.hero h1,
.finder h2,
.advisor h2,
.guides h2 {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  margin: 22px 0 28px;
  max-width: 900px;
}
.lead {
  font-size: clamp(18px, 2vw, 25px);
  max-width: 560px;
}
.cta {
  display: inline-block;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  padding: 15px 22px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 20px;
}
.types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #000;
  color: #fff;
}
.types article {
  padding: 48px;
  border-right: 1px solid #333;
  min-height: 260px;
}
.types b {
  color: #aaa;
}
.types h2 {
  font-size: 32px;
  margin: 55px 0 10px;
}
.finder,
.advisor,
.guides {
  padding: 100px clamp(20px, 5vw, 72px);
}
.finder {
  background: linear-gradient(180deg, #fcfcf8 0, #f4fafb 54%, #fcfcf8 100%);
}
.api-status {
  max-width: 760px;
  border-left: 4px solid #111;
  padding: 8px 14px;
  margin: 0 0 28px;
  color: #555;
}
.api-status.live {
  color: #064b2d;
  border-color: #087443;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-head h2,
.advisor h2,
.guides h2 {
  font-size: clamp(44px, 6vw, 80px);
}
#count {
  font-weight: 900;
}
.finder-lead {
  max-width: 620px;
  margin: -10px 0 0;
  color: #535a59;
  font-size: clamp(17px, 2vw, 21px);
}
.reset-link {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 5px 0;
  color: #4d5554;
  font: inherit;
  font-weight: 750;
}
.guided-filter {
  margin: 42px 0 30px;
  border: 1px solid #cbdcde;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(16, 39, 44, 0.08);
}
.guided-filter .api-status {
  margin: 0 26px 24px;
}
.choice-block {
  min-width: 0;
  margin: 0;
  padding: 26px;
  border: 0;
}
.choice-block-main {
  border-bottom: 1px solid #dbe7e8;
}
.choice-block legend {
  width: 100%;
  padding: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.choice-block legend span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-size: 11px;
}
.solution-choices {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.choice-card {
  min-width: 0;
  min-height: 190px;
  padding: 17px;
  border: 1px solid #cbd6d7;
  background: #fff;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.choice-card:hover {
  border-color: var(--cool);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 39, 44, 0.1);
}
.choice-card:has(input:checked) {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--deep);
}
.choice-card:has(input:focus-visible),
.pill-choices label:has(input:focus-visible) {
  outline: 3px solid var(--ice);
  outline-offset: 3px;
}
.choice-card input,
.pill-choices input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.choice-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--ice-soft);
  color: var(--deep);
  font-size: 20px;
}
.choice-card:has(input:checked) .choice-icon {
  background: var(--ice);
}
.choice-card strong {
  display: block;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.05;
}
.choice-card small {
  display: block;
  margin-top: 7px;
  color: #626b6a;
  font-size: 12px;
  line-height: 1.35;
}
.choice-card:has(input:checked) small {
  color: #d7e7e8;
}
.choice-card em {
  margin-top: 15px;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.11em;
}
.choice-all {
  background: var(--ice-soft);
}
.choice-aircooler:not(:has(input:checked)) {
  background: #f7f7f2;
}
.compact-questions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-bottom: 1px solid #dbe7e8;
}
.compact-questions .choice-block + .choice-block {
  border-left: 1px solid #dbe7e8;
}
.pill-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pill-choices label {
  cursor: pointer;
}
.pill-choices span {
  display: block;
  padding: 10px 14px;
  border: 1px solid #bbc9ca;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  transition: 0.18s ease;
}
.pill-choices label:hover span {
  border-color: var(--cool);
  background: var(--ice-soft);
}
.pill-choices label:has(input:checked) span {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
}
.fine-controls {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  padding: 22px 26px 26px;
}
.fine-controls label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fine-controls input,
.fine-controls select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px;
  background: #fff;
  border: 1px solid #9fadae;
  border-radius: 0;
  font: inherit;
}
.fine-controls input:focus,
.fine-controls select:focus {
  outline: 3px solid var(--ice);
  border-color: var(--deep);
}
button {
  cursor: pointer;
}
.finder-hint {
  min-height: 0;
  padding: 0 26px;
  color: #4d5554;
  font-size: 13px;
}
.finder-hint:not(:empty) {
  padding-bottom: 24px;
}
.finder-hint strong {
  color: var(--deep);
}
.results-bar {
  min-height: 64px;
  margin-bottom: 28px;
  padding: 15px 18px;
  border: 1px solid #bcd2d5;
  background: var(--ice-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
}
.results-bar > div:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cool);
  box-shadow: 0 0 0 5px rgba(22, 120, 138, 0.11);
  margin-right: 5px;
}
.active-filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-chip {
  padding: 5px 9px;
  border: 1px solid #a9c3c7;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 750;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 21px;
}
.load-more {
  margin: 44px auto 0;
  text-align: center;
}
.load-more p {
  margin: 0 0 14px;
  color: #626b69;
  font-size: 13px;
  font-weight: 750;
}
.load-more .cta {
  min-width: min(100%, 280px);
}
.load-more .cta[hidden] {
  display: none;
}
.card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}
.card-copy {
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.media {
  aspect-ratio: 1;
  background: var(--gray);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 22px;
  transition: transform 0.35s ease;
}
.card:hover .media img {
  transform: scale(1.04);
}
.card small {
  display: block;
  margin-top: 18px;
  font-weight: 900;
}
.card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  margin: 5px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 73px;
}
.fit-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin: 12px 0 2px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #666b68;
  font-size: 9px;
  line-height: 1.2;
}
.fit-line span:first-child {
  color: var(--cool);
  font-weight: 900;
  letter-spacing: 0.06em;
}
.fit-line span:last-child {
  text-align: right;
}
.specs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 14px 0 8px;
}
.specs span {
  border: 1px solid #777;
  padding: 4px 7px;
  font-size: 12px;
  background: #fcfcf8;
}
.shop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: #fff;
  padding: 14px 15px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  transition: background 0.2s;
}
.shop:hover {
  background: #bfeaf2;
  color: #10272c;
}
.shop b {
  font-size: 19px;
  font-weight: 400;
}
.price-row {
  border-top: 1px solid var(--line);
  padding: 16px 0 14px;
  margin-top: auto;
}
.price-row strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-row span {
  display: block;
  color: #71736a;
  font-size: 10px;
  margin-top: 7px;
}
.campaign {
  aspect-ratio: 1;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 28px;
}
.campaign img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.campaign div {
  position: relative;
}
.campaign h3 {
  font-size: 36px;
  line-height: 1;
  margin: 8px 0;
}
.advisor {
  background: #000;
  color: #fff;
}
.advice {
  font-size: 24px;
  max-width: 800px;
}
.advisor-cta {
  border-color: var(--ice);
  background: var(--ice);
  color: var(--deep);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #bbb;
}
.guide-grid article {
  background: #fff;
  padding: 34px;
  min-height: 230px;
}
.guide-grid h3 {
  font-size: 30px;
}
.disclosure {
  margin: 0 clamp(20px, 5vw, 72px) 80px;
  border: 1px solid #000;
  padding: 24px;
}
.disclosure p {
  max-width: 900px;
}
footer {
  background: #000;
  color: #fff;
  padding: 60px clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: 2fr 2fr 3fr;
  gap: 30px;
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer span {
  color: #999;
}
.legal-main {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 7vw, 110px);
}
.legal-shell {
  max-width: 860px;
  margin: 0 auto;
}
.legal-shell h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 8vw, 90px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.legal-meta {
  margin: 0 0 58px;
  color: #68706e;
  font-size: 14px;
  font-weight: 750;
}
.legal-shell h2 {
  margin: 45px 0 12px;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.legal-shell p {
  margin: 0 0 16px;
  max-width: 78ch;
}
.legal-shell a {
  color: var(--cool);
  text-underline-offset: 3px;
}
.legal-back {
  display: inline-block;
  margin-top: 42px;
  font-weight: 850;
}
.empty {
  text-align: center;
  padding: 80px;
  background: #eee;
}
@media (max-width: 800px) {
  nav {
    display: none;
  }
  .menu {
    display: block;
  }
  .hero {
    min-height: 75vh;
    background:
      linear-gradient(#ffffffce, #fffffff2),
      url("/media/emotional-hero.png") 67% center/cover;
  }
  .types,
  .grid,
  .guide-grid,
  footer {
    grid-template-columns: 1fr;
  }
  .types article {
    min-height: 200px;
  }
  .controls,
  .questions {
    grid-template-columns: 1fr;
  }
  .finder,
  .advisor,
  .guides {
    padding-top: 70px;
  }
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .reset-link {
    margin-top: 18px;
  }
  .solution-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .choice-all {
    grid-column: 1 / -1;
    min-height: 112px;
  }
  .choice-all .choice-icon {
    margin-bottom: 0;
  }
  .compact-questions,
  .fine-controls {
    grid-template-columns: 1fr;
  }
  .compact-questions .choice-block + .choice-block {
    border-left: 0;
    border-top: 1px solid #dbe7e8;
  }
  .results-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .active-filters {
    justify-content: flex-start;
  }
  .card h3 {
    font-size: 15px;
  }
}
@media (max-width: 1100px) and (min-width: 801px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .solution-choices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .choice-block {
    padding: 20px 16px;
  }
  .solution-choices {
    grid-template-columns: 1fr;
  }
  .choice-card,
  .choice-all {
    grid-column: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: center;
  }
  .choice-icon {
    grid-row: 1 / span 3;
    margin: 0;
  }
  .choice-card strong,
  .choice-card small,
  .choice-card em {
    grid-column: 2;
    margin-top: 0;
  }
  .choice-card small {
    margin-top: 3px;
  }
  .choice-card em {
    margin-top: 8px;
  }
  .fine-controls {
    padding: 20px 16px;
  }
  .finder-hint {
    padding-inline: 16px;
  }
  .guided-filter .api-status {
    margin-inline: 16px;
  }
  .room-choices span {
    padding-inline: 11px;
  }
}
