.home-hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.home-hero-eyebrow .badge {
  background: var(--cc-red);
  color: var(--cc-paper);
  padding: 4px 10px;
  font-family: var(--cc-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.home-hero h1 {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: clamp(48px, 7.2vw, 118px);
  line-height: 0.84;
  text-transform: uppercase;
  margin: 0 0 36px;
}

.home-hero h1 em {
  color: var(--cc-red);
  position: relative;
  display: inline-block;
  font-style: normal;
}

.home-hero h1 em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 8%;
  height: 8px;
  background: var(--cc-red);
  opacity: 0.18;
  transform: skewY(-1.5deg);
}

.home-hero-lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--cc-fg-2);
  margin: 0 0 36px;
  max-width: 48ch;
}

.home-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.home-hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
  font-family: var(--cc-font-mono);
  font-size: 12px;
  color: var(--cc-fg-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-trust strong {
  display: block;
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--cc-ink);
  margin-bottom: 4px;
}

.home-hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.8;
  min-height: 500px;
}

.hv-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(82%, 430px);
  filter: drop-shadow(0 24px 30px rgba(20, 17, 15, 0.28));
  transform: translate(-50%, -50%);
  transition: transform var(--cc-dur-4) var(--cc-ease);
}

.hv-cover:hover {
  transform: translate(-50%, calc(-50% - 4px)) rotate(-1deg);
}

.hv-cover .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  object-fit: contain;
}

.hv-cover-stamp {
  position: absolute;
  top: -20px;
  right: -8px;
  z-index: 3;
  transform: rotate(8deg);
}

.hv-meta-stamp {
  position: absolute;
  left: -4%;
  bottom: 14%;
  transform: rotate(-7deg);
  z-index: 2;
}

.hv-side-polaroid {
  position: absolute;
  right: -6%;
  bottom: 6%;
  width: 36%;
  transform: rotate(8deg);
  z-index: 2;
}

.home-featured {
  background: var(--cc-ink);
  color: var(--cc-paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.home-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}

.home-featured-eye {
  font-family: var(--cc-font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-red);
  margin-bottom: 24px;
}

.home-featured h2 {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--cc-paper);
  margin: 0 0 24px;
}

.home-featured h2 em {
  color: var(--cc-red);
  font-style: normal;
}

.home-featured p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 236, 223, 0.8);
  max-width: 52ch;
  margin: 0 0 36px;
}

.home-featured-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.home-featured-list li {
  font-family: var(--cc-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 236, 223, 0.6);
}

.home-featured-list li strong {
  display: block;
  font-family: var(--cc-font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--cc-paper);
  margin-bottom: 4px;
}

.home-featured-visual {
  position: relative;
  aspect-ratio: 2749 / 2008;
  min-height: 0;
}

.home-featured-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--cc-shadow-3);
}

.home-featured-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-featured-photo .wp-block-image,
.home-featured-photo .wp-block-image img {
  width: 100%;
  height: 100%;
}

.home-featured-photo .wp-block-image,
.hv-cover .wp-block-image {
  margin: 0;
}

.home-featured-photo .wp-block-image img {
  object-fit: cover;
}

.home-featured-pinstamp {
  position: absolute;
  top: -22px;
  right: -14px;
  transform: rotate(8deg);
  z-index: 2;
}

.home-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 16px;
}

.home-step {
  border-top: 2px solid var(--cc-ink);
  padding-top: 24px;
  position: relative;
}

.home-step .n {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.9;
  color: var(--cc-red);
  margin-bottom: 8px;
}

.home-step h3 {
  font-family: var(--cc-font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 12px;
}

.home-step p {
  line-height: 1.6;
  color: var(--cc-fg-2);
  margin: 0;
  max-width: 36ch;
}

.home-contents {
  background: var(--cc-paper-2);
  padding: 118px 0;
  position: relative;
  overflow: hidden;
}

.home-contents-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}

.home-contents .cc-eyebrow-red {
  margin-bottom: 14px;
}

.home-contents h2.cc-h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin: 0 0 22px;
}

.home-contents-lead {
  max-width: 56ch;
  margin: 0 0 34px;
  color: var(--cc-fg-2);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
}

.home-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 14px;
}

.home-evidence-grid > *,
.home-evidence-card > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.home-evidence-card {
  height: 100%;
  min-height: 184px;
  padding: 20px 20px 18px;
  background: rgba(244, 236, 223, 0.74);
  border: 1.5px solid var(--cc-border);
  box-shadow: 0 8px 22px rgba(20, 17, 15, 0.08);
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-height: 100%;
}

.home-evidence-card .tag {
  margin: 0;
  width: fit-content;
  padding: 5px 8px 4px;
  background: var(--cc-ink);
  color: var(--cc-paper);
  font-family: var(--cc-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-evidence-card h3 {
  min-height: 1.9em;
  margin: 18px 0 10px !important;
  font-family: var(--cc-font-display);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-evidence-card p:not(.tag) {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cc-fg-2);
}

.home-contents-visual {
  position: relative;
  min-height: 640px;
}

.home-evidence-spread {
  position: relative;
  min-height: inherit;
  isolation: isolate;
}

.home-evidence-shot {
  position: absolute;
  padding: 12px 12px 38px;
  background: var(--cc-white);
  border: 2px solid var(--cc-ink);
  box-shadow: var(--cc-shadow-3);
  transition: transform var(--cc-dur-3) var(--cc-ease);
}

.home-evidence-shot:hover {
  transform: translateY(-4px) rotate(var(--shot-rotate, 0deg));
}

.home-evidence-shot .wp-block-image {
  margin: 0;
  overflow: hidden;
  background: var(--cc-ink);
}

.home-evidence-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-evidence-shot .label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  margin: 0;
  font-family: var(--cc-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--cc-fg-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-evidence-shot .wp-block-image,
.home-evidence-shot .wp-block-image img {
  width: 100%;
  height: 100%;
}

.home-evidence-shot::after {
  content: "";
  position: absolute;
  inset: 12px 12px 38px;
  border: 1px solid rgba(20, 17, 15, 0.16);
  pointer-events: none;
}

.shot-main {
  --shot-rotate: 1.5deg;
  z-index: 2;
  right: 2%;
  top: 0;
  width: min(76%, 520px);
  transform: rotate(var(--shot-rotate));
}

.shot-main .wp-block-image {
  aspect-ratio: 4 / 3;
}

.shot-support {
  padding: 10px 10px 34px;
}

.shot-support .wp-block-image {
  aspect-ratio: 4 / 3;
}

.shot-a {
  --shot-rotate: -5deg;
  z-index: 1;
  left: 2%;
  top: 48px;
  width: min(44%, 300px);
  transform: rotate(var(--shot-rotate));
}

.shot-b {
  --shot-rotate: -2deg;
  z-index: 4;
  left: 0;
  bottom: 72px;
  width: min(48%, 330px);
  transform: rotate(var(--shot-rotate));
}

.shot-c {
  --shot-rotate: 4deg;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(50%, 350px);
  transform: rotate(var(--shot-rotate));
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-review {
  background: var(--cc-paper);
  border: 1.5px solid var(--cc-ink);
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: var(--cc-shadow-2);
}

.home-review .stars {
  color: var(--cc-red);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.home-review blockquote {
  font-family: var(--cc-font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.home-review .by {
  font-family: var(--cc-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-fg-2);
}

.home-witness {
  padding: 140px 0;
  text-align: center;
}

.home-witness blockquote {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0 auto;
}

.home-witness blockquote::before,
.home-witness blockquote::after {
  color: var(--cc-red);
}

.home-witness blockquote::before {
  content: "\201C";
}

.home-witness blockquote::after {
  content: "\201D";
}

.home-witness .by {
  display: block;
  margin-top: 32px;
  font-family: var(--cc-font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-fg-2);
}

.how-hero,
.faq-hero {
  padding: 80px 0 64px;
}

.faq-hero {
  padding: 72px 0 48px;
}

.how-hero h1,
.faq-hero h1 {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 0 0 24px;
  max-width: 14ch;
}

.how-hero h1 em {
  font-style: normal;
  color: var(--cc-red);
}

.how-hero p,
.faq-hero p {
  font-size: 22px;
  line-height: 1.5;
  color: var(--cc-fg-2);
  max-width: 56ch;
  margin: 0;
}

.how-hero p.cc-eyebrow-red {
  margin-bottom: 18px;
}

.faq-hero p.cc-eyebrow-red {
  margin-bottom: 16px;
}

.how-step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-top: 1.5px solid var(--cc-ink);
}

.how-step-row.flip .how-step-copy {
  order: 2;
}

.how-step-num {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.86;
  color: var(--cc-red);
  margin: 0 0 16px;
}

.how-step-row h2 {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 0.92;
  margin: 0 0 20px;
}

.how-step-row p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--cc-fg-2);
  max-width: 46ch;
}

.how-step-visual {
  position: relative;
  min-height: 420px;
}

.how-prop-folder,
.how-prop-notes,
.how-prop-verdict {
  position: absolute;
  background: var(--cc-paper);
  border: 1.5px solid var(--cc-ink);
  box-shadow: var(--cc-shadow-3);
}

.how-prop-folder {
  left: 10%;
  top: 5%;
  width: 75%;
  min-height: 270px;
  background: var(--cc-manila);
  padding: 24px;
  transform: rotate(-3deg);
}

.how-prop-folder-top {
  margin-bottom: 14px;
}

.how-prop-folder-top p:first-child {
  font-family: var(--cc-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cc-ink-3);
  margin: 0;
}

.how-prop-folder h3,
.how-prop-verdict h3 {
  font-family: var(--cc-font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 0.95;
  color: var(--cc-ink);
  margin: 0;
}

.how-prop-lines {
  margin-top: 18px;
  height: 2px;
  background: var(--cc-ink-3);
  box-shadow: 0 8px 0 var(--cc-ink-4), 0 16px 0 var(--cc-ink-4);
}

.how-prop-notes {
  left: 8%;
  top: 10%;
  width: 62%;
  min-height: 300px;
  padding: 20px;
  transform: rotate(-2deg);
  font-family: var(--cc-font-hand);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.25;
}

.how-prop-notes p {
  margin: 0 0 10px;
}

.how-prop-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 22px;
}

.how-prop-notes li::before {
  content: "· ";
}

.how-prop-notes li:nth-child(2) {
  text-decoration: line-through;
  opacity: 0.55;
}

.how-prop-notes li:nth-child(3) {
  color: var(--cc-red);
}

.how-prop-hand {
  position: absolute;
  right: 12%;
  top: 8%;
  font-family: var(--cc-font-hand);
  font-size: 38px;
  color: var(--cc-red);
  font-weight: 700;
  transform: rotate(8deg);
  margin: 0;
}

.how-prop-verdict {
  left: 12%;
  top: 10%;
  width: 70%;
  min-height: 310px;
  padding: 24px;
  transform: rotate(2deg);
  text-align: center;
}

.how-prop-verdict .cc-mono {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cc-ink-3);
  margin-bottom: 14px;
}

.how-prop-verdict .cc-stamp {
  display: inline-block;
  margin-top: 32px;
  color: var(--cc-status-closed);
  border-color: var(--cc-status-closed);
  transform: rotate(-6deg);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 96px;
}

.faq-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 1.5px solid var(--cc-ink);
}

.faq-tabs button {
  padding: 14px 18px;
  background: transparent;
  border: 0;
  color: inherit;
  font-family: var(--cc-font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
}

.faq-tabs button.active {
  border-bottom-color: var(--cc-red);
}

.cc-help-tabs {
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 96px;
}

.cc-tab-panel {
  padding-top: 4px;
}

.cc-tab-title {
  font-family: var(--cc-font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.cc-help-tabs .faq-tabs + .cc-tab-panel .cc-tab-title,
.cc-help-tabs .faq-tabs ~ .cc-tab-panel .cc-tab-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.cc-help-tabs details,
.wp-block-details {
  border-bottom: 1.5px solid var(--cc-ink);
  padding: 0;
}

.cc-help-tabs details summary,
.wp-block-details summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--cc-font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
  text-transform: uppercase;
}

.cc-help-tabs details summary::-webkit-details-marker,
.wp-block-details summary::-webkit-details-marker {
  display: none;
}

.cc-help-tabs details summary::after,
.wp-block-details summary::after {
  content: "+";
  color: var(--cc-red);
  font-size: 32px;
  line-height: 0.8;
}

.cc-help-tabs details[open] summary::after,
.wp-block-details[open] summary::after {
  transform: rotate(45deg);
}

.cc-help-tabs details > :not(summary),
.wp-block-details > :not(summary) {
  max-width: 70ch;
  color: var(--cc-fg-2);
  margin-bottom: 24px;
}

.cc-help-contact {
  margin-top: 64px;
  padding: 40px;
  background: var(--cc-paper-2);
  border: 1.5px solid var(--cc-ink);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cc-help-tabs-editor {
  border: 1.5px solid var(--cc-ink);
  padding: 24px;
  background: var(--cc-paper-2);
}

.cc-help-tabs-editor-head,
.cc-help-tabs-editor-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cc-help-tabs-editor-head {
  justify-content: space-between;
  margin-bottom: 18px;
}

.cc-help-tabs-editor-tabs button {
  cursor: pointer;
}

.cc-help-tabs-editor-panel {
  display: grid;
  gap: 18px;
}

.cc-help-tabs-editor-item {
  border: 1px solid var(--cc-ink-4);
  padding: 16px;
  background: var(--cc-paper);
}

.cc-help-tabs-editor-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.cc-help-tabs-editor-answer {
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid var(--cc-ink-4);
  background: var(--cc-white);
}

.cc-help-contact h2,
.cc-help-contact h3 {
  font-family: var(--cc-font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.cc-help-contact p {
  margin: 8px 0 0;
  font-family: var(--cc-font-mono);
  font-size: 14px;
  color: var(--cc-fg-2);
}

.how-final {
  padding: 96px 0;
  text-align: center;
  border-top: 1.5px solid var(--cc-ink);
}

.how-final .cc-h2 {
  max-width: 12ch;
  margin: 0 auto 28px;
}

.cc-page-shell {
  padding: 72px 0 24px;
}

.cc-page-shell h1 {
  font-family: var(--cc-font-display);
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.cc-single-post {
  max-width: 860px;
  margin-inline: auto;
}

.cc-single-post .cc-post-meta {
  margin: -16px 0 32px;
  font-family: var(--cc-font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-fg-3);
}

.cc-single-post .wp-block-post-featured-image {
  margin: 0 0 40px;
}

.cc-single-post .wp-block-post-featured-image img {
  border: 1.5px solid var(--cc-ink);
  box-shadow: var(--cc-shadow-2);
}

.cc-single-post .wp-block-post-content {
  font-size: var(--cc-text-md);
}

@media (max-width: 1000px) {
  .home-hero-grid,
  .home-featured-grid,
  .home-contents-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-hero {
    padding-bottom: 88px;
  }

  .home-hero-visual {
    grid-row: 1;
    width: min(520px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .home-featured-visual {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .home-contents-visual {
    width: min(760px, 100%);
    min-height: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .home-reviews-grid,
  .how-step-row,
  .cc-help-contact {
    grid-template-columns: 1fr;
  }

  .how-step-row.flip .how-step-copy {
    order: initial;
  }
}

@media (max-width: 800px) {
  .home-steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 48px 0 64px;
  }

  .home-hero-grid {
    gap: 34px;
  }

  .home-hero h1 {
    margin-bottom: 24px;
  }

  .home-hero-lead {
    margin-bottom: 26px;
  }

  .home-hero-ctas {
    align-items: stretch;
  }

  .home-hero-ctas .wp-block-button,
  .home-hero-ctas .wp-block-button__link {
    width: 100%;
  }

  .home-hero-trust {
    gap: 18px;
    margin-top: 36px;
  }

  .home-hero-trust p {
    flex: 1 1 120px;
  }

  .faq-hero {
    padding: 48px 0 32px;
  }

  .cc-help-tabs {
    padding-bottom: 64px;
  }

  .faq-tabs {
    margin-bottom: 20px;
  }

  .cc-help-tabs details summary,
  .wp-block-details summary {
    padding: 18px 0;
  }

  .cc-help-contact {
    margin-top: 48px;
    padding: 24px;
  }

  .home-hero-visual {
    width: min(330px, 88vw);
  }

  .home-featured {
    padding: 72px 0;
  }

  .home-featured h2 {
    font-size: clamp(38px, 14vw, 64px);
  }

  .home-featured p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .home-featured-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    margin-bottom: 28px;
  }

  .home-featured-visual {
    aspect-ratio: 4 / 3;
  }

  .home-contents {
    padding: 72px 0;
  }

  .home-contents h2.cc-h2 {
    font-size: clamp(38px, 13vw, 60px);
  }

  .home-contents-lead {
    margin-bottom: 26px;
    font-size: 16px;
  }

  .home-evidence-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .home-evidence-card {
    min-height: 0;
    padding: 18px;
  }

  .home-evidence-card h3 {
    min-height: 0;
    margin-top: 16px !important;
  }

  .home-contents-visual {
    min-height: 450px;
  }

  .home-evidence-shot {
    padding: 8px 8px 30px;
  }

  .home-evidence-shot::after {
    inset: 8px 8px 30px;
  }

  .home-evidence-shot .label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }

  .shot-main {
    right: 0;
    top: 0;
    width: 84%;
  }

  .shot-a {
    left: 0;
    top: 28px;
    width: 46%;
  }

  .shot-b {
    left: 0;
    bottom: 72px;
    width: 56%;
  }

  .shot-c {
    right: 0;
    bottom: 0;
    width: 58%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Home — Cases Carousel (dark desk)
   (patterns/home-cases-carousel.php + assets/js/cases-carousel.js)
   ═══════════════════════════════════════════════════════════════ */

.home-carousel {
  background: var(--cc-ink);
  color: var(--cc-paper);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.home-carousel::before {
  /* faint desk grain */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 236, 223, 0.04) 1px, transparent 1px);
  background-size: 5px 5px;
  pointer-events: none;
}

/* ── Header row ─────────────────────────────────────────────── */

.hc-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  position: relative;
}

.hc-head .eye {
  font-family: var(--cc-font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-red);
  margin-bottom: 14px;
}

.hc-head h2 {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cc-paper);
}

.hc-nav {
  display: flex;
  gap: 10px;
}

.hc-arrow {
  width: 56px;
  height: 56px;
  border-radius: 99px;
  border: 1.5px solid var(--cc-paper);
  background: transparent;
  color: var(--cc-paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: all var(--cc-dur-2) var(--cc-ease);
}

.hc-arrow:hover {
  background: var(--cc-red);
  border-color: var(--cc-red);
  transform: translateY(-2px);
}

.hc-arrow:active {
  transform: translateY(0);
}

/* ── Stage (the 3-card coverflow area) ─────────────────────── */

.hc-stage {
  position: relative;
  height: clamp(200px, 26vw, 340px);
  margin: 32px 0 4px;
}

.hc-item {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform var(--cc-dur-4) var(--cc-ease),
    opacity var(--cc-dur-4) var(--cc-ease),
    filter var(--cc-dur-4) var(--cc-ease);
  will-change: transform, opacity;
}

.hc-item img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.6));
}

.hc-item.is-side img {
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.5)) grayscale(0.4) brightness(0.62);
}

.hc-item.is-poster img {
  height: 92%;
  border: 1px solid rgba(20, 17, 15, 0.5);
}

.hc-item.is-active {
  z-index: 30;
}

.hc-item.is-side {
  z-index: 20;
}

.hc-item.is-hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Badge stamp on the active image */
.hc-item-stamp {
  position: absolute;
  top: 4%;
  right: 6%;
  z-index: 5;
  pointer-events: none;
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-paper);
  background: var(--cc-red);
  padding: 6px 14px;
  transform: rotate(8deg);
}

/* ── Info panel ─────────────────────────────────────────────── */

.hc-info-wrap {
  position: relative;
}

.hc-info {
  max-width: 700px;
  margin: 28px auto 0;
  text-align: center;
}

.hc-badge-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  min-height: 30px;
}

.hc-num {
  font-family: var(--cc-font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 236, 223, 0.55);
}

.hc-tag {
  font-family: var(--cc-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.hc-tag.nyhet {
  background: var(--cc-red);
  color: var(--cc-paper);
}

.hc-tag.outline {
  border: 1.5px solid rgba(244, 236, 223, 0.5);
  color: var(--cc-paper);
}

.hc-info h3 {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--cc-paper);
}

.hc-blurb {
  font-family: var(--cc-font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 236, 223, 0.82);
  margin: 0 auto 22px;
  max-width: 62ch;
}

.hc-meta {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-family: var(--cc-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 236, 223, 0.7);
}

.hc-meta .cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hc-meta .pips {
  display: inline-flex;
  gap: 4px;
}

.hc-meta .pip {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(244, 236, 223, 0.3);
}

.hc-meta .pip.on {
  background: var(--cc-red);
}

.hc-buy {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hc-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.hc-price .from {
  font-family: var(--cc-font-mono);
  font-size: 16px;
  color: rgba(244, 236, 223, 0.5);
  text-decoration: line-through;
}

.hc-price .now {
  font-family: var(--cc-font-display);
  font-weight: 900;
  font-size: 34px;
  color: var(--cc-paper);
  letter-spacing: -0.01em;
}

.hc-price .off {
  font-family: var(--cc-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  background: var(--cc-red);
  color: var(--cc-paper);
  padding: 4px 9px;
  border-radius: 2px;
  align-self: center;
}

/* ── Dots ───────────────────────────────────────────────────── */

.hc-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.hc-dot {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  border: 1.5px solid rgba(244, 236, 223, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--cc-dur-2) var(--cc-ease);
}

.hc-dot:hover {
  border-color: var(--cc-paper);
}

.hc-dot.on {
  background: var(--cc-red);
  border-color: var(--cc-red);
  width: 28px;
}

/* Mobile-only arrow row (sits between stage and info panel) */
.hc-mob-nav {
  display: none;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 760px) {
  .hc-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  /* Side cards hidden — swipe and the mobile arrow row handle navigation. */
  .hc-item.is-side {
    opacity: 0 !important;
    pointer-events: none;
  }

  /* Hide desktop arrows from the head; show the dedicated mobile arrow row instead. */
  .hc-head .hc-nav {
    display: none;
  }

  .hc-mob-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 16px 0 0;
  }

  .hc-stage {
    height: clamp(160px, 56vw, 240px);
  }

  .hc-info h3 {
    font-size: clamp(24px, 6vw, 38px);
  }

  .hc-blurb {
    font-size: 15px;
  }

  .hc-price .now {
    font-size: 26px;
  }
}
