:root {
  --ink-light: #ffffff;
  --ink-inverse: #2a3228;
  --ink-page: #1f6f4a;
  --delay-soft: ease;
  --surface-deep: #1c231b;
}
body{margin:0;padding:0;font-family:"Space Grotesk", sans-serif;box-sizing:border-box;}
*,*::before,*::after{box-sizing:border-box;}
.service-quote {
    width: 100%;
    background: #16301f;
    color: #f4f7f2;
    border-bottom: 1px solid #d6dccf;
  }
.clear-story {
    max-width: 1560px;
    margin: 0 auto;
    padding: 1.5rem 2.11rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.26rem;
  }
.page-proof {
    font-size: calc(19px * 1.125);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #f4f7f2;
    text-decoration: none;
    white-space: nowrap;
  }
.page-proof:hover {
    color: #c9a227;
  }
.fresh-content {
    justify-self: start;
  }
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: calc(2.26rem * 1.25);
  }
.nav-list a {
    display: inline-block;
    padding: 0.35rem 0.15rem;
    font-size: 19px;
    color: #f4f7f2;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 280ms var(--delay-soft),
                border-color 280ms var(--delay-soft);
  }
.nav-list a:hover {
    color: #c9a227;
    border-bottom-color: #c9a227;
  }
.public-media {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 2.26rem;
  }
.fresh-copy {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    font-size: calc(19px * .875);
    font-weight: 600;
    color: #f4f7f2;
    background: var(--ink-page);
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 1px 8px rgba(0,0,0,0.13);
    transition: background 280ms var(--delay-soft);
  }
.fresh-copy:hover{
    background: #185a3c;color:var(--surface-deep);}
.open-region {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 1px solid #f4f7f2;
    border-radius: 0.34rem;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
.benefit{
    display: block;
    width: 20px;
    height: 2px;
    background: #f4f7f2;
    border-radius: 2px;color:var(--surface-deep);}
@media (max-width: 900px) {
    .clear-story {
      grid-template-columns: auto auto;
      grid-template-areas:
        "logo cta"
        "nav nav";
      row-gap: calc(2.26rem * 1.5);
    }

    .page-proof { grid-area: logo; }
    .public-media { grid-area: cta; }

    .fresh-content {
      grid-area: nav;
      justify-self: stretch;
      display: none;
    }

    .fresh-content.is-open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.25rem;
      padding-top: calc(2.26rem * 1.5);
      border-top: 1px solid #d6dccf;
    }

    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.6rem 0;
      border-bottom: 1px solid #d6dccf;
    }

    .nav-list a:hover {
      border-bottom-color: #c9a227;
    }

    .open-region {
      display: flex;
    }
  }
@media (max-width: 480px) {
    .fresh-copy {
      display: none;
    }
  }
.contact-team{font-family:"Space Grotesk", sans-serif;font-size:19px;line-height:1.67;width:100%;padding:0;background:#16301f;color:#f4f7f2;}
.featured-quote{max-width:1560px;margin:0 auto;padding:calc(1.5rem * 2.4) 2.11rem}
.offer-header{display:grid;grid-template-columns:1.4fr 1fr 1.2fr 1fr;gap:2.26rem;align-items:start}
.signal{display:flex;flex-direction:column;gap:calc(2.26rem * 1.5)}
.plain-region{font-size:calc(19px * 1.125);font-weight:700;letter-spacing:0.02em;margin:0}
.top-details{margin:0;font-size:calc(19px * .875);max-width:34ch}
.public-panel{font-size:calc(19px * .875);font-weight:600;text-transform:uppercase;letter-spacing:0.08em;margin:0 0 calc(2.26rem * 1.5) 0}
.text-track{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.5rem}
.text-track li{margin:0}
.text-track a{color:inherit;text-decoration:none;font-size:calc(19px * .875);border-bottom:1px solid transparent;transition:border-color 280ms var(--delay-soft)}
.text-track a:hover,
  .text-track a:focus-visible{border-bottom-color:currentColor;outline:none;color:inherit}
.narrow-actions{font-style:normal;font-size:calc(19px * .875);display:flex;flex-direction:column;gap:0.4rem}
.narrow-actions p{margin:0}
.narrow-actions a{color:inherit;text-decoration:none;border-bottom:1px solid transparent;transition:border-color 280ms var(--delay-soft)}
.narrow-actions a:hover,
  .narrow-actions a:focus-visible{border-bottom-color:currentColor;outline:none;color:inherit}
.bottom-actions{margin-top:calc(1.5rem * 2.4);padding-top:calc(2.26rem * 1.5);border-top:1px solid currentColor;font-size:calc(19px * .875);max-width:90ch}
.bottom-actions p{margin:0}
.team-group{margin-top:calc(2.26rem * 1.5);font-size:calc(19px * .875)}
.team-group p{margin:0}
@media (max-width: 960px) {.offer-header{grid-template-columns:1fr 1fr}
  }
@media (max-width: 600px) {.offer-header{grid-template-columns:1fr;gap:calc(2.26rem * 1.5)}.featured-quote{padding:calc(1.5rem * 2.4) 2.11rem}
  }
footer,footer *{border-radius:0!important;}
.cookies{position:fixed;left:0;right:0;bottom:0;z-index:1200}
.cookies .fresh-grid{display:flex;flex-wrap:wrap;gap:2.26rem;align-items:center;max-width:1560px;margin:0 auto;padding:1.5rem 2.11rem;background:linear-gradient(120deg, #c9a227 0%, #e0c25a 100%);color:#1a1408;box-shadow:0 20px 40px rgba(0,0,0,0.21)}
.cookies .fresh-grid>*{min-width:0;flex:1 1 12rem}
.cookies strong{font-size:calc(19px * 1.35);line-height:1.12}
.cookies p{margin:0;line-height:1.67}
.cookies .featured-form{display:flex;gap:calc(1.5rem * .75);flex-wrap:wrap;justify-content:flex-end}
.cookies .featured-form>*{min-width:0;flex:1 1 10rem}
.cookies button{border:1px solid color-mix(in srgb,currentColor 28%,transparent);border-radius:0.34rem;background:transparent;color:inherit;font:inherit;padding:calc(1.5rem * .75) 1.5rem;cursor:pointer}
.cookies button.cookie-accept{background:#c9a227;color:#1a1408;border-color:#c9a227}
@media(max-width:820px){.cookies .fresh-grid{display:block}.cookies p,.cookies .featured-form{margin-top:1.5rem;justify-content:flex-start}}
.focused-benefit{
  --state-strong:calc(1.5rem * 0.95);
  --field-active:calc(1560px / 2.15);
  padding:calc(1.5rem * 2.4) 2.11rem;
  background:var(--ink-page);
  color:#f4f7f2;
}
.focused-benefit .local-block{max-width:1560px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:calc(2.26rem * 1.5);}
.focused-benefit h1,
.focused-benefit p{margin:0;}
.focused-benefit h1{font-size:calc(19px * 2.65);
  line-height:1.08;}
.focused-benefit .top-note{font-size:calc(19px * 1.125);
  line-height:1.67;
  color:color-mix(in srgb, currentColor 82%, transparent);
  max-width:var(--field-active);}
.focused-benefit .wide-menu{display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:2.26rem;
  padding-top:1.5rem;
  border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);}
.focused-benefit .fresh-unit{flex:1 1 320px;
  font-size:19px;
  line-height:1.67;
  color:color-mix(in srgb, currentColor 74%, transparent);}
.focused-benefit .strong-links{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  padding:calc(1.5rem * .75) 1.5rem;
  border-radius:0.34rem;
  background:#f4f7f2;
  color:var(--ink-page);
  text-decoration:none;
  font-size:19px;
  transition:background 280ms var(--delay-soft),color 280ms var(--delay-soft);
}
.focused-benefit .strong-links:hover{
  background:#c9a227;
  color:#1a1408;
}
.focused-benefit .primary-section{font-size:calc(19px * .875);
  line-height:1.67;
  color:color-mix(in srgb, currentColor 66%, transparent);
  max-width:var(--field-active);}
@media (max-width:640px){.focused-benefit h1{}.focused-benefit .top-note,
  .focused-benefit .primary-section{
    max-width:none;
  }
}
.local-steps{
  padding: calc(1.5rem * 2.4) 2.11rem;
  background: #16301f;
  color: #f4f7f2;
}
.local-steps .local-block{max-width: min(1560px, 74rem);
  margin: 0 auto;}
.local-steps .offer h2{margin: 0;
  font-size: calc(19px * 2);
  line-height: 1.1;}
.local-steps .primary-shell{margin: calc(1.5rem * .75) 0 calc(2.26rem * 1.5);
  font-size: calc(19px * 1.125);
  color: #c8cfc4;}
.local-steps .offer-area{display: flex;
  flex-wrap: wrap;
  gap: 2.26rem;}
.local-steps .offer-form{flex: 1 1 min(100%, 22rem);
  padding: calc(1.5rem * .75) 0 calc(1.5rem * .75) calc(1.5rem * .75);
  border-left: 2px solid #c9a227;}
.local-steps .plain-unit{margin: 0 0 calc(calc(1.5rem * .75) * .8);
  font-size: 19px;
  line-height: 1.55;}
.local-steps .primary-header{display: flex;
  flex-direction: column;
  gap: 0.2rem;}
.local-steps .wide-entries{font-weight: 700;
  font-size: 19px;}
.local-steps .frame{font-size: calc(19px * .875);
  color: #c8cfc4;}
.local-steps .primary-section{margin: calc(2.26rem * 1.5) 0 0;
  padding-top: calc(1.5rem * .75);
  border-top: 1px solid #2a3228;
  font-size: calc(19px * .875);
  color: #c8cfc4;}
.local-steps .primary-section a{color: #c9a227;
  text-decoration: underline;}
.local-steps .primary-section a:hover{color: #b08d1c;}
@media (max-width: 700px) {.local-steps .offer-area{
    display: block;
  }.local-steps .offer-form + .offer-form{
    margin-top: 2.26rem;
  }
}
.text-body{--state-strong:calc(1.5rem * 1.18);padding:calc(1.5rem * 2.4) 2.11rem;background:#c9a227;color:#1a1408;}
.text-body .local-block{max-width:1560px;margin:0 auto;display:flex;flex-direction:column;gap:var(--state-strong);}
.text-body h2,.text-body h3,.text-body p{margin:0;}
.text-body h2{font-size:calc(19px * 2);line-height:1.14;}
.text-body h3{font-size:calc(19px * 1.35);line-height:1.22;}
.text-body p{font-size:19px;line-height:1.67;}
.text-body a{color:inherit;text-decoration:underline;text-underline-offset:2px;}
.text-body .offer{display:flex;flex-wrap:wrap;gap:2.26rem;align-items:flex-start;}
.text-body .offer>h2{flex:1 1 calc(1560px / 3.2);min-width:0;}
.text-body .offer>.top-note{flex:1 1 calc(1560px / 2.6);min-width:0;}
.text-body .focused-view{display:flex;flex-wrap:wrap;gap:2.26rem;}
.text-body .offer-form{flex:1 1 calc(1560px / 3.6);min-width:0;padding:calc(calc(1.5rem * .75) * .9);border-radius:0.5rem;background:color-mix(in srgb, currentColor 10%, transparent);}
.text-body .offer-form p{margin-top:calc(1.5rem / 3.2);}
.text-body .primary-section{font-size:calc(19px * .875);padding-top:calc(1.5rem / 2);border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);}
.secondary-intro{
        --state-strong: calc(1.5rem * 1.18);
        --type-meta: calc(1560px / 3.4);
        padding: calc(1.5rem * 2.4) 2.11rem;
        background: #16301f;
        color: #f4f7f2;
    }
.secondary-intro .local-block{max-width: 1560px;
        margin: 0 auto;}
.secondary-intro h1, .secondary-intro h2, .secondary-intro h3, .secondary-intro p, .secondary-intro ul{margin: 0;}
.secondary-intro h2{font-size: calc(19px * 2);
        line-height: 1.12;}
.secondary-intro h3{font-size: calc(19px * 1.35);
        line-height: 1.22;}
.secondary-intro p{font-size: 19px;
        line-height: 1.67;}
.secondary-intro a{color: inherit;
        text-decoration: none;}
.secondary-intro .fresh-brand{padding-block: calc(var(--state-strong) / 2);}
.secondary-intro .open-frame{row-gap: calc(var(--state-strong) * 1.1);}
.secondary-intro .row-title{display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 2.26rem;}
.secondary-intro .row-title h2{flex: 1 1 calc(1560px / 3);
        min-width: 0;}
.secondary-intro .row-title > p{flex: 1 1 calc(1560px / 3);
        min-width: 0;}
.secondary-intro .focused-view{flex: 1 1 100%;
        display: flex;
        flex-wrap: wrap;
        gap: var(--state-strong);
        margin-top: var(--state-strong);
        border-top: 1px solid color-mix(in srgb, #f4f7f2 22%, transparent);
        padding-top: var(--state-strong);}
.secondary-intro .offer-form{flex: 1 1 var(--type-meta);
        min-width: 0;}
.secondary-intro .offer-form p{margin-top: calc(1.5rem / 3);}
.secondary-intro .offer-form a{display: inline-flex;
        margin-top: calc(1.5rem / 2);
        padding-bottom: 2px;
        border-bottom: 1px solid color-mix(in srgb, #f4f7f2 45%, transparent);
        opacity: .9;
        transition: opacity 280ms var(--delay-soft), border-color 280ms var(--delay-soft);}
.secondary-intro .offer-form a:hover{opacity: 1;
        border-color: #c9a227;}
@media (max-width: 760px) {.secondary-intro .row-title h2,
        .secondary-intro .row-title > p{
            flex: 1 1 100%;
        }
    }
.soft-intro{padding:calc(1.5rem * 2.4) 2.11rem;background:var(--ink-page);color:#f4f7f2;overflow:hidden}
.soft-intro .local-block{max-width:1560px;margin:0 auto}
.soft-intro .offer{margin:0 0 calc(2.26rem * 1.5)}
.soft-intro h2{margin:0;font-size:calc(19px * 2);line-height:1.1}
.soft-intro .offer p{margin:1.5rem 0 0;font-size:calc(19px * 1.125);line-height:1.67}
.soft-intro .offer-area{display:flex;flex-direction:column;gap:calc(1.5rem * .75)}
.soft-intro .offer-form{padding:1.5rem 0;border-top:1px solid rgba(244,247,242,.18)}
.soft-intro .offer-form:last-child{border-bottom:1px solid rgba(244,247,242,.18)}
.soft-intro strong{display:block;font-size:calc(19px * 1.35);line-height:1.15}
.soft-intro .offer-form p{margin:calc(1.5rem * .75) 0 0;line-height:1.67}
@media (min-width:900px){.soft-intro .offer{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);gap:2.26rem;align-items:end}.soft-intro .offer p{margin:0}.soft-intro .offer-area{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 2.26rem}.soft-intro .offer-form{padding:calc(2.26rem * 1.5) 0}.soft-intro .offer-form:nth-child(3){grid-column:1 / -1}
}
.active-note{--state-strong:calc(1.5rem * 1.04);--field-active:calc(1560px / 2.28);padding:calc(1.5rem * 2.4) 2.11rem;background:#c9a227;color:#1a1408;}
.active-note .local-block{max-width:1560px;margin:0 auto;}
.active-note h2,.active-note h3,.active-note p{margin:0;}
.active-note h2{font-size:calc(19px * 2);line-height:1.12;}
.active-note h3{font-size:calc(19px * 1.35);line-height:1.2;}
.active-note p{font-size:19px;line-height:1.67;color:color-mix(in srgb, currentColor 76%, transparent);}
.active-note .visual-tile{padding-inline-end:calc(calc(1.5rem * .75) / 2);}
.active-note .open-frame{row-gap:calc(var(--state-strong) * 1.2);}
.active-note .top-note{margin-top:1.5rem;max-width:calc(1560px / 2);}
.active-note .quiet-steps{display:flex;flex-direction:column;gap:var(--state-strong);margin-top:var(--state-strong);}
.active-note .offer-form{min-width:0;padding-block-end:calc(var(--state-strong) / 2);border-bottom:1px solid color-mix(in srgb, currentColor 22%, transparent);}
.active-note .offer-form:last-child{border-bottom:0;padding-block-end:0;}
.active-note .offer-form p{margin-top:calc(1.5rem / 3);}
@media (min-width: 720px){.active-note .quiet-steps{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));column-gap:2.26rem;}.active-note .offer-form:nth-last-child(-n+1){border-bottom:0;}
}
.primary-wrap{
  background: #f6f7f3;
  color: #1c231b;
  padding: calc(1.5rem * 2.4) 2.11rem;
}
.primary-wrap .local-block{width: min(100%, 1560px);
  margin: 0 auto;}
.primary-wrap h2,
.primary-wrap p{margin: 0;}
.primary-wrap .offer{display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.26rem;
  margin-bottom: calc(2.26rem * 1.5);}
.primary-wrap h2{font-size: calc(19px * 2);
  line-height: 1.08;
  flex: 1 1 22rem;}
.primary-wrap .offer p{flex: 1 1 26rem;
  color: var(--ink-inverse);
  line-height: 1.67;}
.primary-wrap .wide-note{display: flex;
  flex-wrap: wrap;
  gap: calc(1.5rem * .75);}
.primary-wrap .clear-track{
  flex: 1 1 18rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.88rem;
  background: var(--ink-light);
  color: var(--surface-deep);
  border: 1px solid #d6dccf;
  box-shadow: 0 1px 8px rgba(0,0,0,0.13);
}
.primary-wrap .clear-track:nth-child(3n + 2){
  background: #e8ece3;
  color: var(--ink-inverse);
}
.primary-wrap strong{font-size: calc(19px * 1.35);
  line-height: 1.16;}
.primary-wrap .clear-track p{line-height: 1.67;}
.primary-wrap .clear-track span{margin-top: auto;
  font-size: calc(19px * .875);
  opacity: 0.78;}
@media (max-width: 760px) {.primary-wrap .offer{ flex-direction: column; align-items: flex-start; }.primary-wrap .clear-track{ flex: 1 1 100%; }
}
.visual-links{
  background: linear-gradient(135deg, #16301f 0%, #1f6f4a 55%, #2f8a5e 100%);
  color: #f4f7f2;
  padding: calc(1.5rem * 2.4) 2.11rem;
}
.visual-links .local-block{width: min(100%, 1560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
  gap: 2.26rem;
  align-items: start;}
.visual-links h2,
.visual-links h3,
.visual-links p{margin: 0;}
.visual-links h2{font-size: calc(19px * 2);
  line-height: 1.1;}
.visual-links h3{font-size: calc(19px * 1.35);
  line-height: 1.18;}
.visual-links p{font-size: 19px;
  line-height: 1.67;}
.visual-links .fresh-tile{display: flex;
  flex-direction: column;
  gap: calc(2.26rem * 1.5);
  padding-top: 1.5rem;}
.visual-links .site-summary{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.visual-links [data-block]{
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: calc(1.5rem * .75);
  border-radius: 0.88rem;
  background: var(--ink-light);
  color: var(--surface-deep);
  border: 1px solid #d6dccf;
  box-shadow: 0 1px 8px rgba(0,0,0,0.13);
  animation: peopleCascadeIn calc(280ms * 2.2) var(--delay-soft) both;
  animation-delay: var(--speed-slow, 0ms);
}
.visual-links [data-block] > span{font-size: calc(19px * .875);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-top: .35rem;}
.visual-links [data-block] > div{display: flex;
  flex-direction: column;
  gap: .55rem;}
.visual-links [data-block] a{text-decoration: underline;
  text-underline-offset: 2px;}
.visual-links [data-block] a:hover{}
@keyframes peopleCascadeIn {from{ opacity: .2; transform: translateY(calc(calc(2.26rem * 1) * .16)); }to{ opacity: 1; transform: translateY(0); }
}
@media (max-width: 860px) {.visual-links .local-block{
    grid-template-columns: 1fr;
  }.visual-links .fresh-tile{
    padding-top: 0;
  }.visual-links [data-block]{
    grid-template-columns: 1fr;
    gap: .5rem;
  }.visual-links [data-block] > span{
    padding-top: 0;
  }
}
.content-plan{padding:calc(1.5rem * 2.4) 2.11rem;background:#e8ece3;color:var(--ink-inverse);}
.content-plan .local-block{max-width:1560px;margin:0 auto;display:flex;flex-direction:column;gap:calc(2.26rem * 1.5);}
.content-plan .media-story{display:flex;flex-direction:column;gap:1.5rem;}
.content-plan .media-story h2{margin:0;font-size:calc(19px * 2);line-height:1.2;}
.content-plan .media-story p{margin:0;font-size:19px;}
.content-plan .offer-area{display:flex;flex-direction:column;border-top:1px solid #d6dccf;}
.content-plan .clear-track{display:grid;grid-template-columns:140px 1fr;gap:2.26rem;padding:1.5rem 0;border-bottom:1px solid #d6dccf;}
.content-plan .clear-summary{font-size:calc(19px * .875);letter-spacing:.04em;text-transform:uppercase;background:#c9a227;color:#1a1408;border-radius:0.34rem;padding:4px 10px;align-self:start;justify-self:start;}
.content-plan .fresh-unit h3{margin:0 0 6px;font-size:calc(19px * 1.35);}
.content-plan .fresh-unit p{margin:0;}
.content-plan .fresh-unit a{color:#1f6f4a;text-decoration:underline;}
.content-plan .fresh-unit a:hover{color:inherit;}
.content-plan .primary-section{background:var(--ink-light);color:var(--surface-deep);border:1px solid #d6dccf;border-radius:0.88rem;padding:calc(1.5rem * .75);display:flex;flex-direction:column;gap:1.5rem;}
.content-plan .primary-section h3{margin:0;font-size:calc(19px * 1.35);}
.content-plan .primary-section p{margin:0;}
.content-plan .strong-links{align-self:start;background:var(--ink-page);color:#f4f7f2;border-radius:0.5rem;padding:10px 18px;text-decoration:none;font-size:calc(19px * .875);transition:background 280ms var(--delay-soft);}
.content-plan .strong-links:hover{background:#185a3c;color:var(--surface-deep);}
@media (max-width: 700px){.content-plan .clear-track{grid-template-columns:1fr;}
    }
.active-body{padding:calc(1.5rem * 2.4) 2.11rem;background:#f6f7f3;color:#1c231b;}
.focused-feature{max-width:1560px;margin:0 auto;}
.active-body h1{margin:0;font-size:calc(19px * 2.65);line-height:1.08;}
.clear-form{padding:calc(1.5rem * 2.4) 2.11rem;background:#16301f;color:#f4f7f2}
.clear-form .visual-area{max-width:1560px;margin:0 auto}
.clear-form h2{max-width:22ch;margin:0;font-size:calc(19px * 2);line-height:1.1}
.clear-form .public-content{margin:1.5rem 0 calc(2.26rem * 1.5);font-size:calc(19px * 1.125);line-height:1.67;opacity:.88}
.clear-form .site-group{display:flex;flex-direction:column;gap:calc(2.26rem * 1.5);margin:0;padding:0;list-style:none;counter-reset:note}
.clear-form .site-group>li{position:relative;padding-left:calc(1.5rem * .75);border-left:2px solid #c9a227}
.clear-form h3{margin:0;font-size:calc(19px * 1.35);line-height:1.2}
.clear-form .site-group p{margin:calc(calc(1.5rem * .75) / 2) 0 0;line-height:1.67;opacity:.85}
@media(max-width:680px){.clear-form .site-group>li{padding-left:1.5rem}}
.local-form{
  overflow: hidden;
  padding: calc(1.5rem * 2.4) 2.11rem;
  background: var(--ink-page);
  color: #f4f7f2;
}
.local-form .local-block{max-width: 1560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(2.26rem * 1.5);}
.local-form .top-note{display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, currentColor 32%, transparent);}
.local-form h2{margin: 0;
  font-size: calc(19px * 2.65);
  line-height: 1.05;
  flex: 1 1 22rem;}
.local-form .primary-shell{margin: 0;
  flex: 1 1 26rem;
  font-size: 19px;
  line-height: 1.67;
  opacity: .92;}
.local-form .focused-view{display: flex;
  flex-direction: column;}
.local-form .simple-figure{display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: calc(1.5rem * .75) 2.26rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  color: inherit;
  text-decoration: none;}
.local-form .simple-figure:first-child{border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent);}
.local-form .clear-summary{flex: 0 0 14rem;
  font-size: calc(19px * .875);
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .7;}
.local-form .simple-figure strong{font-size: calc(19px * 1.35);
  overflow-wrap: anywhere;}
.local-form .simple-figure p{margin: 0;
  flex: 1 1 20rem;
  line-height: 1.67;}
.local-form .top-wrap strong,
.local-form .fresh-visual strong{transition: color 280ms var(--delay-soft);}
.local-form .top-wrap:hover strong,
.local-form .fresh-visual:hover strong{}
.local-form .wide-visual{display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: calc(1.5rem * .75) 2.26rem;}
.local-form .wide-visual .primary-section{flex: 1 1 100%;
  margin: 0 0 calc(1.5rem * .75);
  font-size: calc(19px * .875);
  opacity: .72;}
.local-form .wide-visual a{color: inherit;
  text-decoration: none;
  font-size: 19px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 40%, transparent);
  padding-bottom: 2px;
  transition: border-color 280ms var(--delay-soft);}
.local-form .wide-visual a span{display: block;
  font-size: calc(19px * .875);
  opacity: .68;
  margin-top: 2px;}
.local-form .wide-visual a:hover{border-color: #c9a227;}
@media (max-width: 760px) {.local-form .clear-summary{
    flex: 1 1 100%;
  }.local-form .simple-figure strong,
  .local-form .simple-figure p{
    flex: 1 1 100%;
  }
}
.site-lead{--state-strong:calc(1.5rem * 1.19);--field-active:calc(1560px / 2.25);padding:calc(1.5rem * 2.4) 2.11rem;background:#f6f7f3;color:#1c231b;}
.site-lead .local-block{max-width:1560px;margin:0 auto;}
.site-lead h1,.site-lead h2,.site-lead h3,.site-lead p{margin:0;}
.site-lead h2{font-size:calc(19px * 2);line-height:1.12;}
.site-lead h3{font-size:calc(19px * 1.35);line-height:1.2;}
.site-lead p{font-size:19px;line-height:1.67;color:var(--ink-inverse);}
.site-lead .primary-section{font-size:calc(19px * .875);color:var(--ink-inverse);}
.site-lead .focused-view{display:flex;flex-wrap:wrap;gap:var(--state-strong);margin-top:var(--state-strong);}
.site-lead .offer-form{flex:1 1 calc(1560px / 3.6);min-width:0;padding:calc(calc(1.5rem * .75) * .9);border-radius:0.5rem;background:var(--ink-light);color:var(--surface-deep);border:1px solid #d6dccf;}
.site-lead .offer-form p{margin-top:calc(1.5rem / 3);color:var(--surface-deep);}
.site-lead .fresh-header>h2{margin-top:var(--state-strong);}
.primary-grid{padding:calc(1.5rem * 2.4) 2.11rem;background:var(--ink-page);color:#f4f7f2}
.primary-grid .local-block{max-width:1560px;margin:0 auto}
.primary-grid .top-note{max-width:58rem}
.primary-grid h2{margin:0;font-size:calc(19px * 2.65);line-height:1.05}
.primary-grid .top-note p{margin:1.5rem 0 0;font-size:calc(19px * 1.125);line-height:1.67}
.primary-grid .visual-surface{margin-top:calc(2.26rem * 1.5);display:flex;flex-wrap:wrap;gap:2.26rem;align-items:flex-start}
.primary-grid .primary-inner{flex:1 1 32rem;min-width:0;display:flex;flex-wrap:wrap;gap:1.5rem;align-content:flex-start;background:#f6f7f3;color:#1c231b;border-radius:0.88rem;padding:2.26rem}
.primary-grid .primary-inner label{flex:1 1 15rem;min-width:0}
.primary-grid .primary-inner label.check{flex:1 1 100%;display:flex;gap:calc(1.5rem * .75);align-items:flex-start}
.primary-grid .primary-inner label.check input{width:auto;flex:0 0 auto;margin-top:0.35rem}
.primary-grid .primary-inner label.check span{margin-bottom:0;font-size:calc(19px * .875);line-height:1.67}
.primary-grid label span{display:block;margin-bottom:calc(1.5rem * .75);font-size:calc(19px * .875);}
.primary-grid input[type="email"],
.primary-grid input[type="text"]{width:100%;max-width:100%;border:1px solid #d6dccf;border-radius:0.34rem;background:#e8ece3;color:var(--ink-inverse);font:inherit;padding:calc(1.5rem * .75);outline:none}
.primary-grid input::placeholder{}
.primary-grid input:focus{border-color:rgba(31, 111, 74, 0.35)}
.primary-grid button{align-self:flex-start;border:0;border-radius:0.34rem;background:linear-gradient(120deg, #c9a227 0%, #e0c25a 100%);color:#1a1408;font:inherit;padding:calc(1.5rem * .75) 1.5rem;cursor:pointer;white-space:nowrap}
.primary-grid .contact-links{flex:0 1 24rem;min-width:0;display:flex;flex-direction:column;gap:1.5rem;padding:1.5rem 0}
.primary-grid .contact-links p{margin:0;line-height:1.67}
.primary-grid .contact-links span{display:block;margin-bottom:calc(1.5rem * .75);font-size:calc(19px * .875);font-weight:700}
.primary-grid .contact-links a{color:inherit;text-decoration:underline}
.primary-grid .contact-links a:hover{}
@media(max-width:760px){.primary-grid .visual-surface{display:block}.primary-grid .primary-inner{display:block;padding:1.5rem}.primary-grid .primary-inner label+label,.primary-grid button{margin-top:1.5rem}.primary-grid .contact-links{margin-top:calc(2.26rem * 1.5);padding:0}.primary-grid h2{font-size:calc(19px * 2)}}
.team-header{
  --state-strong:calc(1.5rem * 1.15);
  --field-active:calc(1560px / 3.00);
  padding:calc(1.5rem * 2.4) 2.11rem;
  background:#f6f7f3;
  color:#1c231b;
}
.team-header .local-block{max-width:1560px;
  margin:0 auto;}
.team-header h2,
.team-header h3,
.team-header p{margin:0;}
.team-header h2{font-size:calc(19px * 2);
  line-height:1.14;}
.team-header h3{font-size:calc(19px * 1.35);
  line-height:1.22;}
.team-header p{font-size:19px;
  line-height:1.67;}
.team-header .contact-media{display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:2.26rem;}
.team-header .contact-media > h2{flex:1 1 calc(1560px / 3);
  min-width:0;}
.team-header .contact-media > .top-note{flex:1 1 calc(1560px / 3);
  min-width:0;}
.team-header .focused-view{display:flex;
  flex-wrap:wrap;
  gap:var(--state-strong);
  margin-top:var(--state-strong);
  width:100%;}
.team-header .offer-form{
  flex:1 1 calc(1560px / 3.4);
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:calc(1.5rem / 2.4);
  padding:calc(calc(1.5rem * .75) * .95);
  border-radius:0.88rem;
  background:var(--ink-light);
  color:var(--surface-deep);
  border:1px solid #d6dccf;
  box-shadow:0 1px 8px rgba(0,0,0,0.13);
}
.team-header .offer-form p{opacity:.82;}
.team-header .strong-links{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  margin-top:auto;
  padding:calc(calc(1.5rem * .75) * .7) 1.5rem;
  border-radius:0.34rem;
  background:var(--ink-page);
  color:#f4f7f2;
  text-decoration:none;
  font-size:calc(19px * .875);
  transition:background 280ms var(--delay-soft);
}
.team-header .strong-links:hover{
  background:#185a3c;color:var(--surface-deep);}
.team-header .primary-section{
  margin-top:var(--state-strong);
  padding:calc(calc(1.5rem * .75) * .9) 1.5rem;
  border-radius:0.5rem;
  background:#e8ece3;
  color:var(--ink-inverse);
  font-size:calc(19px * .875);
}
@media (max-width: 720px){.team-header .contact-media > h2,
  .team-header .contact-media > .top-note{
    flex:1 1 100%;
  }.team-header .offer-form{
    flex:1 1 100%;
  }
}
.quiet-entries{
  padding: calc(1.5rem * 2.4) 2.11rem;
  background: #16301f;
  color: #f4f7f2;
}
.quiet-entries .local-block{max-width: min(1560px, 74rem);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: calc(2.26rem * 1.5);
  align-items: flex-start;}
.quiet-entries .top-note{flex: 1 1 22rem;
  min-width: 0;}
.quiet-entries h2{margin: 0;
  font-size: calc(19px * 2);
  line-height: 1.12;}
.quiet-entries .top-note p{margin: calc(1.5rem * .75) 0 0;
  font-size: 19px;
  line-height: 1.67;}
.quiet-entries .primary-track{flex: 1 1 30rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.quiet-entries .primary-track a{display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  grid-template-areas:
    "label title"
    "label text";
  column-gap: calc(1.5rem * .75);
  row-gap: 0.35rem;
  padding: calc(1.5rem * .75) 0;
  border-top: 1px solid rgba(244, 247, 242, 0.18);
  text-decoration: none;
  transition: border-color 280ms var(--delay-soft);}
.quiet-entries .primary-track a:last-child{border-bottom: 1px solid rgba(244, 247, 242, 0.18);}
.quiet-entries .primary-track a:hover{border-top-color: #c9a227;}
.quiet-entries .primary-track span{grid-area: label;
  color: #c9a227;
  font-size: calc(19px * .875);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 0.15rem;}
.quiet-entries .primary-track strong{grid-area: title;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;}
.quiet-entries .primary-track em{grid-area: text;
  font-style: normal;
  font-size: calc(19px * .875);
  line-height: 1.67;
  opacity: 0.82;}
@media (max-width: 720px) {.quiet-entries .primary-track a{
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "text";
    row-gap: 0.3rem;
  }
}
.content-quote{padding:calc(1.5rem * 2.4) 2.11rem;background:#e8ece3;color:var(--ink-inverse)}
.content-quote .service-frame{max-width:1560px;margin:0 auto;display:flex;flex-direction:column;gap:2.26rem}
.content-quote .page-plan{border-radius:1.26rem;background:linear-gradient(135deg, #16301f 0%, #1f6f4a 55%, #2f8a5e 100%);color:#f4f7f2;padding:calc(2.26rem * 1.5);display:flex;flex-direction:column;gap:1.5rem}
.content-quote h2{margin:0;font-size:calc(19px * 2);line-height:1.05}
.content-quote .page-plan p{margin:0;font-size:19px;line-height:1.67}
.content-quote .focused-grid{display:flex;flex-wrap:wrap;gap:calc(1.5rem * .75)}
.content-quote .main-surface{flex:1 1 15rem;background:var(--ink-light);color:var(--surface-deep);border:1px solid #d6dccf;border-radius:0.88rem;padding:calc(1.5rem * .75);display:flex;flex-direction:column;gap:1.5rem}
.content-quote .main-surface:nth-child(3n+2){background:var(--ink-page);color:#f4f7f2;border-color:var(--ink-page)}
.content-quote .main-surface span{font-size:calc(19px * .875);letter-spacing:.04em;text-transform:uppercase;opacity:.85}
.content-quote h3{margin:0;font-size:calc(19px * 1.35);line-height:1.15}
.content-quote .main-surface p{margin:0;font-size:calc(19px * .875);line-height:1.67}
@media (max-width:760px){.content-quote .main-surface{flex:1 1 100%}}
.main-grid{
        --state-strong: calc(1.5rem * 1.12);
        --type-meta: calc(1560px / 3.44);
        padding: calc(1.5rem * 2.4) 2.11rem;
        background: #16301f;
        color: #f4f7f2;
    }
.main-grid .local-block{max-width: 1560px;
        margin: 0 auto;}
.main-grid h2,
    .main-grid h3,
    .main-grid p{margin: 0;}
.main-grid h2{font-size: calc(19px * 2);
        line-height: 1.12;}
.main-grid h3{font-size: calc(19px * 1.35);
        line-height: 1.2;}
.main-grid p{font-size: 19px;
        line-height: 1.67;}
.main-grid .top-note{margin-top: 1.5rem;
        font-size: calc(19px * 1.125);}
.main-grid .focused-view{display: flex;
        flex-wrap: wrap;
        gap: var(--state-strong);
        margin-top: var(--state-strong);}
.main-grid .offer-form{
        flex: 1 1 var(--type-meta);
        min-width: 0;
        padding: calc(var(--state-strong) * .75);
        border-radius: 0.5rem;
        background: var(--ink-light);
        color: var(--surface-deep);
        border: 1px solid #d6dccf;
    }
.main-grid .offer-form p{margin-top: calc(1.5rem / 3);}
.steady-steps{
  padding: calc(1.5rem * 2.4) 2.11rem;
  background: linear-gradient(135deg, #16301f 0%, #1f6f4a 55%, #2f8a5e 100%);
  color: #f4f7f2;
}
.steady-steps .plain-nav{
  max-width: 1560px;
  margin: 0 auto;
  border-radius: 1.26rem;
  overflow: hidden;
  background: var(--ink-light);
  color: var(--surface-deep);
  border: 1px solid #d6dccf;
}
.steady-steps .clear-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: calc(2.26rem * 1.5);
  padding: calc(1.5rem * .75) calc(2.26rem * 1.5);
  border-bottom: 1px solid #d6dccf;
  background: #e8ece3;color:var(--ink-inverse);}
.steady-steps .clear-inner span,
.steady-steps .clear-inner strong{font-size: calc(19px * .875);
  letter-spacing: .02em;}
.steady-steps .clear-quote{display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 2.26rem;
  padding: calc(2.26rem * 1.5);}
.steady-steps .fresh-unit h2{margin: 0;
  font-size: calc(19px * 2);
  line-height: 1.1;}
.steady-steps .fresh-unit p{margin: calc(1.5rem * .75) 0 0;
  font-size: calc(19px * 1.125);
  line-height: 1.67;}
.steady-steps .focused-view{display: flex;
  flex-direction: column;
  gap: calc(2.26rem * 1.5);}
.steady-steps .clear-track{display: grid;
  grid-template-columns: minmax(6rem, .28fr) minmax(0, 1fr);
  gap: calc(1.5rem * .75);
  padding: calc(1.5rem * .75) 0;
  border-top: 1px solid #d6dccf;}
.steady-steps .clear-track:first-child{border-top: 0;
  padding-top: 0;}
.steady-steps .clear-track span{font-size: calc(19px * .875);
  text-transform: uppercase;
  letter-spacing: .04em;}
.steady-steps .clear-track h3{margin: 0;
  font-size: calc(19px * 1.35);
  line-height: 1.2;}
.steady-steps .clear-track p{margin: calc(calc(1.5rem * .75) * .5) 0 0;
  line-height: 1.67;}
.steady-steps .clear-track a{text-decoration: underline;
  text-underline-offset: 2px;}
.steady-steps .clear-track a:hover{}
@media (max-width: 800px) {.steady-steps .clear-quote,
  .steady-steps .clear-track{
    grid-template-columns: 1fr;
  }.steady-steps .clear-quote{
    padding: calc(1.5rem * .75);
  }.steady-steps .clear-inner{
    padding: calc(1.5rem * .75);
  }
}
.offer-unit{--state-strong:calc(1.5rem * 1.32);padding:calc(1.5rem * 2.4) 2.11rem;background:#f6f7f3;color:#1c231b;}
.offer-unit .local-block{max-width:1560px;margin:0 auto;display:flex;flex-direction:column;gap:calc(2.26rem * 1.5);}
.offer-unit h2,.offer-unit h3,.offer-unit p{margin:0;}
.offer-unit h2{font-size:calc(19px * 2);line-height:1.14;}
.offer-unit h3{font-size:calc(19px * 1.35);line-height:1.22;}
.offer-unit p{font-size:19px;line-height:1.67;color:var(--ink-inverse);}
.offer-unit .offer{display:flex;flex-direction:column;gap:1.5rem;}
.offer-unit .top-note{font-size:calc(19px * 1.125);color:#1c231b;}
.offer-unit .plain-note{display:flex;flex-direction:column;gap:var(--state-strong);}
.offer-unit .offer-form{padding:calc(calc(1.5rem * .75) * 1.1) calc(1.5rem * .75);border-radius:0.5rem;background:var(--ink-light);color:var(--surface-deep);border:1px solid #d6dccf;}
.offer-unit .offer-form h3{color:var(--surface-deep);}
.offer-unit .offer-form p{margin-top:calc(1.5rem / 2.4);color:var(--ink-inverse);}
@media (min-width:900px){.offer-unit .offer{flex-direction:row;align-items:flex-end;justify-content:space-between;gap:2.26rem;}.offer-unit .offer h2{flex:0 1 auto;}.offer-unit .top-note{flex:1 1 auto;max-width:none;}
}
.secondary-block{padding:calc(1.5rem * 2.4) 2.11rem;background:#f6f7f3;color:#1c231b}
.secondary-block .visual-proof{max-width:min(1560px,72rem);margin:0 auto}
.secondary-block h2{margin:0;font-size:calc(19px * 2.65);line-height:1.08}
.secondary-block .primary-shell{margin:1.5rem 0 calc(2.26rem * 1.5);font-size:calc(19px * 1.125);}
.secondary-block .main-stack{padding:calc(1.5rem * .75) calc(1.5rem * .75) calc(1.5rem * .75) calc(calc(1.5rem * .75) + 0.4rem);margin:0 0 2.26rem;background:var(--ink-light);color:var(--surface-deep);border:1px solid #d6dccf;border-left:3px solid var(--ink-page);border-radius:0.5rem}
.secondary-block .main-stack:last-child{margin-bottom:0}
.secondary-block h3{margin:0 0 calc(1.5rem * .75);font-size:calc(19px * 1.35);line-height:1.25}
.secondary-block .main-stack p{margin:0;font-size:19px}
@media (max-width:640px){.secondary-block .main-stack{padding:calc(1.5rem * .75);border-left-width:3px}
}
.open-team{
  padding: calc(1.5rem * 2.4) 2.11rem;
  background: #16301f;
  color: #f4f7f2;
}
.open-team .local-block{max-width: min(1560px, 78rem);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: calc(2.26rem * 1.5);
  align-items: flex-start;}
.open-team .fresh-unit{flex: 1 1 32rem;
  min-width: 0;}
.open-team .fresh-unit h2{margin: 0;
  font-size: calc(19px * 2);
  line-height: 1.1;}
.open-team .fresh-unit p{margin: calc(1.5rem * .75) 0 0;
  font-size: calc(19px * 1.125);
  line-height: 1.67;}
.open-team .offer-area{
  flex: 1 1 20rem;
  min-width: 0;
  padding: calc(1.5rem * .75);
  border-radius: 0.88rem;
  background: var(--ink-light);
  color: var(--surface-deep);
  border: 1px solid #d6dccf;
}
.open-team .offer-area strong{display: block;
  font-size: calc(19px * 1.35);
  line-height: 1.2;}
.open-team .offer-area p{margin: calc(1.5rem * .75) 0 0;
  font-size: 19px;}
.open-team .offer-area a{color:inherit;
  text-decoration: none;}
.open-team .offer-area a:hover{color: #c9a227;}
.open-team .offer-area span{display: block;
  margin-top: calc(1.5rem * .75);
  padding-top: calc(1.5rem * .75);
  border-top: 1px solid #d6dccf;color:inherit;
  font-size: calc(19px * .875);}
@media (max-width: 760px) {.open-team .local-block{
    flex-direction: column;
  }
}
.page-inner{--state-strong:calc(1.5rem * 0.89);padding:calc(1.5rem * 2.4) 2.11rem;background:var(--ink-page);color:#f4f7f2;}
.page-inner .local-block{max-width:1560px;margin:0 auto;display:flex;flex-direction:column;row-gap:calc(var(--state-strong) * 1.2);}
.page-inner h2{font-size:calc(19px * 2);line-height:1.12;margin:0;}
.page-inner p{margin:0;font-size:19px;line-height:1.67;}
.page-inner .primary-section{font-size:calc(19px * .875);letter-spacing:.08em;text-transform:uppercase;opacity:.72;}
.page-inner .top-note{color:color-mix(in srgb, currentColor 82%, transparent);}
.page-inner .strong-links{align-self:flex-start;display:inline-flex;align-items:center;justify-content:center;padding:calc(1.5rem * .75) 1.5rem;border-radius:0.34rem;background:#f4f7f2;color:var(--ink-page);text-decoration:none;font-weight:600;transition:background 280ms var(--delay-soft),color 280ms var(--delay-soft);}
.page-inner .strong-links:hover,.page-inner .strong-links:focus-visible{background:#c9a227;color:#1a1408;}
.page-inner .main-body{padding-inline-start:calc(2.11rem / 2);}
@media (max-width:640px){.page-inner .main-body{padding-inline-start:0;}.page-inner .strong-links{align-self:stretch;}}
.public-proof{
  background: #f6f7f3;
  color: #1c231b;
  padding: calc(1.5rem * 2.4) 2.11rem;
}
.public-proof .local-block{width: min(100%, 1560px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(2.26rem * 1.5);}
.public-proof .top-note{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.public-proof h1{margin: 0;
  font-size: clamp(calc(19px * 2), 6vw, calc(19px * 2.65));
  line-height: 1.05;
  letter-spacing: -0.01em;}
.public-proof .fresh-unit{margin: 0;
  font-size: calc(19px * 1.125);
  line-height: 1.67;}
.public-proof .wide-menu{display: flex;
  flex-wrap: wrap;
  gap: 2.26rem;
  border-top: 1px solid #d6dccf;
  border-bottom: 1px solid #d6dccf;
  padding: calc(2.26rem * 1.5) 0;}
.public-proof .offer-form{
  flex: 1 1 220px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: calc(1.5rem * .75);
  border-radius: 0.5rem;
  background: var(--ink-light);
  color: var(--surface-deep);
  border: 1px solid #d6dccf;
  text-decoration: none;
  transition: background 280ms var(--delay-soft), border-color 280ms var(--delay-soft);
}
.public-proof .offer-form:hover,
.public-proof .offer-form:focus-visible{
  background: #e8ece3;
  border-color: #1f6f4a;color:var(--ink-inverse);}
.public-proof .offer-form strong{font-size: 19px;
  font-weight: 700;}
.public-proof .offer-form span{font-size: calc(19px * .875);
  line-height: 1.55;}
.public-proof .primary-section{margin: 0;
  font-size: calc(19px * .875);
  line-height: 1.6;}
@media (max-width: 640px) {.public-proof .wide-menu{
    flex-direction: column;
  }
}
