/* Sketchnote component + privacy + plan download */

.sketchnote {
  margin: 16px 0 8px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}
.sk-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 12px 14px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  text-align: left;
}
.sk-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--terra-soft);
  color: var(--terra-deep);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sk-label {
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.sk-chev {
  color: var(--ink-3);
  transition: transform 200ms ease;
  font-size: 14px;
}
.sk-chev.open { transform: rotate(180deg); }

.sk-body {
  padding: 0 10px 12px;
}
.sk-img-btn {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  position: relative;
}
.sk-img-btn img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
.sk-expand {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(28,24,22,0.75);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}

.sk-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.94);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: zoom-out;
}
.sk-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
.sk-view-only {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(247,243,236,0.12);
  color: rgba(247,243,236,0.85);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 99px;
  border: 1px solid rgba(247,243,236,0.18);
  pointer-events: none;
}
.sk-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(247,243,236,0.15);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* Privacy ribbon */
.privacy-ribbon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #F2EAD8;
  color: #5A4A2E;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.45;
  margin: 12px 0;
}
.privacy-ribbon.compact {
  font-size: 12px;
  padding: 9px 12px;
}
.pr-icon {
  display: inline-flex;
  margin-top: 1px;
  flex-shrink: 0;
  color: #8A6F3C;
}
.privacy-ribbon strong {
  color: #3F3520;
  font-weight: 600;
}

/* Plan: framing card + download */
.plan-intro {
  background: linear-gradient(135deg, #FBF6EC, #F7EBD8);
  border: 1px solid #ECDCC0;
  border-radius: 14px;
  padding: 18px 18px;
  margin: 12px 0 18px;
}
.plan-intro h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.plan-intro p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.plan-intro p + p { margin-top: 8px; }

.download-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 8px;
}
.dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  text-align: left;
  width: 100%;
  transition: border-color 180ms ease, transform 120ms ease;
}
.dl-btn:hover { border-color: var(--terra); }
.dl-btn:active { transform: scale(0.99); }
.dl-btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}
.dl-btn[aria-disabled="true"]:hover { border-color: var(--line); }
.dl-btn.primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.dl-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--terra-soft);
  color: var(--terra-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dl-btn.primary .dl-icon {
  background: var(--terra);
  color: #fff;
}
.dl-text {
  flex: 1;
  min-width: 0;
}
.dl-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2px;
}
.dl-sub {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.3;
}
.dl-btn.primary .dl-sub { color: rgba(247,243,236,0.7); }
.dl-arrow {
  color: var(--ink-3);
  flex-shrink: 0;
  font-size: 16px;
}
.dl-btn.primary .dl-arrow { color: rgba(247,243,236,0.6); }
