/* ============================================================
   Square Care Network — landing page V2
   "Deep Trust Navy" — photography-led, editorial, calm confidence.
   Navy ink + teal accent instead of V1's brown/sage: navy is the
   most consistently trust-coded hue (banks, insurers, healthcare),
   while the warm cream base keeps it human instead of corporate-cold.
   ============================================================ */

:root {
  --cream: #FAF7F2;
  --beige: #E4DCD1;
  --sand: #C7BEB0;
  --brown: #1E2A3A;
  --sage: #2F6B5E;

  --bg: var(--cream);
  --bg2: var(--beige);
  --card: #ffffff;
  --ink: var(--brown);
  --ink-soft: #6B7580;
  --line: #DCD4C8;
  --brown-dark: #141E2A;
  --sage-dark: #24564B;
  --sage-tint: #E3EFEC;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(70, 53, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(70, 53, 42, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .logo, .letter-sign { font-family: "Fraunces", Georgia, "Times New Roman", serif; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
em.accent { font-style: italic; color: var(--sage-dark); }

/* eyebrow / kicker label used above section titles */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--sage-dark);
  display: inline-block;
}

/* ---------- buttons ---------- */
.btn {
  border: 0;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn.tiny { padding: 10px 20px; font-size: 0.85rem; background: var(--brown); color: var(--cream); }
.btn.tiny:hover { background: var(--brown-dark); }
.btn.primary {
  background: var(--brown);
  color: var(--cream);
  padding: 16px 30px;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(70, 53, 42, 0.26);
}
.btn.primary:hover { background: var(--brown-dark); }
.btn.primary.big { padding: 18px 36px; font-size: 1.08rem; }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  padding: 15px 20px;
  border: 2px solid var(--line);
}
.btn.ghost:hover { border-color: var(--sand); }
.btn.outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
  padding: 14px 26px;
  font-size: 0.95rem;
}
.btn.outline:hover { background: var(--brown); color: var(--cream); }

/* ---------- photo framing: brand corner-brackets on every real photo ---------- */
.framed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.framed img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* soft brand-tinted wash so varied stock photography reads as one palette */
.framed::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(92,70,54,0.16) 0%, rgba(156,175,136,0.10) 55%, rgba(92,70,54,0.02) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
.framed .corner { position: absolute; width: 22px; height: 22px; border: 2.5px solid var(--cream); opacity: 0.9; z-index: 2; }
.framed .corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.framed .corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }
.framed .tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(250,246,239,0.94);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(70,53,42,0.2);
}

/* reveal on scroll (shared with landing.js IntersectionObserver hook) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar-v2 {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-v2-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo { font-size: 1.12rem; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 8px; }
.logo b { font-weight: 700; }
.logo-icon { width: 26px; height: 26px; flex-shrink: 0; }
.topbar-nav { display: none; gap: 28px; align-items: center; }
.topbar-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.92rem; opacity: 0.82; }
.topbar-nav a:hover { opacity: 1; }
@media (min-width: 860px) { .topbar-nav { display: flex; } }
.topbar-actions { display: flex; align-items: center; gap: 14px; }
.version-pill {
  display: none;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  color: var(--sage-dark); border: 1.5px solid var(--sage); border-radius: 999px;
  padding: 5px 11px; text-decoration: none;
}
@media (min-width: 640px) { .version-pill { display: inline-block; } }

/* ============================================================
   HERO — split layout, real photography, calm confidence
   ============================================================ */
.hero-v2 { padding: 56px 0 0; }
.hero-v2-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .hero-v2-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}
.hero-v2-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-v2-copy p.lede {
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 46ch;
  line-height: 1.6;
}
.hero-v2-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-v2-photo { position: relative; aspect-ratio: 4 / 5; }
@media (min-width: 940px) { .hero-v2-photo { aspect-ratio: 5 / 6; } }

/* trust strip under hero */
.trust-strip {
  margin-top: 52px;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  max-width: 1120px; margin: 0 auto; padding: 22px 24px;
  display: grid; gap: 18px 28px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .trust-strip-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--brown); }
.trust-item span { font-size: 0.86rem; font-weight: 700; line-height: 1.25; }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.02rem;
}
.section.on-beige { background: var(--bg2); }
.section.on-brown { background: var(--brown); color: var(--cream); }
.section.on-brown .section-head p { color: rgba(250,246,239,0.78); }
.section.on-brown .kicker { color: var(--sage); }
.section.on-brown .kicker::before { background: var(--sage); }

/* ============================================================
   ABOUT US — founder letter
   ============================================================ */
.about-v2-grid {
  display: grid; gap: 44px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .about-v2-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } }
.about-v2-photo { aspect-ratio: 4 / 5; }
.letter {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 38px clamp(24px, 4vw, 46px);
}
.letter p { line-height: 1.75; color: var(--ink); font-size: 1.02rem; margin-bottom: 16px; }
.letter p:last-of-type { margin-bottom: 0; }
.letter-sign { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.letter-sign .initial {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sage-tint); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem; flex-shrink: 0;
}
.letter-sign .who b { display: block; font-weight: 700; font-size: 1.02rem; }
.letter-sign .who span { display: block; font-size: 0.86rem; color: var(--ink-soft); font-weight: 600; }

/* ============================================================
   HOW MATCHING WORKS — numbered timeline
   ============================================================ */
.steps-v2 { display: grid; gap: 0; counter-reset: stepnum; }
.step-v2 {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step-v2:first-child { padding-top: 0; }
.step-v2:last-child { border-bottom: 0; padding-bottom: 0; }
.step-v2-num {
  counter-increment: stepnum;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.3rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--brown);
  display: flex; align-items: center; justify-content: center;
}
.step-v2-num::before { content: counter(stepnum); }
.step-v2-body h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 6px; }
.step-v2-body p { color: var(--ink-soft); font-weight: 500; line-height: 1.6; max-width: 62ch; }
.steps-v2-grid {
  display: grid; gap: 48px; align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .steps-v2-grid { grid-template-columns: 1fr 0.85fr; gap: 60px; } }
.steps-v2-photo { aspect-ratio: 3 / 4; position: sticky; top: 96px; }

/* ============================================================
   FOUR PILLARS
   ============================================================ */
.pillars-v2 { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pillars-v2 { grid-template-columns: 1fr 1fr; } }
.pillar-v2 {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px 26px 26px;
}
.pillar-v2::before, .pillar-v2::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 2.5px solid var(--sage);
  opacity: 0.85;
}
.pillar-v2::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.pillar-v2::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }
.pillar-v2 h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pillar-v2 p { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; line-height: 1.62; }

/* ============================================================
   SAFETY / VETTING CHECKLIST
   ============================================================ */
.safety-v2-grid {
  display: grid; gap: 44px;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .safety-v2-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.checklist { display: grid; gap: 18px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-item svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; color: var(--sage-dark); }
.check-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.check-item p { color: var(--ink-soft); font-size: 0.92rem; font-weight: 500; line-height: 1.55; }
.safety-v2-photo { aspect-ratio: 4 / 5; }

/* ============================================================
   NANNY GRADE BOOK
   ============================================================ */
.gradebook-grid {
  display: grid; gap: 44px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .gradebook-grid { grid-template-columns: 1fr 0.92fr; gap: 60px; } }
.gradebook-card {
  position: relative;
  background: var(--card);
  border: 1.5px dashed var(--sand);
  border-radius: 16px;
  padding: 28px 26px 24px;
  box-shadow: var(--shadow);
}
.gradebook-card .gb-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; margin-bottom: 4px;
}
.gradebook-card .gb-head b { font-family: "Fraunces", serif; font-size: 1.14rem; font-weight: 700; }
.gradebook-card .gb-sample {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px;
  white-space: nowrap;
}
.gradebook-card .gb-sub { font-size: 0.86rem; color: var(--ink-soft); font-weight: 500; margin-bottom: 20px; }
.gb-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  padding: 13px 0; border-top: 1px solid var(--line);
}
.gb-row:first-of-type { border-top: 1px solid var(--line); }
.gb-row-label { font-weight: 700; font-size: 0.94rem; }
.gb-row-note { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; margin-top: 2px; max-width: 32ch; }
.gb-status {
  flex-shrink: 0; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.02em;
  color: var(--sage-dark); background: var(--sage-tint); border-radius: 999px; padding: 5px 12px;
  white-space: nowrap;
}
.gb-quote {
  margin-top: 18px; padding: 14px 16px; background: var(--bg2); border-radius: 10px;
  font-size: 0.88rem; font-style: italic; color: var(--ink); line-height: 1.5;
}
.gb-quote cite { display: block; margin-top: 6px; font-style: normal; font-weight: 700; font-size: 0.78rem; color: var(--ink-soft); }
.gradebook-card .gb-stamp {
  position: absolute; top: -14px; right: 26px;
  transform: rotate(6deg);
  background: var(--card);
  border: 2px solid var(--sage-dark); color: var(--sage-dark);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px; opacity: 0.95;
  z-index: 2;
}

/* ============================================================
   OFFER — founding families
   ============================================================ */
.offer-v2 { display: grid; place-items: center; }
.offer-v2-card {
  max-width: 640px;
  width: 100%;
  text-align: center;
  background: var(--cream);
  border: 2px solid var(--beige);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 46px 32px 36px;
  position: relative;
}
.offer-v2-badge {
  position: absolute; top: -17px; left: 50%; transform: translateX(-50%);
  background: var(--brown); color: var(--cream);
  font-weight: 700; font-size: 0.85rem;
  padding: 8px 20px; border-radius: 999px;
  white-space: nowrap;
}
.offer-v2-card h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); font-weight: 700; letter-spacing: -0.01em; margin-top: 8px; }
.offer-v2-card p { color: var(--ink-soft); font-weight: 500; margin: 14px 0 24px; line-height: 1.6; }
.offer-v2-fine { font-size: 0.82rem !important; margin: 14px 0 0 !important; opacity: 0.8; }

/* ============================================================
   CONNECT WITH US — real contact, real service area
   ============================================================ */
.connect-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .connect-grid { grid-template-columns: 1fr 1fr; } }
.connect-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; text-decoration: none; color: var(--ink);
  transition: border-color 0.15s ease, transform 0.1s ease;
}
.connect-card:hover { border-color: var(--sage-dark); transform: translateY(-2px); }
.connect-card svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--sage-dark); }
.connect-label { display: block; font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.connect-value { display: block; font-size: 1.05rem; font-weight: 700; margin-top: 2px; }

.service-area h3 { font-family: "Fraunces", serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.service-area > p { color: var(--ink-soft); font-weight: 500; line-height: 1.6; max-width: 68ch; }
.area-group-label { display: block; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); margin-bottom: 10px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { font-size: 0.86rem; font-weight: 700; background: var(--sage-tint); color: var(--sage-dark); padding: 7px 14px; border-radius: 999px; }

/* ============================================================
   FAQ — native <details>, addresses trust head-on
   ============================================================ */
.faq-v2 { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 16px 2px;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--brown);
  position: relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--brown);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 11px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 11px; transition: transform 0.2s ease; }
.faq-item[open] summary .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-item p { color: var(--ink-soft); font-weight: 500; line-height: 1.65; padding: 0 2px 18px; max-width: 66ch; }

/* ============================================================
   WAITLIST FORM (shared logic with V1, restyled)
   ============================================================ */
.join-v2 { padding: 100px 0 90px; display: grid; place-items: center; }
.join-v2-card {
  width: 100%; max-width: 520px;
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 40px 30px 32px;
}
.join-v2-head { text-align: center; margin-bottom: 26px; }
.join-v2-head h2 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.01em; }
.join-v2-head p { color: var(--ink-soft); font-weight: 500; margin-top: 8px; font-size: 0.95rem; }

.dots { display: flex; justify-content: center; gap: 7px; margin-top: 18px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background 0.25s ease, transform 0.25s ease; }
.dot.on { background: var(--sage-dark); transform: scale(1.25); }

.step { animation: stepin 0.35s ease; }
@keyframes stepin { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
.step h3 { font-size: 1.1rem; font-weight: 700; text-align: center; margin-bottom: 20px; line-height: 1.4; }

.lbl { display: block; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin: 16px 0 6px; }
input {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--line); border-radius: 12px;
  font-size: 1rem; font-family: inherit; font-weight: 600; color: var(--ink);
  background: #fffdfb; outline: none; -webkit-appearance: none;
}
input:focus { border-color: var(--sage-dark); background: #fff; }
.soft-note { text-align: center; color: var(--ink-soft); font-size: 0.86rem; font-weight: 600; margin-top: 14px; }

.pick-grid { display: grid; gap: 12px; }
.pick-grid.two { grid-template-columns: 1fr 1fr; }
.pick-grid.four { grid-template-columns: 1fr 1fr; }
@media (min-width: 480px) { .pick-grid.four { grid-template-columns: repeat(4, 1fr); } }
.pick {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 18px 10px 14px;
  background: #fffdfb; border: 2px solid var(--line); border-radius: 14px;
  font-family: inherit; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.pick:hover { border-color: var(--sand); }
.pick:active { transform: scale(0.97); }
.pick.selected { border-color: var(--sage-dark); background: var(--sage-tint); }
.pick-label { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.pick-sub { font-weight: 500; font-size: 0.76rem; color: var(--ink-soft); }

.form-error {
  text-align: center; color: #b3423b; background: #fbe9e6;
  font-size: 0.88rem; font-weight: 700; padding: 10px 14px; border-radius: 12px; margin-top: 16px;
}
.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 26px; }
.form-nav .btn.primary { flex: 1; }

.success { text-align: center; padding: 12px 4px 4px; animation: stepin 0.4s ease; }
.success-icon { width: 60px; height: 60px; margin-bottom: 10px; color: var(--sage-dark); }
.success h2 { font-size: 1.45rem; font-weight: 700; }
.success p { color: var(--ink-soft); font-weight: 500; line-height: 1.6; margin-top: 12px; }
.success b { color: var(--sage-dark); }

.confetti { position: fixed; top: -40px; z-index: 99; pointer-events: none; animation: fall linear forwards; }
.confetti svg { display: block; width: 100%; height: 100%; }
@keyframes fall { to { transform: translateY(110vh) rotate(360deg); opacity: 0.7; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-v2 {
  border-top: 1px solid var(--line);
  padding: 48px 0 calc(env(safe-area-inset-bottom) + 40px);
}
.footer-v2-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-v2-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-v2-brand p { margin-top: 10px; color: var(--ink-soft); font-size: 0.92rem; font-weight: 500; max-width: 34ch; line-height: 1.6; }
.footer-v2 h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 12px; }
.footer-v2 ul { list-style: none; display: grid; gap: 9px; }
.footer-v2 a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.92rem; opacity: 0.85; }
.footer-v2 a:hover { opacity: 1; text-decoration: underline; }
.footer-v2-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center;
  color: var(--ink-soft); font-size: 0.84rem; font-weight: 600;
}
.inline-heart { width: 16px; height: 16px; }

/* ============================================================
   PALETTE SWITCHER — live preview tool, not for production.
   Fixed bar at the bottom to test color directions in real time.
   ============================================================ */
body { padding-bottom: 64px; }
.palette-switcher {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(6px);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.10);
}
.palette-switcher-inner {
  max-width: 1120px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.palette-switcher-label {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
.palette-switcher-swatches { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; align-items: center; }
.palette-switcher-swatch {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  width: 30px; height: 30px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; padding: 0; cursor: pointer;
  box-shadow: 0 0 0 1px var(--line);
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.palette-switcher-swatch span { display: block; }
.palette-switcher-swatch:hover { transform: translateY(-2px); }
.palette-switcher-swatch.active { box-shadow: 0 0 0 2px var(--ink); }
.palette-switcher-name {
  font-size: 0.78rem; font-weight: 700; color: var(--ink);
  min-width: 150px;
}
.palette-switcher-close {
  background: transparent; border: 0; font-size: 1.2rem; line-height: 1; color: var(--ink-soft);
  cursor: pointer; padding: 4px 10px; border-radius: 6px; flex-shrink: 0;
}
.palette-switcher-close:hover { background: var(--bg2); color: var(--ink); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
