:root {
  --feather-safe-area-top: env(safe-area-inset-top, 0px);
  --feather-safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --stone-50: #fbf6ec;
  --stone-100: #f4ecdd;
  --stone-300: #e5d9c5;
  --stone-500: #8a7a65;
  --stone-700: #4a3d34;
  --stone-900: #2a1f1a;

  --terracotta-100: #f7e3dc;
  --terracotta-300: #e8a892;
  --terracotta-500: #c8553d;
  --terracotta-700: #8e3825;
  --terracotta-900: #4f1e14;

  --marigold-100: #fbeac8;
  --marigold-300: #f4c76e;
  --marigold-500: #e8a33d;
  --marigold-700: #b07a23;
  --marigold-900: #6b4710;

  --teal-100: #d1e1e5;
  --teal-300: #6a9aa7;
  --teal-500: #1f5a6b;
  --teal-700: #143e4a;
  --teal-900: #0a222a;

  --sage-100: #e5ebd9;
  --sage-300: #b1bf95;
  --sage-500: #8a9b6b;
  --sage-700: #5f6e43;
  --sage-900: #344123;

  --rose-100: #f5e1e1;
  --rose-300: #dfb3b3;
  --rose-500: #c58f8f;
  --rose-700: #8c5f5f;
  --rose-900: #523434;

  --canvas: var(--stone-100);
  --surface: rgba(251, 246, 236, 0.9);
  --surface-strong: rgba(251, 246, 236, 0.98);
  --surface-deep: rgba(42, 31, 26, 0.96);
  --border: rgba(74, 61, 52, 0.14);
  --border-strong: rgba(74, 61, 52, 0.22);
  --text-primary: var(--stone-900);
  --text-body: var(--stone-700);
  --text-muted: var(--stone-500);
  --brand: var(--terracotta-500);
  --brand-hover: var(--terracotta-700);
  --shadow-soft: 0 22px 44px rgba(42, 31, 26, 0.08);
  --shadow-strong: 0 28px 56px rgba(42, 31, 26, 0.13);
  --shadow-brand: 0 16px 32px rgba(200, 85, 61, 0.2);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--canvas);
  letter-spacing: -0.01em;
}

body.site-body {
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.site-main {
  flex: 1;
  padding-top: 92px;
}

.page-shell,
.site-footer__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  padding-bottom: 64px;
}

.section {
  padding: 42px 0;
}

.section + .section {
  padding-top: 18px;
}

.hero-panel,
.feature-panel,
.quote-panel,
.cta-panel,
.form-panel,
.legal-panel,
.utility-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-panel {
  padding: 40px;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 32px;
  align-items: start;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.display-title,
.section-title,
.card-title,
.utility-title,
.legal-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.display-title {
  max-width: 12ch;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.96;
  font-variation-settings: "opsz" 144;
}

.section-title {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  font-variation-settings: "opsz" 96;
}

.card-title,
.utility-title,
.legal-title {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.05;
}

.display-title em,
.section-title em,
.card-title em,
.utility-title em {
  color: var(--brand);
  font-style: italic;
  font-weight: 400;
}

.lede,
.body-large,
.body-copy,
.legal-copy,
.field-note,
.support-copy {
  color: var(--text-body);
}

.lede {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.2rem);
  line-height: 1.62;
}

.body-large {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.body-copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
}

.section-intro {
  max-width: 58ch;
  margin: 16px 0 0;
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.64;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.button-primary,
.button-secondary,
.text-link {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.button-primary {
  border: 1px solid transparent;
  background: var(--brand);
  color: var(--stone-50);
  box-shadow: var(--shadow-brand);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(251, 246, 236, 0.7);
  color: var(--text-primary);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(31, 90, 107, 0.35);
  color: var(--teal-700);
  transform: translateY(-1px);
}

.text-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--brand-hover);
}

.stats-row,
.pill-row,
.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-chip,
.pill,
.mini-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(251, 246, 236, 0.82);
}

.stat-chip {
  min-width: 160px;
  padding: 14px 16px;
}

.stat-chip strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.12rem;
  font-weight: 600;
}

.stat-chip span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-note {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(31, 90, 107, 0.18);
  background: var(--teal-100);
  box-shadow: var(--shadow-soft);
}

.hero-note h2,
.hero-note h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero-note h2 {
  font-size: 1.7rem;
}

.hero-note p {
  margin: 12px 0 0;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.65;
}

.question-list,
.bullet-list,
.step-list,
.legal-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li,
.bullet-list li,
.step-list li,
.legal-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-body);
  line-height: 1.65;
}

.question-list li + li,
.bullet-list li + li,
.step-list li + li,
.legal-bullet-list li + li {
  margin-top: 10px;
}

.question-list li::before,
.bullet-list li::before,
.step-list li::before,
.legal-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: span 12;
}

.mosaic-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.mosaic-card h3,
.mosaic-card h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.mosaic-card p {
  margin: 14px 0 0;
  color: var(--text-body);
  line-height: 1.66;
}

.mosaic-card .card-kicker,
.legal-meta,
.field-label,
.support-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tone-stone {
  background: rgba(251, 246, 236, 0.96);
}

.tone-terracotta {
  background: rgba(247, 227, 220, 0.98);
  border-color: rgba(200, 85, 61, 0.18);
}

.tone-marigold {
  background: rgba(251, 234, 200, 0.96);
  border-color: rgba(232, 163, 61, 0.2);
}

.tone-sage {
  background: rgba(229, 235, 217, 0.98);
  border-color: rgba(138, 155, 107, 0.22);
}

.tone-rose {
  background: rgba(245, 225, 225, 0.98);
  border-color: rgba(197, 143, 143, 0.22);
}

.tone-teal {
  background: rgba(209, 225, 229, 0.98);
  border-color: rgba(31, 90, 107, 0.2);
}

.tone-deep {
  background: var(--stone-900);
  border-color: rgba(229, 217, 197, 0.14);
  color: var(--stone-50);
}

.tone-deep h3,
.tone-deep h4,
.tone-deep .card-kicker {
  color: var(--stone-50);
}

.tone-deep p,
.tone-deep li {
  color: rgba(251, 246, 236, 0.8);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.feature-panel,
.quote-panel,
.cta-panel,
.form-panel,
.legal-panel,
.utility-panel {
  padding: 28px;
}

.quote-panel {
  background: var(--rose-100);
}

.quote-text {
  max-width: 24ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.quote-credit {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-panel::before,
.utility-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: var(--brand);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field-label {
  color: var(--text-primary);
}

.field-note,
.status-note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.text-input,
.text-area,
.select-input {
  width: 100%;
  border: 1px solid rgba(74, 61, 52, 0.18);
  border-radius: 18px;
  background: rgba(255, 251, 244, 0.94);
  color: var(--text-primary);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.text-input,
.select-input {
  min-height: 54px;
  padding: 0 16px;
}

.text-area {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.text-input:focus,
.text-area:focus,
.select-input:focus {
  border-color: rgba(200, 85, 61, 0.48);
  box-shadow: 0 0 0 4px rgba(200, 85, 61, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.checkbox-row label {
  color: var(--text-body);
  font-size: 0.93rem;
  line-height: 1.6;
}

.fine-print {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.status-note {
  min-height: 1.4em;
  color: var(--text-muted);
}

.status-note[data-state="error"] {
  color: var(--terracotta-700);
}

.status-note[data-state="success"] {
  color: var(--sage-700);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.support-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(251, 246, 236, 0.88);
  box-shadow: var(--shadow-soft);
}

.support-card h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.support-card p {
  margin: 12px 0 0;
  color: var(--text-body);
  line-height: 1.62;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 108px;
}

.legal-nav .feature-panel {
  padding-top: 24px;
}

.legal-nav ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-nav li + li {
  margin-top: 8px;
}

.legal-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  color: var(--text-body);
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  border-color: var(--border);
  background: rgba(251, 246, 236, 0.92);
  color: var(--text-primary);
}

.legal-article {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-section {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(251, 246, 236, 0.9);
  box-shadow: var(--shadow-soft);
}

.legal-section h2,
.legal-section h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.legal-section h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.legal-section h3 {
  font-size: 1.25rem;
  line-height: 1.18;
}

.legal-section p {
  margin: 12px 0 0;
  color: var(--text-body);
  line-height: 1.7;
}

.legal-block + .legal-block {
  margin-top: 24px;
}

.utility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.callout-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.callout-card {
  padding: 18px 18px 18px 20px;
  border-left: 3px solid var(--brand);
  border-radius: 18px;
  background: rgba(251, 246, 236, 0.78);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.callout-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-footer {
  padding: 0 0 36px;
}

.site-footer__inner {
  padding: 24px 0 0;
  border-top: 1px solid rgba(74, 61, 52, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__brand .brand-mark {
  width: 34px;
  height: 34px;
}

.site-footer__brand .brand-wordmark {
  font-size: 1.8rem;
}

.site-footer__copy {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__links a {
  color: var(--text-body);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--brand);
}

@media (max-width: 980px) {
  .hero-split,
  .utility-grid,
  .legal-layout,
  .support-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .support-grid {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .contact-page .page-shell {
    padding-bottom: 24px;
  }

  .contact-page .section {
    padding: 16px 0;
  }

  .contact-page .section + .section {
    padding-top: 10px;
  }

  .site-main {
    padding-top: calc(84px + var(--feather-safe-area-top));
  }

  .site-footer {
    padding-bottom: calc(40px + var(--feather-safe-area-bottom));
  }

  .page-shell,
  .site-footer__inner {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 28px 0;
  }

  .hero-panel,
  .feature-panel,
  .quote-panel,
  .cta-panel,
  .form-panel,
  .legal-panel,
  .utility-panel,
  .legal-section {
    padding: 22px;
    border-radius: 24px;
  }

  .display-title {
    font-size: clamp(2.55rem, 11vw, 4.2rem);
    max-width: 10.6ch;
  }

  .section-title {
    max-width: none;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-wordmark {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .form-grid,
  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-12 {
    grid-column: 1 / -1;
  }

  .mosaic-card,
  .support-card,
  .callout-card {
    padding: 20px;
  }
}

/* Current consumer direction: confident, black-weight display headings. */
h1,
h2,
h3,
.display-title,
.section-title,
.card-title,
.utility-title,
.legal-title {
  font-weight: 900;
}

h1 em,
h2 em,
h3 em,
.display-title em,
.section-title em,
.card-title em,
.utility-title em,
.legal-title em {
  font-weight: 900;
}

/* Consumer site: broken-mosaic edge language */

/*
 * These masks are normalized traces of individual fragments and one adjacent
 * pair in examples/broken_tiles.png. Their short, straight fracture runs are
 * intentionally reused at different scales; the page background supplies the
 * grout between separately masked elements.
 */

.hero-panel,
.feature-panel,
.quote-panel,
.cta-panel,
.form-panel,
.legal-panel,
.utility-panel,
.hero-note,
.mosaic-card {
  border-radius: 3px;
  clip-path: polygon(4% 0%, 76% 3%, 100% 18%, 98% 78%, 82% 100%, 11% 96%, 0% 79%, 2% 24%);
  box-shadow: none;
  filter: none;
}

.mosaic-card {
  position: relative;
}

.mosaic-card::before {
  content: none;
}

.mosaic-card:nth-child(3n + 2) {
  clip-path: polygon(0% 7%, 61% 0%, 100% 13%, 97% 82%, 74% 100%, 5% 95%);
}

.mosaic-card:nth-child(3n + 3) {
  clip-path: polygon(7% 0%, 100% 5%, 96% 76%, 75% 100%, 0% 91%, 3% 27%);
}

.button-primary,
.button-secondary {
  min-height: 50px;
  border-radius: 3px;
  clip-path: polygon(3% 6%, 76% 0%, 100% 12%, 96% 91%, 34% 100%, 0% 88%);
  box-shadow: none;
}

.text-input,
.text-area,
.select-input,
.support-card,
.callout-card,
.legal-section {
  border-radius: 6px;
}

/* Policy is intentionally restrained: square, legible, and free of mosaic decoration. */

.policy-page {
  background: #f7f5f0;
}

.policy-page .section {
  padding-top: 36px;
}

.policy-page .legal-layout {
  gap: 32px;
}

.policy-page .feature-panel,
.policy-page .legal-panel,
.policy-page .legal-section {
  border-radius: 0;
  clip-path: none;
  filter: none;
  backdrop-filter: none;
  box-shadow: none;
  background: #ffffff;
}

.policy-page .feature-panel,
.policy-page .legal-panel {
  padding: 28px;
}

.policy-page .legal-section {
  padding: 36px;
}

.policy-page .legal-title,
.policy-page .section-title,
.policy-page .legal-section h2,
.policy-page .legal-section h3 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.policy-page .section-title em {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
}

.policy-page .legal-nav a {
  border-radius: 0;
}

.policy-page .legal-nav a:hover,
.policy-page .legal-nav a:focus-visible {
  background: #f2f0eb;
}

.policy-page feather-header .feather-nav-link,
.policy-page feather-header .feather-cta-link,
.policy-page feather-header .feather-hamburger,
.policy-page feather-header .feather-mobile-menu,
.policy-page feather-header .feather-mobile-close {
  border-radius: 0;
  clip-path: none;
  box-shadow: none;
}

.policy-page feather-header .feather-cta-link:hover,
.policy-page feather-header .feather-cta-link:focus-visible {
  transform: none;
}

/* Homepage */

.home-page {
  padding-bottom: 84px;
}

.home-hero-section {
  padding-top: 24px;
}

.home-powered-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.34em;
  margin: 0 0 16px 2px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.home-powered-note__feather {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.16em;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.home-powered-note strong {
  color: var(--teal-700);
  font-weight: 600;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 16px;
  align-items: stretch;
  min-height: 560px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  clip-path: none;
  box-shadow: none;
  filter: none;
}

.home-hero::before {
  content: none;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 78px 92px 72px;
  overflow: hidden;
  background: var(--stone-50);
  clip-path: polygon(2% 3%, 78% 0%, 100% 8%, 99% 57%, 97% 100%, 30% 97%, 0% 86%, 1% 28%);
  box-shadow: none;
  filter: none;
}

.home-hero__copy::before {
  content: none;
}

.home-hero .display-title {
  max-width: 8ch;
  font-size: clamp(4rem, 7.6vw, 6.7rem);
  line-height: 0.88;
}

.home-hero__title span,
.home-hero__title em {
  display: block;
}

.home-hero .lede {
  max-width: 34ch;
  font-size: 1.12rem;
}

.home-hero__copy .button-row {
  max-width: 100%;
}

.home-hero .button-secondary {
  border: 0;
  background: var(--teal-100);
  color: var(--teal-900);
}

.photo-story__copy > .tile-safe-content,
.home-steps .tile-safe-content,
.gathering-panel__copy > .tile-safe-content,
.home-cta > .tile-safe-content,
.how-hero__copy > .tile-safe-content,
.how-stage > .tile-safe-content,
.how-core-grid .tile-safe-content,
.how-cta > .tile-safe-content,
.contact-hero-note > .tile-safe-content,
.contact-page .support-card > .tile-safe-content,
.contact-page .callout-card > .tile-safe-content,
.contact-form-panel > .tile-safe-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--stone-300);
  box-shadow: none;
  clip-path: polygon(4% 0%, 76% 3%, 100% 18%, 98% 78%, 82% 100%, 11% 96%, 0% 79%, 2% 24%);
  filter: none;
}

.photo-tile::after {
  content: none;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96) sepia(0.08);
}

.photo-tile--hero {
  height: 560px;
  clip-path: polygon(3% 0%, 72% 3%, 100% 10%, 98% 76%, 78% 100%, 0% 96%, 1% 58%, 0% 8%);
}

.photo-tile--hero img {
  object-position: 56% center;
}

.photo-tile figcaption {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 28px;
  left: 28px;
  max-width: 235px;
  padding: 12px 15px;
  color: var(--stone-50);
  background: rgba(42, 31, 26, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  clip-path: polygon(3% 2%, 78% 0%, 100% 8%, 97% 91%, 31% 100%, 0% 88%);
}

.photo-tile--hero figcaption {
  display: none;
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.photo-tile--portrait {
  min-height: 560px;
  clip-path: polygon(2% 3%, 78% 0%, 100% 8%, 99% 57%, 97% 100%, 30% 97%, 0% 86%, 1% 28%);
}

.photo-tile--portrait img {
  object-position: center 42%;
}

.photo-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 92px 76px 68px;
  background: var(--teal-100);
  clip-path: polygon(3% 0%, 72% 3%, 100% 10%, 98% 76%, 78% 100%, 0% 96%, 1% 58%, 0% 8%);
  box-shadow: none;
  filter: none;
  min-height: 650px;
}

.photo-story__copy .section-title {
  max-width: 9ch;
}

.home-steps .mosaic-card {
  min-height: 520px;
  padding: 58px;
  justify-content: center;
}

.home-steps {
  gap: 14px;
}

.home-steps > .mosaic-card.tile-shape {
  clip-path: var(--tile-clip);
}

.home-steps .mosaic-card h3 {
  margin-top: 28px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.home-steps .mosaic-card p {
  font-size: 1rem;
}

.gathering-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: stretch;
}

.gathering-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 580px;
  padding: 68px;
  background: var(--rose-100);
  clip-path: polygon(0% 7%, 61% 0%, 100% 13%, 97% 82%, 74% 100%, 5% 95%);
  box-shadow: none;
  filter: none;
}

.gathering-panel blockquote {
  margin: 32px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.gathering-panel__copy .tile-safe-content > p:last-child {
  margin: 0;
  color: var(--text-body);
}

.photo-tile--wide {
  min-height: 440px;
  clip-path: polygon(7% 0%, 100% 5%, 96% 76%, 75% 100%, 0% 91%, 3% 27%);
}

.photo-tile--wide img {
  object-position: center 42%;
}

.home-cta {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--terracotta-100);
  clip-path: polygon(4% 0%, 76% 3%, 100% 18%, 98% 78%, 82% 100%, 11% 96%, 0% 79%, 2% 24%);
  box-shadow: none;
  filter: none;
  padding: 84px 120px 96px;
}

.home-cta .section-title {
  max-width: 12ch;
}

.home-cta__accent {
  color: var(--brand);
}

/* How It Works */

.how-page {
  padding-bottom: 84px;
}

.how-hero-section {
  padding-top: 24px;
}

.how-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 16px;
  align-items: stretch;
  min-height: 590px;
}

.how-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 76px 82px 88px 72px;
  overflow: hidden;
  background: var(--stone-50);
  clip-path: polygon(2% 4%, 77% 0%, 99% 10%, 100% 65%, 94% 98%, 29% 100%, 1% 88%, 0% 29%);
}

.how-hero__copy.tile-shape--content {
  min-height: 950px;
}

.how-hero .display-title {
  max-width: 8.5ch;
  font-size: clamp(3.35rem, 5.6vw, 5rem);
  line-height: 0.9;
}

.how-hero .lede {
  max-width: 37ch;
  font-size: 1.08rem;
}

.how-photo--hero {
  min-height: 590px;
  clip-path: polygon(3% 0%, 74% 2%, 100% 11%, 97% 79%, 80% 100%, 4% 96%, 0% 72%, 1% 15%);
}

.how-photo--hero img {
  object-position: 56% center;
}

.how-photo--hero figcaption {
  display: none;
}

.how-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 42px minmax(0, 1.25fr) 42px minmax(0, 0.9fr);
  gap: 10px;
  align-items: center;
  margin-top: 30px;
}

.how-stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 350px;
  padding: 58px 54px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.how-stage--feather {
  min-height: 380px;
  padding-inline: 68px;
}

.how-stage--ask {
  min-height: 550px;
}

.how-stage--go {
  min-height: 560px;
}

.how-flow__connector {
  width: 100%;
  height: 30px;
  background: var(--terracotta-500);
  clip-path: polygon(0 38%, 68% 38%, 68% 0, 100% 50%, 68% 100%, 68% 62%, 0 62%);
}

.how-stage .card-kicker {
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.how-stage h3 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.how-stage p {
  max-width: 34ch;
  margin: 14px 0 0;
  color: var(--text-body);
  line-height: 1.55;
}

.how-flow-photos {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  margin-top: 16px;
}

.how-flow-photos .how-photo {
  min-height: 360px;
}

.how-photo--arrival img {
  object-position: center 46%;
}

.how-photo--picnic img {
  object-position: center 55%;
}

.how-core {
  padding-top: 58px;
}

.how-core-grid {
  gap: 16px;
}

.how-core-grid > .mosaic-card.tile-shape {
  clip-path: var(--tile-clip);
}

.how-core-grid .mosaic-card {
  min-height: 315px;
  padding: 70px 16%;
  justify-content: center;
}

.how-core-grid .mosaic-card h3 {
  max-width: 12ch;
  margin-top: 26px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.94;
}

.how-core-grid .mosaic-card p {
  max-width: 36ch;
  font-size: 1rem;
}

.how-core-grid .how-core-card--people {
  min-height: 360px;
}

.how-core-grid .how-core-card--activity {
  min-height: 500px;
}

.how-core-grid .how-core-card--follow {
  min-height: 420px;
}

@media (min-width: 981px) {
  .how-stage--ask > .tile-safe-content {
    transform: translate(12px, 6px);
  }

  .how-core-grid .how-core-card--intent > .tile-safe-content {
    transform: translateX(12px);
  }

  .how-core-grid .how-core-card--activity > .tile-safe-content {
    transform: translate(16px, 6px);
  }
}

.how-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 390px;
  padding: 88px 17% 104px;
  background: var(--rose-100);
}

.how-cta .section-title {
  max-width: 12ch;
}

/* Contact */

.contact-page .hero-panel,
.contact-page .hero-note,
.contact-page .support-card,
.contact-page .feature-panel,
.contact-page .callout-card,
.contact-page .form-panel {
  border-radius: 0;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
}

.contact-page .utility-panel {
  border-radius: 0;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: center;
}

.contact-hero {
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 1120px;
}

.contact-hero > .tile-safe-content {
  display: flex;
  align-items: center;
}

.contact-hero__copy {
  width: min(54%, 560px);
}

.contact-hero .display-title {
  font-size: clamp(3rem, 4.4vw, 4rem);
  overflow-wrap: anywhere;
}

.contact-hero-note {
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  min-height: 720px;
  margin-right: 24px;
}

.contact-page .support-grid {
  gap: 16px;
}

.contact-page .support-card {
  display: flex;
  min-height: 340px;
  padding: 68px 60px;
  flex-direction: column;
  justify-content: center;
  border: 0;
}

.contact-page .utility-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 16px;
  align-items: stretch;
}

.contact-guide,
.contact-form-panel {
  min-height: 1100px;
  padding: 92px 82px 104px;
  border: 0;
}

.contact-form-panel {
  min-height: 1200px;
}

.contact-guide .callout-list {
  gap: 10px;
}

.contact-guide > .tile-safe-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page .callout-card {
  min-height: 120px;
  padding: 24px 28px;
  border: 0;
}

.contact-form-panel::before {
  content: none;
}

.contact-page .text-input:focus,
.contact-page .text-area:focus,
.contact-page .select-input:focus {
  outline: 3px solid rgba(200, 85, 61, 0.36);
  outline-offset: 2px;
  box-shadow: none;
}

@media (max-width: 980px) {
  .home-hero,
  .photo-story,
  .gathering-panel,
  .how-hero {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .how-hero {
    min-height: auto;
  }

  .home-hero .display-title {
    max-width: 9ch;
  }

  .photo-tile--hero,
  .photo-tile--portrait,
  .photo-tile--wide {
    min-height: 0;
    height: 520px;
  }

  .photo-story__copy,
  .gathering-panel__copy {
    min-height: 420px;
  }

  .photo-story__copy {
    order: -1;
  }

  .how-photo--hero {
    min-height: 0;
    height: 520px;
  }

  .how-hero__copy.tile-shape--content {
    min-height: 700px;
  }

  .how-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-flow__connector {
    width: 34px;
    height: 54px;
    margin: -5px auto;
    clip-path: polygon(38% 0, 62% 0, 62% 68%, 100% 68%, 50% 100%, 0 68%, 38% 68%);
  }

  .how-stage,
  .how-stage--feather {
    min-height: 330px;
    padding: 70px 76px;
  }

  .how-stage--feather {
    min-height: 390px;
  }

  .how-stage--go {
    min-height: 380px;
  }

  .contact-page .utility-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-hero,
  .contact-hero-note {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-hero {
    min-height: 950px;
  }

  .contact-hero__copy {
    width: 100%;
  }

  .contact-hero-note {
    min-height: 620px;
    margin-right: 0;
  }

  .contact-guide,
  .contact-form-panel {
    min-height: 1100px;
  }

  .contact-form-panel {
    min-height: 1200px;
  }
}

@media (max-width: 760px) {
  .home-page {
    padding-bottom: 54px;
  }

  .home-page > .section {
    padding-bottom: 18px;
  }

  .home-page > .section + .section {
    padding-top: 10px;
  }

  .home-powered-note {
    margin: 0 4px 12px;
    font-size: 0.86rem;
  }

  .home-hero {
    gap: 12px;
    padding: 0;
  }

  .home-hero__copy {
    width: calc(100% + 24px);
    min-height: 600px;
    margin-left: -12px;
    padding: 73px 60px 52px 52px;
    justify-content: flex-start;
  }

  .home-hero__copy .button-row {
    margin-left: 36px;
  }

  .home-hero__title {
    margin-left: -2px;
    transform: translate(
      clamp(2px, calc(12vw - 43px), 36px),
      clamp(-12px, calc(63.7px - 16.2vw), 0px)
    );
  }

  .home-hero .lede {
    margin-top: 32px;
    margin-left: 8px;
    transform: translate(
      clamp(2px, calc(12vw - 43px), 36px),
      clamp(-12px, calc(63.7px - 16.2vw), 0px)
    );
  }

  .home-hero .button-secondary {
    transform: translateY(-2px);
  }

  .home-hero .display-title {
    font-size: clamp(3.2rem, 16vw, 5rem);
    line-height: 0.9;
  }

  .home-hero__title em {
    margin-top: 0.14em;
    line-height: 0.96;
  }

  .photo-tile--hero figcaption {
    display: none;
  }

  #how-it-works {
    margin-top: 0;
    padding-top: 28px;
    padding-bottom: 40px;
  }

  #how-it-works .section-title {
    max-width: 9ch;
    font-size: clamp(2.6rem, 12vw, 3.25rem);
    line-height: 0.94;
  }

  #how-it-works .home-steps {
    margin-top: 24px;
  }

  .photo-tile--hero,
  .photo-tile--portrait,
  .photo-tile--wide {
    height: 390px;
  }

  .photo-story__copy,
  .gathering-panel__copy {
    min-height: 430px;
    padding: 58px;
  }

  .home-steps .mosaic-card {
    padding: 54px;
  }

  .home-steps {
    align-items: start;
  }

  .home-steps .mosaic-card:nth-child(1) {
    min-height: 300px;
  }

  .home-steps .mosaic-card:nth-child(2) {
    min-height: 340px;
  }

  .home-steps .mosaic-card:nth-child(3) {
    min-height: 300px;
  }

  .home-steps .mosaic-card h3 {
    margin-top: 28px;
  }

  .home-cta {
    min-height: 330px;
    padding: 64px;
  }

  .how-page {
    padding-bottom: 24px;
  }

  .how-page > .section {
    padding-bottom: 18px;
  }

  .how-page > .section + .section {
    padding-top: 12px;
  }

  .how-hero {
    gap: 12px;
  }

  .how-hero__copy {
    padding: 62px 66px 78px;
  }

  .how-hero__copy.tile-shape--content {
    min-height: 670px;
  }

  .how-hero .display-title {
    font-size: clamp(2.8rem, 12vw, 3.7rem);
  }

  .how-photo--hero {
    height: 390px;
  }

  .how-flow-photos {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .how-flow-photos .how-photo {
    min-height: 320px;
  }

  .how-photo--picnic {
    display: none;
  }

  .how-stage,
  .how-stage--feather {
    min-height: 230px;
    padding: 64px 68px;
  }

  .how-stage--ask {
    min-height: 350px;
  }

  .how-stage--go {
    min-height: 330px;
  }

  .how-flow {
    margin-top: 16px;
  }

  .how-core-grid .how-core-card--intent > .tile-safe-content {
    transform: translateX(18px);
  }

  .how-core-grid {
    gap: 10px;
    margin-top: 16px;
  }

  .how-core-grid .mosaic-card {
    min-height: 290px;
    padding: 58px;
  }

  .how-core-grid .how-core-card--people {
    min-height: 240px;
  }

  .how-core-grid .how-core-card--activity {
    min-height: 360px;
  }

  .how-core-grid .how-core-card--follow {
    min-height: 360px;
  }

  .how-core-grid .mosaic-card h3 {
    margin-top: 24px;
  }

  .how-cta {
    min-height: 320px;
    padding: 66px;
  }

  .contact-hero {
    min-height: 720px;
    padding: 72px 64px 84px;
  }

  .contact-hero-note {
    min-height: 600px;
    padding: 44px 30px;
  }

  .contact-hero-layout,
  .contact-page .utility-grid {
    gap: 10px;
  }

  .contact-hero .display-title {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
    overflow-wrap: anywhere;
  }

  .contact-page .support-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .contact-page .support-card {
    padding: 72px 64px;
  }

  .contact-page .support-card.tone-stone {
    min-height: 320px;
  }

  .contact-page .support-card.tone-rose {
    min-height: 280px;
  }

  .contact-page .support-card.tone-teal {
    min-height: 320px;
  }

  .contact-guide {
    min-height: 880px;
    padding: 78px 64px 92px;
  }

  .contact-form-panel {
    min-height: 850px;
    padding: 78px 64px 92px;
  }

  .contact-page .callout-card {
    min-height: 120px;
    padding: 24px 22px;
  }
}

@media (max-width: 389px) {
  .how-hero__copy.tile-shape--content {
    min-height: 680px;
  }

  .how-stage--ask > .tile-safe-content {
    transform: translate(14px, 6px);
  }

  .how-stage--feather {
    min-height: 240px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .home-hero__title,
  .home-hero .lede,
  .home-hero__copy .button-row {
    transform: translate(
      clamp(30px, calc(12.5vw - 65px), 48px),
      clamp(-14px, calc(32px - 5vw), -6px)
    );
  }
}

@media (min-width: 901px) and (max-width: 980px) {
  .home-hero__title,
  .home-hero .lede,
  .home-hero__copy .button-row {
    transform: translate(
      48px,
      clamp(-40px, calc(278.5px - 32.5vw), -14px)
    );
  }
}

@media (min-width: 981px) {
  .home-hero .button-secondary {
    transform: translateY(-4px);
  }
}

@media (min-width: 1200px) {
  .home-hero .lede {
    transform: translateX(clamp(6px, calc(1.25vw - 10px), 8px));
  }

  .gathering-panel__copy > .tile-safe-content {
    transform: translateY(2px);
  }
}

/* Current flat-tile phase: masks carry the shape without a second edge color. */
.tile-shape,
.button-primary,
.button-secondary {
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.tile-shape::before,
.tile-shape::after {
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Mosaic journal */

.blog-page__shell {
  padding-bottom: 76px;
}

.blog-masthead {
  max-width: 780px;
  padding: 72px 0 54px;
}

.blog-masthead .eyebrow {
  margin-bottom: 20px;
}

.blog-masthead .display-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  line-height: 0.9;
}

.blog-masthead__lede {
  max-width: 52ch;
  margin: 28px 0 0;
  color: var(--text-body);
  font-size: 1.12rem;
  line-height: 1.65;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 280px);
  gap: clamp(40px, 7vw, 112px);
  align-items: start;
}

.blog-post {
  --blog-post-padding: clamp(30px, 5vw, 58px);
  padding: var(--blog-post-padding) var(--blog-post-padding) 0;
  background: var(--stone-50);
  overflow: hidden;
}

.blog-post--current {
  border-top: 4px solid var(--terracotta-500);
}

.blog-post__header {
  max-width: 620px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(74, 61, 52, 0.18);
}

.blog-post__meta {
  margin: 0 0 14px;
  color: var(--terracotta-700);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.blog-post__meta span {
  padding: 0 0.25em;
  color: var(--marigold-700);
}

.blog-post h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.blog-post__dek {
  max-width: 47ch;
  margin: 20px 0 0;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.6;
}

.blog-post__body {
  max-width: 620px;
  padding-top: 34px;
}

.blog-post__body p {
  margin: 0 0 1.3em;
  color: var(--stone-700);
  font-size: 1.06rem;
  line-height: 1.78;
}

.blog-post__body blockquote {
  margin: 38px 0;
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--terracotta-500);
  color: var(--stone-900);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.blog-origin-card {
  max-width: 430px;
  margin: 42px auto;
}

.blog-origin-card figcaption {
  margin-top: 10px;
  color: var(--stone-700);
  font-size: 0.78rem;
  font-style: italic;
  text-align: center;
}

.blog-origin-card img,
.blog-draft img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-draft {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 5 / 2;
  margin: 0;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.blog-draft img {
  height: 100%;
  object-fit: cover;
  /* Keeps the fully opaque bottom half aligned with the previous 5:1 crop. */
  object-position: 50% 18%;
  -webkit-mask-image: url("blog-handwritten-fade-mask.svg");
  mask-image: url("blog-handwritten-fade-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.blog-signature {
  margin: 0 !important;
  color: var(--stone-900) !important;
  font-family: var(--font-display);
  font-size: 1.6rem !important;
  font-weight: 600;
  line-height: 1.08 !important;
  letter-spacing: -0.04em;
}

.blog-signature span {
  display: block;
  margin-top: 4px;
  color: var(--terracotta-700);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post__footer {
  position: relative;
  margin: 42px calc(-1 * var(--blog-post-padding)) 0;
}

.blog-post__footer::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5 / 1;
}

.blog-post__footer .blog-signature {
  position: relative;
  z-index: 1;
  margin: 0 var(--blog-post-padding) 30px !important;
  text-align: right;
}

.blog-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.blog-sidebar__card {
  display: block;
  padding: 26px;
  color: var(--text-primary);
  text-decoration: none;
}

.blog-sidebar__card--about {
  background: var(--sage-100);
}

.blog-sidebar__card .eyebrow {
  margin-bottom: 14px;
}

.blog-sidebar__card p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.6;
}

.blog-sidebar__card a {
  color: var(--teal-700);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-sidebar a:hover,
.blog-sidebar a:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-page__shell {
    padding-bottom: 36px;
  }

  .blog-masthead {
    padding: 28px 0 34px;
  }

  .blog-masthead .eyebrow {
    margin-bottom: 14px;
  }

  .blog-masthead .display-title {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .blog-masthead__lede {
    margin-top: 22px;
    font-size: 1rem;
  }

  .blog-post {
    --blog-post-padding: 24px;
    padding: 30px var(--blog-post-padding) 0;
  }

  .blog-post__header {
    padding-bottom: 24px;
  }

  .blog-post h2 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .blog-post__body {
    padding-top: 26px;
  }

  .blog-post__body p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .blog-post__body blockquote {
    margin: 30px 0;
    padding-left: 18px;
  }

  .blog-origin-card {
    max-width: 100%;
    margin: 32px auto;
  }

  .blog-post__footer {
    margin-top: 34px;
  }

  .blog-draft {
    aspect-ratio: 5 / 2;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

}
