/* Czysty Domek Kielce — unique design system (Bitter + Mulish, sharp, clay/sage) */
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@500;600;700&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  --c1: #c45c26;
  --c2: #3d6b4f;
  --c3: #faf6f0;
  --c4: #1c1814;
  --c1-soft: rgba(196, 92, 38, 0.12);
  --c2-soft: rgba(61, 107, 79, 0.12);
  --ink-muted: #5a534c;
  --line: rgba(28, 24, 20, 0.12);
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(28, 24, 20, 0.08);
  --font-display: 'Bitter', Georgia, serif;
  --font-body: 'Mulish', system-ui, sans-serif;
  --max: 1120px;
  --radius: 0;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--c4);
  background: var(--c3);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c1); }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

.cd-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c4);
  color: var(--c3);
  padding: 0.75rem 1rem;
  z-index: 9999;
}
.cd-skip:focus { left: 0.5rem; top: 0.5rem; }

/* Scroll progress */
.cd-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  z-index: 1000;
  pointer-events: none;
}

/* Header */
.cd-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 246, 240, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.cd-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cd-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c4);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cd-logo span { display: block; font-size: 0.7rem; font-family: var(--font-body); font-weight: 600; color: var(--c1); letter-spacing: 0.06em; text-transform: uppercase; }
.cd-nav { display: flex; align-items: center; gap: 1.35rem; }
.cd-nav a {
  color: var(--c4);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.cd-nav a:hover { color: var(--c1); }
.cd-nav__cta {
  background: var(--c1) !important;
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border: none;
}
.cd-nav__cta:hover { background: var(--c2) !important; color: var(--white) !important; }
.cd-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.cd-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c4);
}

@media (max-width: 900px) {
  .cd-burger { display: flex; }
  .cd-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c3);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .cd-nav.is-open { display: flex; }
}

/* Layout helpers */
.cd-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.cd-section { padding: 4rem 0; }
.cd-section--tight { padding: 3rem 0; }
.cd-section--ink { background: var(--c4); color: var(--c3); }
.cd-section--sage { background: var(--c2); color: var(--white); }
.cd-section--white { background: var(--white); }
.cd-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 0.65rem;
}
.cd-section--ink .cd-eyebrow,
.cd-section--sage .cd-eyebrow { color: #f0c9a8; }
.cd-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cd-lead {
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 58ch;
}
.cd-section--ink .cd-lead,
.cd-section--sage .cd-lead { color: rgba(250, 246, 240, 0.82); }
.cd-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.cd-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cd-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .cd-grid-2, .cd-grid-3 { grid-template-columns: 1fr; }
  .cd-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .cd-grid-4 { grid-template-columns: 1fr; }
}

/* Buttons */
.cd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border: 2px solid transparent;
  background: var(--c1);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cd-btn:hover { background: #a64c1f; color: var(--white); }
.cd-btn--ghost {
  background: transparent;
  border-color: var(--c4);
  color: var(--c4);
}
.cd-btn--ghost:hover { background: var(--c4); color: var(--c3); }
.cd-btn--sage { background: var(--c2); }
.cd-btn--sage:hover { background: #2f543d; }
.cd-btn--light {
  background: var(--c3);
  color: var(--c4);
}
.cd-btn--light:hover { background: var(--white); color: var(--c4); }
.cd-btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Magazine / editorial hero */
.cd-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(78vh, 720px);
  border-bottom: 1px solid var(--line);
}
.cd-hero__copy {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c3);
}
.cd-hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cd-hero__copy p {
  color: var(--ink-muted);
  max-width: 42ch;
  font-size: 1.08rem;
}
.cd-hero__meta {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.cd-hero__photo {
  flex: 1;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.cd-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-hero__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.cd-meta-card {
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border-right: 1px solid var(--line);
}
.cd-meta-card:last-child { border-right: none; }
.cd-meta-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.cd-meta-card span {
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.cd-meta-card--accent {
  background: var(--c1);
  color: var(--white);
  grid-column: 1 / -1;
  border-right: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cd-meta-card--accent span { color: rgba(255,255,255,0.88); }
.cd-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--c2-soft);
  color: var(--c2);
  border: 1px solid rgba(61, 107, 79, 0.25);
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  width: fit-content;
}
.cd-hours-badge i {
  width: 8px;
  height: 8px;
  background: var(--c2);
  display: inline-block;
}
@media (max-width: 900px) {
  .cd-hero { grid-template-columns: 1fr; min-height: 0; }
  .cd-hero__meta { border-left: none; border-top: 1px solid var(--line); }
  .cd-hero__photo { min-height: 240px; }
}

/* Process */
.cd-process { counter-reset: step; }
.cd-process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.cd-step {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.2rem;
  position: relative;
}
.cd-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c1);
  display: block;
  margin-bottom: 0.65rem;
}
.cd-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.cd-step p { font-size: 0.95rem; color: var(--ink-muted); }
@media (max-width: 900px) {
  .cd-process__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .cd-process__list { grid-template-columns: 1fr; }
}

/* Offers */
.cd-offer {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cd-offer__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cd-offer__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-offer__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.cd-offer__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.cd-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c1);
  font-size: 1.2rem;
  margin: 0.5rem 0 0.75rem;
}
.cd-offer__body p { color: var(--ink-muted); font-size: 0.96rem; flex: 1; }
.cd-offer__body .cd-btn { margin-top: 1rem; align-self: flex-start; }
.cd-offer--featured {
  border-color: var(--c1);
  box-shadow: var(--shadow);
}
.cd-offer__tag {
  display: inline-block;
  background: var(--c1);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  margin-bottom: 0.5rem;
}

/* Gallery */
.cd-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 0.75rem;
  margin-top: 2rem;
}
.cd-gallery figure {
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0;
  position: relative;
}
.cd-gallery figure:first-child { grid-row: 1 / 3; }
.cd-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(28,24,20,0.75));
  color: var(--white);
  padding: 1.5rem 0.85rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
}
@media (max-width: 700px) {
  .cd-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .cd-gallery figure:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 220px; }
  .cd-gallery figure { min-height: 160px; }
}

/* Trust */
.cd-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.cd-trust__item {
  border: 1px solid rgba(250, 246, 240, 0.18);
  padding: 1.25rem;
  background: rgba(250, 246, 240, 0.04);
}
.cd-trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: #e8a06a;
}
.cd-trust__item span { font-size: 0.92rem; color: rgba(250, 246, 240, 0.8); }
@media (max-width: 700px) {
  .cd-trust { grid-template-columns: 1fr 1fr; }
}

/* Benefits */
.cd-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
}
.cd-benefit {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.cd-benefit__mark {
  width: 28px;
  height: 28px;
  background: var(--c2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.cd-benefit h3 {
  font-size: 1rem;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}
.cd-benefit p { font-size: 0.92rem; color: var(--ink-muted); }
@media (max-width: 700px) {
  .cd-benefits { grid-template-columns: 1fr; }
}

/* FAQ */
.cd-faq { margin-top: 1.75rem; max-width: 760px; }
.cd-faq details {
  border: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 0.55rem;
  padding: 0.95rem 1.1rem;
}
.cd-faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.cd-faq summary::-webkit-details-marker { display: none; }
.cd-faq summary::after {
  content: '+';
  float: right;
  color: var(--c1);
  font-weight: 700;
}
.cd-faq details[open] summary::after { content: '–'; }
.cd-faq details p {
  margin-top: 0.75rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* CTA band */
.cd-cta-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cd-cta-band h2 { margin-bottom: 0.75rem; }
@media (max-width: 800px) {
  .cd-cta-band { grid-template-columns: 1fr; }
}

/* Forms */
.cd-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.cd-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.cd-form .cd-field { margin-bottom: 1rem; }
.cd-form input,
.cd-form textarea,
.cd-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--c3);
  padding: 0.75rem 0.85rem;
  color: var(--c4);
  border-radius: var(--radius);
}
.cd-form input:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: 2px solid var(--c1);
  outline-offset: 1px;
  background: var(--white);
}
.cd-form textarea { min-height: 120px; resize: vertical; }
.cd-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.cd-check input { width: auto; margin-top: 0.25rem; }
.cd-form__note { font-size: 0.85rem; color: var(--ink-muted); margin-top: 0.75rem; }

/* Contact */
.cd-contact-stack { display: grid; gap: 1.5rem; }
.cd-nap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem;
}
.cd-nap h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}
.cd-nap p { margin-bottom: 0.45rem; color: var(--ink-muted); }
.cd-nap a { font-weight: 600; }
.cd-map {
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 320px;
  background: #e8e4dc;
}
.cd-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Table / cennik */
.cd-table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--line); }
.cd-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.98rem;
}
.cd-table th,
.cd-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.cd-table th {
  background: var(--c4);
  color: var(--c3);
  font-family: var(--font-display);
  font-weight: 600;
}
.cd-table tr:last-child td { border-bottom: none; }
.cd-table td:last-child {
  font-weight: 700;
  color: var(--c1);
  white-space: nowrap;
}

/* Page hero compact */
.cd-page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.cd-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cd-breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}
.cd-breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.cd-breadcrumb a:hover { color: var(--c1); }

/* About split */
.cd-about-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
.cd-about-split img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
}
@media (max-width: 800px) {
  .cd-about-split { grid-template-columns: 1fr; }
}

/* Areas list */
.cd-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cd-chip {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Palette strip */
.cd-palette {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  width: fit-content;
  margin-top: 1.25rem;
}
.cd-palette i {
  width: 36px;
  height: 18px;
  display: block;
}
.cd-palette i:nth-child(1) { background: var(--c1); }
.cd-palette i:nth-child(2) { background: var(--c2); }
.cd-palette i:nth-child(3) { background: var(--c3); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.cd-palette i:nth-child(4) { background: var(--c4); }

/* Footer */
.cd-footer {
  background: var(--c4);
  color: rgba(250, 246, 240, 0.78);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}
.cd-footer a { color: var(--c3); text-decoration: none; }
.cd-footer a:hover { color: #e8a06a; }
.cd-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.cd-footer h3 {
  font-family: var(--font-display);
  color: var(--c3);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.cd-footer p, .cd-footer li { font-size: 0.92rem; margin-bottom: 0.4rem; }
.cd-footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c3);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.cd-footer__bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}
@media (max-width: 800px) {
  .cd-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .cd-footer__grid { grid-template-columns: 1fr; }
}

/* FAB */
.cd-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 5.5rem;
  z-index: 850;
  width: 56px;
  height: 56px;
  background: var(--c2);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}
.cd-fab:hover { background: var(--c1); color: var(--white); }

/* Sticky mobile CTA */
.cd-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 840;
  background: var(--c4);
  padding: 0.65rem 0.85rem;
  gap: 0.5rem;
  border-top: 2px solid var(--c1);
}
.cd-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.cd-sticky-cta a:first-child {
  background: var(--c1);
  color: var(--white);
}
.cd-sticky-cta a:last-child {
  background: var(--c2);
  color: var(--white);
}
@media (max-width: 800px) {
  .cd-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .cd-fab { bottom: 5.8rem; }
}

/* Quiet pages — hide widgets via body class */
body.cd-quiet .cd-fab,
body.cd-quiet .cd-sticky-cta,
body.cd-quiet .cd-progress { display: none !important; }
body.cd-quiet { padding-bottom: 0; }

/* Cookie banner */
.cd-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: var(--c4);
  color: var(--c3);
  padding: 1rem 1.25rem;
  border-top: 3px solid var(--c1);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  display: none;
}
.cd-cookie.is-visible { display: block; }
.cd-cookie__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cd-cookie__text {
  flex: 1 1 280px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.88);
}
.cd-cookie__text a { color: #e8a06a; }
.cd-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cd-cookie__actions button {
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.cd-cookie__accept { background: var(--c1); color: var(--white); }
.cd-cookie__reject {
  background: transparent;
  color: var(--c3);
  border: 1px solid rgba(250, 246, 240, 0.35) !important;
}
.cd-cookie__accept:hover { background: #a64c1f; }
.cd-cookie__reject:hover { background: rgba(250, 246, 240, 0.08); }
@media (max-width: 800px) {
  .cd-cookie { bottom: 0; padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0)); }
  body:not(.cd-quiet) .cd-cookie.is-visible { bottom: 68px; }
}

/* Scroll reveal */
.cd-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.cd-reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cd-reveal { opacity: 1; transform: none; transition: none; }
  .cd-progress { display: none; }
}

/* Prose for privacy / long text */
.cd-prose {
  max-width: 760px;
}
.cd-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}
.cd-prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1.35rem 0 0.5rem;
}
.cd-prose p, .cd-prose li {
  margin-bottom: 0.75rem;
  color: var(--ink-muted);
}
.cd-prose ul { padding-left: 1.2rem; list-style: disc; }
.cd-prose a { font-weight: 600; }

/* Thank you */
.cd-thanks {
  text-align: center;
  padding: 4rem 1.25rem;
  max-width: 560px;
  margin: 0 auto;
}
.cd-thanks h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Misc */
.cd-list-check li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--ink-muted);
}
.cd-list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  background: var(--c2);
}
.cd-note-box {
  background: var(--c1-soft);
  border-left: 3px solid var(--c1);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
  color: var(--c4);
  font-size: 0.96rem;
}
.cd-split-text img {
  border: 1px solid var(--line);
  width: 100%;
  object-fit: cover;
  min-height: 260px;
}
