:root {
  --ink: #172526;
  --muted: #536362;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --sage: #dce9df;
  --forest: #214e47;
  --teal: #087b78;
  --coral: #e86c57;
  --yellow: #f2c967;
  --line: rgba(23, 37, 38, .14);
  --shadow: 0 24px 60px rgba(28, 63, 59, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 16px; }
.announcement {
  padding: 8px 20px;
  color: white;
  background: var(--forest);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  min-height: 92px;
  margin: auto;
}
.brand img, .footer-brand img {
  width: 154px;
  filter: invert(12%) sepia(9%) saturate(1292%) hue-rotate(133deg) brightness(93%) contrast(89%);
}
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav a {
  font-size: 14px;
  font-weight: 700;
}
.primary-nav a:not(.nav-cta):hover { color: var(--teal); }
.primary-nav a.active:not(.nav-cta) { color: var(--teal); }
.nav-cta {
  padding: 12px 19px;
  color: white;
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(232, 108, 87, .25);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  width: min(1240px, calc(100% - 48px));
  min-height: 690px;
  margin: auto;
  padding: 56px 0 88px;
}
.hero::before {
  position: absolute;
  z-index: -1;
  top: -30px;
  left: -8vw;
  width: 420px;
  height: 420px;
  background: #eef1dd;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  opacity: .55;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, blockquote {
  font-family: "Playfair Display", serif;
  line-height: 1.04;
  letter-spacing: -.035em;
}
h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(54px, 6vw, 82px);
}
h1 em { color: var(--teal); font-weight: 700; }
.hero-lede {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(232, 108, 87, .25);
}
.button-primary:hover { background: #d85c48; box-shadow: 0 16px 32px rgba(232, 108, 87, .3); }
.button-dark { color: white; background: var(--ink); }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}
.hero-proof {
  display: flex;
  gap: 30px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-size: 21px; line-height: 1.2; }
.hero-proof span { color: var(--muted); font-size: 12px; font-weight: 600; }
.hero-visual { position: relative; padding: 18px 18px 50px 44px; }
.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: .87;
  background: var(--sage);
  border-radius: 220px 220px 32px 32px;
  box-shadow: var(--shadow);
}
.hero-photo::after {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  content: "";
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  left: 0;
  bottom: 3px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 20px 15px 14px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(23, 37, 38, .18);
}
.floating-card p { margin: 0; font-size: 13px; line-height: 1.4; }
.floating-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}
.brand-stitch {
  position: absolute;
  right: -8px;
  top: 110px;
  padding: 9px 14px;
  color: white;
  background: var(--coral);
  border: 2px dashed rgba(255,255,255,.65);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  transform: rotate(5deg);
}
.trust-strip {
  padding: 26px max(24px, calc((100vw - 1240px) / 2));
  color: white;
  background: var(--forest);
}
.trust-strip p {
  margin-bottom: 12px;
  color: #bbd2cc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.trust-strip div { display: flex; justify-content: space-around; gap: 28px; }
.trust-strip span { font-family: "Playfair Display", serif; font-size: clamp(16px, 2vw, 22px); }

.section {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding: 118px 0;
}
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
h2 { margin-bottom: 22px; font-size: clamp(42px, 5vw, 64px); }
.section-heading > p:last-child { color: var(--muted); font-size: 19px; }
.savings { width: 100%; padding-right: max(24px, calc((100vw - 1180px) / 2)); padding-left: max(24px, calc((100vw - 1180px) / 2)); background: var(--cream); }
.savings-layout { display: grid; grid-template-columns: 1.45fr .55fr; gap: 72px; align-items: center; }
.savings-card {
  padding: clamp(26px, 4vw, 48px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(37, 62, 57, .08);
}
.card-label { margin-bottom: 28px; color: var(--teal); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.time-comparison { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.time { display: flex; flex-direction: column; gap: 4px; }
.time > span { font-weight: 800; }
.time strong { font-size: clamp(30px, 4vw, 50px); line-height: 1.15; letter-spacing: -.05em; }
.time strong span { font-size: .42em; letter-spacing: 0; }
.time small { color: var(--muted); }
.old-time strong { color: #818b89; text-decoration: line-through; text-decoration-thickness: 2px; }
.new-time strong { color: var(--teal); }
.arrow { color: var(--coral); font-size: 32px; }
.savings-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(8, 123, 120, .16);
  border-radius: 16px;
}
.savings-result div { display: flex; flex-direction: column; padding: 20px 24px; background: #e9f5f2; }
.savings-result strong { color: var(--teal); font-size: 25px; }
.savings-result span { color: var(--muted); font-size: 12px; font-weight: 700; }
.fine-print { margin: 20px 0 0; color: #75817f; font-size: 11px; }
.big-stat { color: var(--coral); font-size: clamp(80px, 10vw, 132px); font-weight: 800; line-height: .8; letter-spacing: -.09em; }
.big-stat span { font-size: .45em; }
.savings-copy h3 { margin: 24px 0 16px; font-family: "Playfair Display", serif; font-size: 31px; line-height: 1.12; }
.savings-copy p { color: var(--muted); }

.demo { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(60px, 8vw, 110px); }
.demo-image { position: relative; }
.demo-image img { width: 100%; aspect-ratio: .94; object-fit: cover; border-radius: 220px 220px 24px 24px; }
.photo-caption {
  position: absolute;
  right: -35px;
  bottom: 28px;
  max-width: 230px;
  padding: 20px;
  color: white;
  background: var(--forest);
  border-radius: 15px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.steps { margin: 42px 0 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 50px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--coral); font-size: 13px; font-weight: 800; }
.steps strong { font-size: 21px; }
.steps p { margin: 3px 0 0; color: var(--muted); }

.features { width: 100%; padding-right: max(24px, calc((100vw - 1180px) / 2)); padding-left: max(24px, calc((100vw - 1180px) / 2)); background: #e8f1ec; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid article { min-height: 245px; padding: 30px; background: rgba(255,255,255,.72); border: 1px solid rgba(33, 78, 71, .1); border-radius: 20px; }
.feature-grid h3, .org-card h3 { margin: 17px 0 9px; font-family: "Playfair Display", serif; font-size: 24px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  font-size: 21px;
}
.feature-grid .feature-highlight { color: white; background: var(--forest); }
.feature-grid .feature-highlight p { color: #c4d6d1; }
.feature-highlight .feature-icon { color: var(--ink); background: var(--yellow); }

.organizations .section-heading { max-width: 850px; }
.org-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.org-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 430px;
  padding: 32px;
  color: white;
  background: var(--forest);
  border-radius: var(--radius);
  isolation: isolate;
}
.org-card::before, .org-card::after { position: absolute; inset: 0; z-index: -2; content: ""; }
.org-care::before { background: linear-gradient(180deg, transparent 0%, rgba(16,42,39,.96) 82%), url("assets/resident-green-plaid.webp") center/cover; }
.org-school::before { background: linear-gradient(180deg, transparent 0%, rgba(16,42,39,.96) 82%), url("assets/bailey-tan-coat.webp") center/cover; }
.org-camp::before { background: linear-gradient(180deg, transparent 0%, rgba(16,42,39,.96) 82%), url("assets/winter-caregiver.webp") center/cover; }
.org-card::after { z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.1)); }
.org-number { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 800; }
.org-card p { margin: 0; color: #d4e1de; font-size: 15px; }
.org-card h3 { font-size: 27px; }

.custom {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--teal);
}
.custom .eyebrow { color: var(--yellow); }
.custom-copy > p:not(.eyebrow) { color: #d4efec; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; font-size: 15px; font-weight: 700; }
.check-list li::before { position: absolute; left: 0; color: var(--yellow); content: "✓"; }
.custom-visual { position: relative; }
.custom-visual > img { width: 100%; border: 11px solid rgba(255,255,255,.18); border-radius: 220px 220px 26px 26px; }
.embroidery-sample {
  position: absolute;
  right: -35px;
  bottom: -28px;
  display: flex;
  flex-direction: column;
  width: 145px;
  height: 145px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border: 4px dashed var(--paper);
  border-radius: 50%;
  line-height: 1.05;
  transform: rotate(-7deg);
}
.embroidery-sample span, .embroidery-sample small { font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.embroidery-sample strong { font-size: 26px; }

.story { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.story-photo { position: relative; padding: 20px 0 20px 20px; }
.story-photo::before { position: absolute; z-index: -1; inset: 0 45px 0 0; background: var(--yellow); border-radius: 40% 40% 20px 20px; content: ""; transform: rotate(-3deg); }
.story-photo img { width: 100%; border-radius: 40% 40% 18px 18px; }
.story blockquote { margin: 0 0 28px; color: var(--forest); font-size: clamp(38px, 4.4vw, 60px); }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

.quote {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 8vw, 100px);
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}
.quote-intro { position: sticky; top: 40px; align-self: start; }
.quote-intro > p:not(.eyebrow) { color: var(--muted); }
.quote-contact { display: flex; flex-direction: column; margin-top: 36px; }
.quote-contact span { color: var(--muted); font-size: 13px; font-weight: 700; }
.quote-contact a { color: var(--teal); font-family: "Playfair Display", serif; font-size: 25px; font-weight: 700; }
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(33, 78, 71, .08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid #cfd6d3;
  border-radius: 9px;
  outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8, 123, 120, .12); }
.form-submit { align-self: flex-start; margin-top: 5px; }
.form-submit:disabled { cursor: wait; opacity: .7; transform: none; }
.form-note { margin: -8px 0 0; color: var(--muted); font-size: 11px; }
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-error {
  padding: 15px;
  color: #7d2318;
  background: #fae2dc;
  border-radius: 9px;
  font-weight: 700;
}
.form-success {
  padding: 34px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 18px;
  text-align: center;
}
.form-success:focus { outline: 3px solid rgba(8, 123, 120, .2); outline-offset: 4px; }
.form-success h3 {
  margin: 14px 0 7px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
}
.form-success p { margin: 0; color: var(--muted); }
.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: auto;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 800;
}
.quote-form.is-submitted > :not(.form-success) { display: none; }

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 30px;
  color: white;
  background: var(--ink);
}
.footer-brand img { filter: invert(1); }
.footer-brand p { max-width: 390px; margin-top: 20px; color: #afbfbd; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links div { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { margin-bottom: 7px; color: var(--yellow); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: #dce5e3; }
.footer-bottom { display: flex; grid-column: 1 / -1; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); color: #91a3a0; font-size: 12px; }

.page-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(55px, 8vw, 110px);
  width: min(1240px, calc(100% - 48px));
  min-height: 650px;
  align-items: center;
  margin: auto;
  padding: 65px 0 100px;
}
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 6vw, 78px);
}
.page-hero > div > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}
.page-hero > img {
  width: 100%;
  aspect-ratio: .86;
  object-fit: cover;
  border-radius: 220px 220px 26px 26px;
  box-shadow: var(--shadow);
}
.partner-hero .button { margin-top: 16px; }
.editorial {
  display: grid;
  grid-template-columns: .25fr 1.05fr .8fr;
  gap: 48px;
  align-items: start;
}
.editorial-number {
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
}
.editorial h2 { font-size: clamp(40px, 4.4vw, 58px); }
.editorial-copy { padding-top: 28px; color: var(--muted); font-size: 18px; }
.mission-band {
  padding: 100px max(24px, calc((100vw - 1020px) / 2));
  color: white;
  background: var(--forest);
  text-align: center;
}
.mission-band .eyebrow, .cta-band .eyebrow { color: var(--yellow); }
.mission-band blockquote {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(40px, 5vw, 66px);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.values-grid article {
  min-height: 250px;
  padding: 30px;
  background: var(--cream);
  border-radius: 20px;
}
.values-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}
.values-grid h3 {
  margin: 38px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 27px;
}
.values-grid p { color: var(--muted); font-size: 15px; }
.manufacturing {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}
.manufacturing-visual {
  padding: 25px;
  background: var(--sage);
  border-radius: 220px 220px 25px 25px;
}
.manufacturing-visual img {
  width: 100%;
  border-radius: 200px 200px 18px 18px;
}
.manufacturing > div:last-child > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}
.credential-list p {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.credential-list span { color: var(--teal); font-weight: 800; }
.cta-band {
  padding: 110px max(24px, calc((100vw - 920px) / 2));
  color: white;
  background: var(--teal);
  text-align: center;
}
.cta-band h2 { max-width: 900px; margin-right: auto; margin-left: auto; }
.cta-band .button { margin-top: 14px; }

.story-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  width: min(1240px, calc(100% - 48px));
  min-height: 720px;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  margin: auto;
  padding: 60px 0 100px;
}
.story-hero-image {
  padding: 22px 0 22px 22px;
  background: var(--yellow);
  border-radius: 230px 230px 24px 24px;
}
.story-hero-image img {
  width: 100%;
  aspect-ratio: .8;
  object-fit: cover;
  border-radius: 210px 210px 18px 18px;
}
.story-hero-copy > p:not(.eyebrow) { color: var(--muted); font-size: 20px; }
.story-reading {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  max-width: 1020px;
}
.story-reading aside {
  position: sticky;
  top: 45px;
  display: flex;
  flex-direction: column;
  align-self: start;
  padding-top: 10px;
}
.story-reading aside span {
  color: var(--coral);
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-style: italic;
}
.story-reading aside strong { margin-top: 8px; color: var(--muted); font-size: 13px; letter-spacing: .08em; line-height: 1.7; text-transform: uppercase; }
.story-reading article { color: var(--muted); font-size: 19px; line-height: 1.85; }
.story-reading .dropcap::first-letter {
  float: left;
  margin: 8px 8px 0 0;
  color: var(--forest);
  font-family: "Playfair Display", serif;
  font-size: 76px;
  font-weight: 700;
  line-height: .72;
}
.story-reading blockquote {
  margin: 55px 0;
  padding: 0 0 0 32px;
  color: var(--forest);
  border-left: 5px solid var(--yellow);
  font-size: clamp(34px, 4vw, 50px);
}
.story-signoff { color: var(--teal); font-family: "Playfair Display", serif; font-size: 28px; font-style: italic; }
.ladybug {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding-right: max(24px, calc((100vw - 1050px) / 2));
  padding-left: max(24px, calc((100vw - 1050px) / 2));
  background: var(--cream);
}
.ladybug > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.logo-shield {
  display: grid;
  min-height: 360px;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
}
.logo-shield img { width: 75%; filter: invert(12%) sepia(9%) saturate(1292%) hue-rotate(133deg) brightness(93%) contrast(89%); }
.lesson-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lesson-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.lesson-grid strong { color: var(--coral); font-size: 13px; }
.lesson-grid h3 { margin: 55px 0 12px; font-family: "Playfair Display", serif; font-size: 25px; }
.lesson-grid p { color: var(--muted); font-size: 15px; }

.partner-benefits { width: 100%; padding-right: max(24px, calc((100vw - 1180px) / 2)); padding-left: max(24px, calc((100vw - 1180px) / 2)); background: var(--forest); color: white; }
.partner-benefits .eyebrow { color: var(--yellow); }
.benefit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: rgba(255,255,255,.18); border-radius: 20px; }
.benefit-row article { display: flex; flex-direction: column; padding: 34px; background: #2c5b54; }
.benefit-row strong { color: var(--yellow); font-family: "Playfair Display", serif; font-size: 44px; }
.benefit-row span { color: #cee0dc; font-size: 14px; }
.partner-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.partner-cards article {
  min-height: 280px;
  padding: 34px;
  background: var(--cream);
  border-radius: 20px;
}
.partner-cards article > span { color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.partner-cards h3 { margin: 38px 0 10px; font-family: "Playfair Display", serif; font-size: 29px; }
.partner-cards p { color: var(--muted); }
.partner-cards a { color: var(--teal); font-weight: 800; }
.partner-cards .partner-card-cta { color: white; background: var(--teal); }
.partner-cards .partner-card-cta > span, .partner-cards .partner-card-cta a { color: var(--yellow); }
.partner-cards .partner-card-cta p { color: #d2ebe7; }
.partner-process {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: var(--sage);
}
.partner-process ol { margin: 0; padding: 0; list-style: none; }
.partner-process li { display: grid; grid-template-columns: 55px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid rgba(33,78,71,.18); }
.partner-process li:last-child { border-bottom: 1px solid rgba(33,78,71,.18); }
.partner-process li > span { color: var(--coral); font-size: 13px; font-weight: 800; }
.partner-process h3 { margin-bottom: 5px; font-family: "Playfair Display", serif; font-size: 23px; }
.partner-process p { margin: 0; color: var(--muted); }

.contact-page {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 8vw, 110px);
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding: 90px 0 120px;
}
.contact-intro h1 { font-size: clamp(52px, 6vw, 76px); }
.contact-intro > p:not(.eyebrow) { color: var(--muted); font-size: 19px; }
.contact-points { margin-top: 45px; }
.contact-points p { display: flex; flex-direction: column; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-points p:last-child { border-bottom: 1px solid var(--line); }
.contact-points span { color: var(--muted); font-size: 14px; }
.contact-faq { width: 100%; padding-right: max(24px, calc((100vw - 1000px) / 2)); padding-left: max(24px, calc((100vw - 1000px) / 2)); background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-grid details { padding: 22px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.faq-grid summary { font-family: "Playfair Display", serif; font-size: 21px; font-weight: 700; cursor: pointer; }
.faq-grid p { margin: 14px 0 0; color: var(--muted); font-size: 15px; }

@media (max-width: 980px) {
  .site-header { min-height: 76px; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
  }
  .menu-toggle span:not(.sr-only) { width: 23px; height: 2px; background: var(--ink); transition: .2s; }
  .primary-nav {
    position: absolute;
    top: 76px;
    left: 0;
    display: none;
    width: 100%;
    padding: 24px;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; flex-direction: column; }
  .primary-nav a { font-size: 16px; }
  .nav-cta { text-align: center; }
  .hero { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero-proof { gap: 16px; }
  .savings-layout { grid-template-columns: 1fr; gap: 48px; }
  .savings-copy { max-width: 560px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .org-grid { grid-template-columns: 1fr; }
  .org-card { min-height: 350px; }
  .custom, .quote { grid-template-columns: 1fr; }
  .custom-visual { max-width: 500px; margin: auto; }
  .quote-intro { position: static; }
  .page-hero, .story-hero { grid-template-columns: 1fr 1fr; gap: 35px; }
  .editorial { grid-template-columns: .15fr 1fr; }
  .editorial-copy { grid-column: 2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .partner-process { grid-template-columns: 1fr; gap: 30px; }
  .contact-page { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .announcement { font-size: 10px; }
  .site-header, .hero, .section { width: min(100% - 32px, 1180px); }
  .brand img { width: 130px; }
  .hero { grid-template-columns: 1fr; padding: 54px 0 72px; }
  h1 { font-size: clamp(49px, 15vw, 68px); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-proof { justify-content: space-between; }
  .hero-visual { max-width: 520px; padding-left: 20px; }
  .brand-stitch { right: 0; }
  .trust-strip div { display: grid; grid-template-columns: 1fr 1fr; text-align: center; }
  .section { padding-top: 86px; padding-bottom: 86px; }
  .savings, .features, .custom, .quote { width: 100%; }
  .time-comparison { gap: 10px; }
  .time strong { font-size: 27px; }
  .arrow { font-size: 22px; }
  .savings-result { grid-template-columns: 1fr; }
  .demo, .story { grid-template-columns: 1fr; }
  .photo-caption { right: -5px; }
  .feature-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .embroidery-sample { right: 0; }
  .story-photo { max-width: 500px; }
  .field-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px 18px; }
  .form-submit { width: 100%; }
  .footer { grid-template-columns: 1fr; }
  .page-hero, .story-hero, .manufacturing, .credentials, .ladybug { grid-template-columns: 1fr; }
  .page-hero, .story-hero, .contact-page { width: min(100% - 32px, 1180px); padding-top: 50px; }
  .page-hero > img, .story-hero-image { max-width: 500px; }
  .editorial { grid-template-columns: 1fr; gap: 15px; }
  .editorial-copy { grid-column: auto; padding-top: 0; }
  .values-grid, .lesson-grid, .benefit-row, .partner-cards, .faq-grid { grid-template-columns: 1fr; }
  .story-reading { grid-template-columns: 1fr; }
  .story-reading aside { position: static; }
  .logo-shield { min-height: 300px; }
  .partner-process { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
