
/* Cozy Picks page routes + visual system */
.cp-page {
  --cp-ink: #2f251f;
  --cp-muted: #6f5a4c;
  --cp-line: #e7d7c7;
  --cp-cream: #fff9f2;
  --cp-warm: #f4e6d6;
  --cp-brown: #583b2b;
  background: #fffaf4;
  color: var(--cp-ink);
}

.cp-page img {
  max-width: 100%;
  display: block;
}

.cp-kicker {
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  font-size: .78rem;
  color: #b1743c;
}

.cp-hero {
  width: min(1560px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 94px) 0 clamp(40px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(480px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.cp-hero h1,
.cp-section h2,
.cp-feature h2,
.cp-flow h2,
.cp-cta h2 {
  margin: 0;
  line-height: .95;
  letter-spacing: -0.055em;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

.cp-hero h1 {
  font-size: clamp(3rem, 6.8vw, 7.6rem);
  max-width: 8.5ch;
}

.cp-hero h1 em,
.cp-feature h2 em {
  color: #895d3f;
  font-style: italic;
  font-weight: 400;
}

.cp-lede {
  margin: clamp(18px, 2vw, 28px) 0 0;
  max-width: 630px;
  color: var(--cp-muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.7;
}

.cp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cp-actions .btn,
.cp-cta .btn {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--cp-brown);
}

.cp-actions .primary,
.cp-cta .primary {
  background: var(--cp-brown);
  color: white;
}

.cp-actions .secondary {
  background: rgba(255,255,255,.62);
  color: var(--cp-ink);
}

.cp-trust {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 18px 24px;
  flex-wrap: wrap;
  color: var(--cp-muted);
}

.cp-trust li::before {
  content: "✧";
  color: #b1743c;
  margin-right: .45rem;
}

.cp-hero-media {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(70, 45, 25, .12);
  border: 1px solid var(--cp-line);
  background: #f0dfcf;
}

.cp-hero-media img {
  width: 100%;
  height: clamp(420px, 43vw, 650px);
  object-fit: cover;
  object-position: center;
}

.cp-section {
  width: min(1560px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 76px) 0;
}

.cp-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.cp-section-head h2,
.cp-feature h2,
.cp-flow h2,
.cp-cta h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
}

.cp-section-head p {
  color: var(--cp-muted);
  line-height: 1.65;
  margin: .8rem 0 0;
}

.cp-section-head.split {
  max-width: none;
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.cp-section-head.split > a {
  color: var(--cp-brown);
  font-weight: 800;
  text-decoration: none;
}

.cp-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.cp-card,
.cp-guide-card {
  background: rgba(255,255,255,.68);
  border: 1px solid var(--cp-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(75, 45, 22, .06);
}

.cp-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.cp-card div,
.cp-guide-card div {
  padding: 20px;
}

.cp-card h3,
.cp-guide-card h3 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.05;
  font-size: 1.45rem;
  font-weight: 500;
}

.cp-card p,
.cp-guide-card p {
  color: var(--cp-muted);
  line-height: 1.55;
  margin: .7rem 0 1rem;
}

.cp-card a,
.cp-guide-card a,
.cp-flow a {
  color: var(--cp-brown);
  text-decoration: none;
  font-weight: 800;
}

.cp-feature {
  width: min(1560px, calc(100% - 56px));
  margin: clamp(24px, 4vw, 48px) auto;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  border: 1px solid var(--cp-line);
  border-radius: 30px;
  background: linear-gradient(120deg, #fffaf4, #f7eadb);
}

.cp-feature-copy p:not(.cp-kicker) {
  color: var(--cp-muted);
  line-height: 1.65;
  max-width: 650px;
}

.cp-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.cp-mini-proof span {
  background: #fff;
  border: 1px solid var(--cp-line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--cp-muted);
  font-size: .92rem;
}

.cp-feature-media {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
}

.cp-feature-main,
.cp-detail-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.35);
}

.cp-feature-main {
  height: 470px;
}

.cp-detail-stack {
  display: grid;
  gap: 16px;
}

.cp-detail-stack img {
  height: 227px;
}

.cp-flow {
  width: min(1560px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 28px;
  border: 1px solid var(--cp-line);
  background: #fbefe3;
}

.cp-flow h2 {
  text-align: center;
  margin-bottom: 26px;
}

.cp-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cp-flow-grid a {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--cp-line);
  border-radius: 18px;
  padding: 24px;
}

.cp-flow-grid strong,
.cp-flow-grid span {
  display: block;
}

.cp-flow-grid span {
  margin-top: 8px;
  color: var(--cp-muted);
  font-weight: 500;
}

.cp-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cp-guide-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.cp-cta {
  width: min(1560px, calc(100% - 56px));
  margin: 0 auto clamp(48px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--cp-line);
  border-radius: 28px;
  background: #f8eadc;
}

.cp-cta img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.cp-cta > div {
  padding: clamp(28px, 4vw, 56px);
}

.cp-cta p {
  color: var(--cp-muted);
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .cp-card-grid { grid-template-columns: repeat(3, 1fr); }
  .cp-guide-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-hero { grid-template-columns: 1fr; }
  .cp-hero h1 { max-width: 11ch; }
  .cp-feature { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .cp-hero,
  .cp-section,
  .cp-feature,
  .cp-flow,
  .cp-cta {
    width: min(100% - 28px, 560px);
  }

  .cp-hero {
    padding-top: 30px;
    gap: 22px;
  }

  .cp-hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.6rem);
    max-width: 9.2ch;
  }

  .cp-lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .cp-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cp-actions .btn,
  .cp-cta .btn {
    width: 100%;
  }

  .cp-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: .92rem;
  }

  .cp-hero-media img {
    height: min(88vw, 520px);
    object-position: center;
  }

  .cp-section-head,
  .cp-section-head.split {
    text-align: left;
    align-items: start;
    display: block;
  }

  .cp-section-head h2,
  .cp-feature h2,
  .cp-flow h2,
  .cp-cta h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
    letter-spacing: -.045em;
  }

  .cp-card-grid,
  .cp-guide-grid,
  .cp-flow-grid,
  .cp-cta {
    grid-template-columns: 1fr;
  }

  .cp-card img {
    height: 230px;
  }

  .cp-feature {
    padding: 18px;
    border-radius: 24px;
  }

  .cp-feature-media {
    grid-template-columns: 1fr;
  }

  .cp-feature-main {
    height: 270px;
  }

  .cp-detail-stack {
    grid-template-columns: 1fr 1fr;
  }

  .cp-detail-stack img {
    height: 150px;
  }

  .cp-flow {
    padding: 24px;
  }

  .cp-cta img {
    height: 250px;
  }

  .cp-cta > div {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .cp-trust { grid-template-columns: 1fr; }
  .cp-detail-stack { grid-template-columns: 1fr; }
  .cp-detail-stack img { height: 180px; }
}
