

:root {
  --c-bg: #fbf5ec;
  --c-fg: #241b12;
  --c-muted: #8a7a66;
  --c-accent: #b5502f;
  --c-bg-alt: #241b12;
  --c-fg-alt: #f3e9da;
  --c-border: #e3d7c3;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 24px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --z-base: 0;
  --z-header: 10;
  --z-overlay: 100;
  --z-modal: 1000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-fg);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.15vw, 1.08rem);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--space-3);
}

@media (min-width: 1025px) {
  .container {
    padding-inline: var(--space-4);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.img-placeholder {
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    #e9dcc6,
    #e9dcc6 12px,
    #ddcdb0 12px,
    #ddcdb0 24px
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder span {
  background: rgba(36, 27, 18, 0.72);
  color: var(--c-fg-alt);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
}

.icon {
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.icon-key { -webkit-mask-image: url("icons/key.svg"); mask-image: url("icons/key.svg"); }
.icon-leaf { -webkit-mask-image: url("icons/leaf.svg"); mask-image: url("icons/leaf.svg"); }
.icon-bell { -webkit-mask-image: url("icons/bell.svg"); mask-image: url("icons/bell.svg"); }
.icon-shield { -webkit-mask-image: url("icons/shield.svg"); mask-image: url("icons/shield.svg"); }
.icon-calendar { -webkit-mask-image: url("icons/calendar.svg"); mask-image: url("icons/calendar.svg"); }
.icon-star { -webkit-mask-image: url("icons/star.svg"); mask-image: url("icons/star.svg"); }
.icon-check { -webkit-mask-image: url("icons/check.svg"); mask-image: url("icons/check.svg"); }
.icon-phone { -webkit-mask-image: url("icons/phone.svg"); mask-image: url("icons/phone.svg"); }
.icon-mail { -webkit-mask-image: url("icons/mail.svg"); mask-image: url("icons/mail.svg"); }
.icon-location { -webkit-mask-image: url("icons/location.svg"); mask-image: url("icons/location.svg"); }
.icon-chevron-down { -webkit-mask-image: url("icons/chevron-down.svg"); mask-image: url("icons/chevron-down.svg"); }
.icon-arrow-right { -webkit-mask-image: url("icons/arrow-right.svg"); mask-image: url("icons/arrow-right.svg"); }
.icon-quote { -webkit-mask-image: url("icons/quote.svg"); mask-image: url("icons/quote.svg"); }
.icon-close { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); }

.icon--sm {
  width: 16px;
  height: 16px;
}

.site-header {
  position: relative;
  z-index: var(--z-header);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  padding-block: var(--space-2);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.brand__mark {
  width: 40px;
  height: 40px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-fg);
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--c-accent);
  color: var(--c-fg-alt);
}

.btn-outline {
  background: transparent;
  border-color: var(--c-fg);
  color: var(--c-fg);
}

.btn-outline.on-dark {
  border-color: var(--c-fg-alt);
  color: var(--c-fg-alt);
}

.btn .icon {
  width: 16px;
  height: 16px;
}

.site-footer {
  background: var(--c-bg-alt);
  color: var(--c-fg-alt);
}

.site-footer .container {
  padding-block: var(--space-5) var(--space-3);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer-brand .brand__name {
  color: var(--c-fg-alt);
}

.footer-brand p {
  margin-top: var(--space-2);
  color: #c9bba7;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9bba7;
  margin-bottom: var(--space-2);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-col a {
  color: #e9ddc9;
}

.footer-col a:hover {
  color: var(--c-accent);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-1);
  color: #e9ddc9;
}

.footer-contact .icon {
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #3a2d1c;
}

.footer-bottom .container {
  padding-block: var(--space-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-1);
  grid-template-columns: none;
}

.footer-bottom p {
  color: #a7967e;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #a7967e;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--c-accent);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .site-footer .container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer .container {
    grid-template-columns: 1fr;
  }
  .brand__name {
    font-size: 1.2rem;
  }
}
.img-placeholder > span { color: #928d89 !important; }
.product-price > span { color: #c47359 !important; }
.case-study-stats span { color: #928d89 !important; }
.case-study-byline { color: #7c6e5c !important; }
.testimonial-person span { color: #928d89 !important; }
.partner-name { color: #928d89 !important; }
.pricing-card > h3 { color: #6d6962 !important; }
.pricing-amount > span { color: #c47359 !important; }
.pricing-card .pricing-desc { color: #7c6e5c !important; }
.pricing-features > li { color: #6d6962 !important; }
.pricing-card--featured > h3 { color: #6d6962 !important; }
.blog-tag { color: #c47359 !important; }
.contact-info-item a { color: #928d89 !important; }
.contact-info-item span { color: #928d89 !important; }
.contact-form .form-note { color: #7c6e5c !important; }

.page-hero { padding-block: var(--space-6); }
.page-body { padding-block: var(--space-6); }
.hero { padding-block: var(--space-6); }



.product-price > span { color: #c47359 !important; }
.case-study-stats span { color: #928d89 !important; }
.case-study-byline { color: #7c6e5c !important; }
.testimonial-person span { color: #928d89 !important; }
.partner-name { color: #928d89 !important; }
.pricing-card > h3 { color: #6d6962 !important; }
.pricing-amount > span { color: #c47359 !important; }
.pricing-card .pricing-desc { color: #7c6e5c !important; }
.pricing-features > li { color: #6d6962 !important; }
.pricing-card--featured > h3 { color: #6d6962 !important; }
.blog-tag { color: #c47359 !important; }
.contact-info-item a { color: #928d89 !important; }
.contact-info-item span { color: #928d89 !important; }
.contact-form .form-note { color: #7c6e5c !important; }



/* wh-elem-contrast */
/* Auto: element text failed 4.5:1 against its resolved background. */
.eyebrow { color: #c47359 !important; }
.lede { color: #7c6e5c !important; }
.timeline-year { color: #c47359 !important; }
.cookie-banner__btn--text { color: #6d6962 !important; }
.cookie-panel .cookie-panel__intro { color: #7c6e5c !important; }
.capability-num { color: #c47359 !important; }
.showcase-caption { color: #7c6e5c !important; }
.section--alt .lede { color: #968775 !important; }
.product-price > span { color: #c47359 !important; }
.case-study-stats span { color: #928d89 !important; }
.case-study-byline { color: #7c6e5c !important; }
.testimonial-person span { color: #928d89 !important; }
.partner-name { color: #928d89 !important; }
.pricing-card > h3 { color: #6d6962 !important; }
.pricing-amount > span { color: #c47359 !important; }
.pricing-card .pricing-desc { color: #7c6e5c !important; }
.pricing-features > li { color: #6d6962 !important; }
.pricing-card--featured > h3 { color: #6d6962 !important; }
.blog-tag { color: #c47359 !important; }
.contact-info-item a { color: #928d89 !important; }
.contact-info-item span { color: #928d89 !important; }
.contact-form .form-note { color: #7c6e5c !important; }

/* WH-CONTRAST-VERIFIED:START */
/* Measured in a real browser against the painted background, then re-measured.
   46 selector(s) corrected. */
.container span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.about-block p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.value-item p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.timeline-list span.timeline-year { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.timeline-list p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.cookie-banner__actions button.cookie-banner__btn.cookie-banner__btn--text { color: rgb(243, 233, 218) !important; } /* was #6d6962 at 3.1:1, needs 4.5 — restored the value the page itself declared */
.cookie-banner__actions button.cookie-banner__btn.cookie-banner__btn--primary { color: #f9f4ec !important; } /* was #f3e9da at 4.21:1, needs 4.5 */
.content-block p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.intro-body p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.section.features .container .section-head.section-head--center span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.feature-card p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.section.capabilities .container .section-head span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.capability-item span.capability-num { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.capability-item p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.section.showcase .container .section-head span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.section.products .container .section-head.section-head--center span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.product-body p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.product-body p.product-price { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.product-price span { color: #9f5d48 !important; } /* was #c47359 at 3.26:1, needs 4.5 */
.benefits-copy span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.benefit-row p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.case-study-copy span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.case-study-stats span { color: #726e6b !important; } /* was #928d89 at 3.03:1, needs 4.5 */
.section.testimonials .container .section-head.section-head--center span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.testimonial-person span { color: #726e6b !important; } /* was #928d89 at 3.03:1, needs 4.5 */
.section.faq .container .section-head.section-head--center span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.faq-item p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.section.partners .container .section-head.section-head--center span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.partner-card span.partner-name { color: #726e6b !important; } /* was #928d89 at 3.03:1, needs 4.5 */
.partner-card p { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.pricing-card:not(.pricing-card--featured) .pricing-amount span { color: #9f5d48 !important; } /* was #c47359 at 3.26:1, needs 4.5 */
.pricing-card.pricing-card--featured span.pricing-tag { color: #f9f4ec !important; } /* was #f3e9da at 4.21:1, needs 4.5 */
.pricing-card.pricing-card--featured p.pricing-desc { color: #908474 !important; } /* was #7c6e5c at 3.42:1, needs 4.5 */
.pricing-card.pricing-card--featured .pricing-features li { color: #898680 !important; } /* was #6d6962 at 3.1:1, needs 4.5 */
.pricing-card.pricing-card--featured a.btn.btn-primary { color: #f9f4ec !important; } /* was #f3e9da at 4.21:1, needs 4.5 */
.pricing-card a.btn.btn-outline.on-dark { color: #726e66 !important; } /* was #f3e9da at 1.11:1, needs 4.5 */
.section.blog .container .section-head.section-head--center span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.blog-card span.blog-tag { color: #a9634d !important; } /* was #c47359 at 3.53:1, needs 4.5 */
.blog-card p { color: #827360 !important; } /* was #8a7a66 at 4.15:1, needs 4.5 */
.contact-copy span.eyebrow { color: rgb(181, 80, 47) !important; } /* was #c47359 at 3.26:1, needs 4.5 — restored the value the page itself declared */
.contact-info-item strong { color: #7b6d5b !important; } /* was #8a7a66 at 3.83:1, needs 4.5 */
.contact-info-item a { color: #726e6b !important; } /* was #928d89 at 3.03:1, needs 4.5 */
.contact-form button.btn.btn-primary { color: #f9f4ec !important; } /* was #f3e9da at 4.21:1, needs 4.5 */
.section.section--alt.how-it-works .container .section-head.section-head--center span.eyebrow { color: #c27054 !important; } /* was #b5502f at 3.35:1, needs 4.5 (round 2) */
.section.section--alt.metrics .container .section-head.section-head--center span.eyebrow { color: #c27054 !important; } /* was #b5502f at 3.35:1, needs 4.5 (round 2) */
.section.section--alt.pricing .container .section-head.section-head--center span.eyebrow { color: #c27054 !important; } /* was #b5502f at 3.35:1, needs 4.5 (round 2) */
/* WH-CONTRAST-VERIFIED:END */
