
  :root {
    /* Terracotta (default) */
    --bg: #f4efe7;
    --bg-alt: #ebe3d5;
    --bg-card: #fbf8f2;
    --ink: #2a1f17;
    --ink-soft: #5c4a3d;
    --ink-mute: #8a7868;
    --accent: #b85c3b;
    --accent-deep: #8f3f23;
    --accent-soft: #e8cfc0;
    --line: #d9cdb9;
    --line-soft: #e8ddc9;
  }
  [data-palette="sage"] {
    --bg: #eef2ed;
    --bg-alt: #dde5dc;
    --bg-card: #f6f8f4;
    --ink: #1e2a22;
    --ink-soft: #3f5446;
    --ink-mute: #718478;
    --accent: #5a7a64;
    --accent-deep: #3d5a47;
    --accent-soft: #c9d6cc;
    --line: #c7d2c6;
    --line-soft: #dce4da;
  }
  [data-palette="navy"] {
    --bg: #eef0f3;
    --bg-alt: #dde2e9;
    --bg-card: #f6f7f9;
    --ink: #131a26;
    --ink-soft: #3a4659;
    --ink-mute: #6c7689;
    --accent: #2f4a6b;
    --accent-deep: #1d3450;
    --accent-soft: #c6d1df;
    --line: #c5ccd6;
    --line-soft: #dde2e9;
  }
  [data-palette="bordeaux"] {
    --bg: #f3eeea;
    --bg-alt: #e4dad2;
    --bg-card: #faf6f2;
    --ink: #221616;
    --ink-soft: #4c3535;
    --ink-mute: #8a7470;
    --accent: #7a2e2e;
    --accent-deep: #5a1e1e;
    --accent-soft: #e1c7c2;
    --line: #d6c7bf;
    --line-soft: #e8ddd4;
  }

  * { box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  h1,h2,h3,h4 { font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
  p { margin: 0; }
  a { color: inherit; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

  /* ---- NAV ---- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in oklab, var(--bg) 92%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .brand-mark {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent);
    color: var(--bg-card);
    display: grid; place-items: center;
    font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500;
    letter-spacing: 0.02em;
  }
  .brand-name {
    font-family: 'Fraunces', serif;
    font-size: 18px; font-weight: 500;
    line-height: 1;
  }
  .brand-sub {
    font-size: 11px; color: var(--ink-mute);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-top: 3px;
  }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-link {
    font-size: 14px; color: var(--ink-soft); text-decoration: none;
    transition: color 0.15s;
  }
  .nav-link:hover { color: var(--accent); }
  .nav-cta {
    font-size: 14px; font-weight: 500;
    background: var(--accent-deep); color: var(--bg-card);
    padding: 10px 18px; border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
  }
  .nav-cta:hover { background: var(--ink); }
  .nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-card);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
}

.nav-cta-mobile {
  display: none;
}

 @media (max-width: 760px) {
  .nav-inner {
    position: relative;
    gap: 10px;
  }

  .brand-mp {
    display: none;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-cta-mobile {
    display: inline-flex;
    font-size: 12px;
    padding: 7px 12px;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 32px;
    right: 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 18px 44px rgba(40, 25, 15, 0.10);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-link {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
  }

  .nav-links .nav-link:last-of-type {
    border-bottom: none;
  }

  .nav-links .nav-cta {
    display: none;
  }
}

  /* ---- BUTTONS ---- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    font-family: inherit; font-size: 15px; font-weight: 500;
    padding: 14px 24px; border-radius: 4px;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
  }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: var(--accent-deep); }
  .btn-secondary {
    background: transparent; color: var(--ink);
    border: 1px solid var(--line);
  }
  .btn-secondary:hover { border-color: var(--ink); }

  /* ---- HERO ---- */
  .hero { padding: 80px 0 100px; }
  .hero-grid {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent-deep); font-weight: 500;
    margin-bottom: 24px;
  }
  .eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--accent);
  }
  .hero h1 {
    font-size: clamp(38px, 5.2vw, 62px);
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .hero h1 em { font-style: italic; color: var(--accent-deep); font-weight: 400; }
  .hero-lead {
    font-size: 18px; color: var(--ink-soft);
    max-width: 520px; line-height: 1.6;
    margin-bottom: 36px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-trust {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .trust-item { display: flex; align-items: center; gap: 10px; }
  .trust-icon {
    width: 20px; height: 20px; flex-shrink: 0;
    stroke: var(--accent-deep); fill: none; stroke-width: 1.5;
  }
  .trust-text { font-size: 13px; color: var(--ink-soft); line-height: 1.3; }
  .trust-text b { color: var(--ink); font-weight: 600; display: block; font-size: 14px; }

  /* Hero image */
  .hero-portrait {
    aspect-ratio: 4/5;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-alt);
  }
  .hero-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 48px 0 64px; }
  }

  /* ---- SECTION ---- */
  section { padding: 88px 0; }
  .section-head { max-width: 680px; margin-bottom: 56px; }
  .section-head h1,
.section-head h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
  .section-head p {
    font-size: 17px; color: var(--ink-soft);
    line-height: 1.6;
  }
  .section-label {
  margin-bottom: 22px;
  color: var(--ink-mute);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
  .blog-index .section-head {
  max-width: 720px;
  margin-bottom: 44px;
  padding-top: 28px;
}

.blog-index .section-head h1 {
  max-width: 680px;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}

.blog-index .section-head p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.65;
}
.back-link-wrap {
  margin-top: 36px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(156, 73, 42, 0.32);
  border-radius: 6px;
  color: #8f3f25;
  background: rgba(255, 255, 255, 0.36);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.back-link:hover {
  background: rgba(156, 73, 42, 0.08);
  border-color: rgba(156, 73, 42, 0.48);
  transform: translateY(-1px);
}
  /* ---- ABOUT ---- */
  .about { background: var(--bg-alt); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px;
    align-items: center;
  }
  /* Credentials card — replaces about-photo */
  .cred-card {
    border-radius: 6px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: 40px 36px;
    display: flex; flex-direction: column;
    position: relative;
  }
  .cred-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent-deep);
  }
  .cred-card-head {
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
    margin-bottom: 28px;
  }
  .cred-card-eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 14px;
  }
  .cred-card-name {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    line-height: 1.15;
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .cred-card-role {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .cred-card-body {
    display: flex; flex-direction: column;
    gap: 22px;
    flex: 1;
    justify-content: space-between;
  }
  .cred-row {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px dotted var(--line);
  }
  .cred-row:last-child { border-bottom: none; }
  .cred-row-num {
    font-family: 'Fraunces', serif;
    font-size: 13px;
    color: var(--accent-deep);
    width: 22px; flex-shrink: 0;
    letter-spacing: 0.04em;
  }
  .cred-row-content { flex: 1; min-width: 0; }
  .cred-row-label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 6px;
  }
  .cred-row-value {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.4;
    font-weight: 500;
  }
  .cred-row-value small {
    display: block;
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 400;
    margin-top: 3px;
  }
  .cred-card-seal {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .cred-card-seal-mark {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--accent-deep);
    letter-spacing: -0.02em;
  }
  .cred-card-seal-text {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    line-height: 1.5;
  }
  .cred-card-seal-text b { color: var(--ink); font-weight: 500; display: block; }

  .about-body p {
    font-size: 17px; color: var(--ink-soft);
    line-height: 1.7; margin-bottom: 18px;
  }
  .about-body p:first-of-type {
    font-size: 20px; color: var(--ink);
    font-family: 'Fraunces', serif; font-weight: 400;
    line-height: 1.45;
    margin-bottom: 28px;
  }

  @media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .credentials { grid-template-columns: 1fr; gap: 18px; }
  }

  /* ---- SPECIALIZATIONS ---- */
  .specs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
  }
  .spec {
    background: var(--bg-card);
    padding: 44px 36px 40px;
    transition: background 0.2s;
    display: flex; flex-direction: column; gap: 0;
  }
  .spec:hover { background: var(--bg); }
  .spec-num {
    font-family: 'Fraunces', serif;
    font-size: 13px; color: var(--accent-deep);
    margin-bottom: 20px; letter-spacing: 0.04em;
  }
  .spec h3 {
    font-size: 22px; line-height: 1.2;
    margin-bottom: 12px;
  }
  .spec p {
    font-size: 14px; color: var(--ink-soft); line-height: 1.6;
  }
  @media (max-width: 860px) {
    .specs-grid { grid-template-columns: 1fr; }
  }

  /* ---- CBT APPROACH ---- */
  .cbt { background: var(--ink); color: var(--bg-card); }
  .cbt h2 { color: var(--bg-card); }
  .cbt .section-head p { color: color-mix(in oklab, var(--bg-card) 70%, transparent); }
  .cbt .section-label { color: color-mix(in oklab, var(--bg-card) 55%, transparent); }
  .cbt-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px;
    align-items: center;
  }
  .cbt-body p {
    font-size: 17px; line-height: 1.7;
    color: color-mix(in oklab, var(--bg-card) 80%, transparent);
    margin-bottom: 18px;
  }
  .cbt-pillars { list-style: none; padding: 0; margin: 32px 0 0; }
  .cbt-pillars li {
    display: flex; gap: 16px; padding: 16px 0;
    border-top: 1px solid color-mix(in oklab, var(--bg-card) 15%, transparent);
  }
  .cbt-pillars li:last-child { border-bottom: 1px solid color-mix(in oklab, var(--bg-card) 15%, transparent); }
  .pillar-num {
    font-family: 'Fraunces', serif;
    font-size: 14px; color: var(--accent-soft);
    flex-shrink: 0; min-width: 24px;
  }
  .pillar-body b {
    display: block; font-weight: 500; margin-bottom: 2px;
    color: var(--bg-card); font-size: 15px;
  }
  .pillar-body span {
    font-size: 14px; color: color-mix(in oklab, var(--bg-card) 65%, transparent);
    line-height: 1.5;
  }
  .cbt-card {
    background: color-mix(in oklab, var(--bg-card) 5%, transparent);
    border: 1px solid color-mix(in oklab, var(--bg-card) 15%, transparent);
    border-radius: 6px;
    padding: 40px;
  }
  .cbt-card-quote {
    font-family: 'Fraunces', serif;
    font-size: 24px; line-height: 1.35;
    color: var(--bg-card);
    margin-bottom: 28px;
  }
  .cbt-card-cite {
    font-size: 13px; color: color-mix(in oklab, var(--bg-card) 60%, transparent);
    letter-spacing: 0.04em;
  }
  .cbt-evidence {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid color-mix(in oklab, var(--bg-card) 15%, transparent);
    font-size: 12px; color: color-mix(in oklab, var(--bg-card) 55%, transparent);
    line-height: 1.5;
  }
  @media (max-width: 860px) {
    .cbt-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ---- PROCESS ---- */
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    counter-reset: step;
  }
  .step {
    padding: 32px 0;
    border-top: 1px solid var(--ink);
    position: relative;
  }
  .step-num {
    font-family: 'Fraunces', serif;
    font-size: 13px; color: var(--accent-deep);
    margin-bottom: 16px; letter-spacing: 0.04em;
  }
  .step h3 {
    font-size: 20px; margin-bottom: 10px;
    line-height: 1.2;
  }
  .step p {
    font-size: 14px; color: var(--ink-soft); line-height: 1.55;
  }
  @media (max-width: 860px) {
    .process-steps { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 520px) {
    .process-steps { grid-template-columns: 1fr; }
  }

  /* ---- PRICING ---- */
  .pricing { background: var(--bg-alt); padding: 56px 0; }
  .pricing .section-head { margin-bottom: 32px; }
  .pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 32px 40px;
    max-width: 640px;
    margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    align-items: center;
  }
  .pricing-main .pricing-label {
    font-size: 12px; color: var(--ink-mute);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .pricing-main { text-align: center; }
  .pricing-amount {
    font-family: 'Fraunces', serif;
    font-size: 34px; line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
    display: flex; align-items: baseline; justify-content: center; gap: 8px;
  }
  .pricing-currency {
    font-size: 20px; color: var(--ink-mute);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
  }
  .pricing-per {
    font-size: 14px; color: var(--ink-soft);
  }
  .pricing-details { border-left: 1px solid var(--line); padding-left: 48px; }
  .pricing-details ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .pricing-details li {
    font-size: 14px; color: var(--ink-soft);
    display: flex; gap: 10px; align-items: flex-start;
  }
  .pricing-details li::before {
    content: ""; width: 14px; height: 14px; margin-top: 3px;
    flex-shrink: 0;
    background: var(--accent-soft);
    border-radius: 50%;
    position: relative;
  }
  @media (max-width: 680px) {
    .pricing-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
    .pricing-details { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 32px; }
  }

  /* ---- FORMS ---- */
  .field { margin-bottom: 18px; }
  .field label {
    display: block; font-size: 13px;
    color: var(--ink-soft); margin-bottom: 6px;
    font-weight: 500;
  }
  .field input, .field textarea, .field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--bg-card);
    font-family: inherit; font-size: 14px;
    color: var(--ink);
    transition: border-color 0.15s;
  }
  .field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--ink);
  }
  .field textarea { min-height: 100px; resize: vertical; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

  /* ---- BLOG ---- */
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  }
  .blog-card {
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    group: card;
  }
  .blog-thumb {
    aspect-ratio: 16/10;
    border-radius: 4px;
    background:
      repeating-linear-gradient(135deg,
        color-mix(in oklab, var(--accent-soft) 70%, transparent) 0 2px,
        transparent 2px 14px),
      linear-gradient(160deg, var(--accent-soft), var(--bg-alt));
    border: 1px solid var(--line);
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s;
  }
  .blog-card:hover .blog-thumb { transform: translateY(-2px); }
  .blog-meta {
    font-size: 11px; color: var(--ink-mute);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: flex; gap: 10px;
  }
  .blog-meta-dot { color: var(--line); }
  .blog-card h3 {
    font-size: 20px; line-height: 1.3;
    margin-bottom: 10px;
  }
  .blog-card p {
    font-size: 14px; color: var(--ink-soft);
    line-height: 1.55;
  }
  .blog-link {
    margin-top: 40px;
    font-size: 14px;
    color: var(--accent-deep);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .blog-link:hover { text-decoration: underline; }
  @media (max-width: 860px) {
    .blog-grid { grid-template-columns: 1fr; }
  }

  /* ---- FAQ ---- */
  .faq { background: var(--bg-alt); }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--ink);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .faq-q .chev {
    width: 20px; height: 20px; flex-shrink: 0;
    transition: transform 0.2s;
    color: var(--accent-deep);
  }
  .faq-item.open .faq-q .chev { transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    font-size: 15px; color: var(--ink-soft);
    line-height: 1.65;
  }
  .faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 0 24px;
  }

  /* ---- CONTACT ---- */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px;
    align-items: start;
  }
  .contact-side h3 {
    font-size: 28px; line-height: 1.2;
    margin-bottom: 16px;
  }
  .contact-side > p {
    color: var(--ink-soft); font-size: 16px;
    margin-bottom: 32px; line-height: 1.6;
  }
  .contact-meta { display: flex; flex-direction: column; gap: 20px; }
  .contact-meta-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .contact-meta-item:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-meta-icon {
    width: 20px; height: 20px; flex-shrink: 0;
    stroke: var(--accent-deep); fill: none; stroke-width: 1.5;
    margin-top: 2px;
  }
  .contact-meta-label {
    font-size: 11px; color: var(--ink-mute);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .contact-meta-value {
    font-size: 14px; color: var(--ink);
    line-height: 1.4;
  }

  .contact-form-card {
    background: var(--bg-card);
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 6px;
  }
  .contact-privacy {
    font-size: 12px; color: var(--ink-mute);
    margin-top: 16px; line-height: 1.5;
    display: flex; gap: 10px; align-items: flex-start;
  }
  .contact-privacy input { margin-top: 3px; }

  @media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ---- FOOTER ---- */
  footer {
    background: var(--ink);
    color: color-mix(in oklab, var(--bg-card) 70%, transparent);
    padding: 72px 0 32px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand h4 {
    color: var(--bg-card);
    font-size: 22px;
    margin-bottom: 12px;
  }
  .footer-brand p {
    font-size: 14px; line-height: 1.6;
    max-width: 320px;
    color: color-mix(in oklab, var(--bg-card) 65%, transparent);
  }
  .footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: color-mix(in oklab, var(--bg-card) 80%, transparent);
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 14px;
    color: color-mix(in oklab, var(--bg-card) 60%, transparent);
    text-decoration: none;
  }
  .footer-col a:hover { color: var(--bg-card); }
  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid color-mix(in oklab, var(--bg-card) 15%, transparent);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 12px;
    color: color-mix(in oklab, var(--bg-card) 50%, transparent);
  }
  .footer-creds {
    display: flex; gap: 20px; flex-wrap: wrap;
  }
  @media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
  }


/* Blog article readability */
.blog-article {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.blog-article h1 {
  margin-bottom: 1rem;
}

.blog-article h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-article ul {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.blog-article li {
  margin-bottom: 0.75rem;
  line-height: 1.65;
}.blog-article {
  padding-top: 3rem;
}

.blog-article h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.blog-article > .section-label {
  margin-bottom: 1.25rem;
}
.article-meta {
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.article-back {
  margin-bottom: 2rem;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.card {
  display: block;
  max-width: 700px;
  padding: 22px 26px;
  border: 1px solid rgba(80, 55, 38, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 44px rgba(40, 25, 15, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(80, 55, 38, 0.26);
  box-shadow: 0 22px 52px rgba(40, 25, 15, 0.08);
}

.card h2 {
  margin-bottom: 10px;
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.card p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.blog-list-head {
  margin-bottom: 22px;
}

.blog-list-head h2 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.blog-list-head p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.card + .card {
  margin-top: 22px;
}
.blog-index .section-head,
.blog-index .card,
.blog-index .back-link-wrap {
  margin-left: auto;
  margin-right: auto;
}
.blog-index .section-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.blog-index .section-head h1,
.blog-index .section-head p {
  max-width: 760px;
}

.blog-index .card {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.blog-index .back-link-wrap {
  max-width: 760px;
  margin: 36px auto 0;
}