html{box-sizing:border-box;}
*,*::before,*::after{box-sizing:inherit;}
body{margin:0;padding:0;font-family:"Lora", sans-serif;}
header {
    width: 100%;
    background: #ffffff;
    color: #1a1e26;
    border-bottom: 1px solid var(--tone-dark);
  }
:root {
  --tone-dark: #e2e5ea;
  --tone-soft: #1a1e26;
  --surface-soft: #ffffff;
  --speed-soft: cubic-bezier(0.2,0.8,0.2,1);
}
.vh-header {
    max-width: 1140px;
    margin: 0 auto;
    padding: calc(1.07rem * 1.5) 1.52rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.07rem;
  }
.vh-brand-row {
    grid-column: 2;
    display: flex;
    justify-content: center;
    text-align: center;
  }
.vh-logo {
    display: inline-block;
    font-size: calc(16px * 1.125);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a1e26;
    text-decoration: none;
    padding: 0.25rem 0;
    border-bottom: 2px solid #fdece0;
    transition: color 520ms var(--speed-soft),
                border-color 520ms var(--speed-soft);
  }
.vh-logo:hover,
  .vh-logo:focus-visible {
    color: #fdece0;
    border-bottom-color: #e8631a;
    outline: none;
  }
.vh-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--tone-dark);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
.vh-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.07rem;
  }
.vh-nav-list a {
    display: inline-block;
    font-size: calc(16px * .875);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2f3540;
    text-decoration: none;
    padding: 0.35rem 0.25rem;
    border-bottom: 1px solid transparent;
    transition: color 520ms var(--speed-soft),
                border-color 520ms var(--speed-soft);
  }
.vh-nav-list a:hover,
  .vh-nav-list a:focus-visible {
    color: #1a1e26;
    border-bottom-color: #fdece0;
    outline: none;
  }
.vh-burger {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: #f4f5f7;
    color: #2f3540;
    border: 1px solid var(--tone-dark);
    border-radius: 0.3rem;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: background 520ms var(--speed-soft);
  }
.vh-burger:hover,
  .vh-burger:focus-visible{
    background: var(--surface-soft);
    outline: none;color:var(--tone-soft);}
.vh-burger-line {
    display: block;
    width: 1.15rem;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
  }
.vh-mobile-nav {
    grid-column: 1 / -1;
    grid-row: 3;
    border-top: 1px solid var(--tone-dark);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
.vh-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
.vh-mobile-list a {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 16px;
    color: #1a1e26;
    text-decoration: none;
    border-radius: 0.3rem;
    transition: background 520ms var(--speed-soft);
  }
.vh-mobile-list a:hover,
  .vh-mobile-list a:focus-visible {
    background: #f4f5f7;
    color: #2f3540;
    outline: none;
  }
@media (max-width: 767px) {
    .vh-header {
      grid-template-columns: 1fr auto;
      padding: 1.5rem 1.52rem;
    }

    .vh-brand-row {
      grid-column: 1;
      justify-content: flex-start;
      text-align: left;
    }

    .vh-nav {
      display: none;
    }

    .vh-burger {
      display: flex;
    }

    .vh-mobile-nav[hidden] {
      display: none;
    }

    .vh-mobile-nav {
      grid-row: 3;
    }
  }
@media (min-width: 768px) {
    .vh-mobile-nav {
      display: none;
    }
  }
.featured-shell{font-family:"Lora", sans-serif;font-size:16px;line-height:1.79;padding:calc(1.5rem * 2.4) 1.52rem;margin-top:calc(1.5rem * 2.4);background:#1a1e26;color:#f4f5f7;}
.secondary-benefit{max-width:1140px;margin:0 auto;display:grid;grid-template-columns:1.2fr 2fr 1fr;gap:calc(1.07rem * 1.5);align-items:start}
.simple-summary{display:flex;flex-direction:column;gap:1.5rem}
.compact-grid{color:inherit;text-decoration:none;font-size:calc(16px * 1.125);font-weight:700;letter-spacing:0.01em}
.secondary-tile{margin:0;font-size:calc(16px * .875);opacity:0.85;max-width:34ch}
.text-summary{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:calc(1.07rem * 1.5)}
.site-group{margin:0 0 1.5rem 0;font-size:calc(16px * .875);font-weight:700;text-transform:uppercase;letter-spacing:0.06em;opacity:0.75}
.plain-actions{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.4rem}
.plain-actions a{color:inherit;text-decoration:none;font-size:calc(16px * .875);border-bottom:1px solid transparent;transition:border-color 520ms var(--speed-soft)}
.plain-actions a:hover,
  .plain-actions a:focus-visible{border-bottom-color:currentColor;outline:none;color:inherit}
.offer-content{display:flex;flex-direction:column;gap:0.35rem}
.main-flow{margin:0;font-size:calc(16px * .875);opacity:0.9}
.text-panel{font-weight:600;margin-right:0.25rem}
.offer-content a{color:inherit;text-decoration:none;border-bottom:1px solid transparent;transition:border-color 520ms var(--speed-soft)}
.offer-content a:hover,
  .offer-content a:focus-visible{border-bottom-color:currentColor;outline:none;color:inherit}
.focused-story{grid-column:1 / -1;border-top:1px solid currentColor;padding-top:calc(1.07rem * 1.5);margin-top:calc(1.07rem * 1.5);display:flex;flex-direction:column;gap:0.5rem}
.primary-contact{margin:0;font-size:calc(16px * .875);opacity:0.85;max-width:90ch}
.local-rail{margin:0;font-size:calc(16px * .875);opacity:0.75}
.secondary-stack{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:1.07rem}
.secondary-stack a{color:inherit;text-decoration:none;font-size:calc(16px * .875);border-bottom:1px solid transparent;transition:border-color 520ms var(--speed-soft)}
.secondary-stack a:hover,
  .secondary-stack a:focus-visible{border-bottom-color:currentColor;outline:none;color:inherit}
@media (max-width: 960px) {.secondary-benefit{grid-template-columns:1fr}.text-summary{grid-template-columns:repeat(2, minmax(0, 1fr))}
  }
@media (max-width: 560px) {.text-summary{grid-template-columns:1fr}.featured-shell{padding:calc(1.07rem * 1.5) 1.52rem;background:#1a1e26;color:#f4f5f7;}
  }
.cookies{position:fixed;right:clamp(14px,2vw,24px);bottom:clamp(14px,2vw,24px);z-index:1200}
.cookies .open-callout{width:min(18rem,calc(100vw - 28px));padding:14px;border:1px solid color-mix(in srgb,currentColor 24%,transparent);border-radius:24px;background:linear-gradient(135deg, #ffffff 0%, #fdece0 55%, #fbdcc6 100%);color:#1a1e26;box-shadow:0 8px 34px rgba(0,0,0,0.1)}
.cookies .compact-quote{display:flex;justify-content:space-between;gap:10px;align-items:center}
.cookies strong{font-size:calc(16px * 1.35)}
.cookies .compact-quote button{border:0;background:none;color:inherit;text-decoration:underline;cursor:pointer;font-weight:700}
.cookies p{margin:10px 0 0;line-height:1.79}
.cookies .media-inner{margin-top:12px;display:flex;gap:8px}
.cookies .media-inner button{flex:1;border:1px solid color-mix(in srgb,currentColor 24%,transparent);background:color-mix(in srgb,currentColor 12%,transparent);color:inherit;border-radius:12px;padding:8px 12px;cursor:pointer;font-weight:700}
.cookies .media-inner button.cookie-accept{background:#ffffff;color:#1a1e26}
.content-brand{
  padding:calc(1.5rem * 2.4) 1.52rem;
  background:linear-gradient(rgba(255,255,255,.86),rgba(255,255,255,.86)),url("https://images.pexels.com/photos/1181406/pexels-photo-1181406.jpeg?auto=compress&cs=tinysrgb&w=800") center/cover no-repeat,#ffffff;
  color:#1a1e26;
}
.content-brand .active-frame{max-width:1140px;margin:0 auto;}
.content-brand h1,.content-brand p{margin:0;}
.content-brand .top-plan{display:flex;
  align-items:flex-end;
  gap:calc(1.07rem * 2);}
.content-brand .service-region{flex:1 1 55%;min-width:0;}
.content-brand h1{font-size:calc(16px * 2.65);
  line-height:1.08;
  letter-spacing:-0.01em;}
.content-brand .content-details{margin-top:calc(1.07rem * 1.5);
  font-size:calc(16px * 1.125);
  line-height:1.79;
  color:#2f3540;
  max-width:52ch;}
.content-brand .soft-visual{flex:0 1 38%;
  min-width:0;
  padding-left:calc(1.07rem * 1.5);
  border-left:1px solid var(--tone-dark);}
.content-brand .soft-visual p{font-size:16px;
  line-height:1.79;
  color:#2f3540;}
.content-brand .steady-nav{display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1.07rem;
  margin-top:1.5rem;}
.content-brand .media-lead{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:calc(1.5rem * .75) 1.5rem;
  border-radius:0.3rem;
  background:#e8631a;
  color:#ffffff;
  text-decoration:none;
  font-size:calc(16px * .875);
  transition:background 520ms var(--speed-soft);
}
.content-brand .media-lead:hover{background:#c9500f;color:var(--tone-soft);}
.content-brand .team-entries{font-size:calc(16px * .875);color:inherit;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:border-color 520ms var(--speed-soft);}
.content-brand .team-entries:hover{border-color:#e8631a;}
@media(max-width:860px){.content-brand .top-plan{flex-direction:column;align-items:flex-start;gap:calc(1.07rem * 1.5);}.content-brand .soft-visual{padding-left:0;border-left:0;border-top:1px solid var(--tone-dark);padding-top:calc(1.07rem * 1.5);}
}
.visual-surface{--field-active:calc(1.5rem * 0.85);--axis-base:calc(1140px / 1.9);padding:calc(1.5rem * 2.4) 1.52rem;background:#f4f5f7;color:#2f3540;}
.visual-surface .active-frame{max-width:1140px;margin:0 auto;}
.visual-surface h2,.visual-surface h3,.visual-surface p{margin:0;}
.visual-surface h2{font-size:calc(16px * 2);line-height:1.14;}
.visual-surface h3{font-size:calc(16px * 1.35);line-height:1.25;}
.visual-surface p{font-size:16px;line-height:1.79;}
.visual-surface .simple-grid{display:flex;flex-direction:column;gap:calc(calc(1.07rem * 1.5) * 0.6);max-width:var(--axis-base);}
.visual-surface .service-region{font-size:calc(16px * 1.125);opacity:.82;}
.visual-surface .soft-track{display:flex;flex-direction:column;gap:0;margin-top:calc(1.07rem * 1.5);border-top:1px solid var(--tone-dark);}
.visual-surface .open-track{padding:calc(1.07rem * 1.5) 0;border-bottom:1px solid var(--tone-dark);}
.visual-surface .open-track p{margin-top:calc(1.5rem / 3.2);opacity:.86;}
.visual-surface .wide-panel{margin-top:calc(1.07rem * 1.5);font-size:calc(16px * .875);opacity:.78;max-width:var(--axis-base);}
.visual-surface .wide-panel a{text-decoration:underline;text-underline-offset:3px;}
.visual-surface .wide-panel a:hover{}
@media (max-width:640px){.visual-surface .simple-grid{max-width:100%;}.visual-surface .wide-panel{max-width:100%;}
}
.wide-summary{
        padding: calc(1.5rem * 2.4) 1.52rem;
        background: #f4f5f7;
        color: #2f3540;
    }
.wide-summary .active-frame{max-width: 1140px;
        margin: 0 auto;
        width: min(100%, 54rem);}
.wide-summary .simple-grid{max-width: 38rem;
        margin-bottom: calc(1.07rem * 1.5);}
.wide-summary .simple-grid p{margin: 0;
        font-size: calc(16px * .875);
        letter-spacing: 0.02em;
        line-height: 1.79;}
.wide-summary h2{margin: 1.5rem 0 0;
        font-size: calc(16px * 2);
        line-height: 1.1;}
.wide-summary .clear-frame{display: flex;
        gap: 1.07rem;
        align-items: flex-start;}
.wide-summary .wide-panel{flex: 0 0 min(17rem, 32vw);
        padding: calc(1.5rem * .75) calc(1.5rem * .75) calc(1.5rem * .75) 0;
        border-right: 1px solid var(--tone-dark);
        line-height: 1.79;}
.wide-summary .wide-panel p{margin: 0 0 calc(1.5rem * .75);}
.wide-summary .wide-panel p:last-child{margin-bottom: 0;}
.wide-summary .steady-nav{font-size: calc(16px * .875);}
.wide-summary .steady-nav a{color:inherit;
        text-decoration: underline;
        text-underline-offset: 3px;}
.wide-summary .steady-nav a:hover{color:inherit;}
.wide-summary .top-wrap{flex: 1 1 0;
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;}
.wide-summary li{padding: 1.5rem 0;
        border-top: 1px solid var(--tone-dark);}
.wide-summary li:first-child{border-top: 0;
        padding-top: 0;}
.wide-summary li strong{display: block;
        font-size: calc(16px * 1.125);
        line-height: 1.2;}
.wide-summary li span{display: block;
        margin-top: calc(1.5rem * .75);
        font-size: 16px;
        line-height: 1.79;}
@media (max-width: 720px) {.wide-summary .clear-frame{
            display: block;
        }.wide-summary .wide-panel{
            flex: none;
            max-width: 26rem;
            padding: 0 0 1.5rem;
            border-right: 0;
            border-bottom: 1px solid var(--tone-dark);
            margin-bottom: 1.5rem;
        }
    }
.quiet-contact{--field-active:calc(1.5rem * 1.35);--axis-base:calc(1140px / 2.35);padding:calc(1.5rem * 2.4) 1.52rem;background:#fdece0;color:#7a3208;}
.quiet-contact .active-frame{max-width:1140px;margin:0 auto;}
.quiet-contact h2,.quiet-contact h3,.quiet-contact p{margin:0;}
.quiet-contact h2{font-size:calc(16px * 2);line-height:1.14;}
.quiet-contact h3{font-size:calc(16px * 1.35);line-height:1.25;}
.quiet-contact p{font-size:16px;line-height:1.79;}
.quiet-contact .simple-grid{max-width:var(--axis-base);}
.quiet-contact .service-region{margin-top:1.5rem;}
.quiet-contact .top-wrap{display:flex;flex-direction:column;gap:var(--field-active);margin-top:calc(var(--field-active) * 1.1);}
.quiet-contact .open-track{min-width:0;padding-top:1.5rem;border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);}
.quiet-contact .open-track p{margin-top:calc(1.5rem / 3);}
.quiet-contact .steady-nav{margin-top:calc(var(--field-active) * 1.2);font-size:calc(16px * .875);}
.quiet-contact a{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.quiet-contact a:hover{}
@media (min-width:760px){.quiet-contact .top-wrap{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--field-active) calc(1.07rem * 2);}.quiet-contact .open-track:first-child{grid-column:1 / -1;border-top:none;padding-top:0;}
}
.narrow-contact{padding:calc(calc(1.5rem * 2.4)*.78) 1.52rem;background:#ffffff;color:#1a1e26;}
.narrow-contact .quiet-links{max-width:min(1140px,68rem);margin:0 auto;display:flex;flex-direction:column;gap:clamp(1rem,2vw,calc(1.07rem * 1.5));}
.narrow-contact h1{margin:0;max-width:22ch;font-size:clamp(2rem,5vw,calc(16px * 2.65));line-height:1.06;font-weight:680;letter-spacing:-0.01em;}
.narrow-contact .open-items{display:block;width:min(100%,46rem);height:auto;aspect-ratio:21/9;object-fit:cover;border-radius:0.68rem;box-shadow:0 1px 5px rgba(0,0,0,0.06);}
.narrow-contact .soft-visual{max-width:40rem;padding-left:clamp(0px,1.4vw,1.1rem);border-left:2px solid #fdece0;}
.narrow-contact p{margin:0;font-size:clamp(1rem,1.3vw,16px);line-height:1.74;color:#2f3540;}
@media (max-width:640px){.narrow-contact h1{max-width:100%;}.narrow-contact .open-items{aspect-ratio:4/3;}.narrow-contact{padding-top:calc(calc(1.5rem * 2.4)*.56);padding-bottom:calc(calc(1.5rem * 2.4)*.56);}
  }
.active-view{padding:calc(1.5rem * 2.4) 1.52rem;background:#ffffff;color:#1a1e26;}
.active-view .active-frame{max-width:1140px;margin:0 auto;display:grid;gap:calc(1.07rem * 1.5);}
.active-view .featured-flow{display:grid;gap:.6rem;padding-bottom:calc(1.07rem * 1.5);border-bottom:1px solid var(--tone-dark);max-width:52rem;}
.active-view h2,.active-view h3,.active-view h4,.active-view p{margin:0;}
.active-view h2{font-size:calc(16px * 2);line-height:1.79;}
.active-view .service-region{font-size:16px;line-height:1.79;color:#2f3540;}
.active-view .soft-inner{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(18rem,.85fr);gap:1.07rem;align-items:start;}
.active-view .text-intro{display:grid;gap:0;border-top:1px solid var(--tone-dark);}
.active-view .top-contact{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:1rem;align-items:start;padding:calc(1.5rem * .75) 0;border-bottom:1px solid var(--tone-dark);}
.active-view .bottom-team{width:2.4rem;height:2.4rem;border-radius:0.3rem;display:grid;place-items:center;background:#fdece0;color:#7a3208;font-weight:700;font-size:calc(16px * .875);letter-spacing:.02em;}
.active-view .top-panel h4{font-size:16px;line-height:1.79;}
.active-view .top-panel p{margin-top:.3rem;font-size:calc(16px * .875);line-height:1.79;color:#2f3540;}
.active-view time{font-size:calc(16px * .875);color:#2f3540;white-space:nowrap;}
.active-view .site-surface{display:grid;gap:.85rem;padding:calc(1.5rem * .75);border:1px solid var(--tone-dark);border-radius:1rem;background:#f4f5f7;color:#2f3540;}
.active-view .compact-copy{font-size:calc(16px * 1.125);line-height:1.79;}
.active-view .service-frame{display:grid;gap:.6rem;}
.active-view .fresh-header{padding:.85rem 1rem;border-radius:0.68rem;background:var(--surface-soft);color:var(--tone-soft);border:1px solid var(--tone-dark);}
.active-view .fresh-header p{font-size:calc(16px * .875);line-height:1.79;}
.active-view .fresh-header time{display:block;margin-top:.4rem;font-size:calc(16px * .875);color:#2f3540;}
.active-view .quiet-view{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:.5rem;padding-top:.85rem;border-top:1px solid var(--tone-dark);}
.active-view .simple-track{display:block;min-width:0;}
.active-view .clear-stack{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;}
.active-view .quiet-view input{width:100%;min-width:0;border:1px solid var(--tone-dark);border-radius:0.3rem;padding:.8rem .9rem;background:var(--surface-soft);color:var(--tone-soft);font:inherit;outline:none;}
.active-view .quiet-view input::placeholder{color:rgba(255,255,255,0.55);}
.active-view .quiet-view input:focus-visible{border-color:#f0a06a;box-shadow:0 0 0 3px color-mix(in srgb,#f0a06a 35%,transparent);}
.active-view .quiet-view button{border:0;border-radius:0.3rem;padding:.8rem 1.15rem;background:#e8631a;color:#ffffff;font:inherit;font-weight:700;cursor:pointer;transition:background 520ms var(--speed-soft);}
.active-view .quiet-view button:hover{background:#c9500f;color:var(--tone-soft);}
@media (max-width:900px){.active-view .soft-inner{grid-template-columns:1fr;}.active-view .top-contact{grid-template-columns:auto minmax(0,1fr);}.active-view .top-contact time{grid-column:2;justify-self:start;}.active-view .quiet-view{grid-template-columns:1fr;}
}
.page-surface{
    padding:calc(1.5rem * 2.4) 1.52rem;
    background:linear-gradient(140deg,#e8631a 0%,#fdece0 100%);
    color:#ffffff;
}
.page-surface .active-frame{max-width:1140px;
    margin:0 auto;}
.page-surface .contact-proof{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    gap:calc(1.07rem * 1.5);
    border-radius:1.3rem;
    border:1px solid color-mix(in srgb, currentColor 26%, transparent);
    background:color-mix(in srgb, currentColor 10%, transparent);
    padding:calc(1.5rem * .75);
}
.page-surface .service-region{flex:1 1 22rem;
    min-width:0;}
.page-surface .service-region h2{margin:0 0 calc(1.07rem * 1.5);
    font-size:calc(16px * 2);
    line-height:1.2;}
.page-surface .service-region p{margin:0 0 calc(1.07rem * 1.5);
    font-size:16px;
    line-height:1.79;
    opacity:.94;}
.page-surface .service-region .wide-panel{margin:0;
    font-size:calc(16px * .875);
    opacity:.82;}
.page-surface .media-lead{display:flex;
    flex-direction:column;
    gap:calc(1.07rem * 0.7);
    flex:0 0 auto;}
.page-surface .media-lead a{text-decoration:none;
    white-space:nowrap;
    padding:0.7rem 1.15rem;
    border-radius:0.68rem;
    font-weight:700;
    font-size:calc(16px * .875);
    text-align:center;
    transition:background 520ms var(--speed-soft), color 520ms var(--speed-soft);}
.page-surface .media-lead .plain-links{
    background:#fdece0;
    color:#7a3208;
}
.page-surface .media-lead .plain-links:hover{
    background:#fbdcc6;color:var(--tone-soft);}
.page-surface .media-lead .media-brand{
    background:transparent;
    color:inherit;
    border:1px solid color-mix(in srgb, currentColor 40%, transparent);
}
.page-surface .media-lead .media-brand:hover{
    background:color-mix(in srgb, currentColor 14%, transparent);
}
@media (max-width:760px){.page-surface .contact-proof{flex-direction:column;align-items:stretch;}.page-surface .media-lead{flex-direction:row;flex-wrap:wrap;}.page-surface .media-lead a{flex:1 1 auto;}
}
.plain-menu{
  padding: calc(1.5rem * 2.4) 1.52rem;
  background: #1a1e26;
  color: #f4f5f7;
}
.plain-menu .active-frame{max-width: min(1140px, 72rem);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: calc(1.07rem * 1.5);}
.plain-menu .wide-panel{flex: 1 1 22rem;
  min-width: 0;}
.plain-menu h2{margin: 0;
  font-size: calc(16px * 2);
  line-height: 1.12;}
.plain-menu .wide-panel p{margin: calc(1.5rem * .75) 0;
  color: #d3d7de;
  font-size: calc(16px * 1.125);
  line-height: 1.79;}
.plain-menu .wide-panel a{
  display: inline-flex;
  padding: calc(calc(1.5rem * .75) * .8) calc(1.5rem * .75);
  border-radius: 0.68rem;
  background: #e8631a;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: background 520ms var(--speed-soft);
}
.plain-menu .wide-panel a:hover{
  background: #c9500f;color:var(--tone-soft);}
.plain-menu ul{
  flex: 1 1 24rem;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: calc(1.5rem * .75) calc(1.5rem * .75) calc(calc(1.5rem * .75) * .4);
  border-radius: 1rem;
  background: var(--surface-soft);
  color: var(--tone-soft);
  box-shadow: 0 3px 16px rgba(0,0,0,0.08);
}
.plain-menu li{padding: 0 0 calc(1.5rem * .75);
  margin: 0 0 calc(1.5rem * .75);
  border-bottom: 1px solid var(--tone-dark);}
.plain-menu li:last-child{padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;}
.plain-menu li strong{display: block;
  font-size: 16px;
  letter-spacing: .01em;}
.plain-menu li span{display: block;
  margin-top: calc(calc(1.5rem * .75) * .35);color:inherit;
  font-size: calc(16px * .875);
  line-height: 1.6;}
@media (max-width: 760px) {.plain-menu .active-frame{
    flex-direction: column;
  }.plain-menu .wide-panel,
  .plain-menu ul{
    flex: 1 1 auto;
    width: 100%;
  }
}
.simple-callout{
    padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;
    background:#ffffff;
    color:#1a1e26;
  }
.simple-callout .quiet-links{max-width:min(1140px,64rem);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:clamp(1rem,2.1vw,calc(1.07rem * 1.5));}
.simple-callout h1{margin:0;
    max-width:19ch;
    font-size:clamp(1.95rem,5vw,calc(16px * 2.65));
    line-height:1.06;
    font-weight:660;
    letter-spacing:-0.01em;}
.simple-callout .open-items{display:block;
    width:min(100%,42rem);
    height:auto;
    aspect-ratio:21/9;
    object-fit:cover;
    border-radius:0.68rem;
    box-shadow:var(--shadow-soft,0 1px 5px rgba(0,0,0,0.06));}
.simple-callout .service-region{max-width:40rem;
    padding-left:clamp(.85rem,1.6vw,1.15rem);
    border-left:3px solid #fdece0;}
.simple-callout p{margin:0;
    font-size:clamp(1rem,1.25vw,16px);
    line-height:1.76;
    color:#2f3540;}
@media (max-width:640px){.simple-callout{padding-top:calc(calc(1.5rem * 2.4)*.52);padding-bottom:calc(calc(1.5rem * 2.4)*.52);}.simple-callout h1{max-width:100%;}.simple-callout .open-items{aspect-ratio:4/3;}.simple-callout .service-region{padding-left:0;border-left:none;border-top:2px solid #fdece0;padding-top:.85rem;}
  }
.visual-content{--field-active:calc(1.5rem * 1.28);--axis-base:calc(1140px / 2.3);--type-meta:calc(1140px / 3.4);padding:calc(1.5rem * 2.4) 1.52rem;background:#f4f5f7;color:#2f3540;}
.visual-content .active-frame{max-width:1140px;margin:0 auto;}
.visual-content h2,.visual-content h3,.visual-content p{margin:0;}
.visual-content h2{font-size:calc(16px * 2);line-height:1.14;max-width:var(--axis-base);}
.visual-content h3{font-size:calc(16px * 1.35);line-height:1.22;}
.visual-content p{font-size:16px;line-height:1.79;}
.visual-content img{display:block;width:100%;height:auto;border-radius:0.68rem;}
.visual-content .service-region{max-width:var(--axis-base);}
.visual-content .top-items>img{margin-top:var(--field-active);}
.visual-content .top-items>.service-region{margin-top:1.5rem;}
.visual-content .top-wrap{display:flex;flex-wrap:wrap;align-items:flex-start;gap:1.07rem;margin-top:var(--field-active);}
.visual-content .open-track{flex:1 1 calc(1140px / 4);min-width:0;padding-top:calc(1.5rem * .75);border-top:1px solid var(--tone-dark);}
.visual-content .open-track p{margin-top:calc(1.5rem / 3);}
@media (max-width:720px){.visual-content .open-track{flex:1 1 100%;}
}
.direct-area{
  background:linear-gradient(135deg, #f07a2b 0%, #e8631a 100%);
  color:#ffffff;
  padding:calc(1.5rem * 2.4) 1.52rem;
}
.direct-area .active-frame{max-width:1140px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:calc(1.07rem * 1.5);
  align-items:flex-start;}
.direct-area .service-region{flex:1 1 22rem;
  min-width:0;}
.direct-area h2{margin:0 0 1.5rem;
  font-size:calc(16px * 2);
  line-height:1.12;}
.direct-area .soft-visual{margin:0;
  max-width:34rem;
  line-height:1.79;color:inherit;}
.direct-area .top-wrap{flex:1 1 26rem;
  min-width:0;
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:1.07rem;}
.direct-area .open-track{
  padding:calc(1.5rem * .75);
  border-radius:0.68rem;
  background:color-mix(in srgb,#ffffff 10%,transparent);color:var(--tone-soft);}
.direct-area .steady-track{display:block;
  font-size:calc(16px * .875);
  letter-spacing:.02em;
  text-transform:uppercase;color:inherit;}
.direct-area .open-track strong{display:block;
  margin-top:.3rem;
  font-size:16px;
  line-height:1.3;}
.direct-area .wide-panel{margin:.4rem 0 0;
  font-size:calc(16px * .875);
  line-height:1.79;color:inherit;}
@media (max-width:760px){.direct-area .active-frame{display:block}.direct-area .top-wrap{margin-top:calc(1.07rem * 1.5)}
}
.secondary-media{
  background: #ffffff;
  color: #1a1e26;
  padding: calc(1.5rem * 2.4) 1.52rem;
}
.secondary-media .active-frame{width: min(100%, 1140px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(15rem, .36fr) minmax(0, 1fr);
  gap: 1.07rem;
  align-items: start;}
.secondary-media h2,
.secondary-media h3,
.secondary-media p{margin: 0;}
.secondary-media h2{font-size: calc(16px * 2); line-height: 1.1;}
.secondary-media h3{font-size: calc(16px * 1.35); line-height: 1.2;}
.secondary-media p{font-size: 16px; line-height: 1.79;}
.secondary-media .plain-track{
  display: grid;
  gap: calc(1.07rem * 1.5);
  align-content: start;
  padding: calc(1.5rem * .75);
  border-radius: 1.3rem;
  background: #f4f5f7;
  color: #2f3540;
  border: 1px solid var(--tone-dark);
}
.secondary-media .plain-track .wide-panel{font-size: calc(16px * .875);
  color: #2f3540;
  padding-top: calc(1.07rem * 1.5);
  border-top: 1px solid var(--tone-dark);}
.secondary-media .top-media{display: grid;
  gap: calc(1.07rem * 1.5);}
.secondary-media .top-contact{
  display: grid;
  grid-template-columns: minmax(8rem, .28fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: calc(1.5rem * .75);
  border-radius: 1rem;
  background: var(--surface-soft);
  color: var(--tone-soft);
  border: 1px solid var(--tone-dark);
  transition: border-color 520ms var(--speed-soft);
}
.secondary-media .top-contact:hover{border-color: #e8631a;}
.secondary-media .top-contact b{font-size: calc(16px * .875);
  font-weight: 600;
  letter-spacing: .02em;
  color: #2f3540;}
.secondary-media .top-contact h3{margin-bottom: .35rem;}
.secondary-media .top-contact p{font-size: calc(16px * .875);}
.secondary-media .plain-frame{
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.07rem;
  padding: 1.5rem calc(1.5rem * .75);
  border-radius: 1rem;
  background: #1a1e26;
  color: #f4f5f7;
}
.secondary-media .plain-frame p{font-size: calc(16px * .875); max-width: 46ch;}
.secondary-media .plain-frame a{color: inherit;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid currentColor;}
.secondary-media .plain-frame a:hover{color:inherit; border-color: #e8631a;}
@media (max-width: 820px) {.secondary-media .active-frame{ grid-template-columns: 1fr; }.secondary-media .top-contact{ grid-template-columns: 1fr; gap: calc(1.07rem * 1.5); }.secondary-media .plain-frame{ flex-direction: column; align-items: flex-start; }
}
.wide-contact{padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;background:#ffffff;color:#1a1e26;}
.wide-contact .quiet-links{max-width:min(1140px,68rem);margin:0 auto;}
.wide-contact h1{margin:0;font-size:clamp(2rem,5vw,calc(16px * 2.65));line-height:1.06;font-weight:680;letter-spacing:0;}
.wide-contact .open-items{display:block;width:min(100%,46rem);height:auto;aspect-ratio:21/9;object-fit:cover;border-radius:0.68rem;margin:clamp(1.15rem,2.4vw,calc(1.07rem * 1.5)) 0 0;}
.wide-contact .quiet-links>div{max-width:40rem;margin-top:clamp(1.1rem,2.2vw,1.5rem);padding-top:clamp(.9rem,1.6vw,1.5rem);border-top:1px solid var(--tone-dark);}
.wide-contact p{margin:0;font-size:clamp(1rem,1.28vw,16px);line-height:1.74;color:#2f3540;}
@media (max-width:640px){.wide-contact .open-items{aspect-ratio:4/3;}.wide-contact{padding-top:calc(calc(1.5rem * 2.4)*.52);padding-bottom:calc(calc(1.5rem * 2.4)*.52);}
  }
.top-tile{--field-active:calc(1.5rem * 1.05);--axis-base:calc(1140px / 2.6);--type-meta:calc(1140px / 3.9);padding:calc(1.5rem * 2.4) 1.52rem;background:#ffffff;color:#1a1e26;}
.top-tile .active-frame{max-width:1140px;margin:0 auto;}
.top-tile h1,.top-tile h2,.top-tile h3,.top-tile p{margin:0;}
.top-tile h2{font-size:calc(16px * 2);line-height:1.14;max-width:var(--axis-base);}
.top-tile h3{font-size:calc(16px * 1.35);line-height:1.22;}
.top-tile p{font-size:16px;line-height:1.79;}
.top-tile a{color:inherit;text-decoration:none;}
.top-tile a:hover{color:inherit;}
.top-tile img{display:block;width:100%;height:auto;border-radius:0.68rem;}
.top-tile .service-region{margin-top:1.5rem;max-width:var(--axis-base);}
.top-tile .wide-panel{margin-top:calc(1.5rem / 2);font-size:calc(16px * .875);color:#2f3540;}
.top-tile .top-wrap{display:flex;flex-direction:column;gap:var(--field-active);margin-top:var(--field-active);}
.top-tile .open-track{min-width:0;padding-bottom:var(--field-active);border-bottom:1px solid var(--tone-dark);}
.top-tile .open-track:last-child{border-bottom:0;padding-bottom:0;}
.top-tile .open-track p{margin-top:calc(1.5rem / 3);color:#2f3540;}
.top-tile .public-quote{display:flex;flex-wrap:wrap;align-items:flex-start;gap:1.07rem;}
.top-tile .public-quote>.soft-visual{flex:1 1 calc(1140px / 3);min-width:0;}
.top-tile .public-quote>.top-wrap{flex:2 1 calc(1140px / 2);margin-top:0;}
.top-tile .public-quote>img{margin-left:auto;max-width:var(--type-meta);}
.top-tile .steady-nav{margin-top:calc(1.07rem * 1.5);padding-top:1.5rem;border-top:1px solid var(--tone-dark);font-size:calc(16px * .875);color:#2f3540;}
@media (max-width:820px){.top-tile .public-quote>img{margin-left:0;max-width:100%;}
}
.contact-brand{--field-active:calc(1.5rem * 1.20);--font-body:calc(1140px / 3.53);padding:calc(1.5rem * 2.4) 1.52rem;background:#fdece0;color:#7a3208;}
.contact-brand .active-frame{max-width:1140px;margin:0 auto;}
.contact-brand h2,.contact-brand h3,.contact-brand p{margin:0;}
.contact-brand h2{font-size:calc(16px * 2);line-height:1.12;}
.contact-brand h3{font-size:calc(16px * 1.35);line-height:1.2;}
.contact-brand p{font-size:16px;line-height:1.79;color:color-mix(in srgb, currentColor 74%, transparent);}
.contact-brand a{color:inherit;text-decoration:none;}
.contact-brand .focused-quote{padding-block:calc(var(--field-active) / 2);}
.contact-brand .bottom-group{row-gap:calc(var(--field-active) * 1.2);}
.contact-brand .main-actions{padding-inline-end:calc(calc(1.5rem * .75) / 2);}
.contact-brand .row-title{display:flex;flex-wrap:wrap;align-items:flex-start;gap:1.07rem;}
.contact-brand .row-title h2{flex:1 1 calc(1140px / 3);min-width:0;}
.contact-brand .row-title>p{flex:1 1 calc(1140px / 3);min-width:0;}
.contact-brand .visual-headline{flex:1 1 100%;display:flex;flex-wrap:wrap;gap:var(--field-active);margin-top:var(--field-active);}
.contact-brand .open-track{flex:1 1 var(--font-body);min-width:0;padding-top:calc(calc(1.5rem * .75) / 2);border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);}
.contact-brand .open-track p{margin-top:calc(1.5rem / 3);}
.contact-brand .steady-nav{flex:1 1 100%;margin-top:calc(var(--field-active) / 2);font-size:calc(16px * .875);}
.contact-brand .steady-nav a{text-decoration:underline;text-underline-offset:3px;}
@media (max-width:640px){.contact-brand .row-title h2,.contact-brand .row-title>p{flex:1 1 100%;}
}
.featured-grid{--field-active:calc(1.5rem * 1.1);--axis-base:calc(1140px / 2.6);padding:calc(1.5rem * 2.4) 1.52rem;background:#ffffff;color:#1a1e26;}
.featured-grid .active-frame{max-width:1140px;margin:0 auto;}
.featured-grid h2,.featured-grid h3,.featured-grid p,.featured-grid ul{margin:0;}
.featured-grid h2{font-size:calc(16px * 2);line-height:1.14;max-width:var(--axis-base);}
.featured-grid h3{font-size:calc(16px * 1.35);line-height:1.22;}
.featured-grid p{font-size:16px;line-height:1.79;}
.featured-grid .simple-grid .service-region{margin-top:calc(1.5rem / 2);max-width:var(--axis-base);color:#2f3540;}
.featured-grid .top-wrap{display:flex;flex-wrap:wrap;gap:var(--field-active);margin-top:calc(var(--field-active) * 1.15);}
.featured-grid .open-track{flex:1 1 calc(1140px / 3.6);min-width:0;display:flex;flex-direction:column;padding:calc(1.5rem * .75);border:1px solid var(--tone-dark);border-radius:0.68rem;background:var(--surface-soft);color:var(--tone-soft);}
.featured-grid .open-track p{margin-top:calc(1.5rem / 2.4);color:#2f3540;}
.featured-grid .signal{list-style:none;padding:0;margin-top:calc(1.5rem / 2);display:flex;flex-direction:column;gap:calc(1.5rem / 3.4);}
.featured-grid .signal li{position:relative;padding-left:1.1rem;font-size:calc(16px * .875);line-height:1.55;color:#2f3540;}
.featured-grid .signal li::before{content:"";position:absolute;left:0;top:.55em;width:.42rem;height:.42rem;border-radius:50%;background:#e8631a;color:#ffffff;}
.featured-grid .media-lead{display:inline-flex;align-items:center;justify-content:center;width:max-content;max-width:100%;margin-top:auto;padding:calc(calc(1.5rem * .75) * .7) 1.5rem;border-radius:0.3rem;background:#e8631a;color:#ffffff;text-decoration:none;font-size:calc(16px * .875);transition:background 520ms var(--speed-soft);}
.featured-grid .media-lead:hover{background:#c9500f;color:var(--tone-soft);}
.featured-grid .open-track .media-lead{margin-top:calc(1.5rem / 1.6);}
.featured-grid .wide-panel{margin-top:calc(var(--field-active) * 1.1);padding-top:calc(1.5rem / 1.4);border-top:1px solid var(--tone-dark);color:#2f3540;max-width:var(--axis-base);}
.featured-grid .steady-nav{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.featured-grid .steady-nav:hover{color:#c9500f;}
@media (max-width:720px){.featured-grid .open-track{flex:1 1 100%;}.featured-grid h2{max-width:none;}
}
.service-content{
    padding:calc(calc(1.5rem * 2.4)*.78) 1.52rem;
    background:#ffffff;
    color:#1a1e26;
  }
.service-content .quiet-links{max-width:min(1140px,68rem);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:clamp(1.1rem,2.4vw,calc(1.07rem * 1.5));}
.service-content .service-region{display:flex;
    flex-direction:column;
    gap:clamp(.7rem,1.4vw,1.07rem);
    max-width:44rem;}
.service-content h1{margin:0;
    font-size:clamp(1.95rem,4.6vw,calc(16px * 2.65));
    line-height:1.08;
    font-weight:640;
    letter-spacing:-0.005em;}
.service-content .soft-visual{margin:0;
    font-size:clamp(1rem,1.22vw,16px);
    line-height:1.72;
    color:#2f3540;}
.service-content .open-items{display:block;
    width:100%;
    height:auto;
    aspect-ratio:21/9;
    object-fit:cover;
    border-radius:1rem;
    box-shadow:var(--shadow-soft,0 1px 5px rgba(0,0,0,0.06));}
@media (max-width:640px){.service-content{padding-top:calc(calc(1.5rem * 2.4)*.56);padding-bottom:calc(calc(1.5rem * 2.4)*.56);}.service-content .open-items{aspect-ratio:4/3;}
  }
.featured-visual{--field-active:calc(1.5rem * 1.35);--axis-base:calc(1140px / 2.50);--type-meta:calc(1140px / 3.66);padding:calc(1.5rem * 2.4) 1.52rem;background:#fdece0;color:#7a3208;}
.featured-visual .active-frame{max-width:1140px;margin:0 auto;}
.featured-visual h1,.featured-visual h2,.featured-visual h3,.featured-visual p{margin:0;}
.featured-visual h1{font-size:calc(16px * 2.65);line-height:1.08;}
.featured-visual h2{font-size:calc(16px * 2);line-height:1.12;}
.featured-visual h3{font-size:calc(16px * 1.35);line-height:1.2;}
.featured-visual p{font-size:16px;line-height:1.79;color:color-mix(in srgb, currentColor 74%, transparent);}
.featured-visual a{color:inherit;text-decoration:none;border-bottom:1px solid currentColor;}
.featured-visual img{display:block;width:100%;height:auto;border-radius:0.68rem;}
.featured-visual .service-region{color:color-mix(in srgb, currentColor 82%, transparent);}
.featured-visual .top-wrap{display:flex;flex-direction:column;gap:var(--field-active);margin-top:var(--field-active);}
.featured-visual .open-track{min-width:0;padding-left:calc(1.52rem * .9);border-left:2px solid color-mix(in srgb, currentColor 30%, transparent);}
.featured-visual .open-track p{margin-top:calc(1.5rem / 3);}
.featured-visual .steady-nav{margin-top:calc(1.5rem * 1.1);font-size:calc(16px * .875);color:color-mix(in srgb, currentColor 78%, transparent);}
.featured-visual .public-quote{display:flex;flex-wrap:wrap;align-items:flex-start;gap:1.07rem;}
.featured-visual .public-quote>.soft-visual{flex:1 1 calc(1140px / 3);min-width:0;}
.featured-visual .public-quote>.top-wrap{flex:2 1 calc(1140px / 2);margin-top:0;}
.featured-visual .public-quote>img{margin-left:auto;max-width:var(--type-meta);}
.featured-visual .soft-visual .service-region{margin-top:1.5rem;}
@media (max-width:720px){.featured-visual .public-quote>img{max-width:100%;margin-left:0;}
}
.focused-group{
  --field-active:calc(1.5rem * 1.18);
  --axis-base:calc(1140px / 2.35);
  padding:calc(1.5rem * 2.4) 1.52rem;
  background:#f4f5f7;
  color:#2f3540;
}
.focused-group .active-frame{max-width:1140px;
  margin:0 auto;}
.focused-group h2{font-size:calc(16px * 2);
  line-height:1.14;
  margin:0;}
.focused-group p{margin:0;
  font-size:16px;
  line-height:1.79;}
.focused-group .plain-panel{display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:1.07rem;
  padding-bottom:calc(1.07rem * 1.5);
  border-bottom:1px solid var(--tone-dark);}
.focused-group .plain-panel h2{flex:1 1 22rem;}
.focused-group .wide-panel{flex:0 1 var(--axis-base);
  font-size:calc(16px * .875);
  color:#2f3540;
  opacity:0.82;}
.focused-group .service-region{margin-top:var(--field-active);
  max-width:calc(1140px * 0.72);}
.focused-group .steady-nav{margin-top:var(--field-active);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1.07rem;}
.focused-group .media-lead{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:calc(1.5rem * .75) 1.5rem;
  border-radius:0.3rem;
  background:#e8631a;
  color:#ffffff;
  text-decoration:none;
  font-size:16px;
  transition:background 520ms var(--speed-soft);
}
.focused-group .media-lead:hover{
  background:#c9500f;color:var(--tone-soft);}
.focused-group .team-entries{color:inherit;
  text-decoration:none;
  font-size:calc(16px * .875);
  border-bottom:1px solid transparent;
  transition:border-color 520ms var(--speed-soft);}
.focused-group .team-entries:hover{border-color:#e8631a;}
@media (max-width:720px){.focused-group .plain-panel{
    flex-direction:column;
    align-items:flex-start;
  }.focused-group .service-region{
    max-width:100%;
  }
}
.active-section{
    padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;
    background:#ffffff;
    color:#1a1e26;
  }
.active-section .quiet-links{max-width:min(1140px,68rem);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:clamp(1.1rem,2.4vw,calc(1.07rem * 1.5));}
.active-section .service-region{max-width:44rem;}
.active-section h1{margin:0;
    font-size:clamp(1.9rem,4.6vw,calc(16px * 2.65));
    line-height:1.1;
    font-weight:640;
    letter-spacing:-0.01em;}
.active-section .content-details{margin:clamp(.85rem,1.8vw,1.5rem) 0 0;
    font-size:clamp(1rem,1.25vw,16px);
    line-height:1.72;
    color:#2f3540;}
.active-section .main-media{margin:0;
    width:min(100%,46rem);}
.active-section .open-items{display:block;
    width:100%;
    height:auto;
    aspect-ratio:21/9;
    object-fit:cover;
    border-radius:0.68rem;
    box-shadow:var(--shadow-soft,0 1px 5px rgba(0,0,0,0.06));}
@media (max-width:640px){.active-section{
      padding-top:calc(calc(1.5rem * 2.4)*.52);
      padding-bottom:calc(calc(1.5rem * 2.4)*.52);
    }.active-section .open-items{aspect-ratio:4/3;}
  }
.page-block{--field-active:calc(1.5rem * 1.35);--axis-base:calc(1140px / 2.80);padding:calc(1.5rem * 2.4) 1.52rem;background:#e8631a;color:#ffffff;}
.page-block .active-frame{max-width:1140px;margin:0 auto;}
.page-block h2,.page-block h3,.page-block p{margin:0;}
.page-block h2{font-size:calc(16px * 2);line-height:1.12;max-width:var(--axis-base);}
.page-block h3{font-size:calc(16px * 1.35);line-height:1.2;}
.page-block p{font-size:16px;line-height:1.79;color:color-mix(in srgb, currentColor 78%, transparent);}
.page-block .wide-panel{font-size:calc(16px * .875);letter-spacing:.06em;text-transform:uppercase;color:color-mix(in srgb, currentColor 68%, transparent);}
.page-block .top-wrap{display:flex;flex-wrap:wrap;gap:var(--field-active);margin-top:var(--field-active);}
.page-block .open-track{flex:1 1 calc(1140px / 3.4);min-width:0;padding:calc(calc(1.5rem * .75) * .9);border-radius:0.68rem;background:color-mix(in srgb, currentColor 11%, transparent);}
.page-block .open-track p{margin-top:calc(1.5rem / 3);}
.page-block .compact-contact>h2{margin-top:calc(1.5rem / 2);}
.contact-method{padding:calc(1.5rem * 2) 1.52rem;background:var(--surface-soft);color:var(--tone-soft);}
.contact-method .open-callout{max-width:1140px;margin:0 auto;display:grid;gap:calc(1.07rem * 1.4);}
.contact-method h2,.contact-method h3,.contact-method p,.contact-method ul{margin:0;}
.contact-method .top-plan{display:grid;grid-template-columns:1fr 1fr;gap:1.07rem;align-items:center;}
.contact-method .top-plan img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:1.3rem;box-shadow:0 3px 16px rgba(0,0,0,0.08);}
.contact-method .simple-grid{display:grid;gap:.55rem;}
.contact-method .simple-grid .service-region{font-size:calc(16px * .875);letter-spacing:.04em;text-transform:uppercase;color:#2f3540;}
.contact-method .visual-headline{display:grid;gap:.7rem;}
.contact-method .clear-copy{background:#f4f5f7;border:1px solid var(--tone-dark);border-radius:1rem;padding:.9rem 1rem;color:#2f3540;display:grid;gap:.35rem;}
.contact-method .clear-copy h3{font-size:16px;}
.contact-method .team-copy{background:#fdece0;color:#7a3208;border-radius:1rem;padding:1rem 1.1rem;display:grid;gap:.5rem;}
.contact-method .team-copy h3{font-size:16px;}
.contact-method .team-copy ul{display:grid;gap:.35rem;padding-left:1.1rem;list-style:disc;}
.contact-method .steady-nav{border-top:1px solid var(--tone-dark);padding-top:.9rem;display:flex;flex-wrap:wrap;gap:.5rem 1rem;align-items:baseline;}
.contact-method .steady-nav p{color:#2f3540;}
.contact-method .steady-nav a{color:inherit;text-decoration:none;border-bottom:1px solid #f0a06a;}
.contact-method .steady-nav a:hover{color:inherit;}
@media (max-width:900px){.contact-method .top-plan{grid-template-columns:1fr;}}
.fresh-figure{padding:calc(1.5rem * 2.4) 1.52rem;background:#fdece0;color:#7a3208}
.fresh-figure .active-frame{max-width:1140px;margin:0 auto}
.fresh-figure .text-actions{display:flex;flex-direction:column;gap:calc(1.07rem * 1.5);align-items:flex-start}
.fresh-figure h2{margin:0;font-size:calc(16px * 2);line-height:1.1}
.fresh-figure .service-region{margin:0;max-width:62ch;font-size:16px;line-height:1.79;opacity:.92}
.fresh-figure .soft-track{width:100%;display:flex;flex-wrap:wrap;gap:1.07rem}
.fresh-figure .open-track{flex:1 1 18rem;min-width:0;background:color-mix(in srgb,#7a3208 8%,transparent);border-left:3px solid #7a3208;border-radius:0.3rem;padding:calc(1.5rem * .75) 1.5rem;color:var(--tone-soft);}
.fresh-figure .open-track p{margin:0 0 calc(1.5rem * .75);font-size:calc(16px * .875);text-transform:uppercase;letter-spacing:.04em;opacity:.78}
.fresh-figure .open-track strong{display:block;font-size:16px;font-weight:600;line-height:1.4}
.fresh-figure .text-actions>a{align-self:flex-start;border-radius:0.3rem;background:#e8631a;color:#ffffff;padding:calc(1.5rem * .75) 1.5rem;text-decoration:none;font-size:calc(16px * .875)}
.fresh-figure .text-actions>a:hover{background:#c9500f;color:var(--tone-soft);}
@media(max-width:680px){.fresh-figure .soft-track{display:block}.fresh-figure .open-track+.open-track{margin-top:1.07rem}.fresh-figure h2{font-size:calc(16px * 1.35)}}
.featured-figure{
    padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;
    background:#ffffff;
    color:#1a1e26;
  }
.featured-figure .quiet-links{max-width:min(1140px,64rem);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:clamp(1rem,2vw,calc(1.07rem * 1.5));}
.featured-figure h1{margin:0;
    max-width:22ch;
    font-size:clamp(2rem,5vw,calc(16px * 2.65));
    line-height:1.06;
    font-weight:680;
    letter-spacing:0;}
.featured-figure .open-items{display:block;
    width:min(100%,42rem);
    height:auto;
    aspect-ratio:21/9;
    object-fit:cover;
    border-radius:0.68rem;
    box-shadow:var(--shadow-soft,0 1px 5px rgba(0,0,0,0.06));}
.featured-figure .soft-visual{max-width:40rem;
    padding-top:clamp(.85rem,1.6vw,1.5rem);
    border-top:1px solid var(--tone-dark,#e2e5ea);}
.featured-figure p{margin:0;
    font-size:clamp(1rem,1.28vw,16px);
    line-height:1.74;
    color:#2f3540;}
@media (max-width:640px){.featured-figure h1{max-width:100%;}.featured-figure .open-items{aspect-ratio:4/3;}.featured-figure{padding-top:calc(calc(1.5rem * 2.4)*.52);padding-bottom:calc(calc(1.5rem * 2.4)*.52);}
  }
.offer-media{
        padding: calc(1.5rem * 2.4) 1.52rem;
        background: #f4f5f7;
        color: #2f3540
    }
.offer-media .active-frame{max-width: 1140px;
        margin: 0 auto}
.offer-media .strong-fields{display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
        gap: calc(1.07rem * 1.5);
        align-items: start}
.offer-media h2{margin: 0;
        font-size: calc(16px * 2);
        line-height: 1.12}
.offer-media .open-list{min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem}
.offer-media .open-list p{margin: 0;
        font-size: 16px;
        line-height: 1.79}
.offer-media .primary-note{display: flex;
        flex-wrap: wrap;
        gap: calc(1.07rem * .6)}
.offer-media .primary-note span{
        border-radius: 0.3rem;
        background: var(--surface-soft);
        color: var(--tone-soft);
        border: 1px solid var(--tone-dark);
        padding: calc(calc(1.5rem * .75) * .5) calc(calc(1.5rem * .75) * .85);
        font-size: calc(16px * .875);
        line-height: 1.4
    }
@media (max-width: 760px) {.offer-media .strong-fields{
            grid-template-columns: 1fr;
            gap: 1.5rem
        }
    }
.clear-form{--field-active:calc(1.5rem * 1.05);padding:calc(1.5rem * 2.4) 1.52rem;background:#ffffff;color:#1a1e26;}
.clear-form .active-frame{max-width:1140px;margin:0 auto;}
.clear-form h2,.clear-form h3,.clear-form p{margin:0;}
.clear-form h2{font-size:calc(16px * 2);line-height:1.14;}
.clear-form p{font-size:16px;line-height:1.79;}
.clear-form a{text-decoration:none;border-bottom:1px solid #f0a06a;}
.clear-form a:hover{}
.clear-form .simple-grid{max-width:calc(1140px / 1.55);}
.clear-form .service-region{margin-top:calc(1.07rem * 1.5);}
.clear-form .soft-track{display:flex;flex-direction:column;gap:calc(1.07rem * 1.1);margin-top:calc(1.5rem * 1.4);}
.clear-form details{padding:calc(calc(1.5rem * .75) * 1.05) calc(calc(1.5rem * .75) * 1.2);border-radius:0.68rem;background:#f4f5f7;color:#2f3540;border:1px solid var(--tone-dark);}
.clear-form summary{cursor:pointer;font-weight:700;font-size:calc(16px * 1.125);line-height:1.3;list-style:none;}
.clear-form summary::-webkit-details-marker{display:none;}
.clear-form summary::after{content:"+";float:right;font-weight:400;}
.clear-form details[open] summary::after{content:"–";}
.clear-form details p{margin-top:calc(1.5rem / 2.6);}
.clear-form .steady-nav{margin-top:calc(1.5rem * 1.3);padding-top:calc(1.07rem * 1.5);border-top:1px solid var(--tone-dark);font-size:calc(16px * .875);}
@media (max-width:640px){.clear-form .simple-grid{max-width:none;}.clear-form summary{font-size:16px;}
}
.offer-headline{
    padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;
    background:#ffffff;
    color:#1a1e26;
  }
.offer-headline .quiet-links{max-width:min(1140px,68rem);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:clamp(1.1rem,2.4vw,calc(1.07rem * 1.5));}
.offer-headline .contact-headline{display:flex;
    flex-direction:column;
    gap:clamp(.7rem,1.4vw,1.07rem);
    max-width:52rem;}
.offer-headline h1{margin:0;
    font-size:clamp(1.95rem,4.6vw,calc(16px * 2.65));
    line-height:1.08;
    font-weight:680;
    letter-spacing:-0.01em;}
.offer-headline .service-region{margin:0;
    font-size:clamp(1.02rem,1.35vw,calc(16px * 1.125));
    line-height:1.62;
    color:#2f3540;}
.offer-headline .compact-area{margin:0;
    width:min(100%,46rem);}
.offer-headline .open-items{display:block;
    width:100%;
    height:auto;
    aspect-ratio:21/9;
    object-fit:cover;
    border-radius:0.68rem;}
.offer-headline .top-panel{max-width:44rem;
    padding-top:clamp(.9rem,1.8vw,1.5rem);
    border-top:1px solid var(--tone-dark,#e2e5ea);}
.offer-headline .top-panel p{margin:0;
    font-size:clamp(1rem,1.22vw,16px);
    line-height:1.78;
    color:#2f3540;}
@media (max-width:640px){.offer-headline{
      padding-top:calc(calc(1.5rem * 2.4)*.5);
      padding-bottom:calc(calc(1.5rem * 2.4)*.5);
    }.offer-headline .open-items{aspect-ratio:4/3;}
  }
.main-shell{padding:calc(1.5rem * 2.4) 1.52rem;background:#fdece0;color:#7a3208}
.main-shell .active-frame{max-width:1140px;margin:0 auto}
.main-shell .featured-flow{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:1.07rem;margin-bottom:calc(1.07rem * 1.5);padding-bottom:calc(1.07rem * 1.5);border-bottom:1px solid #fbdcc6}
.main-shell .featured-flow p{flex:1 1 26rem;margin:0;font-size:16px;line-height:1.79}
.main-shell h2{flex:0 1 auto;margin:0;font-size:calc(16px * 2);line-height:1.1;text-align:right}
.main-shell .plain-method{display:flex;flex-wrap:wrap;gap:calc(1.07rem * 1.5) 1.07rem}
.main-shell [data-cluster]{flex:1 1 20rem;max-width:36rem;padding:calc(1.5rem * .75) 0 0;border-top:1px solid #fbdcc6;order:var(--axis-active,0);transform:translateY(var(--layer-local,0))}
.main-shell h3{margin:0;font-size:calc(16px * 1.35);line-height:1.25}
.main-shell [data-cluster] p{margin:calc(1.5rem * .75) 0 0;font-size:calc(16px * .875);line-height:1.79}
@media(max-width:680px){.main-shell .featured-flow{display:block}.main-shell h2{margin-top:1.5rem;text-align:left}.main-shell [data-cluster]{max-width:none;transform:none}}
.compact-service{--field-active:calc(1.5rem * 1.02);--axis-base:calc(1140px / 2.55);--type-meta:calc(1140px / 3.94);padding:calc(1.5rem * 2.4) 1.52rem;background:#f4f5f7;color:#2f3540;}
.compact-service .active-frame{max-width:1140px;margin:0 auto;}
.compact-service h2,.compact-service h3,.compact-service p{margin:0;}
.compact-service h2{font-size:calc(16px * 2);line-height:1.12;}
.compact-service h3{font-size:calc(16px * 1.35);line-height:1.2;}
.compact-service p{font-size:16px;line-height:1.79;}
.compact-service a{color:inherit;text-decoration:none;font-size:calc(16px * .875);}
.compact-service a:hover{color:inherit;}
.compact-service img{display:block;width:100%;height:auto;border-radius:0.68rem;}
.compact-service .service-region{margin-top:1.5rem;}
.compact-service .top-wrap{display:flex;flex-direction:column;gap:var(--field-active);}
.compact-service .open-track{min-width:0;padding-bottom:calc(1.5rem * .75);border-bottom:1px solid var(--tone-dark);}
.compact-service .open-track:last-child{border-bottom:0;padding-bottom:0;}
.compact-service .open-track p,.compact-service .open-track a{margin-top:calc(1.5rem / 3);}
.compact-service .public-quote{display:flex;flex-wrap:wrap;align-items:flex-start;gap:1.07rem;}
.compact-service .public-quote>.soft-visual{flex:1 1 calc(1140px / 3);min-width:0;}
.compact-service .public-quote>.top-wrap{flex:2 1 calc(1140px / 2);}
.compact-service .public-quote>img{margin-left:auto;max-width:calc(var(--type-meta) * .9);}
@media (max-width:720px){.compact-service .public-quote>img{margin-left:0;max-width:100%;}
}
.clear-area{
    padding:calc(calc(1.5rem * 2.4)*.7) 1.52rem;
    background:#ffffff;
    color:#1a1e26;
  }
.clear-area .quiet-links{max-width:min(1140px,64rem);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:clamp(1rem,2vw,calc(1.07rem * 1.5));}
.clear-area h1{margin:0;
    font-size:clamp(1.9rem,4.6vw,calc(16px * 2.65));
    line-height:1.08;
    font-weight:680;
    letter-spacing:-0.01em;}
.clear-area .open-items{display:block;
    width:min(100%,46rem);
    height:auto;
    aspect-ratio:21/9;
    object-fit:cover;
    border-radius:0.68rem;}
.clear-area .service-region{max-width:40rem;
    padding-top:clamp(.9rem,1.6vw,1.5rem);
    border-top:1px solid var(--tone-dark,#e2e5ea);}
.clear-area .service-region p{margin:0;
    font-size:clamp(1rem,1.25vw,16px);
    line-height:1.74;
    color:#2f3540;}
@media (max-width:640px){.clear-area{padding-top:calc(calc(1.5rem * 2.4)*.5);padding-bottom:calc(calc(1.5rem * 2.4)*.5);}.clear-area .open-items{aspect-ratio:4/3;}
  }
.plain-group{
  --field-active:calc(1.5rem * 1.15);
  --axis-base:calc(1140px / 2.4);
  padding:calc(1.5rem * 2.4) 1.52rem;
  background:#ffffff;
  color:#1a1e26;
}
.plain-group .active-frame{max-width:1140px;
  margin:0 auto;}
.plain-group h1,
.plain-group h2,
.plain-group h3,
.plain-group p{margin:0;}
.plain-group h2{font-size:calc(16px * 2);
  line-height:1.14;}
.plain-group p{font-size:16px;
  line-height:1.79;
  color:color-mix(in srgb, currentColor 76%, transparent);}
.plain-group a{text-decoration:none;
  border-bottom:1px solid color-mix(in srgb, #e8631a 40%, transparent);}
.plain-group a:hover{border-bottom-color:#fdece0;}
.plain-group .simple-grid{max-width:var(--axis-base);
  display:flex;
  flex-direction:column;
  gap:calc(1.5rem / 2.4);}
.plain-group .service-region{font-size:calc(16px * 1.125);}
.plain-group .soft-track{display:flex;
  flex-direction:column;
  gap:0;
  margin-top:var(--field-active);
  border-top:1px solid var(--tone-dark);}
.plain-group details{border-bottom:1px solid var(--tone-dark);
  padding:calc(calc(1.5rem * .75) * .95) 0;}
.plain-group summary{cursor:pointer;
  font-weight:700;
  font-size:16px;
  list-style:none;
  display:flex;
  align-items:baseline;
  gap:1.07rem;}
.plain-group summary::-webkit-details-marker{display:none;}
.plain-group summary::before{content:"+";
  flex:0 0 auto;
  font-weight:400;
  width:1ch;}
.plain-group details[open] summary::before{content:"–";}
.plain-group details p{margin-top:calc(1.5rem / 2.6);
  padding-left:calc(1ch + 1.07rem);
  max-width:calc(1140px * .78);}
.plain-group .wide-panel{margin-top:var(--field-active);
  padding-top:calc(1.5rem / 1.6);
  border-top:1px solid var(--tone-dark);
  font-size:calc(16px * .875);
  max-width:calc(1140px * .82);}
@media (max-width:640px){.plain-group .simple-grid{
    max-width:none;
  }.plain-group details p{
    padding-left:0;
  }
}
.open-surface{--field-active:calc(1.5rem * 1.19);--axis-base:calc(1140px / 2.55);--type-meta:calc(1140px / 3.49);padding:calc(1.5rem * 2.4) 1.52rem;background:#ffffff;color:#1a1e26;}
.open-surface .active-frame{max-width:1140px;margin:0 auto;}
.open-surface h2,.open-surface h3,.open-surface p{margin:0;}
.open-surface h2{font-size:calc(16px * 2);line-height:1.12;}
.open-surface h3{font-size:calc(16px * 1.35);line-height:1.2;}
.open-surface p{font-size:16px;line-height:1.79;color:#2f3540;}
.open-surface a{color:inherit;text-decoration:none;}
.open-surface a:hover{color:inherit;}
.open-surface img{display:block;width:100%;height:auto;border-radius:0.68rem;}
.open-surface .contact-headline{max-width:var(--axis-base);}
.open-surface .service-region{margin-top:1.5rem;}
.open-surface .main-stack{margin-top:var(--field-active);max-width:var(--type-meta);}
.open-surface .top-wrap{display:flex;flex-wrap:wrap;align-items:flex-start;gap:1.07rem;margin-top:var(--field-active);}
.open-surface .open-track{flex:1 1 calc(1140px / 4);min-width:0;padding-top:calc(1.5rem * .75);border-top:2px solid var(--tone-dark);}
.open-surface .open-track p{margin-top:calc(1.5rem / 3);}
.open-surface .wide-panel{margin-top:var(--field-active);max-width:var(--axis-base);font-size:calc(16px * .875);}
@media (max-width:720px){.open-surface .open-track{flex:1 1 100%;}.open-surface .main-stack{max-width:100%;}
}
.strong-frame{
  padding: calc(1.5rem * 2.4) 1.52rem;
  background: #f4f5f7;
  color: #2f3540;
}
.strong-frame .open-callout{max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  gap: 1.07rem;
  align-items: start;}
.strong-frame .contact-items{
  padding: calc(1.5rem * .75);
  border-radius: 1rem;
  background: #1a1e26;
  color: #f4f5f7;
  position: sticky;
  top: calc(1.5rem * .75);
}
.strong-frame h2{margin: 0;
  font-size: calc(16px * 2);
  line-height: 1.1;}
.strong-frame .contact-items p{margin: calc(1.5rem * .75) 0 0;
  font-size: 16px;
  line-height: 1.6;}
.strong-frame .primary-team{display: flex;
  flex-direction: column;
  gap: calc(1.07rem * 1.5);}
.strong-frame .fresh-header{display: grid;
  grid-template-columns: minmax(6rem, .3fr) minmax(0, 1fr);
  gap: calc(1.5rem * .75);
  padding: calc(1.5rem * .75) 0;
  border-top: 1px solid var(--tone-dark);}
.strong-frame .fresh-header:first-child{border-top: none;
  padding-top: 0;}
.strong-frame .compact-team{font-size: calc(16px * .875);
  word-break: break-word;
  line-height: 1.4;}
.strong-frame h3{margin: 0;
  font-size: calc(16px * 1.35);
  line-height: 1.3;}
.strong-frame .fresh-header p{margin: calc(calc(1.5rem * .75) * .45) 0;
  font-size: 16px;
  line-height: 1.65;}
.strong-frame small{display: block;
  font-size: calc(16px * .875);
  opacity: .85;}
@media (max-width: 780px) {.strong-frame .open-callout{
    grid-template-columns: 1fr;
  }.strong-frame .contact-items{
    position: static;
  }.strong-frame .fresh-header{
    grid-template-columns: 1fr;
    gap: calc(calc(1.5rem * .75) * .5);
  }
}
.service-story{padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;background:#ffffff;color:#1a1e26;}
.service-story .quiet-links{max-width:min(1140px,64rem);margin:0 auto;display:flex;flex-direction:column;}
.service-story h1{margin:0;max-width:22ch;font-size:clamp(1.9rem,4.6vw,calc(16px * 2.65));line-height:1.08;font-weight:640;letter-spacing:-0.01em;}
.service-story .open-items{display:block;width:min(100%,42rem);height:auto;aspect-ratio:21/9;object-fit:cover;border-radius:0.68rem;margin:clamp(1.1rem,2.4vw,calc(1.07rem * 1.5)) 0 0;}
.service-story .quiet-links>div{max-width:40rem;margin-top:clamp(.9rem,2vw,1.5rem);padding-top:clamp(.8rem,1.5vw,1.5rem);border-top:1px solid var(--tone-dark);}
.service-story p{margin:0;font-size:clamp(1rem,1.24vw,16px);line-height:1.76;color:#2f3540;}
@media (max-width:640px){.service-story h1{max-width:100%;}.service-story .open-items{aspect-ratio:4/3;}.service-story{padding-top:calc(calc(1.5rem * 2.4)*.52);padding-bottom:calc(calc(1.5rem * 2.4)*.52);}
  }
.narrow-service{
  background:#ffffff;
  color:#1a1e26;
  padding:calc(1.5rem * 2.4) 1.52rem;
}
.narrow-service .active-frame{max-width:1140px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:calc(1.07rem * 1.5);
  align-items:flex-start;}
.narrow-service .soft-visual{flex:1 1 30rem;
  min-width:0;}
.narrow-service .service-callout{display:block;
  flex:1 1 22rem;
  width:100%;
  max-width:32rem;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:1rem;
  box-shadow:0 1px 5px rgba(0,0,0,0.06);}
.narrow-service h2{margin:0;
  font-size:calc(16px * 2);
  line-height:1.12;}
.narrow-service .soft-visual p{margin:1.5rem 0 0;
  max-width:40rem;
  font-size:calc(16px * 1.125);
  line-height:1.79;}
.narrow-service .soft-visual p + p{margin-top:calc(1.5rem * .75);}
.narrow-service .media-inner{margin-top:calc(1.07rem * 1.5);}
.narrow-service .media-inner a{
  display:inline-flex;
  align-items:center;
  color:#ffffff;
  background:#e8631a;
  text-decoration:none;
  border-radius:0.68rem;
  padding:.85rem 1.15rem;
  font-size:16px;
  transition:background 520ms var(--speed-soft);
}
.narrow-service .media-inner a:hover{
  background:#c9500f;color:var(--tone-soft);}
.narrow-service .steady-nav{margin-top:calc(1.5rem * .75);
  font-size:calc(16px * .875);
  color:#2f3540;}
.narrow-service .steady-nav a{color:inherit;
  text-decoration:underline;}
.narrow-service .steady-nav a:hover{color:inherit;}
@media (max-width:760px){.narrow-service .active-frame{
    flex-direction:column-reverse;
  }.narrow-service .service-callout{
    max-width:100%;
  }
}
.text-group{--field-active:calc(1.5rem * 1.04);--axis-base:calc(1140px / 2.28);padding:calc(1.5rem * 2.4) 1.52rem;background:#fdece0;color:#7a3208;}
.text-group .active-frame{max-width:1140px;margin:0 auto;}
.text-group h2,.text-group h3,.text-group p{margin:0;}
.text-group h2{font-size:calc(16px * 2);line-height:1.12;}
.text-group h3{font-size:calc(16px * 1.35);line-height:1.22;}
.text-group p{font-size:16px;line-height:1.79;}
.text-group .main-actions{padding-inline-end:calc(calc(1.5rem * .75) / 2);}
.text-group .bottom-group{row-gap:calc(var(--field-active) * 1.15);}
.text-group .offer-area{display:flex;flex-direction:column;}
.text-group .service-region{margin-top:1.5rem;max-width:var(--axis-base);}
.text-group .service-actions{display:flex;flex-direction:column;gap:var(--field-active);margin-top:var(--field-active);}
.text-group .open-track{min-width:0;padding-block-start:calc(calc(1.5rem * .75) / 1.6);border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);}
.text-group .open-track p{margin-top:calc(1.5rem / 3.2);max-width:calc(1140px / 1.6);}
@media (max-width:720px){.text-group .service-region{max-width:none;}.text-group .open-track p{max-width:none;}
}
.top-block{
    padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;
    background:#ffffff;
    color:#1a1e26;
  }
.top-block .quiet-links{max-width:min(1140px,68rem);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:flex-start;}
.top-block h1{margin:0;
    font-size:clamp(1.95rem,4.8vw,calc(16px * 2.65));
    line-height:1.08;
    font-weight:640;
    letter-spacing:-0.01em;}
.top-block .open-items{display:block;
    width:100%;
    height:auto;
    aspect-ratio:24/9;
    object-fit:cover;
    border-radius:1rem;
    margin:clamp(1.1rem,2.4vw,calc(1.07rem * 1.5)) 0 0;}
.top-block .quiet-links>div{max-width:44rem;
    margin-top:clamp(1rem,2vw,1.5rem);
    padding-top:clamp(.8rem,1.5vw,1.5rem);
    border-top:1px solid var(--tone-dark,#e2e5ea);}
.top-block p{margin:0;
    font-size:clamp(1rem,1.25vw,16px);
    line-height:1.76;
    color:#2f3540;}
@media (max-width:640px){.top-block .open-items{aspect-ratio:4/3}.top-block{padding-top:calc(calc(1.5rem * 2.4)*.5);padding-bottom:calc(calc(1.5rem * 2.4)*.5);}
  }
.strong-team{padding:calc(1.5rem * 2.4) 1.52rem;background:#ffffff;color:#1a1e26}
.strong-team .active-frame{max-width:min(1140px,56rem);margin:0 auto}
.strong-team .simple-grid{max-width:44rem}
.strong-team h2{margin:0;font-size:calc(16px * 2);line-height:1.12}
.strong-team .simple-grid p{margin:1.5rem 0 0;color:#2f3540;line-height:1.79}
.strong-team .open-media{margin-top:calc(calc(1.07rem * 1.5) * 1.4);display:flex;flex-direction:column;gap:calc(1.5rem * .75)}
.strong-team details{padding:1.5rem 0;border-top:1px solid var(--tone-dark)}
.strong-team details:last-child{border-bottom:1px solid var(--tone-dark)}
.strong-team summary{cursor:pointer;font-size:calc(16px * 1.35);line-height:1.22;list-style:none}
.strong-team summary::-webkit-details-marker{display:none}
.strong-team summary::after{content:"+";float:right;font-weight:400;color:inherit;}
.strong-team details[open] summary::after{content:"\2212"}
.strong-team details p{max-width:48rem;margin:1.5rem 0 0;color:#2f3540;line-height:1.79}
@media(max-width:720px){.strong-team .open-media{margin-top:calc(1.07rem * 1.5)}.strong-team summary{font-size:calc(16px * 1.125)}
}
.steady-section{--field-active:calc(1.5rem * 1.32);--axis-base:calc(1140px / 2.45);--type-meta:calc(1140px / 3.61);padding:calc(1.5rem * 2.4) 1.52rem;background:#e8631a;color:#ffffff;}
.steady-section .active-frame{max-width:1140px;margin:0 auto;}
.steady-section h2,.steady-section h3,.steady-section p{margin:0;}
.steady-section h2{font-size:calc(16px * 2);line-height:1.12;}
.steady-section h3{font-size:calc(16px * 1.35);line-height:1.2;}
.steady-section p{font-size:16px;line-height:1.79;}
.steady-section a{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.steady-section img{display:block;width:100%;height:auto;border-radius:0.68rem;}
.steady-section .service-region{max-width:var(--axis-base);margin-top:1.5rem;}
.steady-section .top-wrap{display:flex;flex-wrap:wrap;align-items:flex-start;gap:1.07rem;margin-top:var(--field-active);}
.steady-section .open-track{flex:1 1 calc(1140px / 4);min-width:0;}
.steady-section .open-track p{margin-top:calc(1.5rem / 3);}
.steady-section .wide-panel{margin-top:var(--field-active);max-width:var(--axis-base);font-size:calc(16px * .875);}
.steady-section .top-items>img{margin-top:var(--field-active);}
.public-fields{
    padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;
    background:#ffffff;
    color:#1a1e26;
  }
.public-fields .quiet-links{max-width:min(1140px,64rem);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:clamp(1.1rem,2.4vw,calc(1.07rem * 1.5));}
.public-fields .soft-visual{max-width:44rem;}
.public-fields h1{margin:0;
    font-family:"Lora", sans-serif;
    font-size:clamp(1.95rem,4.6vw,calc(16px * 2.65));
    line-height:1.12;
    font-weight:640;
    letter-spacing:-0.01em;}
.public-fields p{margin:clamp(.8rem,1.6vw,1.5rem) 0 0;
    font-size:clamp(1rem,1.22vw,16px);
    line-height:1.74;
    color:#2f3540;}
.public-fields .open-items{display:block;
    width:100%;
    height:auto;
    aspect-ratio:21/9;
    object-fit:cover;
    border-radius:1rem;
    box-shadow:var(--shadow-soft,0 1px 5px rgba(0,0,0,0.06));}
@media (max-width:640px){.public-fields{
      padding-top:calc(calc(1.5rem * 2.4)*.52);
      padding-bottom:calc(calc(1.5rem * 2.4)*.52);
    }.public-fields .open-items{
      aspect-ratio:4/3;
    }
  }
.narrow-form{
    padding:calc(1.5rem * 2.4) 1.52rem;
    background:#f4f5f7;
    color:#2f3540;
}
.narrow-form .active-frame{max-width:1140px;
    margin:0 auto;}
.narrow-form .contact-headline{max-width:44rem;
    margin-bottom:calc(1.07rem * 1.5);}
.narrow-form .contact-headline p{margin:0 0 .5rem;
    font-size:calc(16px * .875);
    letter-spacing:.08em;
    text-transform:uppercase;
    opacity:.75;}
.narrow-form .contact-headline h2{margin:0;
    font-size:calc(16px * 2);
    line-height:1.2;}
.narrow-form .top-wrap{display:flex;
    flex-direction:column;
    gap:calc(1.5rem * .75);}
.narrow-form .top-wrap article{
    display:flex;
    flex-direction:column;
    gap:1.07rem;
    padding:calc(1.5rem * .75);
    background:var(--surface-soft);
    color:var(--tone-soft);
    border:1px solid var(--tone-dark);
    border-radius:1rem;
    box-shadow:0 1px 5px rgba(0,0,0,0.06);
}
.narrow-form .simple-method{display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    gap:.75rem;
    padding-bottom:.6rem;
    border-bottom:1px solid var(--tone-dark);}
.narrow-form .simple-method strong{font-size:calc(16px * 1.125);color:inherit;
    letter-spacing:.04em;}
.narrow-form .simple-method span{font-size:calc(16px * .875);
    opacity:.8;}
.narrow-form .open-list{display:grid;
    grid-template-columns:15rem 1fr;
    gap:calc(1.07rem * 1.5);
    align-items:start;}
.narrow-form .open-list img{display:block;
    width:100%;
    height:11rem;
    object-fit:cover;
    border-radius:0.68rem;}
.narrow-form .open-list small{display:block;
    font-size:calc(16px * .875);
    opacity:.75;
    margin-bottom:.35rem;}
.narrow-form .open-list h3{margin:0 0 .5rem;
    font-size:calc(16px * 1.35);
    line-height:1.3;}
.narrow-form .open-list p{margin:0;
    font-size:16px;
    line-height:1.79;}
@media (max-width:760px){.narrow-form .open-list{
        grid-template-columns:1fr;
    }.narrow-form .open-list img{
        height:12rem;
    }
}
.simple-stack{--field-active:calc(1.5rem * 1.18);--axis-base:calc(1140px / 2.4);padding:calc(1.5rem * 2.4) 1.52rem;background:#ffffff;color:#1a1e26;}
.simple-stack .active-frame{max-width:1140px;margin:0 auto;display:flex;flex-direction:column;row-gap:calc(var(--field-active) * .9);}
.simple-stack h2,.simple-stack h3,.simple-stack p{margin:0;}
.simple-stack h2{font-size:calc(16px * 2);line-height:1.14;max-width:var(--axis-base);}
.simple-stack h3{font-size:calc(16px * 1.35);line-height:1.22;}
.simple-stack p{font-size:16px;line-height:1.79;}
.simple-stack .service-region{max-width:var(--axis-base);}
.simple-stack .top-wrap{display:flex;flex-direction:column;gap:var(--field-active);margin-top:calc(var(--field-active) / 2);border-top:1px solid var(--tone-dark);}
.simple-stack .open-track{min-width:0;padding-block:calc(var(--field-active) * .7);border-bottom:1px solid var(--tone-dark);}
.simple-stack .open-track p{margin-top:calc(1.5rem / 3.2);}
.simple-stack .open-track a{display:inline-flex;margin-top:calc(1.5rem / 2);font-size:calc(16px * .875);text-decoration:none;border-bottom:1px solid currentColor;padding-bottom:2px;}
.simple-stack .open-track a:hover{}
.simple-stack .wide-panel{font-size:calc(16px * .875);max-width:var(--axis-base);}
.simple-stack .wide-panel a{text-decoration:none;border-bottom:1px solid currentColor;}
.simple-stack .wide-panel a:hover{}
@media (min-width:760px){.simple-stack .open-track{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);column-gap:calc(1.07rem * 1.4);align-items:start;}.simple-stack .open-track h3{margin:0;}.simple-stack .open-track p{margin-top:0;}.simple-stack .open-track a{grid-column:2;margin-top:calc(1.5rem / 2.4);}
}
.site-frame{padding:calc(1.5rem * 2.4) 1.52rem;background:#f4f5f7;color:#2f3540}
.site-frame .active-frame{max-width:1140px;margin:0 auto;width:min(100%,52rem)}
.site-frame .contact-headline{max-width:38rem;margin-bottom:calc(1.07rem * 1.5)}
.site-frame h2{margin:0;font-size:calc(16px * 2);line-height:1.1}
.site-frame .contact-headline p{margin:1.5rem 0 0;line-height:1.79}
.site-frame .top-wrap{display:flex;flex-direction:column;gap:0;border-top:1px solid var(--tone-dark)}
.site-frame details{border-bottom:1px solid var(--tone-dark);padding:calc(1.5rem * .75) 0}
.site-frame summary{display:flex;align-items:baseline;justify-content:space-between;gap:1.5rem;cursor:pointer;list-style:none}
.site-frame summary::-webkit-details-marker{display:none}
.site-frame strong{font-size:calc(16px * 1.35);line-height:1.15;font-weight:600}
.site-frame summary span{font-size:calc(16px * .875);text-align:right;max-width:24rem;flex-shrink:0}
.site-frame details p{margin:1.5rem 0 0;line-height:1.79;max-width:44rem}
.site-frame .steady-nav{margin:calc(1.07rem * 1.5) 0 0;font-size:calc(16px * .875);line-height:1.79}
.site-frame .steady-nav a{color:inherit;text-decoration:underline;text-underline-offset:3px}
.site-frame .steady-nav a:hover{color:inherit;}
@media(max-width:680px){.site-frame summary{display:block}.site-frame summary span{display:block;margin-top:calc(1.5rem * .75);text-align:left;max-width:none}}
.fresh-area{
    background:#ffffff;
    color:#1a1e26;
    padding:calc(1.5rem * 2.4) 1.52rem;
}
.fresh-area .c{max-width:1140px;
    margin:0 auto;
    display:grid;
    gap:1.52rem;}
@media (min-width:1024px){.fresh-area .c{grid-template-columns:minmax(0,1fr) 300px;}
}
.fresh-area .quiet-links{min-width:0;}
.fresh-area .main-stack{margin:0 0 calc(1.07rem * 1.5);
    border-radius:1rem;
    overflow:hidden;
    box-shadow:0 1px 5px rgba(0,0,0,0.06);}
.fresh-area .main-stack img{display:block;
    width:100%;
    height:auto;
    aspect-ratio:16/9;
    object-fit:cover;}
.fresh-area .contact-headline{margin-bottom:1.5rem;}
.fresh-area h1{font-size:calc(16px * 2.65);
    line-height:1.2;
    margin:0 0 0.6rem;}
.fresh-area .content-details{font-size:calc(16px * 1.125);
    color:#2f3540;
    margin:0 0 1rem;
    max-width:60ch;}
.fresh-area .simple-method{display:flex;
    flex-wrap:wrap;
    gap:0.5rem 1rem;
    font-size:calc(16px * .875);
    color:#2f3540;
    padding-top:0.75rem;
    border-top:1px solid var(--tone-dark);}
.fresh-area .simple-method .visual-intro{
    background:#fdece0;
    color:#7a3208;
    padding:0.15rem 0.6rem;
    border-radius:0.3rem;
}
.fresh-area .open-list{line-height:1.79;}
.fresh-area .open-list p{margin:0 0 1.1rem;}
.fresh-area .open-list h2{font-size:calc(16px * 1.35);
    margin:1.8rem 0 0.6rem;}
.fresh-area .open-list .wide-panel{
    background:#f4f5f7;
    color:#2f3540;
    padding:calc(1.5rem * .75);
    border-radius:0.68rem;
    font-size:calc(16px * .875);
    margin-top:1.5rem;
}
.fresh-area .foot{margin-top:1.5rem;
    padding-top:calc(1.07rem * 1.5);
    border-top:1px solid var(--tone-dark);
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:1.07rem;}
.fresh-area .steady-nav{display:flex;
    flex-direction:column;
    gap:0.35rem;
    font-size:calc(16px * .875);}
.fresh-area .route-label{color:#2f3540;
    text-transform:uppercase;
    letter-spacing:0.04em;
    font-size:0.72rem;}
.fresh-area .steady-nav a{color:inherit;
    text-decoration:none;}
.fresh-area .steady-nav a:hover{color:#c9500f;
    text-decoration:underline;}
.fresh-area .media-lead{
    display:inline-block;
    background:#e8631a;
    color:#ffffff;
    padding:0.7rem 1.2rem;
    border-radius:0.68rem;
    text-decoration:none;
    font-size:calc(16px * .875);
    transition:background 520ms var(--speed-soft);
}
.fresh-area .media-lead:hover{background:#c9500f;color:var(--tone-soft);}
.fresh-area .bottom-rail{
    background:var(--surface-soft);
    color:var(--tone-soft);
    border:1px solid var(--tone-dark);
    border-radius:1rem;
    padding:calc(1.5rem * .75);
    box-shadow:0 1px 5px rgba(0,0,0,0.06);
    align-self:start;
}
.fresh-area .bottom-rail h3{font-size:16px;
    margin:0 0 1rem;}
.fresh-area .top-wrap{list-style:none;
    margin:0 0 1.25rem;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:0.9rem;}
.fresh-area .top-wrap a{display:flex;
    flex-direction:column;
    gap:0.2rem;
    text-decoration:none;
    color:inherit;}
.fresh-area .top-wrap .t{font-weight:600;
    font-size:calc(16px * .875);}
.fresh-area .top-wrap .d{font-size:calc(16px * .875);
    color:#2f3540;}
.fresh-area .top-wrap a:hover .t{color:inherit;}
.fresh-area .wide-intro{display:flex;
    align-items:center;
    gap:0.7rem;
    padding-top:1rem;
    border-top:1px solid var(--tone-dark);}
.fresh-area .wide-intro img{width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
    flex:0 0 auto;}
.fresh-area .wide-intro strong{display:block;
    font-size:calc(16px * .875);}
.fresh-area .wide-intro span{font-size:calc(16px * .875);
    color:#2f3540;}
.quiet-section{
  background:#ffffff;
  color:#1a1e26;
  padding:calc(1.5rem * 2.4) 1.52rem;
}
.quiet-section .c{max-width:1140px;
  margin:0 auto;
  display:grid;
  gap:1.52rem;}
@media (min-width:1024px){.quiet-section .c{grid-template-columns:minmax(0,1fr) 300px;}
}
.quiet-section .quiet-links{min-width:0;}
.quiet-section .soft-flow{margin-bottom:calc(1.07rem * 1.5);}
.quiet-section .soft-method{margin:0 0 0.6rem;
  font-size:calc(16px * .875);
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#2f3540;}
.quiet-section h1{font-size:calc(16px * 2.65);
  line-height:1.15;
  margin:0 0 0.9rem;}
.quiet-section .service-region{font-size:calc(16px * 1.125);
  line-height:1.55;
  margin:0 0 1.1rem;
  max-width:60ch;}
.quiet-section .simple-method{display:flex;
  flex-wrap:wrap;
  gap:0.4rem 1.2rem;
  font-size:calc(16px * .875);
  color:#2f3540;
  padding-bottom:calc(1.07rem * 1.5);
  border-bottom:1px solid var(--tone-dark);}
.quiet-section .main-stack{margin:0 0 calc(1.07rem * 1.5);}
.quiet-section .main-stack img{display:block;
  width:100%;
  height:auto;
  border-radius:1rem;
  box-shadow:0 1px 5px rgba(0,0,0,0.06);}
.quiet-section .main-stack figcaption{margin-top:0.6rem;
  font-size:calc(16px * .875);
  color:#2f3540;}
.quiet-section .open-list{line-height:1.79;
  font-size:16px;}
.quiet-section .open-list p{margin:0 0 1.1rem;}
.quiet-section .open-list h2{font-size:calc(16px * 1.35);
  margin:1.8rem 0 0.7rem;}
.quiet-section .open-list a{color:inherit;
  text-decoration:underline;
  text-underline-offset:3px;}
.quiet-section .open-list a:hover{color:inherit;}
.quiet-section .post-foot{margin-top:calc(1.07rem * 1.5);
  padding-top:calc(1.07rem * 1.5);
  border-top:1px solid var(--tone-dark);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1.07rem;}
.quiet-section .wide-panel{margin:0;
  font-size:calc(16px * .875);
  color:#2f3540;
  flex:1 1 260px;}
.quiet-section .media-lead{
  display:inline-block;
  padding:0.7rem 1.2rem;
  border-radius:0.68rem;
  background:#e8631a;
  color:#ffffff;
  text-decoration:none;
  font-size:calc(16px * .875);
  transition:background 520ms var(--speed-soft);
}
.quiet-section .media-lead:hover{background:#c9500f;color:var(--tone-soft);}
.quiet-section .strong-feature{
  background:var(--surface-soft);
  color:var(--tone-soft);
  border:1px solid var(--tone-dark);
  border-radius:1rem;
  padding:calc(1.5rem * .75);
  box-shadow:0 1px 5px rgba(0,0,0,0.06);
  align-self:start;
}
.quiet-section .strong-feature h3{margin:0 0 1rem;
  font-size:calc(16px * 1.35);}
.quiet-section .fresh-media{list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.9rem;}
.quiet-section .fresh-media li{display:flex;
  flex-direction:column;
  gap:0.25rem;
  padding-bottom:0.9rem;
  border-bottom:1px solid var(--tone-dark);}
.quiet-section .fresh-media li:last-child{border-bottom:none;
  padding-bottom:0;}
.quiet-section .fresh-media a{color:#1a1e26;
  text-decoration:none;
  font-size:16px;
  line-height:1.4;}
.quiet-section .fresh-media a:hover{color:inherit;}
.quiet-section .visual-intro{font-size:calc(16px * .875);
  color:#2f3540;}
.steady-header{
  padding:calc(1.5rem*2.8) 1.52rem;
  background:#ffffff;
  color:#1a1e26;
}
.steady-header .bottom-plan,
.steady-header .wide-copy{max-width:1140px;
  margin:0 auto;}
.steady-header h1{margin:0;
  font-size:clamp(2rem,4.6vw,3.6rem);
  line-height:1.08;
  letter-spacing:-0.01em;}
.steady-header .service-contact{display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin:1.1rem 0 0;
  font-size:calc(16px * .875);}
.steady-header .service-contact span{
  background:#f4f5f7;
  color:#2f3540;
  border:1px solid var(--tone-dark);
  border-radius:0.3rem;
  padding:.38rem .7rem;
}
.steady-header .clear-tile{display:block;
  width:min(100%,1120px);
  max-height:500px;
  object-fit:cover;
  border-radius:1rem;
  box-shadow:0 1px 5px rgba(0,0,0,0.06);
  margin:1.6rem auto 0;}
.steady-header .wide-copy{
  margin-top:1.8rem;
  background:var(--surface-soft);
  color:var(--tone-soft);
  border:1px solid var(--tone-dark);
  border-radius:1rem;
  padding:calc(calc(1.5rem * .75) + .4rem) calc(1.5rem * .75);
}
.steady-header p{margin:.9rem 0 0;
  line-height:1.79;}
.steady-header .team-figure{font-size:calc(16px * 1.125);
  margin-top:0;}
.steady-header h2{margin:1.7rem 0 0;
  font-size:clamp(1.3rem,2.6vw,1.85rem);
  line-height:1.2;}
.steady-header .secondary-block + .secondary-block h2{margin-top:1.9rem;}
.steady-header .soft-region{margin-top:2rem;
  padding-top:1.1rem;
  border-top:1px solid var(--tone-dark);
  font-size:calc(16px * .875);}
.steady-header .soft-region a{color:inherit;
  text-decoration:underline;
  text-underline-offset:3px;}
.steady-header .soft-region a:hover{color:inherit;}
@media (max-width:640px){
  .steady-header{
    padding:calc(1.5rem*1.6) 1.52rem;
  }
  .steady-header .wide-copy{
    padding:calc(1.5rem * .75) calc(calc(1.5rem * .75) * .8);
  }
}
.steady-entries{padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;background:#ffffff;color:#1a1e26;}
.steady-entries .quiet-links{max-width:min(1140px,64rem);margin:0 auto;display:flex;flex-direction:column;gap:clamp(1rem,2vw,calc(1.07rem * 1.5));}
.steady-entries h1{margin:0;font-size:clamp(1.95rem,4.8vw,calc(16px * 2.65));line-height:1.08;font-weight:680;letter-spacing:-0.01em;}
.steady-entries .open-items{display:block;width:min(100%,46rem);height:auto;aspect-ratio:21/9;object-fit:cover;border-radius:0.68rem;box-shadow:var(--shadow-soft,0 1px 5px rgba(0,0,0,0.06));}
.steady-entries .soft-visual{max-width:40rem;padding-left:clamp(.9rem,1.6vw,1.4rem);border-left:3px solid #fdece0;}
.steady-entries p{margin:0;font-size:clamp(1rem,1.22vw,16px);line-height:1.78;color:#2f3540;}
@media (max-width:640px){.steady-entries{padding-top:calc(calc(1.5rem * 2.4)*.52);padding-bottom:calc(calc(1.5rem * 2.4)*.52);}.steady-entries .open-items{aspect-ratio:4/3;}.steady-entries .soft-visual{padding-left:.85rem;border-left-width:3px;}
  }
.site-actions{background:#fdece0;color:#7a3208;padding:calc(1.5rem * 2.4) 1.52rem}
.site-actions .active-frame{max-width:1140px;margin:0 auto}
.site-actions .main-media{display:flex;align-items:center;gap:calc(1.07rem * 1.5)}
.site-actions .open-items{display:block;flex:0 1 40%;min-width:15rem;width:100%;height:auto;aspect-ratio:5/4;object-fit:cover;border-radius:1rem}
.site-actions .open-list{flex:1 1 34rem;min-width:0}
.site-actions h2{margin:0;font-size:clamp(calc(16px * 2),5vw,calc(16px * 2.65));line-height:1.05;letter-spacing:0}
.site-actions p{margin:1.5rem 0 0;max-width:44rem;font-size:calc(16px * 1.125);line-height:1.65}
.site-actions .simple-rail{display:flex;flex-wrap:wrap;gap:calc(1.5rem * .75);margin-top:calc(1.07rem * 1.5)}
.site-actions .simple-rail a{padding:calc(1.5rem * .75);border-radius:0.3rem;background:color-mix(in srgb,currentColor 10%,transparent);color:inherit;text-decoration:none}
.site-actions .simple-tile{margin-top:calc(1.07rem * 1.5);display:flex;flex-direction:column;gap:calc(1.5rem * .75);border-top:1px solid color-mix(in srgb,currentColor 22%,transparent);padding-top:calc(1.07rem * 1.5)}
.site-actions .top-contact{display:flex;flex-wrap:wrap;gap:calc(1.5rem * .75);align-items:baseline}
.site-actions .featured-frame{flex:0 0 12rem;font-size:calc(16px * .875);text-transform:uppercase;letter-spacing:0.04em;opacity:0.75}
.site-actions .service-section{flex:1 1 20rem;min-width:0;font-size:16px;line-height:1.6}
@media(max-width:760px){.site-actions .main-media{align-items:stretch;flex-direction:column}.site-actions .open-items{flex-basis:auto;min-width:0}.site-actions .featured-frame{flex-basis:auto}}
.offer-benefit{padding:calc(1.5rem * 2.4) 1.52rem;background:#f4f5f7;color:#2f3540}
.offer-benefit .active-frame{max-width:1140px;margin:0 auto}
.offer-benefit .contact-benefit{display:flex;gap:calc(1.07rem * 1.5);align-items:flex-start}
.offer-benefit .strong-links{flex:0 1 28rem;min-width:0}
.offer-benefit h2{margin:0;font-size:calc(16px * 2);line-height:1.14}
.offer-benefit .strong-links p{margin:1.5rem 0 0;font-size:calc(16px * 1.125);line-height:1.79}
.offer-benefit ul{list-style:none;margin:calc(1.07rem * 1.5) 0 0;padding:0;display:flex;flex-direction:column;gap:calc(1.5rem * .75)}
.offer-benefit li{padding:calc(1.5rem * .75) 0;line-height:1.79}
.offer-benefit li+li{border-top:1px solid var(--tone-dark)}
.offer-benefit .wide-panel{margin-top:calc(1.07rem * 1.5);font-size:calc(16px * .875);line-height:1.79}
.offer-benefit .wide-panel a{color:inherit;text-decoration:none}
.offer-benefit .wide-panel a:hover{color:inherit;text-decoration:underline}
.offer-benefit .wide-area{flex:1 1 34rem;min-width:0;background:var(--surface-soft);color:var(--tone-soft);border:1px solid var(--tone-dark);border-radius:1rem;padding:1.07rem;box-shadow:0 1px 5px rgba(0,0,0,0.06)}
.offer-benefit .soft-lead{display:flex;flex-wrap:wrap;gap:1.5rem}
.offer-benefit .soft-lead label{flex:1 1 16rem;min-width:0}
.offer-benefit label span{display:block;margin-bottom:calc(1.5rem * .75);font-size:calc(16px * .875)}
.offer-benefit input,.offer-benefit textarea{width:100%;max-width:100%;border:1px solid var(--tone-dark);border-radius:0.3rem;background:var(--surface-soft);color:var(--tone-soft);font:inherit;padding:calc(1.5rem * .75);outline:none}
.offer-benefit input::placeholder,.offer-benefit textarea::placeholder{color:rgba(255,255,255,0.55)}
.offer-benefit input:focus,.offer-benefit textarea:focus{border-color:#f0a06a}
.offer-benefit .service-intro{display:block;margin-top:1.5rem}
.offer-benefit textarea{resize:vertical}
.offer-benefit button{margin-top:1.5rem;border:0;border-radius:0.3rem;background:#e8631a;color:#ffffff;font:inherit;padding:calc(1.5rem * .75) 1.5rem;cursor:pointer;transition:background 520ms var(--speed-soft)}
.offer-benefit button:hover{background:#c9500f;color:var(--tone-soft);}
@media(max-width:840px){.offer-benefit .contact-benefit{display:block}.offer-benefit .wide-area{margin-top:calc(1.07rem * 1.5);padding:1.5rem}.offer-benefit .soft-lead{display:block}.offer-benefit .soft-lead label+label{margin-top:1.5rem}}
.secondary-area{padding:calc(1.5rem * 2.4) 1.52rem;background:#ffffff;color:#1a1e26}
.secondary-area .media-footer{max-width:min(1140px,64rem);margin:0 auto}
.secondary-area .service-region{max-width:52rem}
.secondary-area h2{margin:0 0 calc(1.5rem * .75);font-size:calc(16px * 2);line-height:1.15}
.secondary-area .direct-content{margin:0 0 calc(1.07rem * 1.5);font-size:calc(16px * 1.125);}
.secondary-area .strong-panel{display:flex;flex-direction:column;gap:calc(1.5rem * .75);border-top:1px solid var(--tone-dark);padding-top:calc(1.07rem * 1.5)}
.secondary-area .wide-panel{padding:calc(1.5rem * .75) calc(1.07rem * 1.5);background:var(--surface-soft);color:var(--tone-soft);border:1px solid var(--tone-dark);border-radius:0.68rem}
.secondary-area .wide-panel h3{margin:0 0 calc(1.5rem * .75);font-size:calc(16px * 1.35);line-height:1.25}
.secondary-area .wide-panel p{margin:0;font-size:16px;line-height:1.79}
@media (max-width:640px){.secondary-area .wide-panel{padding:calc(1.5rem * .75)}.secondary-area h2{font-size:calc(16px * 1.35)}
}
.narrow-inner{padding:calc(1.5rem * 2.4) 1.52rem;background:#e8631a;color:#ffffff}
.narrow-inner .media-footer{max-width:min(1140px,60rem);margin:0 auto}
.narrow-inner h2{margin:0;font-size:calc(16px * 2);line-height:1.1;letter-spacing:-0.01em}
.narrow-inner .direct-content{margin:1.5rem 0 calc(1.07rem * 1.5);font-size:calc(16px * 1.125);line-height:1.6;max-width:52rem}
.narrow-inner .strong-panel{border-top:1px solid color-mix(in srgb,currentColor 34%,transparent)}
.narrow-inner .wide-panel{padding:1.07rem 0}
.narrow-inner .wide-panel + .wide-panel{border-top:1px solid color-mix(in srgb,currentColor 22%,transparent)}
.narrow-inner h3{margin:0 0 calc(1.5rem * .75);font-size:calc(16px * 1.35);line-height:1.25;font-weight:600}
.narrow-inner .wide-panel p{margin:0;line-height:1.7}
@media (max-width:640px){.narrow-inner .direct-content{font-size:16px}.narrow-inner .wide-panel{padding:calc(1.5rem * .75) 0}
}
.featured-links{padding:calc(calc(1.5rem * 2.4)*.72) 1.52rem;background:#ffffff;color:#1a1e26;}
.featured-links .quiet-links{max-width:min(1140px,64rem);margin:0 auto;display:flex;flex-direction:column;gap:calc(1.07rem * 1.5);}
.featured-links h1{margin:0;font-size:clamp(2rem,5vw,calc(16px * 2.65));line-height:1.06;font-weight:680;letter-spacing:0;}
.featured-links .open-items{display:block;width:100%;height:auto;aspect-ratio:21/9;object-fit:cover;border-radius:1rem;margin:0;}
.featured-links .service-region{max-width:40rem;padding-top:clamp(.9rem,1.8vw,1.5rem);border-top:1px solid var(--tone-dark,#e2e5ea);}
.featured-links p{margin:0;font-size:clamp(1rem,1.26vw,16px);line-height:1.76;color:#2f3540;}
@media (max-width:640px){.featured-links{padding-top:calc(calc(1.5rem * 2.4)*.52);padding-bottom:calc(calc(1.5rem * 2.4)*.52);}.featured-links .open-items{aspect-ratio:4/3;}.featured-links .quiet-links{gap:1.5rem;}
  }
.contact-grid{background:#f4f5f7;color:#2f3540;padding:calc(1.5rem * 2.4) 1.52rem}
.contact-grid .active-frame{max-width:1140px;margin:0 auto}
.contact-grid .strong-fields{display:flex;flex-wrap:wrap;align-items:flex-start;gap:calc(1.07rem * 1.5)}
.contact-grid .open-list{flex:1 1 34rem;min-width:0}
.contact-grid h2{margin:0;font-size:calc(16px * 2);line-height:1.15;letter-spacing:0}
.contact-grid p{margin:1.5rem 0 0;max-width:42rem;font-size:calc(16px * 1.125);line-height:1.65}
.contact-grid .wide-panel{margin-top:calc(1.07rem * 1.5);font-size:calc(16px * .875);color:#2f3540;opacity:.8}
.contact-grid .steady-nav{display:flex;flex-wrap:wrap;gap:1.07rem;margin-top:calc(1.07rem * 1.5)}
.contact-grid .steady-nav a{color:inherit;text-decoration:none;font-weight:600;border-bottom:1px solid transparent;transition:border-color 520ms var(--speed-soft)}
.contact-grid .steady-nav a:hover{color:inherit;border-bottom-color:#fdece0}
.contact-grid .bottom-rail{flex:0 1 20rem;min-width:0;padding:calc(1.5rem * .75);border-radius:1rem;background:var(--surface-soft);color:var(--tone-soft);border:1px solid var(--tone-dark);box-shadow:0 1px 5px rgba(0,0,0,0.06)}
.contact-grid .bottom-rail .steady-track{margin:0;font-size:calc(16px * .875)}
.contact-grid .bottom-rail .steady-track + .simple-track{margin-top:var(--space-form,1.07rem)}
.contact-grid .bottom-rail .simple-track{margin:0;font-size:16px}
.contact-grid .bottom-rail .simple-track + .simple-track{margin-top:var(--space-extra-13,0.4rem)}
.contact-grid .bottom-rail .simple-track a{color:inherit;text-decoration:none}
.contact-grid .bottom-rail .simple-track a:hover{color:inherit;}
.contact-grid .bottom-rail .media-lead{display:inline-block;margin-top:calc(1.07rem * 1.5);padding:calc(1.5rem * .75) 1.07rem;border-radius:0.68rem;background:#e8631a;color:#ffffff;text-decoration:none;font-weight:700;transition:background 520ms var(--speed-soft)}
.contact-grid .bottom-rail .media-lead:hover{background:#c9500f;color:var(--tone-soft);}
@media(max-width:680px){.contact-grid .strong-fields{flex-direction:column}.contact-grid .bottom-rail{flex:1 1 auto;width:100%}}
.open-nav{--field-active:calc(1.5rem * 1.15);--axis-base:calc(1140px / 2.4);padding:calc(1.5rem * 2.4) 1.52rem;background:#fdece0;color:#7a3208;}
.open-nav .active-frame{max-width:1140px;margin:0 auto;}
.open-nav h2,.open-nav p{margin:0;}
.open-nav h2{font-size:calc(16px * 2);line-height:1.14;max-width:var(--axis-base);}
.open-nav p{font-size:16px;line-height:1.79;}
.open-nav .service-region{max-width:calc(var(--axis-base) * 1.35);}
.open-nav .wide-panel{font-size:calc(16px * .875);opacity:.82;max-width:calc(var(--axis-base) * 1.3);}
.open-nav a{color:inherit;text-decoration:none;}
.open-nav .media-lead{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.3rem;background:#e8631a;color:#ffffff;font-size:16px;transition:background 520ms var(--speed-soft);}
.open-nav .media-lead:hover{background:#c9500f;color:var(--tone-soft);}
.open-nav .bottom-summary>h2,.open-nav .bottom-summary>p,.open-nav .bottom-summary>.media-lead{margin-top:1.5rem;}
.open-nav .bottom-summary>h2:first-child{margin-top:0;}
.open-nav .steady-nav{margin-top:var(--field-active);padding-top:calc(1.07rem * 1.5);border-top:1px solid color-mix(in srgb, currentColor 22%, transparent);font-size:calc(16px * .875);}
.open-nav .steady-nav a{text-decoration:underline;text-underline-offset:3px;font-weight:600;}
.open-nav .steady-nav a:hover{}
@media (max-width:640px){.open-nav h2{max-width:none;}.open-nav .service-region,.open-nav .wide-panel{max-width:none;}.open-nav .media-lead{width:100%;}
}
.featured-note{
  display:flex;
  align-items:stretch;
  background:#e8631a;
  color:#ffffff;
}
.featured-note .fresh-header,
.featured-note .media-service{flex:1 1 0;
  min-width:0;
  padding:calc(1.5rem * 2.4) 1.52rem;}
.featured-note .fresh-header{display:flex;
  align-items:center;
  justify-content:flex-end;}
.featured-note h1{max-width:14ch;
  margin:0;
  font-size:calc(16px * 2.65);
  line-height:1.05;
  text-align:right;}
.featured-note .media-service{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:calc(1.07rem * 1.5);
  background:#fdece0;
  color:#7a3208;
}
.featured-note p{max-width:36rem;
  margin:0;
  font-size:calc(16px * 1.125);
  line-height:1.79;}
.featured-note .steady-nav{display:flex;
  flex-wrap:wrap;
  gap:1.07rem;}
.featured-note .steady-nav a{display:inline-block;
  padding:.55rem 1.05rem;
  border:1px solid currentColor;
  border-radius:0.68rem;
  color:inherit;
  font-size:16px;
  text-decoration:none;
  transition:background 520ms var(--speed-soft), color 520ms var(--speed-soft);}
.featured-note .steady-nav a:hover,
.featured-note .steady-nav a:focus-visible{
  background:#fbdcc6;color:var(--tone-soft);}
.featured-note .wide-panel{font-size:calc(16px * .875);
  opacity:.85;}
@media(min-width:761px){.featured-note .fresh-header{order:1}
}
@media(max-width:760px){.featured-note{display:block}.featured-note .fresh-header{justify-content:flex-start}.featured-note h1{text-align:left}
}
