@font-face {
  font-family: Bricolage;
  src: url('/fonts/bricolage-var.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url('/fonts/jakarta-var.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #1b1725;
  --body: #453e51;
  --mute: #6f677d;
  --paper: #fff;
  --shell: #f7f3ec;
  --line: #e5dcd0;
  --a: #b3342c;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--shell);
  color: var(--body);
  font: 400 17px/1.65 Jakarta, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4 {
  font-family: Bricolage, Jakarta, system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(31px, 5vw, 52px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.2vw, 33px); font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
p { margin: 0 0 1.1em; }
a { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }

.cc-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.cc-narrow { max-width: 760px; }

.cc-top {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.cc-top-in {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}
.cc-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}
.cc-brand svg { flex: none; }
.cc-brand b {
  font-family: Bricolage, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  display: block;
  line-height: 1.15;
  color: var(--ink);
}
.cc-brand span {
  display: block;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--mute);
}
.cc-nav { display: flex; gap: 20px; align-items: center; }
.cc-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.cc-nav a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.cc-nav a[aria-current] { color: var(--ink); border-bottom-color: var(--a); }
.cc-burger {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  cursor: pointer;
  padding: 10px 9px;
}
.cc-burger i { display: block; height: 2px; background: var(--ink); margin: 3px 0; border-radius: 2px; }

.cc-mast { background: var(--paper); border-bottom: 1px solid var(--line); }
.cc-mast-in { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 46px; padding: 54px 0 44px; }
.cc-mast p { font-size: 19px; max-width: 40em; }
.cc-eyebrow {
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin: 0 0 14px;
}
.cc-rail { border-top: 3px solid var(--ink); padding-top: 14px; align-self: start; }
.cc-rail div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.cc-rail b {
  font-family: Bricolage, sans-serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}
.cc-rail small { font-size: 13px; color: var(--mute); }

.cc-band { display: block; width: 100%; height: auto; }
.cc-band-wrap { background: var(--paper); border-bottom: 1px solid var(--line); }

.cc-sec { padding: 52px 0; }
.cc-sec--paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cc-sec-head { max-width: 720px; margin-bottom: 30px; }
.cc-sec-head p { color: var(--mute); margin: 0; }

.cc-list { border-top: 1px solid var(--line); }
.cc-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 190px 22px;
  gap: 20px;
  align-items: center;
  padding: 16px 14px 16px 12px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  border-left: 4px solid var(--a);
  background: var(--paper);
}
.cc-row:hover { background: #fffdf9; }
.cc-row img { width: 74px; height: 74px; border-radius: 8px; background: #fff; }
.cc-row h3 { margin: 0 0 3px; }
.cc-row p { margin: 0; font-size: 15px; color: var(--mute); }
.cc-row-n { text-align: right; font-size: 14px; color: var(--mute); }
.cc-row-n b {
  display: block;
  font-family: Bricolage, sans-serif;
  font-size: 19px;
  color: var(--ink);
  font-weight: 600;
}
.cc-arrow { color: var(--a); font-size: 22px; line-height: 1; text-align: right; }

.cc-swatches { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 26px; padding: 0; list-style: none; }
.cc-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px 6px 7px;
  font-size: 14px;
  color: var(--body);
}
.cc-dot { width: 17px; height: 17px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .18); flex: none; }

.cc-table { width: 100%; border-collapse: collapse; font-size: 16px; }
.cc-table th, .cc-table td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.cc-table th { font-family: Bricolage, sans-serif; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.cc-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }

.cc-table td:nth-child(2) { color: var(--ink); font-weight: 700; white-space: nowrap; }

.cc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.cc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .15s;
}
.cc-card:hover { border-color: var(--a); transform: translateY(-2px); }
.cc-card-img { display: block; background: #fff; border-bottom: 1px solid var(--line); padding: 14px; }
.cc-card-img img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.cc-card-b { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px 16px; flex: 1; }

.cc-card-kind {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  border-left: 3px solid var(--a);
  padding-left: 8px;
}
.cc-card-t {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cc-card-f { margin-top: auto; padding-top: 8px; display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.cc-card-f b { font-family: Bricolage, sans-serif; font-size: 19px; color: var(--ink); }
.cc-rate { font-size: 13px; color: var(--mute); white-space: nowrap; }
.cc-rate i { font-style: normal; color: #b8860b; margin-right: 3px; }
.cc-rate em { font-style: normal; margin-left: 5px; }
.cc-rate em::before { content: '\00b7 '; }
.cc-grid-note { margin: 14px 0 0; font-size: 13.5px; color: var(--mute); }

.cc-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cc-note { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.cc-note h3 { margin-bottom: 8px; }
.cc-note p { margin: 0; font-size: 15px; }

.cc-q { border-bottom: 1px solid var(--line); }
.cc-q summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 34px 16px 0;
  font-family: Bricolage, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.cc-q summary::-webkit-details-marker { display: none; }
.cc-q summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 13px;
  font-size: 24px;
  color: var(--a);
  font-weight: 400;
}
.cc-q[open] summary::after { content: '\2212'; }
.cc-q p { margin: 0 0 16px; max-width: 62em; }

.cc-crumb { font-size: 13px; color: var(--mute); padding: 14px 0 0; }
.cc-crumb a { color: var(--mute); }
.cc-head { background: var(--paper); border-bottom: 1px solid var(--line); padding-bottom: 40px; }
.cc-head h1 { margin-top: 14px; }
.cc-head-in { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 44px; align-items: start; }
.cc-head p { font-size: 19px; margin: 0; }
.cc-shot { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.cc-shot img { width: 100%; height: auto; }
.cc-shot figcaption { font-size: 13px; color: var(--mute); padding: 10px 13px; border-top: 1px solid var(--line); }

.cc-stats { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); margin: 0 0 34px; overflow: hidden; }
.cc-stat { flex: 1 1 160px; padding: 16px 20px; border-right: 1px solid var(--line); }
.cc-stat:last-child { border-right: 0; }
.cc-stat b { display: block; font-family: Bricolage, sans-serif; font-size: 23px; color: var(--ink); font-weight: 700; line-height: 1.15; }
.cc-stat span { font-size: 13px; color: var(--mute); }

.cc-kinds { list-style: none; margin: 0 0 8px; padding: 0; }
.cc-kind { display: grid; grid-template-columns: minmax(0, 1fr) 90px 150px; gap: 16px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cc-kind b { font-size: 17px; color: var(--ink); font-weight: 600; }
.cc-kind span { font-size: 14px; color: var(--mute); }
.cc-kind i { display: block; height: 4px; border-radius: 3px; background: var(--a); opacity: .8; margin-top: 6px; }
.cc-kind-n { color: var(--a); font-weight: 600; }

.cc-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 8px; list-style: none; }
.cc-chip { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; font-size: 14px; }
.cc-chip b { color: var(--mute); font-weight: 500; }

.cc-plan { border-left: 4px solid var(--a); background: var(--paper); padding: 20px 22px; border-radius: 0 12px 12px 0; margin: 0 0 34px; }
.cc-plan h3 { margin-bottom: 6px; }
.cc-plan p { margin: 0; }

.cc-cta { background: var(--ink); color: #f2ecdf; border-radius: 14px; padding: 30px 32px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: center; }
.cc-cta h2 { color: #fff; margin: 0 0 8px; }
.cc-cta p { margin: 0; color: #cfc6bd; font-size: 15px; }

.cc-btn {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  white-space: nowrap;
  border: 2px solid var(--a);
  box-shadow: 0 0 0 3px var(--a);
}
.cc-btn:hover { background: var(--shell); }

.cc-more { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cc-more a { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; text-decoration: none; border-top: 3px solid var(--a); }
.cc-more b { display: block; font-family: Bricolage, sans-serif; font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.cc-more span { font-size: 13px; color: var(--mute); }

.cc-prose h2 { margin-top: 34px; }
.cc-prose ul { padding-left: 20px; }
.cc-prose li { margin-bottom: .5em; }
.cc-prose code { background: var(--paper); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; font-size: 14px; }

.cc-foot { background: var(--ink); color: #b7aec4; padding: 44px 0 30px; margin-top: 60px; font-size: 15px; }
.cc-foot-in { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 34px; }

.cc-foot h2 { color: #fff; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 12px; }
.cc-foot a { color: #d9d2e2; text-decoration: none; }
.cc-foot a:hover { color: #fff; text-decoration: underline; }
.cc-foot ul { list-style: none; margin: 0; padding: 0; }
.cc-foot li { margin-bottom: 8px; }
.cc-foot p { font-size: 14px; line-height: 1.6; }
.cc-fine { border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 30px; padding-top: 18px; font-size: 13px; color: #8f869c; }

@media (max-width: 900px) {
  .cc-mast-in, .cc-head-in { grid-template-columns: 1fr; gap: 28px; }
  .cc-cols { grid-template-columns: 1fr; }
  .cc-more { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cc-cta { grid-template-columns: 1fr; }
  .cc-foot-in { grid-template-columns: 1fr 1fr; }
  .cc-shot { max-width: 340px; }
  .cc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 780px) {
  .cc-burger { display: block; }
  .cc-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 22px 14px;
  }
  .cc-nav--open { display: flex; }
  .cc-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cc-sec { padding: 38px 0; }
  .cc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cc-card-b { padding: 11px 12px 13px; }
  .cc-card-t { font-size: 14px; }
  .cc-card-f { flex-direction: column; align-items: flex-start; gap: 2px; }
  .cc-row { grid-template-columns: 56px minmax(0, 1fr); gap: 14px; padding: 14px 12px; }
  .cc-row img { width: 56px; height: 56px; }
  .cc-row-n { grid-column: 2; text-align: left; }

  .cc-row-n b { display: inline; font-size: 16px; }
  .cc-row-n b::after { content: ' \00b7 '; color: var(--mute); font-weight: 400; }
  .cc-arrow { display: none; }
  .cc-kind { grid-template-columns: minmax(0, 1fr) 60px; }
  .cc-kind-p { display: none; }
  .cc-table th:nth-child(3), .cc-table td:nth-child(3) { display: none; }
  .cc-foot-in { grid-template-columns: 1fr; gap: 26px; }
  .cc-cta { padding: 24px 20px; }
  .cc-stat { flex-basis: 50%; }
}
