/* Kellie — Magnolia-grade premium painting brand (v10) */
:root {
  /* Premium palette: museum cream, deep warm ink, saturated terracotta,
     dusty rose accent, deep olive. Confident, not pastel. */
  --paper:       #f7f0e3;
  --cream:       #fbf6ec;
  --bone:        #ebe1cd;
  --stone:       #d6c7ac;
  --ink:         #1d1612;
  --ink-soft:    #5c4f43;
  --line:        #d8ccb3;
  --line-soft:   #ece3d0;
  --terra:       #a44a31;
  --terra-deep:  #7a3522;
  --rose:        #c87968;
  --blush:       #e9bfb1;
  --olive:       #4a5839;
  --olive-soft:  #8a9676;
  --gold:        #b88346;
  /* Legacy aliases (mapping older names to new tokens so existing rules still resolve) */
  --clay:        var(--terra);
  --clay-soft:   var(--blush);
  --clay-deep:   var(--terra-deep);
  --sage:        var(--olive);
  --sage-soft:   var(--olive-soft);
  --line-dark:   #2a201a;
  --good:        var(--olive);
  --shadow-sm:   0 2px 8px rgba(29,22,18,0.06);
  --shadow-md:   0 12px 32px -12px rgba(29,22,18,0.18);
  --shadow-lg:   0 32px 64px -24px rgba(29,22,18,0.25);
  /* New type system: chunky modern serif display + refined sans body */
  --serif:       "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --serif-text:  "Cormorant Garamond", Georgia, serif;
  --sans:        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono:        "JetBrains Mono", ui-monospace, Menlo, monospace;
  --maxw:        1240px;
  --maxw-narrow: 820px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: var(--maxw-narrow); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--clay); color: #fff; padding: 8px 14px; }

/* ─── Editorial type system ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-soft);
  margin: 0 0 24px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--clay);
}
.eyebrow--light { color: rgba(255,255,255,0.78); }
.eyebrow--light::before { background: var(--clay-soft); }

.display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02; letter-spacing: -0.015em;
  margin: 0;
}
.display em {
  font-family: var(--serif-text);
  font-style: italic; font-weight: 500;
  color: var(--terra-deep);
  letter-spacing: -0.005em;
}
.h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05; letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.h2 em { font-family: var(--serif-text); font-style: italic; color: var(--terra-deep); font-weight: 500; }
.h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18; letter-spacing: -0.005em;
  margin: 0 0 12px;
}
.h3 em { font-family: var(--serif-text); font-style: italic; color: var(--terra-deep); font-weight: 500; }
.lede em { font-family: var(--serif-text); font-style: italic; color: var(--terra-deep); font-weight: 500; }
.copy em { font-family: var(--serif-text); font-style: italic; color: var(--terra-deep); }
.hero__attribution {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 20px;
  font-weight: 500;
}
.hero__sub--second {
  margin-top: 18px; font-family: var(--sans); font-size: 16px; line-height: 1.7;
  color: var(--ink-soft); max-width: 56ch;
}
.hero__sub--second strong { color: var(--ink); font-weight: 600; }
.hero__sub--second em { color: var(--terra-deep); font-style: italic; font-family: var(--serif-text); font-weight: 500; }
.lede {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(19px, 1.6vw, 24px); line-height: 1.5;
  color: var(--ink); max-width: 56ch; margin: 0;
}
.lede em { font-style: italic; color: var(--clay-deep); }
.copy { color: var(--ink-soft); font-size: 16.5px; line-height: 1.75; }
.copy strong { color: var(--ink); font-weight: 600; }
.copy em { color: var(--clay-deep); font-style: italic; }
.kicker {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink-soft); font-weight: 500;
}

/* ─── Buttons (quiet, editorial) ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; cursor: pointer; white-space: nowrap;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px; padding: 14px 28px;
  border: 1px solid transparent; text-decoration: none;
  transition: all .25s ease;
}
.btn--primary {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.btn--primary:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--bare {
  background: transparent; color: var(--ink); border-color: transparent;
  padding: 14px 8px; gap: 6px;
}
.btn--bare:hover { color: var(--clay-deep); gap: 12px; }
.btn--bare::after { content: "→"; transition: transform .25s ease; }
.btn--bare:hover::after { transform: translateX(4px); }
.btn--xl { padding: 18px 36px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--cream:hover { background: var(--clay); color: var(--cream); border-color: var(--clay); }

/* ─── Nav (editorial, light) ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 244, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 32px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.brand {
  display: inline-flex; align-items: baseline;
  font-family: var(--serif); font-weight: 400; font-size: 30px;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1;
}
.brand__word em { font-family: var(--serif-text); font-style: italic; font-weight: 500; color: var(--ink); letter-spacing: -0.005em; }
.brand:hover .brand__word em { color: var(--terra-deep); }
.nav__list { display: flex; gap: 32px; align-items: center; }
.nav__list > a {
  color: var(--ink-soft); font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  transition: color .2s ease;
}
.nav__list > a:hover { color: var(--clay-deep); }
.nav__cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
}
.nav__cta:hover { background: var(--clay-deep); }
@media (max-width: 880px) {
  .nav__list > a:not(.nav__cta) { display: none; }
  .nav__wrap { height: 70px; }
}

/* ─── HERO (asymmetric editorial split) ─── */
.hero {
  position: relative;
  background: var(--cream);
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(217, 160, 151, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(143, 164, 138, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px;
  align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.hero__left { max-width: 620px; }
.hero__title { color: var(--ink); }
.hero__title small {
  display: block;
  font-size: clamp(28px, 3.4vw, 48px);
  font-style: italic; color: var(--clay-deep);
  margin-top: 12px;
  font-weight: 400;
}
.hero__sub {
  margin: 32px 0 36px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55;
  color: var(--ink); max-width: 50ch;
}
.hero__sub em { color: var(--clay-deep); font-style: italic; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__meta {
  margin-top: 56px;
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; gap: 2px; }
.hero__meta strong {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; color: var(--ink); letter-spacing: -0.01em;
}
.hero__meta span { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.05em; }

/* Hero — right side visual: layered room mood card */
.hero__visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 4px; overflow: hidden;
}
.room {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, #ead8c0 0%, #d9bfa1 100%);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.room::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 32%;
  background: linear-gradient(180deg, #a47859 0%, #7d5a40 100%);
}
.room::after {
  content: ""; position: absolute; left: 8%; bottom: 32%; width: 42%; height: 56%;
  background: linear-gradient(170deg, #f3e3cd 0%, #e6d2b6 100%);
  border-radius: 2px; box-shadow: inset 0 0 0 6px #e9d4b5, 0 6px 16px rgba(45,36,29,0.15);
}
.room__window {
  position: absolute; right: 12%; top: 16%; width: 28%; height: 44%;
  background: linear-gradient(180deg, #d4c8b3 0%, #b8a890 100%);
  border: 6px solid #f1e4cd;
  box-shadow: 0 6px 18px rgba(45,36,29,0.18);
}
.room__window::before, .room__window::after {
  content: ""; position: absolute; background: #f1e4cd;
}
.room__window::before { left: 50%; top: 0; bottom: 0; width: 4px; transform: translateX(-50%); }
.room__window::after { left: 0; right: 0; top: 50%; height: 4px; transform: translateY(-50%); }
.room__chair {
  position: absolute; right: 10%; bottom: 12%; width: 26%; height: 28%;
  background: var(--clay); border-radius: 8px 8px 4px 4px;
  box-shadow: 0 12px 24px rgba(45,36,29,0.25);
}
.room__chair::after {
  content: ""; position: absolute; left: 0; right: 0; top: -8%; height: 32%;
  background: var(--clay-deep); border-radius: 8px 8px 0 0;
}
.room__plant {
  position: absolute; left: 8%; bottom: 32%; width: 36px; height: 64px;
  background: linear-gradient(180deg, var(--sage) 0%, #6b8166 100%);
  border-radius: 50% 50% 8px 8px / 60% 60% 8px 8px;
}
.room__plant::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: -10px; height: 14px;
  background: #5c4131; border-radius: 2px;
}

/* Floating color story chip */
.color-story {
  position: absolute; left: -32px; bottom: 12%;
  background: var(--paper); padding: 18px 22px;
  border-radius: 4px; box-shadow: var(--shadow-md);
  display: grid; gap: 8px; width: 220px;
  border: 1px solid var(--line-soft);
}
.color-story__head { display: flex; align-items: center; gap: 10px; }
.color-story__chip {
  width: 36px; height: 36px; border-radius: 50%;
  background: #ead8c0; border: 2px solid #f6f1e8;
  box-shadow: 0 4px 12px rgba(45,36,29,0.12);
}
.color-story__name {
  font-family: var(--serif); font-weight: 500; font-size: 18px;
  color: var(--ink); line-height: 1.1;
}
.color-story__brand { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }
.color-story__why { font-size: 13px; color: var(--ink-soft); line-height: 1.45; margin: 0; }

/* Floating "what we noticed" annotation */
.noticed {
  position: absolute; right: -16px; top: 14%;
  background: var(--ink); color: var(--cream); padding: 14px 18px;
  border-radius: 4px; box-shadow: var(--shadow-md);
  width: 230px;
}
.noticed::before {
  content: "↓"; font-size: 14px; color: var(--clay-soft);
  margin-right: 6px;
}
.noticed__title {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  margin: 0 0 4px; color: var(--cream);
}
.noticed__body { font-size: 13px; line-height: 1.5; color: rgba(251,246,236,0.85); margin: 0; }

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .color-story { left: -16px; }
  .noticed { right: -8px; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 88px; }
  .hero__meta { gap: 20px; }
  .color-story { width: 180px; padding: 12px 14px; }
  .noticed { width: 180px; padding: 10px 14px; }
}

/* ─── Wordmark ribbon ─── */
.ribbon {
  background: var(--bone); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.ribbon__row {
  display: flex; align-items: center; justify-content: center; gap: 36px;
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: var(--ink-soft); flex-wrap: wrap;
}
.ribbon__row span { display: inline-flex; align-items: center; gap: 36px; }
.ribbon__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); display: inline-block; }

/* ─── Editorial zig-zag steps ─── */
.steps-ed { padding: 120px 0; background: var(--paper); }
.steps-ed__head { max-width: 64ch; margin: 0 auto 80px; text-align: center; }
.steps-ed__head .h2 { margin: 0 auto 18px; }
.steps-ed__head .lede { margin: 0 auto; }
.step-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-bottom: 96px;
}
.step-row:last-child { margin-bottom: 0; }
.step-row:nth-child(even) .step-row__text { order: 2; }
.step-row__text .step-row__num {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--clay); letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 16px;
}
.step-row__text .h3 { margin-bottom: 16px; }
.step-row__text .copy { max-width: 50ch; }

/* Step visuals */
.step-visual {
  aspect-ratio: 5/4; border-radius: 4px; position: relative;
  overflow: hidden; box-shadow: var(--shadow-md);
}
.step-visual--phone {
  background: linear-gradient(160deg, var(--blush) 0%, var(--clay-soft) 100%);
  display: flex; align-items: center; justify-content: center;
}
.step-visual--phone .phone {
  width: 200px; height: 320px;
  background: var(--ink); border-radius: 28px; padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(45,36,29,0.35);
  transform: rotate(-6deg);
}
.step-visual--phone .phone__screen {
  width: 100%; height: 100%; border-radius: 20px;
  background: linear-gradient(170deg, #ead8c0 0%, #d9bfa1 100%);
  position: relative; overflow: hidden;
}
.step-visual--phone .phone__screen::before {
  content: ""; position: absolute; inset: 12px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.25), transparent 50%),
    linear-gradient(160deg, #ead8c0 0%, #b89679 100%);
}
.step-visual--phone .phone__screen::after {
  content: "✦"; position: absolute; bottom: 24px; right: 24px;
  color: rgba(255,255,255,0.7); font-size: 22px;
}

.step-visual--swatches {
  background: var(--bone);
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.step-visual--swatches .swatch-tall {
  width: 18%; aspect-ratio: 1/2.2;
  border-radius: 4px; box-shadow: var(--shadow-sm);
}
.swatch-tall--1 { background: #ead8c0; transform: rotate(-3deg) translateY(-8px); }
.swatch-tall--2 { background: var(--rose); transform: rotate(2deg) translateY(8px); }
.swatch-tall--3 { background: var(--sage); transform: rotate(-1deg); }

.step-visual--painter {
  background: linear-gradient(160deg, var(--sage-soft) 0%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
}
.step-visual--painter .card {
  width: 78%; padding: 24px;
  background: var(--paper); border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.step-visual--painter .card__row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.step-visual--painter .card__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--clay); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); color: var(--cream); font-size: 18px; font-weight: 600;
}
.step-visual--painter .card__name { font-family: var(--serif); font-size: 18px; font-weight: 500; margin: 0; line-height: 1.1; }
.step-visual--painter .card__meta { font-size: 12px; color: var(--ink-soft); margin: 2px 0 0; letter-spacing: 0.04em; }
.step-visual--painter .card__line {
  display: flex; justify-content: space-between; font-size: 13px;
  padding: 8px 0; border-top: 1px solid var(--line-soft);
}
.step-visual--painter .card__line span { color: var(--ink-soft); }
.step-visual--painter .card__line b { color: var(--ink); font-weight: 600; font-family: var(--mono); font-size: 12px; }

@media (max-width: 880px) {
  .step-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .step-row:nth-child(even) .step-row__text { order: initial; }
  .steps-ed { padding: 88px 0; }
  .steps-ed__head { margin-bottom: 56px; }
}

/* ─── Color stories (3 mood-based palettes) ─── */
.stories { background: var(--bone); padding: 120px 0; }
.stories__head { max-width: 60ch; margin: 0 0 56px; }
.stories__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .stories__grid { grid-template-columns: 1fr; gap: 32px; } }
.story {
  background: var(--paper); border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story__mood {
  aspect-ratio: 1/1; position: relative; display: grid;
  grid-template-rows: 60% 40%;
}
.story__mood--cozy { grid-template-columns: 60% 40%; }
.story__mood--cozy > div:nth-child(1) { background: #d9b89a; grid-row: span 2; }
.story__mood--cozy > div:nth-child(2) { background: var(--clay); }
.story__mood--cozy > div:nth-child(3) { background: var(--clay-deep); }
.story__mood--airy { grid-template-columns: 50% 50%; }
.story__mood--airy > div:nth-child(1) { background: #f0e6d6; }
.story__mood--airy > div:nth-child(2) { background: #e6dccb; }
.story__mood--airy > div:nth-child(3) { background: #d9d2c0; grid-column: span 2; }
.story__mood--dramatic { grid-template-columns: 40% 60%; }
.story__mood--dramatic > div:nth-child(1) { background: #3a2a26; grid-row: span 2; }
.story__mood--dramatic > div:nth-child(2) { background: #8a4a3b; }
.story__mood--dramatic > div:nth-child(3) { background: var(--rose); }
.story__body { padding: 28px 28px 32px; }
.story__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clay-deep); font-weight: 500;
}
.story__title {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 28px; line-height: 1.1; margin: 8px 0 14px; color: var(--ink);
  letter-spacing: -0.01em;
}
.story__copy { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 18px; }
.story__pal { display: flex; gap: 10px; flex-wrap: wrap; }
.story__pal-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-soft);
}
.story__pal-item span {
  width: 18px; height: 18px; border-radius: 50%; display: inline-block;
  border: 2px solid var(--paper); box-shadow: 0 0 0 1px var(--line);
}

/* ─── What we notice (consumer-friendly AI demo) ─── */
.notice { padding: 120px 0; background: var(--paper); }
.notice__head { text-align: center; max-width: 60ch; margin: 0 auto 64px; }
.notice__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.notice__photo {
  aspect-ratio: 4/3; border-radius: 4px;
  background: linear-gradient(170deg, #ead8c0 0%, #d9bfa1 100%);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.notice__photo .ann2 {
  position: absolute; background: rgba(45,36,29,0.94); color: var(--cream);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.notice__photo .ann2::before {
  content: ""; position: absolute; width: 8px; height: 8px;
  background: var(--clay); border-radius: 50%; border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px rgba(200,112,78,0.3);
}
.ann2--a { top: 18%; left: 14%; }
.ann2--a::before { left: -16px; top: 50%; transform: translateY(-50%); }
.ann2--b { top: 38%; right: 14%; }
.ann2--b::before { right: -16px; top: 50%; transform: translateY(-50%); }
.ann2--c { bottom: 26%; left: 18%; }
.ann2--c::before { left: -16px; top: 50%; transform: translateY(-50%); }
.ann2--d { bottom: 14%; right: 18%; }
.ann2--d::before { right: -16px; top: 50%; transform: translateY(-50%); }

.notice__list { display: grid; gap: 18px; }
.notice__item {
  display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: start;
  padding-bottom: 18px; border-bottom: 1px solid var(--line-soft);
}
.notice__item:last-child { border-bottom: none; padding-bottom: 0; }
.notice__icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bone); color: var(--clay-deep);
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 16px;
}
.notice__item h4 { font-family: var(--serif); font-weight: 500; font-size: 19px; margin: 0 0 4px; color: var(--ink); }
.notice__item p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 880px) { .notice__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ─── Begin (the form, elevated) ─── */
.begin { background: var(--ink); color: var(--cream); padding: 120px 0; position: relative; overflow: hidden; }
.begin::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 112, 78, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(143, 164, 138, 0.12) 0%, transparent 60%);
}
.begin__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.begin__left .eyebrow { color: var(--clay-soft); }
.begin__left .eyebrow::before { background: var(--clay-soft); }
.begin__left .h2 { color: var(--cream); }
.begin__left .h2 em { color: var(--clay-soft); }
.begin__left .lede { color: rgba(251,246,236,0.82); margin: 24px 0 32px; }
.begin__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.begin__list li {
  display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start;
  color: rgba(251,246,236,0.88); font-size: 15.5px; line-height: 1.6;
}
.begin__list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--clay-soft); margin-top: 8px;
}
.begin__list em { font-style: italic; color: var(--clay-soft); }

.begin__form {
  background: var(--paper); color: var(--ink);
  border-radius: 4px; padding: 40px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--clay);
}
.begin__form h3 {
  font-family: var(--serif); font-weight: 400; font-size: 28px;
  margin: 0 0 6px; color: var(--ink); letter-spacing: -0.01em;
}
.begin__form .kicker { display: block; margin-bottom: 24px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-soft); font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  background: var(--bone); border: 1px solid var(--line);
  border-radius: 4px; color: var(--ink);
  font: inherit; font-size: 15.5px;
  transition: all .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--clay); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(200, 112, 78, 0.12);
}
.field input::placeholder, .field textarea::placeholder { color: #b5a895; }
.field input[type="file"] { padding: 12px; cursor: pointer; }
.field__help { font-size: 12px; color: var(--ink-soft); margin: 0; }
.field__optional { font-style: italic; color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-size: 11px; }
.begin__form .btn--primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.begin__form .btn--primary:hover { background: var(--clay); border-color: var(--clay); }
.begin__sub { font-size: 13px; color: var(--ink-soft); text-align: center; margin: 14px 0 0; }
@media (max-width: 880px) {
  .begin__grid { grid-template-columns: 1fr; gap: 40px; }
  .begin__form { padding: 28px; }
}

/* ─── Testimonials, magazine style ─── */
.real { background: var(--cream); padding: 120px 0; }
.real__head { text-align: center; max-width: 60ch; margin: 0 auto 64px; }
.real__grid { display: grid; gap: 32px; grid-template-columns: 1.2fr 0.8fr 1fr; }
.real__grid > * { background: var(--paper); padding: 32px 32px 36px; border-radius: 4px; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.real__big { grid-row: span 1; }
.real__big blockquote {
  font-family: var(--serif); font-weight: 400; font-size: 26px;
  font-style: italic; line-height: 1.4; color: var(--ink); margin: 0;
  letter-spacing: -0.01em;
}
.real__big blockquote::before { content: "“"; font-size: 60px; color: var(--clay); display: block; line-height: 0.5; margin-bottom: 16px; font-style: normal; }
.real__regular blockquote { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--ink); margin: 0; }
.real figcaption { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.04em; font-family: var(--mono); }
.real__swatch-card {
  background: linear-gradient(170deg, var(--clay-soft) 0%, var(--clay) 100%);
  color: var(--cream); padding: 32px; border-radius: 4px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.real__swatch-card p { margin: 0 0 14px; font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.3; color: var(--cream); }
.real__swatch-card .kicker { color: rgba(251,246,236,0.78); }
@media (max-width: 880px) { .real__grid { grid-template-columns: 1fr; } }

/* ─── FAQ (clean accordion-look) ─── */
.faq { background: var(--paper); padding: 120px 0; }
.faq__head { max-width: 60ch; margin: 0 auto 56px; text-align: center; }
.faq__list { max-width: 760px; margin: 0 auto; display: grid; gap: 0; }
.faq__item { border-bottom: 1px solid var(--line); padding: 28px 0; }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item h4 {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  margin: 0 0 10px; color: var(--ink); letter-spacing: -0.005em;
}
.faq__item p { margin: 0; font-size: 16px; color: var(--ink-soft); line-height: 1.7; max-width: 64ch; }

/* ─── Painter footer strip (very low priority) ─── */
.painter-strip {
  background: var(--bone); padding: 64px 0;
  border-top: 1px solid var(--line);
}
.painter-strip__row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px;
  align-items: center; max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.painter-strip__row .kicker { color: var(--ink-soft); }
.painter-strip__row h3 {
  font-family: var(--serif); font-weight: 400; font-size: 26px;
  margin: 6px 0 0; color: var(--ink); letter-spacing: -0.01em;
  font-style: italic;
}
.painter-strip__row p { margin: 4px 0 0; font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 760px) { .painter-strip__row { grid-template-columns: 1fr; text-align: left; gap: 16px; } }

/* ─── Footer ─── */
.foot {
  background: var(--ink); color: rgba(251,246,236,0.7);
  padding: 80px 0 32px; font-size: 14.5px;
}
.foot__wrap {
  display: grid; gap: 48px; grid-template-columns: 1.4fr 1fr 1fr;
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.foot__col p { margin: 0 0 8px; }
.foot__brand-line {
  font-family: var(--serif); font-size: 36px; color: var(--cream);
  font-weight: 400; letter-spacing: -0.02em; margin: 0 0 16px !important;
  line-height: 1;
}
.foot__brand-line em { font-family: var(--serif-text); font-style: italic; font-weight: 500; }
.foot__h {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clay-soft);
  margin: 0 0 16px !important; font-weight: 500;
}
.foot a { color: var(--cream); transition: color .2s ease; }
.foot a:hover { color: var(--clay-soft); }
.foot__bottom {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid rgba(251,246,236,0.12);
  color: rgba(251,246,236,0.42); font-size: 12px;
  max-width: var(--maxw); margin: 64px auto 0; padding-left: 32px; padding-right: 32px;
}
@media (max-width: 760px) { .foot__wrap { grid-template-columns: 1fr; gap: 36px; } }

/* ─── Sticky mobile CTA ─── */
.sticky-call { display: none; }
@media (max-width: 760px) {
  .sticky-call {
    display: flex; align-items: center; gap: 12px;
    position: fixed; left: 16px; right: 16px; bottom: 16px;
    background: var(--ink); color: var(--cream);
    padding: 14px 18px; border-radius: 999px;
    box-shadow: 0 14px 30px -6px rgba(45,36,29,0.45);
    z-index: 60; text-decoration: none; justify-content: space-between;
  }
  .sticky-call__l { display: flex; flex-direction: column; line-height: 1.2; }
  .sticky-call__l strong { font-family: var(--serif); font-size: 16px; font-weight: 500; }
  .sticky-call__l em { font-size: 11px; font-style: italic; color: var(--clay-soft); }
  .sticky-call__r { font-size: 18px; }
  .foot { padding-bottom: 110px; }
}

/* ─── Kellie intro card (above the fold) ─── */
.kellie-card {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
  margin: 0 0 36px;
  width: fit-content;
}
.kellie-card__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background-image: url("/assets/kellie-avatar.svg");
  background-size: cover; background-position: center;
  background-color: var(--bone);
  flex-shrink: 0;
}
.kellie-card__name {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); margin: 0; line-height: 1.1; letter-spacing: -0.015em;
}
.kellie-card__name em { font-family: var(--serif-text); font-style: italic; color: var(--terra-deep); font-weight: 500; letter-spacing: -0.005em; }
.kellie-card__role {
  font-family: var(--mono); font-size: 11px; color: var(--ink-soft);
  margin: 4px 0 0; letter-spacing: 0.16em; text-transform: uppercase;
}
.hero--kellie-first .hero__title { font-size: clamp(54px, 7.6vw, 112px); }
.hero--kellie-first .hero__title em { color: var(--clay-deep); font-style: italic; font-weight: 400; }

/* ─── Editorial hero composition (replaces cartoon room) ─── */
.hero__visual--editorial { aspect-ratio: 1/1.2; }
.hero-comp {
  position: relative; width: 100%; height: 100%;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr 1fr;
  gap: 16px;
}
.hero-comp__block { border-radius: 2px; }
.hero-comp__block--a { grid-column: 1; grid-row: 1 / span 2; background: linear-gradient(170deg, #e3d4ba 0%, #c8a982 100%); }
.hero-comp__block--b { grid-column: 2; grid-row: 1; background: var(--clay); }
.hero-comp__block--c { grid-column: 2; grid-row: 2; background: var(--ink); }
.hero-comp__portrait {
  position: absolute; left: 50%; top: 38%;
  transform: translate(-50%, -50%);
  width: 56%; aspect-ratio: 1; border-radius: 50%;
  background-image: url("/assets/kellie-avatar.svg");
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -20px rgba(45,36,29,0.45);
  border: 6px solid var(--cream);
}
.hero-comp__chip {
  position: absolute; right: -16px; top: 12%;
  background: var(--paper); padding: 14px 18px 14px 14px;
  border-radius: 2px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  margin: 0; max-width: 220px;
}
.hero-comp__chip-swatch {
  width: 36px; height: 36px; border-radius: 2px;
  background: #ead8c0; box-shadow: inset 0 0 0 1px rgba(45,36,29,0.1);
  flex-shrink: 0;
}
.hero-comp__chip figcaption { display: flex; flex-direction: column; line-height: 1.2; }
.hero-comp__chip small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ink-soft); text-transform: uppercase; }
.hero-comp__chip em { font-family: var(--serif); font-style: italic; font-size: 19px; font-weight: 500; color: var(--ink); margin-top: 2px; letter-spacing: -0.01em; }
.hero-comp__quote {
  position: absolute; left: -16px; bottom: 8%;
  background: var(--cream); padding: 14px 20px;
  margin: 0; max-width: 240px;
  font-family: var(--serif); font-style: italic; font-size: 18px;
  line-height: 1.35; color: var(--ink); letter-spacing: -0.01em;
  box-shadow: var(--shadow-md);
  border-radius: 2px;
}
.hero-comp__quote em { color: var(--clay-deep); }
@media (max-width: 1080px) {
  .hero__visual--editorial { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero-comp__chip { right: -8px; max-width: 180px; padding: 10px 14px; }
  .hero-comp__chip em { font-size: 16px; }
  .hero-comp__quote { left: -8px; max-width: 200px; font-size: 15px; padding: 10px 14px; }
}

/* ─── Kellie portrait avatar ─── */
.kellie-portrait {
  background-image: url("/assets/kellie-avatar.svg");
  background-size: cover; background-position: center;
  border-radius: 50%; box-shadow: var(--shadow-md);
  border: 3px solid var(--paper);
}
.kellie-portrait--xl { width: 320px; height: 320px; max-width: 100%; }
.kellie-portrait--xxl { width: 360px; height: 360px; max-width: 100%; }
.kellie-portrait--sm { width: 56px; height: 56px; }
.kellie-portrait--xs { width: 36px; height: 36px; }

.kellie-intro { background: var(--bone); padding: 96px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kellie-intro__grid { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.kellie-intro__portrait { display: flex; justify-content: center; }
@media (max-width: 880px) { .kellie-intro__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; } .kellie-intro__portrait { order: -1; } }

.kellie-meet__grid { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; padding: 48px 0; }
@media (max-width: 880px) { .kellie-meet__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; } }

/* ─── Floating Kellie chat FAB + overlay ─── */
.kellie-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 10px; background: var(--ink); color: var(--cream);
  border: none; border-radius: 999px; cursor: pointer;
  box-shadow: 0 18px 40px -12px rgba(45,36,29,0.45);
  font-family: var(--sans); transition: all .25s ease;
}
.kellie-fab:hover { background: var(--clay-deep); transform: translateY(-2px); }
.kellie-fab__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background-image: url("/assets/kellie-avatar.svg");
  background-size: cover; background-position: center;
  border: 2px solid var(--cream);
}
.kellie-fab__text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.kellie-fab__text strong { font-family: var(--serif); font-size: 15px; font-weight: 500; }
.kellie-fab__text em { font-size: 11px; font-style: italic; color: var(--clay-soft); }
@media (max-width: 760px) {
  .kellie-fab { bottom: 88px; right: 16px; padding: 8px 14px 8px 8px; }
  .kellie-fab__avatar { width: 36px; height: 36px; }
  .kellie-fab__text strong { font-size: 13px; }
  .kellie-fab__text em { font-size: 10px; }
}

.kellie-chat {
  position: fixed; bottom: 24px; right: 24px; z-index: 101;
  width: 380px; max-width: calc(100vw - 32px);
  background: var(--paper); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.96); opacity: 0; pointer-events: none;
  transition: all .25s ease;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  max-height: calc(100vh - 48px);
}
.kellie-chat.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.kellie-chat__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--ink); color: var(--cream);
  border-radius: 12px 12px 0 0;
}
.kellie-chat__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background-image: url("/assets/kellie-avatar.svg");
  background-size: cover; background-position: center;
  border: 2px solid var(--cream); flex-shrink: 0;
}
.kellie-chat__name { font-family: var(--serif); font-size: 18px; margin: 0; color: var(--cream); }
.kellie-chat__sub { font-size: 11px; color: var(--clay-soft); margin: 2px 0 0; letter-spacing: 0.04em; }
.kellie-chat__close {
  margin-left: auto; background: transparent; border: none;
  color: var(--cream); font-size: 28px; cursor: pointer; line-height: 1;
  padding: 0 8px; opacity: 0.7;
}
.kellie-chat__close:hover { opacity: 1; }
.kellie-chat__body { padding: 20px; background: var(--bone); overflow-y: auto; flex: 1; }
.kellie-msg { display: flex; gap: 10px; margin-bottom: 14px; }
.kellie-msg--her .kellie-msg__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background-image: url("/assets/kellie-avatar.svg"); background-size: cover; background-position: center;
}
.kellie-msg__bubble {
  background: var(--paper); padding: 12px 16px; border-radius: 4px 14px 14px 14px;
  font-size: 14.5px; color: var(--ink); line-height: 1.55;
  box-shadow: 0 2px 8px rgba(45,36,29,0.06);
}
.kellie-msg__bubble p { margin: 0 0 8px; }
.kellie-msg__bubble p:last-child { margin-bottom: 0; }
.kellie-chat__form { padding: 16px 20px 20px; border-top: 1px solid var(--line-soft); display: grid; gap: 10px; }
.kellie-chat__row { display: grid; grid-template-columns: 1fr 100px; gap: 10px; }
.kellie-chat__row--actions { grid-template-columns: 1fr auto; align-items: center; }
.kellie-chat__form input, .kellie-chat__form textarea {
  padding: 10px 14px; border: 1px solid var(--line);
  border-radius: 6px; background: var(--bone); font: inherit; font-size: 14px; color: var(--ink);
}
.kellie-chat__form input:focus, .kellie-chat__form textarea:focus {
  outline: none; border-color: var(--clay); background: var(--paper);
}
.kellie-chat__file { font-size: 12px; color: var(--ink-soft); cursor: pointer; }
.kellie-chat__file input { display: none; }
.kellie-chat__file span { padding: 6px 10px; border: 1px dashed var(--line); border-radius: 6px; }
.kellie-chat__file:hover span { border-color: var(--clay); color: var(--clay-deep); }
.kellie-chat__form .btn { padding: 10px 18px; font-size: 14px; }
.kellie-chat__priv { font-size: 11px; color: var(--ink-soft); margin: 4px 0 0; text-align: center; font-style: italic; }
@media (max-width: 760px) {
  .kellie-chat { width: calc(100vw - 24px); right: 12px; left: 12px; bottom: 12px; max-height: 80vh; }
}

/* ─── Riff section (consumer-facing dual-intake demo) ─── */
.riff-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 32px; align-items: stretch;
  margin: 0 0 56px;
}
@media (max-width: 880px) {
  .riff-grid { grid-template-columns: 1fr; }
}
.riff-panel {
  margin: 0; display: flex; flex-direction: column; gap: 16px;
}
.riff-panel__label {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--clay-deep); margin: 0; font-weight: 500;
}
.riff-panel__photo {
  position: relative; aspect-ratio: 4/3; border-radius: 4px;
  box-shadow: var(--shadow-md); overflow: hidden;
}
.riff-panel__photo--home {
  background: linear-gradient(170deg, #ead8c0 0%, #d9bfa1 100%);
}
.riff-panel__photo--insp {
  background: linear-gradient(170deg, #f0e6d6 0%, #c8704e 100%);
}
.riff-panel figcaption {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; line-height: 1.5; color: var(--ink-soft);
  margin: 0; max-width: 36ch;
}
.riff-bridge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 0 8px;
}
@media (max-width: 880px) {
  .riff-bridge { flex-direction: row; padding: 8px 0; }
}
.riff-bridge__line {
  flex: 1; background: var(--line); display: block;
  width: 1px; min-height: 60px;
}
@media (max-width: 880px) {
  .riff-bridge__line { height: 1px; min-height: 0; width: 60px; }
}
.riff-bridge__label {
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: var(--clay-deep); white-space: nowrap; padding: 4px 0;
}

.riff-result {
  background: var(--bone); padding: 40px;
  border-radius: 4px; border: 1px solid var(--line-soft);
  text-align: center;
}
.riff-result .kicker { margin: 0 0 18px; display: block; color: var(--clay-deep); }
.riff-result__row {
  display: flex; gap: 16px; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.riff-result__chip {
  width: 64px; height: 64px; border-radius: 50%;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(45,36,29,0.1);
}
.riff-result__caption {
  font-family: var(--serif); font-size: 18px; color: var(--ink);
  margin: 0 0 0 12px; line-height: 1.4;
}
.riff-result__caption em { font-style: italic; color: var(--clay-deep); }
@media (max-width: 600px) {
  .riff-result__caption { margin: 16px 0 0; text-align: center; flex: 1 1 100%; }
}

/* ─── Dual upload pair (your home + your inspiration) ─── */
.upload-pair {
  display: grid; gap: 14px; grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}
@media (max-width: 760px) {
  .upload-pair { grid-template-columns: 1fr; }
}
.upload-pair .field { margin-bottom: 0; }
.upload-pair input[type="file"] {
  padding: 18px 14px; background: var(--bone);
  border: 1.5px dashed var(--line); border-radius: 4px;
  font-size: 13px; cursor: pointer; min-height: 64px;
}
.upload-pair input[type="file"]:hover {
  border-color: var(--clay); background: var(--paper);
}

/* ─── Standalone sub-page layouts ─── */
.page-hero { background: var(--cream); padding: 88px 0 56px; text-align: center; }
.page-hero .eyebrow { justify-content: center; display: inline-flex; }
.page-hero__title { color: var(--ink); margin-bottom: 24px; }
.page-hero__title em { color: var(--clay-deep); font-style: italic; }
.page-hero__lede { margin: 0 auto; max-width: 60ch; }
.page-hero--kellie { padding: 88px 0; text-align: left; background: linear-gradient(165deg, var(--cream) 0%, var(--bone) 100%); }
.page-hero--kellie .eyebrow { display: inline-flex; justify-content: flex-start; }

.page-body { padding: 80px 0; background: var(--paper); }
.page-body .h2 { margin-top: 56px; margin-bottom: 18px; }
.page-body .h2:first-child { margin-top: 0; }
.page-body .copy { margin-bottom: 18px; }
.page-body a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--clay-soft); }
.page-body a:hover { text-decoration-color: var(--clay-deep); }

.ticks--editorial { list-style: none; padding: 0 !important; display: grid; gap: 18px; margin: 16px 0 28px; }
.ticks--editorial li { position: relative; padding-left: 28px; line-height: 1.65; color: var(--ink); }
.ticks--editorial li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--clay); font-size: 16px; font-family: var(--serif);
}
.ticks--editorial li strong { color: var(--ink); font-weight: 600; }

.page-cta { background: var(--bone); padding: 96px 0; border-top: 1px solid var(--line); }
.page-cta .h2 { margin-bottom: 18px; }
.page-cta em { color: var(--clay-deep); font-style: italic; }

/* ─── Contact grid ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── Location/Room/Color index grids ─── */
.city-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.city-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 24px 22px; background: var(--paper);
  border: 1px solid var(--line-soft); border-radius: 4px;
  text-decoration: none !important; transition: all .25s ease;
}
.city-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--clay-soft); }
.city-card__zip { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.1em; }
.city-card__name { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); line-height: 1.1; }
.city-card__more { font-size: 12px; color: var(--clay-deep); margin-top: 8px; letter-spacing: 0.04em; font-weight: 500; }

.room-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.room-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 32px 28px; background: var(--bone);
  border: 1px solid var(--line-soft); border-radius: 4px;
  text-decoration: none !important; transition: all .25s ease;
  min-height: 180px;
}
.room-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--paper); border-color: var(--clay-soft); }
.room-card__label { font-family: var(--mono); font-size: 10px; color: var(--clay-deep); letter-spacing: 0.18em; text-transform: uppercase; }
.room-card__name { font-family: var(--serif); font-style: italic; font-size: 26px; font-weight: 400; color: var(--ink); line-height: 1.1; margin: 4px 0; letter-spacing: -0.01em; }
.room-card__sub { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.color-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.color-card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 4px;
  overflow: hidden; text-decoration: none !important;
  transition: all .25s ease;
}
.color-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.color-card__chip { height: 160px; }
.color-card__name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); padding: 16px 18px 4px; line-height: 1.2; }
.color-card__code { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); padding: 0 18px 18px; letter-spacing: 0.06em; }

.color-hero {
  padding: 120px 0 100px; color: var(--cream);
  text-align: center;
}
.color-hero__title { color: var(--cream); margin: 8px 0; }
.color-hero__code { font-family: var(--mono); font-size: 14px; color: rgba(251,246,236,0.7); letter-spacing: 0.18em; margin: 8px 0 0; }
.pairs { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin: 16px 0 28px; }
.pair {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--bone); border: 1px solid var(--line-soft);
  border-radius: 4px; text-decoration: none !important; transition: all .2s ease;
}
.pair:hover { background: var(--paper); box-shadow: var(--shadow-sm); border-color: var(--clay-soft); }
.pair__chip { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 1px var(--line); }
.pair b { display: block; font-family: var(--serif); font-weight: 500; font-size: 16px; color: var(--ink); }
.pair em { display: block; font-style: italic; font-size: 12px; color: var(--ink-soft); }

/* Hide the old painter-strip on pages where it shouldn't appear */
.painter-strip { display: none; }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
