body{margin:0;padding:0;font-family:"Lora", sans-serif;}
*,*::before,*::after{box-sizing:border-box;}
:root {
  --paint-inverse: #F4F2ED;
  --ink-panel: #141414;
  --delay-entry: cubic-bezier(0.2,0.8,0.2,1);
}
.featured-panel {
    width: 100%;
    background: var(--ink-panel);
    color: var(--paint-inverse);
    border-bottom: 1px solid #D6D2C8;
  }
.clear-method {
    max-width: 1660px;
    margin: 0 auto;
    padding: calc(2.44rem * 1.5) 1.58rem;
    display: flex;
    align-items: center;
    gap: 2.44rem;
  }
.steady-links {
    font-size: calc(17.4px * 1.125);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--paint-inverse);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
.soft-links {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-start;
  }
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2.44rem;
    flex-wrap: wrap;
  }
.nav-list a {
    display: inline-block;
    padding: 0.4rem 0.2rem;
    font-size: 17.4px;
    color: var(--paint-inverse);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 270ms var(--delay-entry), opacity 270ms var(--delay-entry);
  }
.nav-list a:hover,
  .nav-list a:focus-visible {
    border-bottom-color: #2B2B2A;
    opacity: 0.92;
  }
.narrow-view {
    flex-shrink: 0;
  }
.featured-intro {
    display: inline-block;
    padding: 0.65rem 1.15rem;
    background: #2B2B2A;
    color: #F2B705;
    font-size: 17.4px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.51rem;
    box-shadow: 0 1px 8px rgba(0,0,0,0.18);
    transition: background 270ms var(--delay-entry), transform 270ms var(--delay-entry);
  }
.featured-intro:hover,
  .featured-intro:focus-visible{
    background: #3A3A38;
    transform: translateY(-1px);color:#1B1B1A;}
.clear-panel {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--paint-inverse);
    border-radius: 0.34rem;
    cursor: pointer;
    flex-shrink: 0;
  }
.clear-panel span{
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--paint-inverse);
    transition: transform 270ms var(--delay-entry), opacity 270ms var(--delay-entry);color:#1B1B1A;}
.clear-panel.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
.clear-panel.is-open span:nth-child(2) {
    opacity: 0;
  }
.clear-panel.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
@media (max-width: 767px) {
    .clear-method {
      flex-wrap: wrap;
      align-items: center;
      gap: calc(2.44rem * 1.5);
    }

    .steady-links {
      flex: 1 1 auto;
    }

    .clear-panel {
      display: flex;
      order: 3;
    }

    .narrow-view {
      order: 2;
    }

    .featured-intro {
      padding: 0.55rem 0.9rem;
      font-size: calc(17.4px * .875);
    }

    .soft-links {
      order: 4;
      flex-basis: 100%;
      display: none;
    }

    .soft-links.is-open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: calc(2.44rem * 1.5) 0 0;
      border-top: 1px solid #D6D2C8;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 0;
      border-bottom: 1px solid #D6D2C8;
      font-size: 17.4px;
    }

    .nav-list a:hover,
    .nav-list a:focus-visible {
      border-bottom-color: #D6D2C8;
      opacity: 0.85;
    }
  }
.service-menu{padding:calc(1.5rem * 2.4) 1.58rem;font-family:"Lora", sans-serif;font-size:17.4px;line-height:1.77;background:var(--ink-panel);color:var(--paint-inverse);}
.site-details{max-width:1660px;margin:0 auto;display:grid;grid-template-columns:1.2fr 1fr 2fr;gap:2.44rem;align-items:start}
.narrow-rail{grid-column:1 / -1;padding-bottom:calc(2.44rem * 1.5);border-bottom:1px solid rgba(255, 255, 255, 0.18)}
.featured-entries{font-size:calc(17.4px * .875);text-transform:uppercase;letter-spacing:0.08em;margin:0 0 calc(1.5rem * .75);font-weight:700;opacity:0.85}
.soft-entries{font-style:normal;display:flex;flex-direction:column;gap:0.35rem;font-size:17.4px}
.soft-callout{display:block}
.secondary-media{grid-column:1 / 2}
.top-tile{font-size:calc(17.4px * 1.35);font-weight:800;margin:0 0 calc(1.5rem * .75);letter-spacing:-0.01em}
.visual-links{margin:0;font-size:calc(17.4px * .875);max-width:28ch;opacity:0.85}
.visual-region{grid-column:2 / -1;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:2.44rem}
.direct-figure{min-width:0}
.soft-track{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.4rem;font-size:calc(17.4px * .875)}
.active-details{color:inherit;text-decoration:none;border-bottom:1px solid transparent;transition:border-color 270ms var(--delay-entry), opacity 270ms var(--delay-entry)}
.active-details:hover,
.active-details:focus-visible{border-bottom-color:currentColor;outline:none}
.focused-story{grid-column:1 / -1;margin-top:calc(2.44rem * 1.5);padding-top:calc(2.44rem * 1.5);border-top:1px solid rgba(255, 255, 255, 0.18);display:flex;flex-direction:column;gap:calc(1.5rem * .75);font-size:calc(17.4px * .875)}
.narrow-body{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:2.44rem}
.contact-plan{margin:0;max-width:90ch;opacity:0.85}
.active-section{margin:0;opacity:0.7}
@media (max-width: 900px) {.site-details{grid-template-columns:1fr}.secondary-media,
  .visual-region,
  .focused-story{grid-column:1 / -1}.visual-region{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (max-width: 520px) {.visual-region{grid-template-columns:1fr}.narrow-body{flex-direction:column;gap:0.4rem}
}
footer,footer *{border-radius:0!important;}
.cookies{position:fixed;left:1.58rem;bottom:1.5rem;width:min(360px,calc(100vw - (1.58rem * 2)));z-index:1200;}
.cookies .focused-menu{border-radius:0.91rem;padding:1.5rem 1.58rem;background:linear-gradient(140deg,#F2B705,#D9A204);color:#141414;box-shadow:0 24px 40px rgba(0,0,0,0.29);}
.cookies .focused-menu h3{margin:0 0 6px;}
.cookies .focused-menu p{margin:0;opacity:.92;}
.cookies .primary-quote{margin-top:12px;display:grid;gap:8px;}
.cookies .primary-quote button{border:1px solid color-mix(in srgb, currentColor 28%, transparent);background:color-mix(in srgb, currentColor 14%, transparent);color:inherit;border-radius:0.34rem;padding:8px 10px;cursor:pointer;}
.cookies .primary-quote button.cookie-accept{background:#2B2B2A;color:#F2B705;border-color:#3A3A38;}
.content-steps{padding:calc(1.5rem * 2.4) 1.58rem 0;background:#F4F2ED;color:#1B1B1A;}
.content-steps .site-plan{max-width:1660px;margin:0 auto;}
.content-steps .wide-tile{display:flex;flex-direction:column;gap:calc(2.44rem * 1.5);}
.content-steps h1{margin:0;font-size:clamp(2rem,4.2vw,3.4rem);line-height:1.08;}
.content-steps .contact-details{margin:0;font-size:calc(17.4px * 1.125);line-height:1.5;}
.content-steps .headline{display:flex;gap:2.44rem;align-items:flex-start;justify-content:space-between;flex-wrap:wrap;margin-top:2.44rem;}
.content-steps .service-links{display:flex;flex-direction:column;gap:calc(2.44rem * 1.5);flex:1 1 32rem;}
.content-steps .page-flow{margin:0;}
.content-steps .primary-quote{display:flex;gap:.7rem;align-items:flex-start;flex-wrap:wrap;flex:0 0 auto;}
.content-steps .primary-quote a{display:inline-flex;padding:.7rem 1.15rem;border-radius:0.91rem;text-decoration:none;background:#F2B705;color:#141414;font-weight:700;transition:background 270ms var(--delay-entry);}
.content-steps .primary-quote a:hover{background:#D9A204;color:#1B1B1A;}
.content-steps .primary-quote a:nth-child(even){background:#2B2B2A;color:#F2B705;}
.content-steps .primary-quote a:nth-child(even):hover{background:#3A3A38;color:#1B1B1A;}
.content-steps .visual-nav{margin-top:2.44rem;}
.content-steps .visual-nav img{width:min(52rem,100%);height:auto;display:block;border-radius:0.91rem;box-shadow:0 1px 8px rgba(0,0,0,0.18);}
.content-steps .narrow-items{margin:2.44rem 0 0;font-size:calc(17.4px * .875);color:#2B2B2A;}
.content-steps .narrow-items a{color:inherit;text-decoration:none;border-bottom:1px solid #F2B705;}
.content-steps .narrow-items a:hover{color:#2B2B2A;border-bottom-color:#2B2B2A;}
@media (max-width:720px){.content-steps{padding-top:calc(1.5rem * 1.6);}.content-steps .primary-quote{width:100%;}.content-steps .primary-quote a{flex:1 1 auto;justify-content:center;}
    }
.steady-wrap{--state-control:calc(1.5rem * 1.15);padding:calc(1.5rem * 2.4) 1.58rem;background:#F2B705;color:#141414;}
.steady-wrap .offer-entries{max-width:1660px;margin:0 auto;display:flex;flex-direction:column;gap:2.44rem;}
.steady-wrap h2,.steady-wrap h3,.steady-wrap p{margin:0;}
.steady-wrap h2{font-size:calc(17.4px * 2);line-height:1.14;}
.steady-wrap h3{font-size:calc(17.4px * 1.35);line-height:1.22;}
.steady-wrap p{font-size:17.4px;line-height:1.77;}
.steady-wrap .wide-tile{display:flex;flex-direction:column;gap:1.5rem;}
.steady-wrap .narrow-group{font-size:calc(17.4px * 1.125);opacity:.82;}
.steady-wrap .page-service{display:flex;flex-direction:column;gap:var(--state-control);}
.steady-wrap .public-steps{padding:calc(calc(1.5rem * .75) * 1.05) 0;border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);display:flex;flex-direction:column;gap:calc(1.5rem / 2.4);}
.steady-wrap .public-steps:last-child{border-bottom:1px solid color-mix(in srgb, currentColor 22%, transparent);}
.steady-wrap .public-steps p{opacity:.86;}
.steady-wrap .narrow-items{padding-top:1.5rem;font-size:calc(17.4px * .875);opacity:.9;}
.steady-wrap .narrow-items a{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.steady-wrap .narrow-items a:hover{opacity:.75;}
@media (min-width:900px){.steady-wrap .page-service{display:grid;grid-template-columns:1fr 1fr;column-gap:2.44rem;}.steady-wrap .public-steps{padding:calc(calc(1.5rem * .75) * 1.2) 0;}
}
.row-work-range{--state-control:calc(1.5rem * 1.05);--field-content:calc(1660px / 3.1);padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A;}
.row-work-range .offer-entries{max-width:1660px;margin:0 auto;}
.row-work-range h1,.row-work-range h2,.row-work-range h3,.row-work-range p{margin:0;}
.row-work-range h2{font-size:calc(17.4px * 2);line-height:1.14;}
.row-work-range h3{font-size:calc(17.4px * 1.35);line-height:1.22;}
.row-work-range p{font-size:17.4px;line-height:1.77;}
.row-work-range a{color:inherit;text-decoration:none;border-bottom:1px solid #F2B705;}
.row-work-range a:hover{color:#2B2B2A;border-bottom-color:#2B2B2A;}
.row-work-range .primary-team{display:flex;flex-wrap:wrap;align-items:flex-start;gap:2.44rem;}
.row-work-range .primary-team>h2{flex:1 1 calc(1660px / 3.2);min-width:0;}
.row-work-range .primary-team>.narrow-group{flex:1 1 calc(1660px / 3.2);min-width:0;color:#2B2B2A;}
.row-work-range .secondary-body{flex:1 1 100%;display:flex;flex-wrap:wrap;gap:var(--state-control);margin-top:calc(1.5rem * .6);}
.row-work-range .public-steps{flex:1 1 calc(1660px / 3.6);min-width:0;padding:calc(calc(1.5rem * .75) * .9);border-radius:0.51rem;background:#FFFFFF;color:#1B1B1A;border:1px solid #D6D2C8;}
.row-work-range .public-steps p{color:#2B2B2A;}
.row-work-range .public-steps h3{margin-top:calc(1.5rem / 3);}
.row-work-range .content-details{flex:1 1 100%;margin-top:var(--state-control);color:#2B2B2A;}
@media (max-width:720px){.row-work-range .public-steps{flex:1 1 100%;}
}
.top-benefit{--state-control:calc(1.5rem * 0.89);padding:calc(1.5rem * 2.4) 1.58rem;background:#F2B705;color:#141414;}
.top-benefit .offer-entries{max-width:1660px;margin:0 auto;display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;column-gap:2.44rem;row-gap:calc(2.44rem * 1.5);}
.top-benefit .narrow-group{flex:1 1 34rem;min-width:0;}
.top-benefit h2{font-size:calc(17.4px * 2);line-height:1.12;margin:0 0 calc(1.5rem * .75);}
.top-benefit p{margin:0;font-size:17.4px;line-height:1.77;}
.top-benefit .content-details{font-size:calc(17.4px * .875);letter-spacing:0.08em;text-transform:uppercase;opacity:0.72;margin-bottom:calc(1.5rem * .75);}
.top-benefit .service-links{max-width:none;}
.top-benefit .focused-form{flex:0 1 22rem;min-width:0;display:flex;flex-direction:column;align-items:flex-start;row-gap:calc(1.5rem * .75);}
.top-benefit .box{display:inline-flex;align-items:center;justify-content:center;padding:calc(1.5rem * .75) 1.5rem;border-radius:0.34rem;background:#141414;color:#F2B705;font-weight:600;text-decoration:none;transition:transform 270ms var(--delay-entry);}
.top-benefit .box:hover{transform:translateY(-2px);}
.top-benefit .narrow-items{font-size:calc(17.4px * .875);line-height:1.6;opacity:0.85;}
.top-benefit .narrow-items a{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.top-benefit .narrow-items a:hover{opacity:0.75;}
@media (max-width:720px){.top-benefit .offer-entries{flex-direction:column;align-items:flex-start;}.top-benefit .focused-form{flex:1 1 auto;width:100%;}
}
.strong-plan{
  --state-control:calc(1.5rem * 1.05);
  padding:calc(1.5rem * 2.4) 1.58rem;
  background:#F4F2ED;
  color:#1B1B1A;
}
.strong-plan .offer-entries{max-width:1660px;
  margin:0 auto;}
.strong-plan h2,
.strong-plan h3,
.strong-plan p{margin:0;}
.strong-plan h2{font-size:calc(17.4px * 2);
  line-height:1.12;}
.strong-plan h3{font-size:calc(17.4px * 1.35);
  line-height:1.2;}
.strong-plan p{font-size:17.4px;
  line-height:1.77;
  color:#2B2B2A;}
.strong-plan a{color:inherit;
  text-decoration:none;}
.strong-plan a:hover{color:#2B2B2A;}
.strong-plan .primary-team{display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:2.44rem;}
.strong-plan .primary-team>h2{flex:1 1 calc(1660px / 3);
  min-width:0;}
.strong-plan .primary-team>.narrow-group{flex:1 1 calc(1660px / 3);
  min-width:0;}
.strong-plan .secondary-body{display:flex;
  flex-wrap:wrap;
  gap:var(--state-control);
  margin-top:var(--state-control);}
.strong-plan .public-steps{
  flex:1 1 calc(1660px / 3.4);
  min-width:0;
  padding:calc(calc(1.5rem * .75) * .9);
  border-radius:0.51rem;
  background:#FFFFFF;
  color:#1B1B1A;
  border:1px solid #D6D2C8;
}
.strong-plan .public-steps p{margin-top:calc(1.5rem / 3);}
.strong-plan .narrow-items{display:flex;
  flex-wrap:wrap;
  gap:2.44rem;
  margin-top:var(--state-control);
  padding-top:calc(2.44rem * 1.5);
  border-top:1px solid #D6D2C8;
  font-size:calc(17.4px * .875);}
.strong-plan .narrow-items a{color:inherit;
  font-weight:600;}
.strong-plan .narrow-items a:hover{color:#2B2B2A;}
.open-media{
        --state-control: calc(1.5rem * 1.18);
        --label-base: calc(1660px / 3.62);
        padding: calc(1.5rem * 2.4) 1.58rem;
        background: var(--ink-panel);
        color: var(--paint-inverse);
    }
.open-media .offer-entries{max-width: 1660px;
        margin: 0 auto;}
.open-media h2,
    .open-media h3,
    .open-media p{margin: 0;}
.open-media h2{font-size: calc(17.4px * 2);
        line-height: 1.12;}
.open-media h3{font-size: calc(17.4px * 1.35);
        line-height: 1.22;}
.open-media p{font-size: 17.4px;
        line-height: 1.77;}
.open-media a{text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 270ms var(--delay-entry), color 270ms var(--delay-entry);}
.open-media a:hover{color: #F2B705;
        border-bottom-color: #F2B705;}
.open-media .steady-grid{padding-block: calc(var(--state-control) / 2);}
.open-media .site-wrap{row-gap: calc(var(--state-control) * 1.1);}
.open-media .row-title{display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 2.44rem;}
.open-media .row-title h2{flex: 1 1 calc(1660px / 3);
        min-width: 0;}
.open-media .row-title > p{flex: 1 1 calc(1660px / 3);
        min-width: 0;
        opacity: .82;}
.open-media .secondary-body{flex: 1 1 100%;
        display: flex;
        flex-wrap: wrap;
        gap: var(--state-control);
        margin-top: var(--state-control);
        padding-top: var(--state-control);
        border-top: 1px solid rgba(244, 242, 237, 0.16);}
.open-media .public-steps{flex: 1 1 var(--label-base);
        min-width: 0;
        padding-inline-start: calc(1.5rem * .75);
        border-inline-start: 2px solid #F2B705;}
.open-media .public-steps p{margin-top: calc(1.5rem / 3);
        opacity: .86;}
.open-media .public-steps a{display: inline-flex;
        margin-top: calc(1.5rem / 2);
        font-size: calc(17.4px * .875);
        letter-spacing: 0.02em;
        text-transform: uppercase;}
@media (max-width: 720px) {.open-media .public-steps{
            flex: 1 1 100%;
        }
    }
.site-media{
  padding:calc(1.5rem*3) 1.58rem;
  background:linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);
  color:#F4F2ED;
}
.site-media .offer-unit{max-width:1660px;
  margin:0 auto;
  display:grid;
  gap:calc(2.44rem * 1.5);}
.site-media .media-actions{display:grid;
  gap:0.9rem;
  border-bottom:1px solid rgba(244,242,237,0.18);
  padding-bottom:calc(2.44rem * 1.5);}
.site-media h2{margin:0;
  font-size:clamp(1.9rem,3.6vw,2.9rem);
  line-height:1.15;
  letter-spacing:-0.01em;}
.site-media .narrow-group{margin:0;
  font-size:17.4px;
  line-height:1.77;
  color:#F4F2ED;
  opacity:0.86;}
.site-media .strong-items{display:flex;
  flex-direction:column;
  gap:calc(1.5rem * .75);}
.site-media .public-steps{
  display:grid;
  grid-template-columns:minmax(0,15rem) minmax(0,1fr);
  gap:calc(1.5rem * .75);
  align-items:stretch;
  padding:1rem;
  background:rgba(244,242,237,0.06);
  border:1px solid rgba(244,242,237,0.16);
  border-radius:0.91rem;
}
.site-media .visual{
  overflow:hidden;
  border-radius:0.51rem;
  background:var(--ink-panel);color:var(--paint-inverse);}
.site-media .visual img{display:block;
  width:100%;
  height:100%;
  min-height:11rem;
  object-fit:cover;}
.site-media .service-links{display:flex;
  flex-direction:column;
  gap:0.55rem;
  min-width:0;}
.site-media .narrow-feature{display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
  align-items:center;
  font-size:calc(17.4px * .875);
  letter-spacing:0.04em;
  text-transform:uppercase;}
.site-media .narrow-header{
  background:#F2B705;
  color:#141414;
  padding:0.2rem 0.6rem;
  border-radius:0.34rem;
  font-weight:700;
}
.site-media .bottom-fields{color:#F4F2ED;
  opacity:0.7;}
.site-media h3{margin:0;
  font-size:calc(17.4px * 1.125);
  line-height:1.3;}
.site-media h3 a{color:#F4F2ED;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:border-color 270ms var(--delay-entry);}
.site-media h3 a:hover{border-bottom-color:#F2B705;}
.site-media .service-links p{margin:0;
  color:#F4F2ED;
  opacity:0.82;
  line-height:1.77;}
.site-media .local-header{margin-top:auto;
  align-self:flex-start;
  font-weight:700;
  font-size:calc(17.4px * .875);
  text-decoration:none;
  border-bottom:1px solid #F2B705;
  padding-bottom:2px;}
.site-media .local-header:hover{color:#F4F2ED;
  border-bottom-color:#F4F2ED;}
.site-media .content-details{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:2.44rem;
  padding:calc(1.5rem * .75);
  background:var(--ink-panel);
  color:var(--paint-inverse);
  border-radius:0.91rem;
  border:1px solid rgba(244,242,237,0.14);
}
.site-media .content-details p{margin:0;
  flex:1 1 22rem;
  line-height:1.77;}
.site-media .box{
  display:inline-block;
  background:#F2B705;
  color:#141414;
  padding:0.7rem 1.2rem;
  border-radius:0.51rem;
  font-weight:700;
  text-decoration:none;
  transition:background 270ms var(--delay-entry);
}
.site-media .box:hover{
  background:#D9A204;color:#1B1B1A;}
@media (max-width:760px){.site-media .public-steps{
    grid-template-columns:1fr;
  }.site-media .visual img{
    min-height:13rem;
  }.site-media .content-details{
    flex-direction:column;
    align-items:flex-start;
  }
}
.focused-feature{padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A}
.focused-feature .offer-entries{max-width:1660px;margin:0 auto}
.focused-feature .wide-tile{margin-bottom:calc(2.44rem * 1.5)}
.focused-feature h2{margin:0;font-size:calc(17.4px * 2);line-height:1.08}
.focused-feature .wide-tile p{margin:1.5rem 0 0;color:#2B2B2A;line-height:1.77}
.focused-feature .active-footer{display:flex;flex-wrap:wrap;gap:calc(2.44rem * 1.5)}
.focused-feature .content-details{flex:1 1 100%;padding:1.5rem 0;border-top:1px solid #D6D2C8;border-bottom:1px solid #D6D2C8;color:#2B2B2A;line-height:1.77}
.focused-feature .content-details p{margin:0}
.focused-feature .content-details p + p{margin-top:calc(1.5rem * .75)}
.focused-feature .team-area{flex:1 1 16rem;padding:1.5rem 0;font-size:calc(17.4px * 1.35);line-height:1.08}
.focused-feature .team-area p{margin:calc(1.5rem * .75) 0 0;font-size:17.4px;line-height:1.77;color:#2B2B2A}
.focused-feature .narrow-items{display:flex;flex-wrap:wrap;gap:2.44rem;margin-top:calc(2.44rem * 1.5);padding-top:1.5rem;border-top:1px solid #D6D2C8}
.focused-feature .narrow-items a{color:inherit;text-decoration:none;font-size:17.4px;border-bottom:1px solid transparent;transition:color 270ms var(--delay-entry),border-color 270ms var(--delay-entry)}
.focused-feature .narrow-items a:hover{color:#2B2B2A;border-bottom-color:#2B2B2A}
@media (max-width:720px){.focused-feature .team-area{flex:1 1 100%}
}
.strong-quote{padding:calc(1.5rem * 2.4) 1.58rem;background:linear-gradient(135deg, #F2B705 0%, #D9A204 100%);color:#141414}
.strong-quote .offer-entries{max-width:1660px;margin:0 auto}
.strong-quote .steady-summary{display:flex;gap:2.44rem;align-items:flex-start;flex-wrap:wrap}
.strong-quote .wide-tile{flex:1 1 22rem;min-width:0}
.strong-quote .wide-tile h2{margin:0 0 calc(1.5rem * .75);font-size:calc(17.4px * 2);line-height:1.08}
.strong-quote .wide-tile .narrow-group{margin:0;font-size:calc(17.4px * 1.125);line-height:1.77}
.strong-quote .clear-benefit{flex:1 1 30rem;min-width:0;background:#2B2B2A;color:#F2B705;border-radius:0.91rem;padding:calc(1.5rem * .75)}
.strong-quote .secondary-headline{margin:0 0 calc(1.5rem * .75);border-bottom:1px solid #D6D2C8;padding-bottom:calc(1.5rem * .75)}
.strong-quote .bottom-flow{margin:0;font-size:calc(17.4px * 1.125);font-weight:600}
.strong-quote .open-list{margin:calc(calc(1.5rem * .75)*.25) 0 0;font-size:calc(17.4px * .875);opacity:.85}
.strong-quote .clear-benefit p{margin:0 0 calc(1.5rem * .75);font-size:17.4px;line-height:1.77}
.strong-quote .clear-benefit p:last-of-type{margin-bottom:0}
.strong-quote .top-fields{list-style:none;margin:calc(1.5rem * .75) 0 0;padding:0;display:flex;flex-wrap:wrap;gap:calc(calc(1.5rem * .75)*.6)}
.strong-quote .top-fields li{min-width:0}
.strong-quote .top-fields a{display:inline-flex;border-radius:0.34rem;background:#FFFFFF;color:#1B1B1A;padding:calc(calc(1.5rem * .75)*.5) calc(1.5rem * .75);text-decoration:none;font-size:calc(17.4px * .875);border:1px solid #D6D2C8}
.strong-quote .top-fields a:hover{background:#F2B705;color:#141414;border-color:#F2B705}
@media(max-width:760px){.strong-quote .steady-summary{display:block}.strong-quote .clear-benefit{margin-top:calc(2.44rem * 1.5)}.strong-quote .wide-tile h2{font-size:calc(17.4px * 1.35)}}
.service-headline{padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A;}
.site-note{max-width:1660px;margin:0 auto;}
.service-headline h1{margin:0;font-size:calc(17.4px * 2.65);line-height:1.08;}
.fresh-details{padding:calc(1.5rem * 2.4) 1.58rem;background:#2B2B2A;color:#F2B705}
.fresh-details .offer-entries{max-width:1660px;margin:0 auto}
.fresh-details .site-list{margin:0 0 calc(2.44rem * 1.5)}
.fresh-details .wide-tile{margin:0;font-size:calc(17.4px * 1.125);line-height:1.77}
.fresh-details h2{margin:1.5rem 0 0;font-size:calc(17.4px * 2.65);line-height:1.05}
.fresh-details .visual-rail{display:flex;flex-direction:column;border-top:1px solid #D6D2C8}
.fresh-details [data-voice]{width:min(100%,44rem);padding:1.5rem 0;border-bottom:1px solid #D6D2C8;align-self:var(--axis-static,flex-start);text-align:var(--paint-base,left)}
.fresh-details h3{margin:0;font-size:calc(17.4px * 1.35);line-height:1.2}
.fresh-details [data-voice] p{margin:calc(1.5rem * .75) 0 0;line-height:1.77}
.fresh-details .content-details{margin:calc(2.44rem * 1.5) 0 0;font-size:calc(17.4px * .875);line-height:1.77}
@media(max-width:620px){.fresh-details [data-voice]{align-self:flex-start!important;text-align:left!important}}
.primary-inner{
  background: #F4F2ED;
  color: #1B1B1A;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.primary-inner .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.44rem;
  align-items: flex-start;}
.primary-inner h2,
.primary-inner h3,
.primary-inner p{margin: 0;}
.primary-inner .narrow-copy{display: flex;
  flex-direction: column;
  gap: calc(2.44rem * 1.5);}
.primary-inner h2{font-size: calc(17.4px * 2);
  line-height: 1.08;}
.primary-inner .narrow-copy p{color: #2B2B2A;
  line-height: 1.77;}
.primary-inner a{width: fit-content;color:inherit;
  text-decoration: none;
  border-bottom: 1px solid #F2B705;
  padding-bottom: 2px;
  transition: color 270ms var(--delay-entry);}
.primary-inner a:hover{color: #2B2B2A;
  border-bottom-color: #2B2B2A;}
.primary-inner .strong-header{display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1.32rem;
  box-shadow: 0 8px 26px rgba(0,0,0,0.23);}
.primary-inner .secondary-body{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.primary-inner .site-group{display: flex;
  flex-wrap: wrap;
  gap: calc(1.5rem * .75);
  align-items: center;
  padding-bottom: calc(1.5rem * .75);
  border-bottom: 1px solid #D6D2C8;}
.primary-inner .site-group span{color: #2B2B2A;
  font-size: calc(17.4px * .875);
  text-transform: uppercase;
  letter-spacing: 0.04em;}
.primary-inner h3{font-size: calc(17.4px * 1.35);
  line-height: 1.16;}
.primary-inner .visual{display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.51rem;}
@media (max-width: 960px) {.primary-inner .strong-header{ aspect-ratio: 16 / 9; }
}
.primary-inner .offer-entries > *{min-width: 0; flex: 1 1 18rem;}
.primary-inner .site-group > *{min-width: 0; flex: 1 1 16rem;}
.service-quote{--state-control:calc(1.5rem * 0.93);--field-content:calc(1660px / 2.17);--copy-button:calc(1660px / 3.14);--label-base:calc(1660px / 3.23);padding:calc(1.5rem * 2.4) 1.58rem;background:#F2B705;color:#141414;}
.service-quote .offer-entries{max-width:1660px;margin:0 auto;}
.service-quote h1,.service-quote h2,.service-quote h3,.service-quote p,.service-quote ul{margin:0;}
.service-quote h1{font-size:calc(17.4px * 2.65);line-height:1.1;}
.service-quote h2{font-size:calc(17.4px * 2);line-height:1.12;}
.service-quote h3{font-size:calc(17.4px * 1.35);line-height:1.2;}
.service-quote p{font-size:17.4px;line-height:1.77;color:color-mix(in srgb, currentColor 74%, transparent);}
.service-quote a{color:inherit;text-decoration:none;}
.service-quote img{display:block;width:100%;height:auto;border-radius:0.51rem;}
.service-quote .box{display:inline-flex;align-items:center;justify-content:center;padding:calc(1.5rem * .75) 1.5rem;border-radius:0.34rem;background:#141414;color:#F2B705;}
.service-quote .soft{background:color-mix(in srgb, color-mix(in srgb, currentColor 10%, transparent) 84%, transparent);}
.service-quote .centered{text-align:center;}
.service-quote .offset{padding-inline-start:calc(1.58rem / 2);}
.service-quote .steady-grid{padding-block:calc(var(--state-control) / 2);}
.service-quote .open{padding-block-start:var(--state-control);}
.service-quote .quiet-summary{padding-block-end:calc(var(--state-control) / 3);}
.service-quote .steady-summary{max-width:1660px;}
.service-quote .soft-start{padding-inline-start:calc(1.5rem * .75);}
.service-quote .site-wrap{row-gap:calc(var(--state-control) * 1.2);}
.service-quote .steady-inner{row-gap:calc(var(--state-control) * .7);}
.service-quote .measured{column-gap:calc(2.44rem * .85);}
.service-quote .relaxed{column-gap:calc(2.44rem * 1.12);}
.service-quote .fresh-footer{padding-inline-end:calc(calc(1.5rem * .75) / 2);}
.service-quote .narrow-group{margin-top:1.5rem;max-width:calc(1660px / 2);}
.service-quote .secondary-track{display:flex;flex-direction:column;gap:var(--state-control);margin-top:var(--state-control);}
.service-quote .public-steps{min-width:0;}
.service-quote .public-steps p{margin-top:calc(1.5rem / 3);}
.service-quote .public-steps a{display:inline-flex;margin-top:calc(1.5rem / 2);opacity:.85;}
.secondary-feature{--state-control:calc(1.5rem * 1.18);--label-base:calc(1660px / 3.4);padding:calc(1.5rem * 2.4) 1.58rem;background:var(--ink-panel);color:var(--paint-inverse);}
.secondary-feature .offer-entries{max-width:1660px;margin:0 auto;}
.secondary-feature h1,.secondary-feature h2,.secondary-feature h3,.secondary-feature p{margin:0;}
.secondary-feature h2{font-size:calc(17.4px * 2);line-height:1.14;}
.secondary-feature h3{font-size:calc(17.4px * 1.35);line-height:1.22;}
.secondary-feature p{font-size:17.4px;line-height:1.77;color:inherit;}
.secondary-feature .row-title{display:flex;flex-wrap:wrap;align-items:flex-start;gap:2.44rem;}
.secondary-feature .row-title h2{flex:1 1 calc(1660px / 2.6);min-width:0;}
.secondary-feature .row-title>p{flex:1 1 calc(1660px / 3.1);min-width:0;}
.secondary-feature .secondary-body{flex:1 1 100%;display:flex;flex-wrap:wrap;gap:var(--state-control);margin-top:var(--state-control);}
.secondary-feature .public-steps{flex:1 1 var(--label-base);min-width:0;padding-top:calc(1.5rem * .75);border-top:1px solid #D6D2C8;}
.secondary-feature .public-steps p{margin-top:calc(1.5rem / 3);}
.secondary-feature .quiet-summary{padding-block-end:calc(var(--state-control) / 3);}
.secondary-feature .steady-inner{row-gap:calc(var(--state-control) * .7);}
@media (max-width:720px){.secondary-feature .row-title h2,.secondary-feature .row-title>p{flex:1 1 100%;}
}
.team-figure{
  padding: calc(1.5rem * 2.4) 1.58rem;
  background: #F2B705;
  color: #141414;
}
.team-figure .offer-entries{max-width: 1660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: calc(2.44rem * 1.5);
  align-items: start;}
.team-figure .box{
  padding: calc(1.5rem * .75);
  border-radius: 0.91rem;
  background: #FFFFFF;
  color: #1B1B1A;
  border: 1px solid #D6D2C8;
}
.team-figure .box span{
  display: inline-block;
  font-size: calc(17.4px * .875);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F2B705;
  background: #2B2B2A;
  padding: 0.25rem 0.6rem;
  border-radius: 0.34rem;
}
.team-figure h2{margin: calc(1.5rem * .75) 0 calc(calc(1.5rem * .75) * 0.5);
  font-size: calc(17.4px * 2);
  line-height: 1.12;}
.team-figure .narrow-group{margin: 0 0 calc(1.5rem * .75);
  font-size: 17.4px;
  line-height: 1.77;}
.team-figure a{
  display: inline-flex;
  align-items: center;
  padding: calc(calc(1.5rem * .75) * 0.7) calc(1.5rem * .75);
  border-radius: 0.51rem;
  background: #F2B705;
  color: #141414;
  text-decoration: none;
  font-weight: 600;
  transition: background 270ms var(--delay-entry);
}
.team-figure a:hover{
  background: #D9A204;color:#1B1B1A;}
.team-figure .secondary-track{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.team-figure .secondary-track > p{margin: 0 0 calc(calc(1.5rem * .75) * 0.4);
  font-size: calc(17.4px * 1.125);
  line-height: 1.4;}
.team-figure .active-flow{
  padding: calc(1.5rem * .75);
  border-radius: 0.51rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: calc(1.5rem * .75);
}
.team-figure .active-flow strong{flex: 0 0 auto;
  font-size: 17.4px;}
.team-figure .active-flow span{color:inherit;
  opacity: 0.78;
  text-align: right;
  font-size: calc(17.4px * .875);
  line-height: 1.5;}
@media (max-width: 760px) {.team-figure .offer-entries{
    grid-template-columns: 1fr;
  }.team-figure .active-flow{
    flex-direction: column;
    align-items: flex-start;
  }.team-figure .active-flow span{
    text-align: left;
  }
}
.visual-note{--state-control:calc(1.5rem * 1.2);--state-main:calc(1660px / 3.4);padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A;}
.visual-note .offer-entries{max-width:1660px;margin:0 auto;}
.visual-note h2,.visual-note h3,.visual-note p{margin:0;}
.visual-note h2{font-size:calc(17.4px * 2);line-height:1.12;}
.visual-note h3{font-size:calc(17.4px * 1.35);line-height:1.22;}
.visual-note p{font-size:17.4px;line-height:1.77;}
.visual-note a{color:#2B2B2A;text-decoration:underline;text-decoration-color:#F2B705;text-underline-offset:3px;}
.visual-note a:hover{color:#141414;text-decoration-color:#D9A204;}
.visual-note img{display:block;width:100%;height:auto;border-radius:0.51rem;margin-top:var(--state-control);}
.visual-note .narrow-group{margin-top:1.5rem;}
.visual-note .secondary-body{display:flex;flex-wrap:wrap;align-items:flex-start;gap:2.44rem;margin-top:var(--state-control);}
.visual-note .public-steps{flex:1 1 var(--state-main);min-width:0;padding-top:calc(1.5rem * .75);border-top:2px solid #2B2B2A;}
.visual-note .public-steps p{margin-top:calc(1.5rem / 2.4);}
.visual-note .public-steps a{display:inline-block;margin-top:calc(1.5rem / 1.8);font-size:calc(17.4px * .875);}
.visual-note .content-details{margin-top:var(--state-control);padding-top:calc(1.5rem * .75);border-top:1px solid #D6D2C8;font-size:calc(17.4px * .875);}
@media (max-width:720px){.visual-note .public-steps{flex:1 1 100%;}
}
.offer-method{padding:calc(1.5rem * 2.4) 1.58rem;background:linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);color:#F4F2ED;}
.offer-method .offer-entries{max-width:1660px;margin:0 auto;display:flex;flex-direction:column;gap:calc(2.44rem * 1.5);}
.offer-method .site-list{display:flex;flex-direction:column;gap:1.58rem;}
.offer-method .site-list p{margin:0;font-size:calc(17.4px * .875);font-weight:700;letter-spacing:.04em;text-transform:uppercase;opacity:.85;}
.offer-method .site-list h2{margin:0;font-size:calc(17.4px * 2);line-height:1.15;}
.offer-method .simple-header{display:flex;flex-direction:column;gap:1.5rem;}
.offer-method .simple-header .narrow-group{margin:0;font-size:calc(17.4px * 1.125);line-height:1.77;}
.offer-method .simple-header .service-links{margin:0;font-size:17.4px;line-height:1.77;opacity:.92;}
.offer-method .secondary-body{display:flex;flex-wrap:wrap;gap:2.44rem;}
.offer-method .public-steps{flex:1 1 300px;display:flex;flex-direction:column;gap:1.58rem;padding:calc(1.5rem * .75);border-radius:0.91rem;border:1px solid color-mix(in srgb, currentColor 14%, transparent);background:color-mix(in srgb, currentColor 12%, transparent);}
.offer-method .public-steps .narrow-header{font-size:calc(17.4px * .875);font-weight:700;letter-spacing:.03em;text-transform:uppercase;opacity:.85;}
.offer-method .public-steps h3{margin:0;font-size:calc(17.4px * 1.35);line-height:1.25;}
.offer-method .public-steps p{margin:0;font-size:17.4px;line-height:1.77;}
.offer-method .public-steps .content-details{font-size:calc(17.4px * .875);opacity:.85;}
.offer-method .public-steps .site-group{text-decoration:none;font-weight:700;border-bottom:1px solid color-mix(in srgb, #F2B705 45%, transparent);align-self:flex-start;transition:color 270ms var(--delay-entry),border-color 270ms var(--delay-entry);}
.offer-method .public-steps .site-group:hover{border-color:#2B2B2A;}
.offer-method .narrow-items{display:flex;flex-wrap:wrap;align-items:center;gap:1.58rem;padding-top:1.5rem;border-top:1px solid color-mix(in srgb, currentColor 18%, transparent);}
.offer-method .narrow-items p{margin:0;flex:1 1 320px;font-size:17.4px;line-height:1.77;opacity:.92;}
.offer-method .narrow-items a{text-decoration:none;font-weight:700;border-bottom:1px solid color-mix(in srgb, #F2B705 45%, transparent);transition:color 270ms var(--delay-entry),border-color 270ms var(--delay-entry);}
.offer-method .narrow-items a:hover{border-color:#2B2B2A;}
@media (max-width:640px){.offer-method .site-list h2{font-size:calc(17.4px * 1.35);}.offer-method .simple-header .narrow-group{font-size:17.4px;}
}
.main-benefit{
  padding: calc(1.5rem * 2.4) 1.58rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
}
.main-benefit .offer-entries{max-width: min(1660px, 72rem);
  margin: 0 auto;}
.main-benefit .site-list{margin-bottom: calc(2.44rem * 1.5);}
.main-benefit h2{margin: 0 0 calc(1.5rem * .75);
  font-size: calc(17.4px * 2);
  line-height: 1.1;}
.main-benefit .narrow-group{margin: 0;
  font-size: calc(17.4px * 1.125);
  line-height: 1.77;
  color: #C9C6BE;}
.main-benefit .open-content{display: flex;
  flex-wrap: wrap;
  gap: 2.44rem;
  margin-bottom: calc(2.44rem * 1.5);}
.main-benefit .public-steps{flex: 1 1 min(100%, 20rem);
  padding-left: calc(1.5rem * .75);
  border-left: 2px solid #F2B705;}
.main-benefit .media-callout{margin: 0 0 calc(1.5rem * .75);
  font-size: 17.4px;
  line-height: 1.77;}
.main-benefit .secondary-headline{margin: 0;
  font-weight: 700;
  font-size: 17.4px;}
.main-benefit .open-list{margin: 0.25rem 0 0;
  font-size: calc(17.4px * .875);
  color: #C9C6BE;}
.main-benefit .narrow-feature{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);
  padding: calc(1.5rem * .75) 0;
  border-top: 1px solid #2B2B2A;
  border-bottom: 1px solid #2B2B2A;
  margin-bottom: calc(2.44rem * 1.5);}
.main-benefit .primary-section{display: flex;
  flex-wrap: wrap;
  gap: calc(1.5rem * .75);
  align-items: baseline;}
.main-benefit .offer-surface{flex: 0 0 auto;
  min-width: 12rem;
  font-size: calc(17.4px * .875);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #F2B705;}
.main-benefit .clear-rail{flex: 1 1 16rem;
  font-size: 17.4px;
  color: #C9C6BE;}
.main-benefit .content-details{margin: 0;
  font-size: 17.4px;
  line-height: 1.77;
  color: #C9C6BE;}
.main-benefit .content-details a{color: #F2B705;
  text-decoration: underline;}
.main-benefit .content-details a:hover{}
@media (max-width: 700px) {.main-benefit .open-content{
    display: block;
  }.main-benefit .public-steps + .public-steps{
    margin-top: 2.44rem;
  }.main-benefit .offer-surface{
    min-width: 0;
  }
}
.bottom-details{padding:calc(1.5rem * 2.4) 1.58rem;background:linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);color:#F4F2ED}
.bottom-details .offer-entries{max-width:1660px;margin:0 auto}
.bottom-details .open-content{display:flex;gap:calc(2.44rem * 1.5);align-items:flex-start}
.bottom-details .fresh-fields{flex:0 1 21rem;min-width:0;border-left:1px solid color-mix(in srgb,#F4F2ED 26%,transparent);padding-left:1.5rem;display:flex;flex-direction:column;gap:calc(1.5rem * .75)}
.bottom-details .fresh-fields .content-details{margin:0;font-size:calc(17.4px * .875);line-height:1.77;opacity:.88}
.bottom-details .simple-service{flex:1 1 46rem;min-width:0}
.bottom-details h2{margin:0;font-size:calc(17.4px * 2);line-height:1.08;letter-spacing:-0.01em}
.bottom-details .simple-view{margin-top:calc(2.44rem * 1.5);display:flex;flex-direction:column;gap:1.5rem}
.bottom-details .primary-section{margin:0;display:flex;gap:1.5rem;align-items:flex-start;padding-top:calc(1.5rem * .75);border-top:1px solid color-mix(in srgb,#F4F2ED 16%,transparent)}
.bottom-details .primary-section:first-child{padding-top:0;border-top:0}
.bottom-details strong{flex:0 1 13rem;min-width:0;font-size:calc(17.4px * .875);text-transform:uppercase;letter-spacing:.06em}
.bottom-details span{flex:1 1 30rem;min-width:0;line-height:1.77}
.bottom-details .steady-inner{margin:calc(2.44rem * 1.5) 0 0;padding-top:calc(1.5rem * .75);border-top:1px solid color-mix(in srgb,#F4F2ED 22%,transparent);line-height:1.77}
.bottom-details .steady-inner a{text-decoration:underline;text-underline-offset:3px}
.bottom-details .steady-inner a:hover{}
@media(max-width:760px){.bottom-details .open-content{display:block}.bottom-details .fresh-fields{border-left:0;padding-left:0}.bottom-details .simple-service{margin-top:calc(2.44rem * 1.5)}.bottom-details .primary-section{display:block}.bottom-details span{display:block;margin-top:calc(1.5rem * .75)}.bottom-details h2{font-size:calc(17.4px * 1.35)}}
.focused-entries{padding:calc(1.5rem * 2.4) 1.58rem;background:linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);color:#F4F2ED}
.focused-entries .offer-entries{max-width:1660px;margin:0 auto}
.focused-entries .wide-tile{margin-bottom:calc(2.44rem * 1.5)}
.focused-entries h2{margin:0;font-size:calc(17.4px * 2.65);line-height:1.05}
.focused-entries .wide-tile p{margin:1.5rem 0 0;font-size:calc(17.4px * 1.125);line-height:1.77}
.focused-entries .bottom-proof{display:flex;flex-wrap:wrap;gap:1.5rem 2.44rem}
.focused-entries .direct-frame{flex:1 1 26rem;min-width:0;padding:1.5rem 0;border-top:1px solid rgba(244,242,237,0.18)}
.focused-entries .direct-frame strong{display:block;font-size:calc(17.4px * 1.35);line-height:1.15}
.focused-entries .direct-frame p{margin:calc(1.5rem * .75) 0 0;line-height:1.77}
.focused-entries .narrow-items{display:flex;flex-wrap:wrap;gap:calc(1.5rem * .75) 2.44rem;margin-top:calc(2.44rem * 1.5);padding-top:1.5rem;border-top:1px solid rgba(244,242,237,0.18)}
.focused-entries .narrow-items a{text-decoration:none;font-size:17.4px;border-bottom:1px solid transparent;transition:color 270ms var(--delay-entry),border-color 270ms var(--delay-entry)}
.focused-entries .narrow-items a:hover{border-bottom-color:#2B2B2A}
@media(max-width:760px){.focused-entries .bottom-proof{display:block}.focused-entries .direct-frame{flex:none;width:100%}}
.steady-fields{
  background: #F4F2ED;
  color: #1B1B1A;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.steady-fields .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 2.44rem;
  align-items: start;}
.steady-fields h2,
.steady-fields p{margin: 0;}
.steady-fields .wide-tile{display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: calc(1.5rem * .75);}
.steady-fields h2{font-size: calc(17.4px * 2);
  line-height: 1.08;}
.steady-fields .wide-tile p{color: #2B2B2A;
  line-height: 1.77;}
.steady-fields .secondary-body{display: flex;
  flex-direction: column;
  gap: 0;}
.steady-fields .site-group{display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: calc(1.5rem * .75) 0;
  border-top: 1px solid #D6D2C8;}
.steady-fields .site-group:last-child{border-bottom: 1px solid #D6D2C8;}
.steady-fields .wide-wrap{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.51rem;
  background: #E7E3DA;color:#2B2B2A;}
.steady-fields strong{display: block;
  font-size: calc(17.4px * 1.35);
  line-height: 1.16;}
.steady-fields .site-group p{margin-top: calc(1.5rem * .75);
  color: #2B2B2A;
  line-height: 1.77;}
@media (max-width: 900px) {.steady-fields .offer-entries{
    grid-template-columns: minmax(0, 1fr);
  }.steady-fields .wide-tile{
    padding-top: 0;
  }
}
@media (max-width: 560px) {.steady-fields .site-group{
    grid-template-columns: minmax(0, 1fr);
  }
}
.content-plan{
  --state-control:calc(1.5rem * 1.2);
  --field-strong:calc(1660px / 5.5);
  padding:calc(1.5rem * 2.4) 1.58rem;
  background:#F4F2ED;
  color:#1B1B1A;
}
.content-plan .offer-entries{max-width:1660px;
  margin:0 auto;}
.content-plan h2,
.content-plan h3,
.content-plan p{margin:0;}
.content-plan h2{font-size:calc(17.4px * 2);
  line-height:1.14;}
.content-plan h3{font-size:calc(17.4px * 1.35);
  line-height:1.22;}
.content-plan p{font-size:17.4px;
  line-height:1.77;}
.content-plan img{display:block;
  width:100%;
  height:auto;
  border-radius:0.51rem;}
.content-plan a{color:inherit;
  text-decoration:none;}
.content-plan .wide-tile{display:flex;
  flex-direction:column;
  gap:calc(1.5rem / 2);
  padding-bottom:calc(2.44rem * 1.5);
  border-bottom:1px solid #D6D2C8;}
.content-plan .narrow-group{}
.content-plan .secondary-body{display:flex;
  flex-direction:column;
  gap:var(--state-control);
  margin-top:var(--state-control);}
.content-plan .public-steps{display:flex;
  flex-wrap:wrap;
  gap:calc(1.5rem * .75);
  align-items:flex-start;
  padding-bottom:var(--state-control);
  border-bottom:1px solid #D6D2C8;}
.content-plan .public-steps:last-child{border-bottom:0;
  padding-bottom:0;}
.content-plan .visual{flex:0 0 var(--field-strong);
  min-width:0;}
.content-plan .service-links{flex:1 1 320px;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:calc(1.5rem / 3);}
.content-plan .narrow-items{display:inline-block;
  width:max-content;
  max-width:100%;
  margin-top:calc(1.5rem / 4);
  padding-bottom:2px;
  border-bottom:2px solid #F2B705;
  font-size:calc(17.4px * .875);
  letter-spacing:0.02em;
  text-transform:uppercase;}
.content-plan .narrow-items:hover{border-bottom-color:#2B2B2A;}
.content-plan .visual-quote{
  margin-top:var(--state-control);
  padding:calc(1.5rem * .75) 1.5rem;
  border-radius:0.91rem;
  background:#E7E3DA;
  color:#2B2B2A;
}
.content-plan .visual-quote a{border-bottom:1px solid #2B2B2A;}
.content-plan .visual-quote a:hover{border-bottom-color:#3A3A38;}
@media (max-width:720px){.content-plan .visual{
    flex:1 1 100%;
  }
}
.site-frame{--state-control:calc(1.5rem * 0.9);padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A;}
.site-frame .offer-entries{max-width:1660px;margin:0 auto;}
.site-frame h2,.site-frame h3,.site-frame p{margin:0;}
.site-frame h2{font-size:calc(17.4px * 2);line-height:1.12;}
.site-frame h3{font-size:calc(17.4px * 1.35);line-height:1.2;}
.site-frame p{font-size:17.4px;line-height:1.77;}
.site-frame .wide-tile{display:flex;flex-direction:column;gap:calc(1.5rem / 2);}
.site-frame .content-details{font-size:calc(17.4px * .875);text-transform:uppercase;letter-spacing:.06em;color:#2B2B2A;}
.site-frame .narrow-group{color:#2B2B2A;}
.site-frame .secondary-body{list-style:none;margin:var(--state-control) 0 0;padding:0;display:flex;flex-direction:column;gap:var(--state-control);}
.site-frame .public-steps{display:flex;gap:calc(1.5rem * .75);align-items:flex-start;padding-top:var(--state-control);border-top:1px solid #D6D2C8;}
.site-frame .public-steps:first-child{border-top:0;padding-top:0;}
.site-frame .active-flow{flex:0 0 auto;font-size:calc(17.4px * 1.125);font-weight:700;color:#F2B705;background:#2B2B2A;border-radius:0.34rem;padding:.35rem .7rem;line-height:1;}
.site-frame .service-links{min-width:0;display:flex;flex-direction:column;gap:calc(1.5rem / 3);}
.site-frame .narrow-items{margin-top:var(--state-control);padding-top:var(--state-control);border-top:1px solid #D6D2C8;}
.site-frame .narrow-items p{color:#2B2B2A;}
.site-frame .narrow-items a{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.site-frame .narrow-items a:hover{color:#2B2B2A;}
@media (max-width:640px){.site-frame .public-steps{flex-direction:column;gap:calc(1.5rem / 2);}
}
.visual-tile{padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A}
.visual-tile .offer-entries{max-width:1660px;margin:0 auto}
.visual-tile .bottom-proof{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.35fr);gap:calc(2.44rem * 1.5);align-items:start}
.visual-tile .wide-tile{min-width:0}
.visual-tile h2{margin:0;font-size:calc(17.4px * 2);line-height:1.08}
.visual-tile .wide-tile p{margin:1.5rem 0 0;font-size:17.4px;line-height:1.77}
.visual-tile .wide-tile p:first-of-type{margin-top:calc(2.44rem * 1.5)}
.visual-tile .fields{display:flex;flex-direction:column;gap:0;border-top:1px solid #D6D2C8}
.visual-tile .fields a{display:block;padding:1.5rem 0;border-bottom:1px solid #D6D2C8;text-decoration:none;color:inherit}
.visual-tile .fields a:hover strong{}
.visual-tile strong{display:block;font-size:calc(17.4px * 1.35);line-height:1.18;transition:color 270ms var(--delay-entry)}
.visual-tile span{display:block;margin-top:calc(1.5rem * .75);font-size:calc(17.4px * .875);line-height:1.77;}
@media(max-width:820px){.visual-tile .bottom-proof{grid-template-columns:minmax(0,1fr)}.visual-tile .fields{margin-top:calc(2.44rem * 1.5)}}
.media-form{--state-control:calc(1.5rem * 1.05);--field-content:calc(1660px / 2.4);padding:calc(1.5rem * 2.4) 1.58rem;background:#E7E3DA;color:#2B2B2A;}
.media-form .offer-entries{max-width:1660px;margin:0 auto;}
.media-form h1,.media-form h2,.media-form h3,.media-form p{margin:0;}
.media-form h2{font-size:calc(17.4px * 2);line-height:1.14;}
.media-form h3{font-size:calc(17.4px * 1.35);line-height:1.22;}
.media-form p{font-size:17.4px;line-height:1.77;}
.media-form .narrow-group{margin-top:1.5rem;font-size:calc(17.4px * 1.125);}
.media-form .content-details{margin-top:calc(2.44rem * 1.5);padding-top:calc(2.44rem * 1.5);border-top:1px solid #D6D2C8;font-size:calc(17.4px * .875);}
.media-form .secondary-body{display:flex;flex-direction:column;gap:var(--state-control);}
.media-form .public-steps{min-width:0;padding-left:calc(1.5rem * .75);border-left:3px solid #F2B705;}
.media-form .public-steps p{margin-top:calc(1.5rem / 3);}
.media-form .headline{display:flex;align-items:flex-start;gap:2.44rem;}
.media-form .headline>.service-links{flex:1 1 calc(1660px / 3);min-width:0;}
.media-form .headline>.secondary-body{flex:2 1 calc(1660px / 2);}
@media(max-width:760px){.media-form .headline{flex-direction:column;}.media-form .headline>.secondary-body{margin-top:var(--state-control);}}
.fresh-unit{background:#E7E3DA;color:#2B2B2A;padding:calc(1.5rem * 2.4) 1.58rem}
.fresh-unit .offer-entries{max-width:1660px;margin:0 auto}
.fresh-unit .fresh-rail{display:flex;align-items:flex-start;gap:calc(2.44rem * 1.5)}
.fresh-unit .wide-tile{flex:0 1 30rem;min-width:0}
.fresh-unit h2{margin:0;font-size:clamp(calc(17.4px * 2),5vw,calc(17.4px * 2.65));line-height:1.08}
.fresh-unit p{margin:1.5rem 0 0;font-size:calc(17.4px * 1.125);line-height:1.65}
.fresh-unit .simple-view{flex:1 1 36rem;min-width:0;display:flex;flex-direction:column;border-top:1px solid #D6D2C8}
.fresh-unit .primary-section{display:flex;gap:2.44rem;padding:1.5rem 0;border-bottom:1px solid #D6D2C8;color:inherit;text-decoration:none}
.fresh-unit a.row:hover strong{color:inherit;}
.fresh-unit strong{flex:0 1 14rem;min-width:0;font-size:17.4px}
.fresh-unit span{flex:1 1 20rem;min-width:0;line-height:1.6}
@media(max-width:760px){.fresh-unit .fresh-rail,.fresh-unit .primary-section{flex-direction:column}.fresh-unit .primary-section{gap:calc(calc(1.5rem * .75)*.5)}}
.quiet-panel{padding:calc(1.5rem * 2.4) 1.58rem;background:linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);color:#F4F2ED}
.quiet-panel .offer-entries{max-width:1660px;margin:0 auto}
.quiet-panel .open-content{display:flex;gap:calc(2.44rem * 1.5);align-items:flex-start}
.quiet-panel .fresh-fields{flex:0 1 20rem;min-width:0;border-left:2px solid #F2B705;padding-left:1.5rem}
.quiet-panel .content-details{margin:0;line-height:1.77}
.quiet-panel .site-group{margin:calc(1.5rem * .75) 0 0;font-size:calc(17.4px * .875);opacity:.78}
.quiet-panel .simple-service{flex:1 1 46rem;min-width:0}
.quiet-panel h2{margin:0;font-size:calc(17.4px * 2.65);line-height:1.05}
.quiet-panel .simple-view{margin-top:calc(2.44rem * 1.5);display:flex;flex-direction:column;gap:1.5rem}
.quiet-panel .public-steps{margin:0;display:flex;gap:1.5rem;align-items:flex-start;padding-top:calc(1.5rem * .75);border-top:1px solid color-mix(in srgb,#F4F2ED 22%,transparent)}
.quiet-panel .public-steps:first-child{border-top:0;padding-top:0}
.quiet-panel strong{flex:0 1 13rem;min-width:0;font-size:calc(17.4px * .875);letter-spacing:.02em;text-transform:uppercase}
.quiet-panel span{flex:1 1 30rem;min-width:0;line-height:1.77}
@media(max-width:760px){.quiet-panel .open-content,.quiet-panel .public-steps{display:block}.quiet-panel .fresh-fields{border-left:0;padding-left:0}.quiet-panel .simple-service{margin-top:calc(2.44rem * 1.5)}.quiet-panel strong{display:block}.quiet-panel span{display:block;margin-top:calc(1.5rem * .75)}.quiet-panel h2{font-size:calc(17.4px * 2)}}
.featured-section{--state-control:calc(1.5rem * 1.1);padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A;}
.featured-section .offer-entries{max-width:1660px;margin:0 auto;display:flex;flex-direction:column;gap:var(--state-control);}
.featured-section h2,.featured-section h3,.featured-section p{margin:0;}
.featured-section h2{font-size:calc(17.4px * 2);line-height:1.14;}
.featured-section h3{font-size:calc(17.4px * 1.35);line-height:1.22;}
.featured-section p{font-size:17.4px;line-height:1.77;}
.featured-section .wide-tile{display:flex;flex-direction:column;gap:calc(1.5rem / 2);}
.featured-section .narrow-group{color:#2B2B2A;}
.featured-section .page-service{display:flex;flex-direction:column;gap:0;border-top:1px solid #D6D2C8;}
.featured-section .public-steps{padding:calc(2.44rem * 1.5) 0;border-bottom:1px solid #D6D2C8;display:flex;flex-direction:column;gap:calc(1.5rem / 3);}
.featured-section .public-steps p{color:#2B2B2A;}
.featured-section a{color:inherit;text-decoration:none;border-bottom:1px solid rgba(242,183,5,0.55);}
.featured-section a:hover{color:#2B2B2A;}
.featured-section .narrow-items{font-size:calc(17.4px * .875);color:#2B2B2A;padding-top:calc(1.5rem / 2);}
@media (max-width:720px){.featured-section .public-steps{padding:calc(1.5rem * .75) 0;}
}
.content-inner{--state-control:calc(1.5rem * 1.02);--field-content:calc(1660px / 2.25);--copy-button:calc(1660px / 3.83);padding:calc(1.5rem * 2.4) 1.58rem;background:#F2B705;color:#141414;}
.content-inner .offer-entries{max-width:1660px;margin:0 auto;}
.content-inner h1,.content-inner h2,.content-inner h3,.content-inner p{margin:0;}
.content-inner h1{font-size:calc(17.4px * 2.65);line-height:1.08;}
.content-inner h2{font-size:calc(17.4px * 2);line-height:1.12;}
.content-inner h3{font-size:calc(17.4px * 1.35);line-height:1.2;}
.content-inner p{font-size:17.4px;line-height:1.77;color:color-mix(in srgb, currentColor 74%, transparent);}
.content-inner a{color:inherit;text-decoration:none;}
.content-inner img{display:block;width:100%;height:auto;border-radius:0.51rem;}
.content-inner .box{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:#141414;color:#F2B705;}
.content-inner .narrow-group{margin-top:calc(1.5rem / 2);}
.content-inner .secondary-body{display:flex;flex-wrap:wrap;align-items:flex-start;gap:2.44rem;margin-top:var(--state-control);}
.content-inner .public-steps{flex:1 1 calc(1660px / 4);min-width:0;}
.content-inner .public-steps p,.content-inner .public-steps a{margin-top:calc(1.5rem / 3);}
.content-inner .public-steps img{margin-bottom:calc(1.5rem / 2);}
.content-inner .quiet-details{display:flex;flex-wrap:wrap;align-items:flex-start;gap:2.44rem;}
.content-inner .quiet-details>.service-links{flex:1 1 auto;min-width:0;}
.content-inner .quiet-details>.box{flex:0 0 auto;}
.content-inner .quiet-details>.secondary-body{flex:1 1 100%;}
.content-inner .service-links h2{margin-top:calc(1.5rem / 2);}
.content-inner .narrow-items{display:flex;flex-wrap:wrap;align-items:baseline;gap:calc(2.44rem / 2);margin-top:var(--state-control);padding-top:calc(1.5rem / 2);border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);font-size:calc(17.4px * .875);}
.content-inner .narrow-items span{opacity:.72;}
.content-inner .narrow-items a{text-decoration:underline;text-underline-offset:3px;}
.content-inner .narrow-items a:hover{opacity:.72;}
.media-tile{padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A}
.media-tile .offer-entries{max-width:min(1660px,58rem);margin:0 auto}
.media-tile .wide-tile{max-width:52rem}
.media-tile h2{margin:0;font-size:calc(17.4px * 2);line-height:1.1}
.media-tile .wide-tile p{margin:1.5rem 0 0;color:#2B2B2A;line-height:1.77}
.media-tile .featured-steps{margin-top:calc(2.44rem * 1.5);border-top:1px solid #D6D2C8}
.media-tile details{padding:1.5rem 0;border-bottom:1px solid #D6D2C8}
.media-tile summary{cursor:pointer;font-size:calc(17.4px * 1.35);line-height:1.2;list-style:none;display:flex;gap:calc(1.5rem * .75);align-items:baseline}
.media-tile summary::-webkit-details-marker{display:none}
.media-tile summary::before{content:"+";flex:0 0 auto;font-size:17.4px;color:#F2B705;background:#2B2B2A;width:1.4rem;height:1.4rem;line-height:1.4rem;text-align:center;border-radius:0.34rem}
.media-tile details[open] summary::before{content:"–"}
.media-tile details p{margin:1.5rem 0 0;padding-left:calc(1.4rem + calc(1.5rem * .75));color:#2B2B2A;line-height:1.77}
@media(max-width:720px){.media-tile .featured-steps{margin-top:calc(2.44rem * 1.5)}.media-tile details p{padding-left:0}
}
.soft-plan{padding:calc(1.5rem * 2.4) 1.58rem;background:#E7E3DA;color:#2B2B2A}
.soft-plan .offer-entries{max-width:1660px;margin:0 auto}
.soft-plan .simple-feature{margin-bottom:calc(2.44rem * 1.5)}
.soft-plan h2{margin:0;font-size:calc(17.4px * 2);line-height:1.06}
.soft-plan .simple-feature p{margin:1.5rem 0 0;font-size:17.4px;line-height:1.77}
.soft-plan .content-entries{display:flex;flex-wrap:wrap;align-items:flex-start;gap:2.44rem}
.soft-plan .page-service{flex:1 1 20rem;display:flex;flex-direction:column;gap:calc(1.5rem * .75);border-left:2px solid #D6D2C8;padding-left:calc(1.5rem * .75)}
.soft-plan button{padding:0;border:0;background:none;color:inherit;font:inherit;text-align:left;cursor:pointer;opacity:.55;transition:opacity 270ms var(--delay-entry),padding-left 270ms var(--delay-entry)}
.soft-plan button:hover,.soft-plan button.is-active{opacity:1;padding-left:calc(1.5rem * .75)}
.soft-plan .page-stack{flex:2 1 30rem;align-self:start;background:#FFFFFF;color:#1B1B1A;border:1px solid #D6D2C8;border-radius:0.91rem;padding:calc(1.5rem * .75)}
.soft-plan [data-response]{display:none}
.soft-plan [data-response].is-active{display:block;animation:clarifyFocusIn calc(270ms*1.8) var(--delay-entry) both}
.soft-plan h3{margin:0;font-size:calc(17.4px * 1.35);line-height:1.12}
.soft-plan [data-response] p{margin:1.5rem 0 0;font-size:17.4px;line-height:1.77}
@keyframes clarifyFocusIn{from{opacity:0;transform:translateY(calc(calc(2.44rem * 2)*.12))}to{opacity:1;transform:translateY(0)}}
@media(max-width:720px){.soft-plan .content-entries{display:block}.soft-plan .page-service{margin-bottom:calc(2.44rem * 1.5)}}
@media(prefers-reduced-motion:reduce){.soft-plan [data-response].is-active{animation:none}}
.page-list{--state-control:calc(1.5rem * 1.05);--field-content:calc(1660px / 2.6);--copy-button:calc(1660px / 3.9);padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A;}
.page-list .offer-entries{max-width:1660px;margin:0 auto;}
.page-list h2,.page-list h3,.page-list p{margin:0;}
.page-list h2{font-size:calc(17.4px * 2);line-height:1.14;}
.page-list h3{font-size:calc(17.4px * 1.35);line-height:1.22;}
.page-list p{font-size:17.4px;line-height:1.77;}
.page-list .narrow-group{margin-top:1.5rem;}
.page-list .content-details{margin-top:calc(1.5rem / 1.4);font-size:calc(17.4px * .875);color:#2B2B2A;}
.page-list a{color:inherit;text-decoration:none;border-bottom:1px solid transparent;transition:color 270ms var(--delay-entry),border-color 270ms var(--delay-entry);}
.page-list a:hover{color:#2B2B2A;border-bottom-color:#2B2B2A;}
.page-list img{display:block;width:100%;height:auto;border-radius:0.51rem;}
.page-list .soft-story{display:flex;flex-wrap:wrap;align-items:flex-start;gap:2.44rem;}
.page-list .soft-story>.service-links{flex:1 1 calc(1660px / 3);min-width:0;}
.page-list .soft-story>.secondary-body{flex:2 1 calc(1660px / 2);min-width:0;display:flex;flex-direction:column;gap:var(--state-control);}
.page-list .soft-story>img{flex:0 1 var(--copy-button);margin-left:auto;min-width:0;}
.page-list .public-steps{padding-bottom:calc(2.44rem * 1.5);border-bottom:1px solid #D6D2C8;min-width:0;}
.page-list .public-steps:last-child{padding-bottom:0;border-bottom:0;}
.page-list .public-steps p{margin-top:calc(1.5rem / 3);}
.page-list .public-steps a{display:inline-block;margin-top:calc(1.5rem / 2.6);font-size:calc(17.4px * .875);}
@media (max-width:900px){.page-list .soft-story>img{flex:1 1 100%;margin-left:0;}
}
.open-stack{padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A}
.open-stack .offer-entries{max-width:min(1660px,56rem);margin:0 auto}
.open-stack .wide-tile{max-width:44rem}
.open-stack h2{margin:0;font-size:calc(17.4px * 2);line-height:1.1}
.open-stack .wide-tile p{margin:1.5rem 0 0;color:#2B2B2A;line-height:1.77}
.open-stack .featured-steps{margin-top:calc(2.44rem * 1.5);border-top:1px solid #D6D2C8}
.open-stack details{padding:1.5rem 0;border-bottom:1px solid #D6D2C8}
.open-stack summary{cursor:pointer;font-size:calc(17.4px * 1.35);line-height:1.2;list-style:none}
.open-stack summary::-webkit-details-marker{display:none}
.open-stack summary::after{content:"+";float:right;font-size:calc(17.4px * 1.125);line-height:1;color:#2B2B2A}
.open-stack details[open] summary::after{content:"–"}
.open-stack details p{margin:1.5rem 0 0;color:#2B2B2A;line-height:1.77}
@media(max-width:720px){.open-stack .wide-tile{max-width:none}.open-stack summary{font-size:17.4px}
}
.quiet-form{--state-control:calc(1.5rem * 1.10);--label-base:calc(1660px / 3.42);padding:calc(1.5rem * 2.4) 1.58rem;background:#2B2B2A;color:#F2B705;}
.quiet-form .offer-entries{max-width:1660px;margin:0 auto;}
.quiet-form h2,.quiet-form h3,.quiet-form p{margin:0;}
.quiet-form h2{font-size:calc(17.4px * 2);line-height:1.12;}
.quiet-form h3{font-size:calc(17.4px * 1.35);line-height:1.2;}
.quiet-form p{font-size:17.4px;line-height:1.77;color:color-mix(in srgb, currentColor 78%, transparent);}
.quiet-form .narrow-group{margin-top:1.5rem;max-width:calc(1660px / 1.9);}
.quiet-form .narrow-brand{display:flex;flex-wrap:wrap;gap:var(--state-control);margin-top:var(--state-control);}
.quiet-form .public-steps{flex:1 1 var(--label-base);min-width:0;padding:calc(var(--state-control) * .75);border-radius:0.51rem;background:color-mix(in srgb, currentColor 10%, transparent);}
.quiet-form .public-steps p{margin-top:calc(1.5rem / 3);}
.contact-surface{--state-control:calc(1.5rem * 1.09);--copy-button:calc(1660px / 3.22);padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A;}
.contact-surface .offer-entries{max-width:1660px;margin:0 auto;}
.contact-surface h1,.contact-surface h2,.contact-surface h3,.contact-surface p{margin:0;}
.contact-surface h2{font-size:calc(17.4px * 2);line-height:1.12;}
.contact-surface p{font-size:17.4px;line-height:1.77;}
.contact-surface img{display:block;width:100%;height:auto;border-radius:0.51rem;}
.contact-surface .narrow-group{margin-top:1.5rem;}
.contact-surface .active-copy>img{margin-top:var(--state-control);}
.contact-surface .secondary-body{display:flex;flex-wrap:wrap;align-items:flex-start;gap:2.44rem;margin-top:var(--state-control);}
.contact-surface .public-steps{flex:1 1 calc(1660px / 4);min-width:0;padding-top:calc(1.5rem * .75);border-top:2px solid #D6D2C8;}
.contact-surface .public-steps p{color:#2B2B2A;}
.contact-method{
  padding: calc(1.5rem * 2.4) 1.58rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
}
.contact-method .offer-entries{max-width: min(1660px, 72rem);
  margin: 0 auto;}
.contact-method .wide-tile{display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: calc(1.5rem * .75) 2.44rem;
  margin-bottom: calc(2.44rem * 1.5);}
.contact-method h2{margin: 0;
  flex: 1 1 22rem;
  font-size: calc(17.4px * 2);
  line-height: 1.1;}
.contact-method .narrow-group{margin: 0;
  flex: 1 1 26rem;
  font-size: 17.4px;
  color: #C9C6BE;}
.contact-method .open-content{display: flex;
  flex-wrap: wrap;
  gap: 2.44rem;}
.contact-method .public-steps{flex: 1 1 min(100%, 20rem);
  margin: 0;
  padding: calc(1.5rem * .75) 0 0;
  border-top: 2px solid #2B2B2A;}
.contact-method .site-list{display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem;}
.contact-method .secondary-headline{font-weight: 700;
  font-size: 17.4px;}
.contact-method .active-feature{font-size: calc(17.4px * .875);color:inherit;}
.contact-method .public-steps p{margin: calc(calc(1.5rem * .75) * 0.7) 0 0;
  color: #C9C6BE;}
.contact-method .narrow-inner{margin-top: calc(2.44rem * 1.5);
  padding-top: calc(1.5rem * .75);
  border-top: 1px solid #2B2B2A;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: calc(1.5rem * .75);}
.contact-method .content-details{margin: 0;
  flex: 1 1 30rem;
  font-size: calc(17.4px * .875);
  color: #C9C6BE;}
.contact-method .box{
  flex: 0 0 auto;
  padding: 0.7rem 1.3rem;
  background: #F2B705;
  color: #141414;
  border-radius: 0.51rem;
  font-size: calc(17.4px * .875);
  font-weight: 700;
  text-decoration: none;
  transition: background 270ms var(--delay-entry);
}
.contact-method .box:hover{
  background: #D9A204;color:#1B1B1A;}
@media (max-width: 700px) {.contact-method .open-content{
    display: block;
  }.contact-method .public-steps + .public-steps{
    margin-top: 2.44rem;
  }
}
.site-form{--state-control:calc(1.5rem * 1.15);--field-content:calc(1660px / 2.4);padding:calc(1.5rem * 2.4) 1.58rem;background:#2B2B2A;color:#F2B705;}
.site-form .offer-entries{max-width:1660px;margin:0 auto;}
.site-form h1,.site-form h2,.site-form h3,.site-form p{margin:0;}
.site-form h2{font-size:calc(17.4px * 2);line-height:1.12;}
.site-form p{font-size:17.4px;line-height:1.77;}
.site-form .narrow-group{max-width:var(--field-content);}
.site-form .content-details{max-width:var(--field-content);opacity:.82;}
.site-form a{color:inherit;text-decoration:none;}
.site-form .box{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:#F2B705;color:#2B2B2A;font-weight:600;transition:background 270ms var(--delay-entry),color 270ms var(--delay-entry);}
.site-form .box:hover{background:#D9A204;color:#141414;}
.site-form .narrow-items{font-size:calc(17.4px * .875);opacity:.86;}
.site-form .narrow-items a{text-decoration:underline;text-underline-offset:3px;}
.site-form .narrow-items a:hover{opacity:.75;}
.site-form .strong-block>h2,.site-form .strong-block>p,.site-form .strong-block>.box{margin-top:1.5rem;}
.site-form .strong-block>.content-details{margin-top:calc(2.44rem * 1.5);}
.site-form .strong-block>.narrow-items{margin-top:var(--state-control);}
@media (max-width:720px){.site-form .box{width:100%;}
}
.direct-feature{
  background: #F4F2ED;
  color: #1B1B1A;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.direct-feature .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.44rem;}
.direct-feature h2,
.direct-feature h3,
.direct-feature p{margin: 0;}
.direct-feature h2{font-size: calc(17.4px * 2); line-height: 1.1;}
.direct-feature h3{font-size: calc(17.4px * 1.35); line-height: 1.18;}
.direct-feature p{font-size: 17.4px; line-height: 1.77;}
.direct-feature .public-frame{
  flex: 1 1 20rem;
  display: grid;
  gap: 1.5rem;
  align-content: start;
  padding: calc(2.44rem * 1.5);
  border-radius: 1.32rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
}
.direct-feature .public-frame a{width: fit-content;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;}
.direct-feature .active-lead{flex: 2 1 34rem;
  display: flex;
  flex-wrap: wrap;
  gap: calc(1.5rem * .75);}
.direct-feature [data-block]{
  flex: 1 1 16rem;
  display: grid;
  gap: calc(1.5rem * .75);
  align-content: start;
  padding: 1.5rem;
  border-radius: 0.91rem;
  background: #FFFFFF;
  color: #1B1B1A;
  border: 1px solid #D6D2C8;
}
.direct-feature .narrow-feature{
  font-size: calc(17.4px * .875);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F2B705;
  background: #2B2B2A;
  padding: 0.2rem 0.6rem;
  border-radius: 0.34rem;
  width: fit-content;
}
@media (max-width: 820px) {.direct-feature .offer-entries{ flex-direction: column; }
}
.featured-callout{
  --state-control:calc(1.5rem * 1.15);
  padding:calc(1.5rem * 2.4) 1.58rem;
  background:#2B2B2A;
  color:#F2B705;
}
.featured-callout .offer-entries{max-width:1660px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:var(--state-control);}
.featured-callout h2,
.featured-callout h3,
.featured-callout p{margin:0;}
.featured-callout h2{font-size:calc(17.4px * 2);
  line-height:1.14;}
.featured-callout h3{font-size:calc(17.4px * 1.35);
  line-height:1.22;}
.featured-callout p{font-size:17.4px;
  line-height:1.77;}
.featured-callout a{color:inherit;
  text-decoration:underline;
  text-underline-offset:3px;}
.featured-callout a:hover{}
.featured-callout .wide-tile{display:flex;
  flex-direction:column;
  gap:calc(1.5rem / 2);}
.featured-callout .narrow-group{max-width:72ch;}
.featured-callout .secondary-body{display:flex;
  flex-wrap:wrap;
  gap:2.44rem;}
.featured-callout .public-steps{
  flex:1 1 calc(1660px / 3.6);
  min-width:0;
  padding:calc(calc(1.5rem * .75) * .9);
  border-radius:0.51rem;
  background:color-mix(in srgb, currentColor 10%, transparent);
  display:flex;
  flex-direction:column;
  gap:calc(1.5rem / 3);
}
.featured-callout .content-details{padding-top:calc(1.5rem / 2);
  border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);
  font-size:calc(17.4px * .875);}
@media (max-width:720px){.featured-callout .public-steps{
    flex:1 1 100%;
  }
}
.soft-media{padding:calc(1.5rem * 2.4) 1.58rem;background:#E7E3DA;color:#2B2B2A;}
.soft-media .offer-entries{max-width:1660px;margin:0 auto;display:flex;flex-wrap:wrap;gap:2.44rem;align-items:flex-start;}
.soft-media .team-items{flex:1 1 340px;min-width:280px;}
.soft-media .team-items img{width:100%;height:auto;display:block;border-radius:0.91rem;border:1px solid #D6D2C8;box-shadow:0 1px 8px rgba(0,0,0,0.18);}
.soft-media .simple-header{flex:1 1 460px;min-width:280px;display:flex;flex-direction:column;gap:calc(2.44rem * 1.5);}
.soft-media .simple-header h2{margin:0;font-size:calc(17.4px * 2);line-height:1.2;}
.soft-media .simple-header h3{margin:0;font-size:17.4px;font-weight:600;letter-spacing:.01em;}
.soft-media .simple-header p{margin:0;font-size:17.4px;line-height:1.77;}
.soft-media .simple-header ul{margin:0;padding-left:1.1rem;display:flex;flex-direction:column;gap:.55rem;}
.soft-media .simple-header li{font-size:17.4px;line-height:1.6;}
@media (max-width:820px){.soft-media .offer-entries{flex-direction:column;}.soft-media .team-items,
        .soft-media .simple-header{flex:1 1 auto;width:100%;}
    }
.local-feature{
        padding:calc(1.5rem * 2.5) 1.58rem;
        background:#E7E3DA;
        color:#2B2B2A;
    }
.local-feature .site-plan{max-width:920px;
        margin:0 auto;
        display:grid;
        gap:2.44rem;}
.local-feature .text-actions{display:grid;
        grid-template-columns:1fr 1fr;
        gap:2.44rem;
        align-items:stretch;}
.local-feature .clear-group{
        margin:0;
        border-radius:0.91rem;
        overflow:hidden;
        background:#FFFFFF;color:#1B1B1A;}
.local-feature .clear-group img{display:block;
        width:100%;
        height:100%;
        min-height:280px;
        object-fit:cover;}
.local-feature .team-surface{
        padding:1.2rem;
        border-radius:0.91rem;
        background:#FFFFFF;
        border:1px solid #D6D2C8;
        color:#1B1B1A;
        display:grid;
        align-content:center;
        gap:.6rem;
    }
.local-feature .narrow-feature{margin:0;
        font-size:calc(17.4px * .875);
        letter-spacing:.02em;}
.local-feature h1{margin:0;
        font-size:clamp(1.8rem,3.6vw,2.6rem);
        line-height:1.2;}
.local-feature .active-items{margin:0;
        font-size:17.4px;}
.local-feature .simple-header{display:grid;
        gap:.9rem;}
.local-feature .simple-header p{margin:0;}
.local-feature .simple-header a{color:inherit;
        text-decoration:underline;
        text-underline-offset:3px;}
.local-feature .simple-header a:hover{color:#2B2B2A;}
.local-feature .open-content{padding-top:calc(2.44rem * 1.5);
        border-top:1px solid #D6D2C8;}
.local-feature .open-content .site-group{margin:0;
        font-size:calc(17.4px * .875);}
.local-feature .open-content a{color:inherit;
        text-decoration:underline;
        text-underline-offset:3px;}
.local-feature .open-content a:hover{color:#2B2B2A;}
@media (max-width:840px){.local-feature .text-actions{
            grid-template-columns:1fr;
        }.local-feature .clear-group img{
            min-height:220px;
        }
    }
.media-headline{
  background: linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);
  color: #F4F2ED;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.media-headline .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: grid;
  gap: 2.44rem;}
.media-headline h2,
.media-headline h3,
.media-headline p{margin: 0;}
.media-headline h2{font-size: calc(17.4px * 2); line-height: 1.08;}
.media-headline h3{font-size: calc(17.4px * 1.35); line-height: 1.16;}
.media-headline p{font-size: 17.4px; line-height: 1.77;}
.media-headline .wide-steps{
  display: grid;
  gap: calc(2.44rem * 1.5);
  padding: calc(2.44rem * 1.5);
  border-radius: 1.32rem;
  background: linear-gradient(135deg, #F2B705 0%, #D9A204 100%);
  color: #141414;
}
.media-headline .site-stack{display: flex;
  flex-wrap: wrap;
  gap: calc(1.5rem * .75);}
.media-headline [data-block]{
  flex: 1 1 22rem;
  display: grid;
  gap: calc(1.5rem * .75);
  align-content: start;
  padding: 1.5rem;
  border-radius: 0.51rem;
  background: #FFFFFF;
  color: #1B1B1A;
  border: 1px solid #D6D2C8;
  animation: peopleMemberIn calc(270ms * 2.2) var(--delay-entry) both;
  animation-delay: var(--ease-slow, 0ms);
}
.media-headline [data-block] div{display: flex;
  justify-content: space-between;
  gap: calc(1.5rem * .75);
  font-size: calc(17.4px * .875);}
.media-headline .focused-intro{}
@keyframes peopleMemberIn {from{ opacity: .2; transform: scale(.97); }to{ opacity: 1; transform: scale(1); }
}
@media (max-width: 900px) {.media-headline [data-block]{ flex: 1 1 100%; }
}
.site-links{
        padding: calc(1.5rem * 2.4) 1.58rem;
        background: #E7E3DA;
        color: #2B2B2A
    }
.site-links .offer-entries{max-width: 1660px;
        margin: 0 auto}
.site-links .fresh-rail{display: flex;
        flex-direction: column;
        gap: calc(2.44rem * 1.5);
        align-items: flex-start}
.site-links .wide-tile{min-width: 0}
.site-links h2{margin: 0;
        font-size: calc(17.4px * 2);
        line-height: 1.1}
.site-links .wide-tile p{margin: 1.5rem 0 0;
        font-size: calc(17.4px * 1.125);
        line-height: 1.77}
.site-links ul{width: 100%;
        list-style: none;
        margin: 0;
        padding: 0}
.site-links li{display: flex;
        gap: 2.44rem;
        align-items: flex-start;
        padding: 1.5rem 0}
.site-links li + li{border-top: 1px solid #D6D2C8}
.site-links strong{flex: 0 1 20rem;
        min-width: 0;
        font-size: calc(17.4px * 1.35);
        line-height: 1.18}
.site-links span{flex: 1 1 28rem;
        min-width: 0;
        line-height: 1.77}
@media (max-width: 760px) {.site-links li{
            display: block
        }.site-links span{
            display: block;
            margin-top: calc(1.5rem * .75)
        }
    }
.offer-list{padding:clamp(54px,7vw,94px) clamp(16px,4vw,36px);background:linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);color:#F4F2ED;}
.offer-list .offer-entries{max-width:1660px;margin:0 auto;}
.offer-list .site-list{margin-bottom:calc(2.44rem * 1.5);}
.offer-list .site-list p{margin:0;font-weight:700;opacity:.9;}
.offer-list .site-list h2{margin:7px 0 0;font-size:clamp(30px,5vw,46px);}
.offer-list .wide-tile{margin-bottom:calc(2.44rem * 1.5);}
.offer-list .wide-tile p{margin:0;font-size:calc(17.4px * 1.125);}
.offer-list .open-content{display:flex;flex-wrap:wrap;gap:2.44rem;}
.offer-list .public-steps{flex:1 1 320px;border-radius:0.91rem;border:1px solid color-mix(in srgb, currentColor 14%, transparent);background:color-mix(in srgb, currentColor 30%, transparent);padding:calc(1.5rem * .75);box-shadow:0 1px 8px rgba(0,0,0,0.18);}
.offer-list .public-steps .narrow-header{display:block;font-size:calc(17.4px * .875);font-weight:700;letter-spacing:.02em;opacity:.85;}
.offer-list .public-steps h3{margin:1.58rem 0;}
.offer-list .public-steps p{margin:0;}
.offer-list .content-details{margin-top:calc(2.44rem * 1.5);padding-top:calc(2.44rem * 1.5);border-top:1px solid color-mix(in srgb, currentColor 18%, transparent);}
.offer-list .content-details p{margin:0 0 1.58rem;}
.offer-list .narrow-items{display:flex;flex-wrap:wrap;gap:2.44rem;}
.offer-list .narrow-items a{font-weight:700;text-decoration:underline;text-underline-offset:3px;}
.offer-list .narrow-items a:hover{}
@media (max-width:640px){.offer-list .open-content{flex-direction:column;}.offer-list .public-steps{flex:1 1 auto;}
}
.content-callout{
  background: #F4F2ED;
  color: #1B1B1A;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.content-callout .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(15rem, .32fr) minmax(0, 1fr);
  gap: 2.44rem;
  align-items: start;}
.content-callout h2,
.content-callout h3,
.content-callout p{margin: 0;}
.content-callout h2{font-size: calc(17.4px * 2); line-height: 1.1;}
.content-callout h3{font-size: calc(17.4px * 1.35); line-height: 1.18;}
.content-callout p{font-size: 17.4px; line-height: 1.77;}
.content-callout .team-service{
  display: grid;
  gap: calc(2.44rem * 1.5);
  align-content: start;
  padding: calc(1.5rem * .75);
  border-radius: 0.91rem;
  background: #E7E3DA;
  color: #2B2B2A;
}
.content-callout .public-body{display: flex;
  flex-direction: column;
  border-top: 1px solid #D6D2C8;}
.content-callout .primary-section{display: grid;
  grid-template-columns: minmax(7rem, .22fr) minmax(11rem, .38fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #D6D2C8;
  color: inherit;
  text-decoration: none;
  transition: background 270ms var(--delay-entry);}
.content-callout .primary-section b{font-size: calc(17.4px * .875);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #2B2B2A;}
.content-callout .primary-section:hover h3{color:inherit;}
.content-callout .visual-frame{
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 2.44rem;
  align-items: center;
  padding: calc(1.5rem * .75);
  border-radius: 0.91rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
}
.content-callout .visual-frame a{color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;}
@media (max-width: 860px) {.content-callout .offer-entries{ grid-template-columns: 1fr; }.content-callout .primary-section{ grid-template-columns: 1fr; gap: calc(2.44rem * 1.5); }.content-callout .visual-frame{ flex-direction: column; align-items: flex-start; }
}
.compact-region{padding:calc(1.5rem * 2.5) 1.58rem;background:#E7E3DA;color:#2B2B2A;}
.compact-region .site-plan{max-width:920px;margin:0 auto;display:grid;gap:2.44rem;}
.compact-region .text-actions{display:grid;grid-template-columns:1fr 1fr;gap:2.44rem;align-items:stretch;}
.compact-region img{width:100%;height:100%;min-height:280px;object-fit:cover;border-radius:0.91rem;}
.compact-region .team-surface{padding:1.4rem;border-radius:0.91rem;background:#FFFFFF;border:1px solid #D6D2C8;display:grid;align-content:center;gap:.6rem;color:#1B1B1A;}
.compact-region .narrow-feature{margin:0;font-size:calc(17.4px * .875);letter-spacing:.02em;text-transform:uppercase;}
.compact-region h1{margin:0;font-size:clamp(1.9rem,3.8vw,2.8rem);line-height:1.15;}
.compact-region .team-surface p{margin:0;font-size:17.4px;}
.compact-region .simple-header{display:grid;gap:.9rem;}
.compact-region .simple-header p{margin:0;}
.compact-region .simple-header a{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.compact-region .simple-header a:hover{color:#2B2B2A;}
@media (max-width:840px){.compact-region .text-actions{grid-template-columns:1fr;}}
.plain-steps{
  background: linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);
  color: #F4F2ED;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.plain-steps .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: grid;
  gap: 2.44rem;}
.plain-steps h2,
.plain-steps h3,
.plain-steps p{margin: 0;}
.plain-steps h2{font-size: calc(17.4px * 2); line-height: 1.08;}
.plain-steps h3{font-size: calc(17.4px * 1.35); line-height: 1.16;}
.plain-steps p{font-size: 17.4px; line-height: 1.77;}
.plain-steps .wide-steps{
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2.44rem;
  align-items: end;
  padding: calc(2.44rem * 1.5);
  border-radius: 1.32rem;
  background: linear-gradient(135deg, #F2B705 0%, #D9A204 100%);
  color: #141414;
}
.plain-steps .site-stack{display: flex;
  flex-wrap: wrap;
  gap: calc(1.5rem * .75);}
.plain-steps [data-block]{
  flex: 1 1 22rem;
  display: grid;
  gap: calc(1.5rem * .75);
  align-content: start;
  padding: 1.5rem;
  border-radius: 0.51rem;
  background: #FFFFFF;
  color: #1B1B1A;
  border: 1px solid #D6D2C8;
  animation: peopleMemberIn calc(270ms * 2.2) var(--delay-entry) both;
  animation-delay: var(--ease-slow, 0ms);
}
.plain-steps [data-block] div{display: flex;
  justify-content: space-between;
  gap: calc(1.5rem * .75);
  font-size: calc(17.4px * .875);
  text-transform: uppercase;
  letter-spacing: .04em;}
.plain-steps .focused-intro{padding-top: calc(2.44rem * 1.5);
  border-top: 1px solid #D6D2C8;}
@keyframes peopleMemberIn {from{ opacity: .2; transform: translateY(calc(2.44rem * 2)); }to{ opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {.plain-steps .wide-steps{ grid-template-columns: 1fr; }.plain-steps [data-block]{ flex: 1 1 100%; }
}
.top-feature{
        padding: calc(1.5rem * 2.4) 1.58rem;
        background: #E7E3DA;
        color: #2B2B2A
    }
.top-feature .offer-entries{max-width: 1660px;
        margin: 0 auto}
.top-feature .fresh-rail{display: flex;
        flex-direction: column;
        gap: calc(2.44rem * 1.5)}
.top-feature .wide-tile{min-width: 0;
        border-left: 4px solid #F2B705;
        padding-left: calc(1.5rem * .75)}
.top-feature h2{margin: 0;
        font-size: calc(17.4px * 2);
        line-height: 1.1}
.top-feature .wide-tile p{margin: 1.5rem 0 0;
        font-size: calc(17.4px * 1.125);
        line-height: 1.77}
.top-feature ul{list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: calc(1.5rem * .75)}
.top-feature li{
        display: flex;
        gap: 2.44rem;
        align-items: flex-start;
        padding: 1.5rem calc(1.5rem * .75);
        background: #FFFFFF;
        color: #1B1B1A;
        border: 1px solid #D6D2C8;
        border-radius: 0.51rem
    }
.top-feature strong{flex: 0 0 17rem;
        min-width: 0;
        font-size: calc(17.4px * 1.35);
        line-height: 1.2}
.top-feature span{flex: 1 1 26rem;
        min-width: 0;
        line-height: 1.77}
@media (max-width: 760px) {.top-feature li{
            display: block
        }.top-feature span{
            display: block;
            margin-top: calc(1.5rem * .75)
        }
    }
.direct-headline{padding:calc(1.5rem * 2.4) 1.58rem;background:linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);color:#F4F2ED;}
.direct-headline .offer-entries{max-width:1660px;margin:0 auto;}
.direct-headline .site-list{margin-bottom:calc(2.44rem * 1.5);}
.direct-headline .site-list h2{margin:0;font-size:calc(17.4px * 2);line-height:1.2;}
.direct-headline .site-list p{margin:calc(1.5rem * .75) 0 0;opacity:.92;font-size:17.4px;}
.direct-headline .secondary-body{display:flex;flex-direction:column;gap:calc(1.5rem * .75);}
.direct-headline .public-steps{border:1px solid color-mix(in srgb, currentColor 32%, transparent);border-radius:0.51rem;background:color-mix(in srgb, currentColor 12%, transparent);overflow:hidden;}
.direct-headline .public-steps button{width:100%;border:0;background:transparent;color:inherit;text-align:left;font:inherit;font-weight:700;padding:calc(1.5rem * .75);cursor:pointer;}
.direct-headline .public-steps p{margin:0;max-height:0;overflow:hidden;padding:0 calc(1.5rem * .75);transition:max-height 270ms var(--delay-entry),padding 270ms var(--delay-entry);opacity:.95;}
.direct-headline .public-steps.is-open p{max-height:260px;padding:0 calc(1.5rem * .75) calc(1.5rem * .75);}
.direct-headline .narrow-items{margin:calc(2.44rem * 1.5) 0 0;font-size:calc(17.4px * .875);opacity:.9;}
.direct-headline .narrow-items a{text-decoration:underline;}
.direct-headline .narrow-items a:hover{}
.primary-links{
  background: #F4F2ED;
  color: #1B1B1A;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.primary-links .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(16rem, .38fr) minmax(0, 1fr);
  gap: 2.44rem;
  align-items: start;}
.primary-links h2,
.primary-links h3,
.primary-links p{margin: 0;}
.primary-links h2{font-size: calc(17.4px * 2); line-height: 1.1;}
.primary-links h3{font-size: calc(17.4px * 1.35); line-height: 1.18;}
.primary-links p{font-size: 17.4px; line-height: 1.77;}
.primary-links .public-frame{
  display: grid;
  gap: 1.5rem;
  align-content: start;
  padding: calc(2.44rem * 1.5);
  border-radius: 1.32rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
}
.primary-links .plain-visual{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.primary-links .local-callout{
  display: grid;
  grid-template-columns: minmax(6rem, .2fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.51rem;
  background: #FFFFFF;
  color: #1B1B1A;
  border: 1px solid #D6D2C8;
}
.primary-links .local-callout b{font-size: calc(17.4px * .875);
  letter-spacing: 0.02em;
  color: #2B2B2A;}
.primary-links .strong-surface{
  grid-column: 2;
  width: fit-content;
  margin-top: calc(2.44rem * 1.5);
  padding: 0.6rem 1.1rem;
  border-radius: 0.34rem;
  background: #F2B705;
  color: #141414;
  text-decoration: none;
  font-size: calc(17.4px * .875);
  transition: background 270ms var(--delay-entry);
}
.primary-links .strong-surface:hover{ background: #D9A204;color:#1B1B1A;}
@media (max-width: 820px) {.primary-links .offer-entries,
  .primary-links .local-callout{ grid-template-columns: 1fr; }.primary-links .strong-surface{ grid-column: auto; }
}
.plain-items{
        padding: calc(1.5rem * 2.5) 1.58rem;
        background: #E7E3DA;
        color: #2B2B2A;
    }
.plain-items .site-plan{max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: 2.44rem;}
.plain-items .text-actions{display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 2.44rem;
        align-items: stretch;}
.plain-items img{width: 100%;
        height: 100%;
        min-height: 280px;
        object-fit: cover;
        border-radius: 0.91rem;
        display: block;}
.plain-items .team-surface{
        padding: calc(calc(1.5rem * .75) * 1.1);
        border-radius: 0.91rem;
        background: #FFFFFF;
        border: 1px solid #D6D2C8;
        display: grid;
        align-content: center;
        gap: 0.6rem;
        color: #1B1B1A;
    }
.plain-items .narrow-feature{margin: 0;
        font-size: calc(17.4px * .875);
        letter-spacing: 0.02em;
        text-transform: uppercase;
        opacity: 0.72;}
.plain-items h1{margin: 0;
        font-size: clamp(1.9rem, 3.8vw, 2.8rem);
        line-height: 1.15;}
.plain-items .team-surface p{margin: 0;
        font-size: 17.4px;}
.plain-items .simple-header{display: grid;
        gap: 1rem;
        padding-top: calc(2.44rem * 1.5);
        border-top: 1px solid #D6D2C8;}
.plain-items .simple-header p{margin: 0;
        font-size: 17.4px;
        line-height: 1.77;}
.plain-items .simple-header a{color:inherit;
        text-decoration: underline;
        text-underline-offset: 3px;}
.plain-items .simple-header a:hover{color: #2B2B2A;}
@media (max-width: 840px) {.plain-items .text-actions{
            grid-template-columns: 1fr;
        }
    }
.main-team{
  background: linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);
  color: #F4F2ED;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.main-team .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: grid;
  gap: 2.44rem;}
.main-team h2,
.main-team h3,
.main-team p{margin: 0;}
.main-team h2{font-size: calc(17.4px * 2); line-height: 1.1;}
.main-team h3{font-size: calc(17.4px * 1.35); line-height: 1.18;}
.main-team p{font-size: 17.4px; line-height: 1.77;}
.main-team .wide-steps{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.44rem;
  align-items: end;
  padding: calc(2.44rem * 1.5);
  border-radius: 0.91rem;
  background: linear-gradient(135deg, #F2B705 0%, #D9A204 100%);
  color: #141414;
}
.main-team .site-stack{display: flex;
  flex-wrap: wrap;
  gap: calc(1.5rem * .75);}
.main-team [data-block]{
  flex: 1 1 22rem;
  display: grid;
  gap: calc(1.5rem * .75);
  align-content: start;
  padding: 1.5rem;
  border-radius: 0.51rem;
  background: #FFFFFF;
  color: #1B1B1A;
  border: 1px solid #D6D2C8;
  animation: peopleMemberIn calc(270ms * 2.2) var(--delay-entry) both;
  animation-delay: var(--ease-slow, 0ms);
}
.main-team [data-block]:nth-child(2n){flex: 1 1 26rem;}
.main-team [data-block] div{display: flex;
  justify-content: space-between;
  gap: calc(1.5rem * .75);}
.main-team .focused-intro{}
@keyframes peopleMemberIn {from{ opacity: .25; transform: translateY(6px); }to{ opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {.main-team .wide-steps{ grid-template-columns: 1fr; }.main-team [data-block],
  .main-team [data-block]:nth-child(2n){ flex: 1 1 100%; }
}
.offer-contact{padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A}
.offer-contact .offer-entries{max-width:min(1660px,56rem);margin:0 auto}
.offer-contact .wide-tile{display:grid;gap:1.5rem}
.offer-contact h2{margin:0;font-size:calc(17.4px * 2);line-height:1.1}
.offer-contact .wide-tile p{margin:0;color:#2B2B2A;line-height:1.77}
.offer-contact .featured-steps{margin-top:calc(2.44rem * 1.5);border-top:1px solid #D6D2C8}
.offer-contact details{padding:1.5rem 0;border-bottom:1px solid #D6D2C8}
.offer-contact summary{cursor:pointer;font-size:calc(17.4px * 1.35);line-height:1.2;list-style:none;display:flex;justify-content:space-between;gap:2.44rem;align-items:baseline}
.offer-contact summary::-webkit-details-marker{display:none}
.offer-contact summary::after{content:"+";flex:0 0 auto;font-size:calc(17.4px * 1.125);color:#F2B705;background:#2B2B2A;width:1.6rem;height:1.6rem;line-height:1.6rem;text-align:center;border-radius:0.34rem}
.offer-contact details[open] summary::after{content:"-"}
.offer-contact details p{margin:1.5rem 0 0;color:#2B2B2A;line-height:1.77}
@media(max-width:720px){.offer-contact summary{font-size:17.4px}
}
.open-group{padding:calc(1.5rem * 2.4) 1.58rem;background:linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);color:#F4F2ED;}
.open-group .offer-entries{max-width:1660px;margin:0 auto;}
.open-group .site-list{margin-bottom:calc(2.44rem * 1.5);}
.open-group .site-list p{margin:0;font-weight:700;opacity:.9;font-size:calc(17.4px * .875);letter-spacing:.02em;text-transform:uppercase;}
.open-group .site-list h2{margin:1.58rem 0 0;font-size:calc(17.4px * 2);}
.open-group .narrow-group{margin:0 0 calc(2.44rem * 1.5);max-width:none;font-size:calc(17.4px * 1.125);line-height:1.77;}
.open-group .open-content{display:flex;flex-wrap:wrap;gap:2.44rem;}
.open-group .public-steps{flex:1 1 320px;border-radius:0.91rem;border:1px solid color-mix(in srgb, currentColor 14%, transparent);background:color-mix(in srgb, currentColor 30%, transparent);padding:calc(1.5rem * .75);box-shadow:0 1px 8px rgba(0,0,0,0.18);}
.open-group .public-steps .narrow-header{display:inline-block;font-size:calc(17.4px * .875);font-weight:700;padding:2px 8px;border-radius:0.34rem;background:#2B2B2A;color:#F2B705;}
.open-group .public-steps h3{margin:1.58rem 0;font-size:calc(17.4px * 1.35);}
.open-group .public-steps p{margin:0;line-height:1.77;}
.open-group .visual-quote{margin-top:calc(2.44rem * 1.5);padding-top:calc(2.44rem * 1.5);border-top:1px solid color-mix(in srgb, currentColor 18%, transparent);display:flex;flex-wrap:wrap;gap:2.44rem;align-items:baseline;justify-content:space-between;}
.open-group .visual-quote .content-details{margin:0;flex:1 1 380px;font-size:17.4px;line-height:1.77;}
.open-group .narrow-items{display:flex;flex-wrap:wrap;gap:1.5rem;}
.open-group .narrow-items a{font-weight:700;text-decoration:none;border-bottom:1px solid transparent;transition:color 270ms var(--delay-entry),border-color 270ms var(--delay-entry);}
.open-group .narrow-items a:hover{border-bottom-color:#2B2B2A;}
@media (max-width:640px){.open-group .visual-quote{flex-direction:column;align-items:flex-start;}
    }
.primary-service{
  background: #F4F2ED;
  color: #1B1B1A;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.primary-service .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, .55fr);
  gap: 2.44rem;
  align-items: start;}
.primary-service h2,
.primary-service h3,
.primary-service p{margin: 0;}
.primary-service h2{font-size: calc(17.4px * 2);
  line-height: 1.1;
  letter-spacing: -0.01em;}
.primary-service h3{font-size: calc(17.4px * 1.35);
  line-height: 1.18;}
.primary-service p{font-size: 17.4px;
  line-height: 1.77;}
.primary-service .service-links{display: grid;
  gap: calc(2.44rem * 1.5);}
.primary-service .visual-wrap{
  display: grid;
  gap: calc(2.44rem * 1.5);
  padding: calc(1.5rem * .75);
  border-radius: 0.91rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
  border-left: 4px solid #F2B705;
}
.primary-service .visual-wrap strong{font-size: calc(17.4px * 1.125);
  line-height: 1.25;}
.primary-service .visual-wrap a{width: fit-content;color:inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: calc(17.4px * .875);
  padding-bottom: 2px;
  transition: color 270ms var(--delay-entry);}
.primary-service .visual-wrap a:hover{}
.primary-service .secondary-body{grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(1.5rem * .75);
  margin-top: calc(2.44rem * 1.5);}
.primary-service .public-steps{
  display: grid;
  gap: calc(1.5rem * .75);
  align-content: start;
  padding: calc(1.5rem * .75);
  border-radius: 0.51rem;
  background: #FFFFFF;
  color: #1B1B1A;
  border: 1px solid #D6D2C8;
  border-top: 3px solid #2B2B2A;
}
.primary-service .public-steps span{font-size: calc(17.4px * .875);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2B2B2A;}
@media (max-width: 900px) {.primary-service .offer-entries{
    grid-template-columns: 1fr;
  }.primary-service .secondary-body{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {.primary-service .secondary-body{
    grid-template-columns: 1fr;
  }
}
.media-view{
  position: relative;
  overflow: hidden;
  padding: calc(1.5rem * 2.4) 1.58rem;
  background: linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);
  color: #F4F2ED;
}
.media-view .offer-entries{position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: calc(2.44rem * 1.5);
  max-width: 1660px;
  margin: 0 auto;}
.media-view .wide-tile h2{margin: 0;
  font-size: calc(17.4px * 2);
  line-height: 1.15;}
.media-view .wide-tile p{margin: 1.5rem 0 0;
  font-size: calc(17.4px * 1.125);
  line-height: 1.77;}
.media-view .featured-block{display: flex;
  flex-wrap: wrap;
  gap: 2.44rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, currentColor 28%, transparent);}
.media-view .visual-callout,
.media-view .media-list,
.media-view .primary-quote{flex: 1 1 18rem;
  display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.media-view .site-group{margin: 0;
  line-height: 1.77;}
.media-view .primary-quote a{color: inherit;
  font-size: calc(17.4px * 1.125);
  overflow-wrap: anywhere;
  text-underline-offset: .2em;}
.media-view .primary-group{display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.44rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, currentColor 28%, transparent);}
.media-view .primary-group a{flex: 1 1 20rem;
  color: inherit;
  text-decoration: none;
  line-height: 1.77;
  overflow-wrap: anywhere;}
.media-view .primary-group span{display: block;
  margin-top: .35rem;
  font-size: calc(17.4px * .875);
  opacity: .7;}
@media (max-width: 720px) {.media-view .featured-block{
    flex-direction: column;
  }
}
.page-tile{padding:calc(1.5rem * 2.4) 1.58rem;background:var(--ink-panel);color:var(--paint-inverse)}
.page-tile .team-area{max-width:min(1660px,62rem);margin:0 auto}
.page-tile h2{margin:0;font-size:calc(17.4px * 2);line-height:1.1}
.page-tile .narrow-group{margin:1.5rem 0 2.44rem;font-size:calc(17.4px * 1.125);line-height:1.45}
.page-tile .page-tile{height:clamp(20rem,42vw,32rem);border-radius:0.91rem;overflow:hidden;border:1px solid #D6D2C8}
.page-tile iframe{display:block;width:100%;height:100%;border:0}
.page-tile .primary-track{margin-top:2.44rem;display:flex;flex-direction:column;gap:calc(2.44rem * 1.5)}
.page-tile .primary-track div{display:grid;grid-template-columns:minmax(10rem,.3fr) minmax(0,1fr);gap:calc(1.5rem * .75);padding-bottom:calc(2.44rem * 1.5);border-bottom:1px solid #D6D2C8}
.page-tile .primary-track span{font-size:calc(17.4px * .875);letter-spacing:.02em;text-transform:uppercase;}
.page-tile .primary-track p{margin:0;line-height:1.6}
.page-tile .primary-track a{color:#F2B705;text-decoration:none;border-bottom:1px solid #F2B705}
.page-tile .primary-track a:hover{color:inherit;border-bottom-color:#2B2B2A}
@media (max-width:620px){.page-tile .primary-track div{grid-template-columns:1fr;gap:1.5rem}.page-tile .page-tile{height:20rem}
}
.simple-benefit{
  background: linear-gradient(135deg, #1A1A19 0%, #2B2B2A 48%, #3A3A38 100%);
  color: #F4F2ED;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.simple-benefit .offer-entries{max-width: 1660px;
  margin: 0 auto;}
.simple-benefit .media-plan{display: flex;
  flex-direction: column;
  gap: calc(2.44rem * 1.5);}
.simple-benefit .wide-tile{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.simple-benefit h2{margin: 0;
  font-size: clamp(calc(17.4px * 2), 4.4vw, calc(17.4px * 2.65));
  line-height: 1.08;
  letter-spacing: 0;}
.simple-benefit .narrow-group{margin: 0;
  font-size: calc(17.4px * 1.125);
  line-height: 1.68;}
.simple-benefit .focused-callout{display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  border-bottom: 1px solid color-mix(in srgb, currentColor 24%, transparent);}
.simple-benefit .primary-section{display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;}
.simple-benefit .row--wide{flex-direction: column;}
.simple-benefit label{flex: 1 1 15rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(calc(1.5rem * .75) * 0.4);
  font-size: calc(17.4px * .875);}
.simple-benefit input[type="email"],
.simple-benefit input[type="text"]{
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0.34rem;
  background: color-mix(in srgb, currentColor 10%, transparent);
  color: inherit;
  padding: calc(1.5rem * .75);
  font: inherit;
}
.simple-benefit input::placeholder{color: color-mix(in srgb, currentColor 58%, transparent);}
.simple-benefit .content-frame{flex-direction: row;
  align-items: flex-start;
  gap: calc(calc(1.5rem * .75) * 0.6);
  font-size: calc(17.4px * .875);
  line-height: 1.6;}
.simple-benefit .content-frame input{flex: 0 0 auto;
  margin-top: 0.3rem;
  accent-color: #F2B705;}
.simple-benefit .box{display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(1.5rem * .75) 2.44rem;}
.simple-benefit button{
  flex: 0 0 auto;
  border: 0;
  border-radius: 0.51rem;
  background: #F2B705;
  color: #141414;
  padding: calc(1.5rem * .75) 2.44rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 270ms var(--delay-entry);
}
.simple-benefit button:hover{
  background: #D9A204;color:#1B1B1A;}
.simple-benefit .content-details{margin: 0;
  flex: 1 1 16rem;
  font-size: calc(17.4px * .875);
  line-height: 1.6;}
.simple-benefit .visual-quote{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);
  padding-top: calc(1.5rem * .75);}
.simple-benefit .visual-quote p{margin: 0;
  font-size: 17.4px;
  line-height: 1.68;}
.simple-benefit a{text-decoration: underline;
  text-underline-offset: 3px;}
.simple-benefit a:hover{}
@media (max-width: 640px) {.simple-benefit .primary-section{ flex-direction: column; }.simple-benefit .box{ flex-direction: column; align-items: stretch; }.simple-benefit button{ width: 100%; }
}
.top-view{padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A}
.top-view .team-contact{max-width:min(1660px,64rem);margin:0 auto}
.top-view .site-list{margin:0 0 calc(2.44rem * 1.5)}
.top-view h2{margin:0;font-size:calc(17.4px * 2);line-height:1.1}
.top-view .page-summary{margin:1.5rem 0 0;font-size:calc(17.4px * 1.125);line-height:1.77}
.top-view .simple-footer{display:flex;flex-direction:column;border-top:1px solid #D6D2C8}
.top-view .content-details{padding:calc(2.44rem * 1.5) 0;border-bottom:1px solid #D6D2C8}
.top-view h3{margin:0 0 calc(1.5rem * .75);font-size:calc(17.4px * 1.35);line-height:1.25}
.top-view .content-details p{margin:0;line-height:1.77}
.top-view .featured-area{margin:calc(2.44rem * 1.5) 0 0;font-size:calc(17.4px * .875);}
@media (max-width:640px){.top-view .content-details{padding:calc(1.5rem * .75) 0}
}
.primary-unit{background:#F4F2ED;color:#1B1B1A;padding:calc(1.5rem * 2.4) 1.58rem}
.primary-unit .offer-entries{max-width:1660px;margin:0 auto}
.primary-unit .fresh-rail{display:flex;align-items:flex-start;gap:calc(2.44rem * 1.5)}
.primary-unit .wide-tile{flex:0 1 32rem;min-width:0}
.primary-unit h2{margin:0;font-size:clamp(calc(17.4px * 2),5vw,calc(17.4px * 2.65));line-height:1.08;letter-spacing:0}
.primary-unit p{margin:1.5rem 0 0;font-size:calc(17.4px * 1.125);line-height:1.65}
.primary-unit .content-details{margin-top:calc(1.5rem * .75);font-size:calc(17.4px * .875);color:#2B2B2A;background:#E7E3DA;padding:calc(1.5rem * .75);border-radius:0.51rem;border-left:3px solid #F2B705}
.primary-unit .simple-view{flex:1 1 36rem;min-width:0;display:flex;flex-direction:column;border-top:1px solid #D6D2C8}
.primary-unit .primary-section{display:flex;gap:2.44rem;padding:1.5rem 0;border-bottom:1px solid #D6D2C8}
.primary-unit strong{flex:0 1 15rem;min-width:0;font-size:17.4px}
.primary-unit span{flex:1 1 20rem;min-width:0;line-height:1.6}
.primary-unit .simple-note{color:inherit;text-decoration:none;border-bottom:1px solid #F2B705}
.primary-unit .simple-note:hover{color:#2B2B2A;border-bottom-color:#2B2B2A}
@media(max-width:760px){.primary-unit .fresh-rail,.primary-unit .primary-section{flex-direction:column}.primary-unit .primary-section{gap:calc(calc(1.5rem * .75)*.5)}}
.soft-view{
  padding: calc(1.5rem * 2.4) 1.58rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
}
.soft-view .offer-entries{max-width: min(1660px, 60rem);
  margin: 0 auto;}
.soft-view .site-list{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);
  padding-bottom: calc(2.44rem * 1.5);
  border-bottom: 1px solid #2B2B2A;}
.soft-view h2{margin: 0;
  font-size: calc(17.4px * 2);
  line-height: 1.1;}
.soft-view .wide-tile{margin: 0;
  color: #C9C6BE;
  font-size: calc(17.4px * 1.125);}
.soft-view .team-area{display: flex;
  flex-direction: column;
  gap: calc(2.44rem * 1.5);
  margin-top: calc(2.44rem * 1.5);}
.soft-view .public-steps{display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(calc(1.5rem * .75) * .5);
  padding-left: calc(1.5rem * .75);
  border-left: 2px solid #F2B705;}
.soft-view h3{margin: 0;
  font-size: calc(17.4px * 1.35);}
.soft-view .public-steps p{margin: 0;
  color: #C9C6BE;}
@media (min-width: 780px) {.soft-view .public-steps{
    grid-template-columns: 18rem minmax(0, 1fr);
    gap: calc(1.5rem * .75);
    align-items: start;
  }
}
.top-content{
  padding: calc(1.5rem * 2.4) 1.58rem;
  background: #2B2B2A;
  color: #F2B705;
}
.top-content .offer-entries{max-width: 1660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2.44rem;
  align-items: start;}
.top-content .soft-shell{
  padding: calc(1.5rem * .75);
  border-radius: 1.32rem;
  background: var(--ink-panel);
  color: var(--paint-inverse);
}
.top-content .soft-shell span{display: inline-block;
  font-size: calc(17.4px * .875);
  letter-spacing: .04em;
  text-transform: uppercase;}
.top-content h2{margin: calc(1.5rem * .75) 0 0;
  font-size: calc(17.4px * 2);
  line-height: 1.1;}
.top-content .soft-shell p{margin: calc(1.5rem * .75) 0 0;
  font-size: calc(17.4px * 1.125);
  line-height: 1.77;}
.top-content .site-nav{display: flex;
  flex-direction: column;
  gap: calc(1.5rem * .75);}
.top-content .site-nav div{
  padding: calc(1.5rem * .75);
  border-radius: 0.51rem;
  background: #FFFFFF;
  color: #1B1B1A;
  border: 1px solid #D6D2C8;
}
.top-content .site-nav strong{display: block;
  font-size: calc(17.4px * 1.35);
  line-height: 1.2;}
.top-content .site-nav p{margin: calc(1.5rem * .75) 0 0;
  line-height: 1.77;}
.top-content .site-nav a{text-decoration: none;
  border-bottom: 1px solid #F2B705;}
.top-content .site-nav a:hover{border-bottom-color: #2B2B2A;}
.top-content .narrow-items{grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: calc(2.44rem * 1.5);
  padding-top: calc(1.5rem * .75);
  border-top: 1px solid #D6D2C8;}
.top-content .narrow-items a{font-size: 17.4px;
  text-decoration: none;
  border-bottom: 1px solid #F2B705;
  padding-bottom: 2px;}
.top-content .narrow-items a:hover{opacity: .78;}
@media (max-width: 760px) {.top-content .offer-entries{
    grid-template-columns: 1fr;
  }
}
.service-list{--state-control:calc(1.5rem * 1.05);padding:calc(1.5rem * 2.4) 1.58rem;background:#F4F2ED;color:#1B1B1A;}
.service-list .offer-entries{max-width:1660px;margin:0 auto;}
.service-list h2,.service-list p{margin:0;}
.service-list h2{font-size:calc(17.4px * 2);line-height:1.14;}
.service-list p{font-size:17.4px;line-height:1.77;}
.service-list .content-details{font-size:calc(17.4px * .875);letter-spacing:0.04em;text-transform:uppercase;color:#2B2B2A;}
.service-list .service-links{margin-top:calc(2.44rem * 1.5);color:#1B1B1A;}
.service-list .strong-block>h2{margin-top:calc(2.44rem * 1.5);}
.service-list .narrow-items{display:flex;flex-wrap:wrap;align-items:center;gap:2.44rem;margin-top:calc(2.44rem * 1.5);}
.service-list .box{display:inline-flex;align-items:center;justify-content:center;padding:calc(1.5rem * .75) 1.5rem;border-radius:0.34rem;background:#F2B705;color:#141414;font-weight:600;text-decoration:none;transition:background 270ms var(--delay-entry);}
.service-list .box:hover{background:#D9A204;color:#1B1B1A;}
.service-list .visual-quote{color:#1B1B1A;text-decoration:none;border-bottom:1px solid #D6D2C8;padding-bottom:2px;font-size:calc(17.4px * .875);}
.service-list .visual-quote:hover{color:#2B2B2A;border-bottom-color:#2B2B2A;}
@media (max-width:640px){.service-list .narrow-items{flex-direction:column;align-items:flex-start;}.service-list .box{width:100%;}
}
.service-copy{
  background: #F4F2ED;
  color: #1B1B1A;
  padding: calc(1.5rem * 2.4) 1.58rem;
}
.service-copy .offer-entries{width: min(100%, 1660px);
  margin: 0 auto;}
.service-copy .quiet-summary{display: flex;
  flex-direction: column;
  gap: calc(2.44rem * 1.5);}
.service-copy .site-group{display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: calc(2.44rem * 1.5);}
.service-copy h1{flex: 1 1 420px;
  margin: 0;
  font-size: clamp(calc(17.4px * 2), 6vw, calc(17.4px * 2.65));
  line-height: 1.05;
  letter-spacing: 0;}
.service-copy p{flex: 1 1 340px;
  margin: 0;
  min-width: 0;
  font-size: calc(17.4px * 1.125);
  line-height: 1.77;}
.service-copy .clear-feature{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.44rem;
  padding: calc(1.5rem * .75);
  border-radius: 0.91rem;
  background: #E7E3DA;
  color: #2B2B2A;
}
.service-copy a{color: inherit;
  text-decoration: none;}
.service-copy .box{
  padding: 0.75rem 1.1rem;
  border-radius: 0.51rem;
  background: #F2B705;
  color: #141414;
  font-weight: 700;
}
.service-copy .box:hover{
  background: #D9A204;color:#1B1B1A;}
.service-copy .top-area{display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  min-width: 0;}
.service-copy .top-area a{border-bottom: 1px solid #D6D2C8;
  padding-bottom: 2px;}
.service-copy .top-area a:hover{color: #2B2B2A;}
.service-copy .content-details{flex: none;
  font-size: calc(17.4px * .875);
  line-height: 1.77;
  color: #2B2B2A;}
.service-copy .content-details a{color:inherit;
  border-bottom: 1px solid rgba(242,183,5,0.55);}
.service-copy .content-details a:hover{color: #2B2B2A;}
@media (max-width: 720px) {.service-copy .site-group{ align-items: flex-start; }.service-copy .clear-feature{ align-items: flex-start; flex-direction: column; }
}
