:root {
  --space-block: 1160px;
  --paint-inverse: #ffffff;
  --paint-muted: #f2ece0;
  --corner-medium: 0.7rem;
  --surface-primary: color-mix(in srgb, currentColor 10%, transparent);
  --measure-small: 0.79rem;
  --paint-secondary: #ffffff;
  --copy-body: calc(var(--label-button) * 1.125);
  --ink-base: #211f1b;
  --ink-deep: #c25a34;
  --state-public: #0f8f8a;
  --tone-extra-38: #0b6f6b;
  --corner-soft: 0.34rem;
  --font-quiet: "Merriweather", sans-serif;
  --tone-clear: #3a3730;
  --gap-wide: 1.5rem;
  --gutter-base: calc(var(--measure-small) * 1.5);
  --space-large: var(--measure-form);
  --label-large: 1.85;
  --delay-slow: 340ms;
  --tone-main: transparent;
  --ink-card: #f7f3ec;
  --tone-card: calc(var(--gap-wide) * .75);
  --font-body: calc(var(--label-button) * 1.35);
  --copy-nav: var(--label-button);
  --measure-form: 1.59rem;
  --line-panel: #0f8f8a;
  --measure-tight: calc(var(--gap-wide) * 2.4);
  --tone-extra-36: #0f8f8a;
  --shadow-button: 0 6px 18px rgba(0,0,0,0.07);
  --surface-inverse: #211f1b;
  --font-meta: calc(var(--label-button) * 2);
  --type-base: calc(var(--label-button) * .875);
  --surface-clear: #e4dccd;
  --label-button: 14.6px;
  --delay-entry: cubic-bezier(0.4,0,0.2,1);
  --ink-main: #12302e;
  --tone-extra-33: #fdfaf4;
}
body{margin:0;padding:0;font-family:var(--font-quiet);}
*{box-sizing:border-box;}
.secondary-method {
    display: block;
    width: 100%;
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    border-bottom: 1px solid var(--surface-clear);
  }
.team-benefit {
    max-width: var(--space-block);
    margin: 0 auto;
    padding: var(--gap-wide) var(--measure-form);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter-base);
  }
.soft-proof {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
.team-frame {
    font-size: var(--font-meta);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--surface-inverse);
    text-decoration: none;
    line-height: 1.1;
    padding: 0.15em 0;
  }
.team-frame:hover {
    color: var(--ink-deep);
  }
.main-copy {
    width: 100%;
    display: flex;
    justify-content: center;
  }
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--measure-small);
  }
.nav-list li {
    margin: 0;
  }
.nav-list a {
    display: inline-block;
    font-size: var(--type-base);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--surface-inverse);
    text-decoration: none;
    padding: 0.5em 0.25em;
    border-bottom: 1px solid transparent;
    transition: color var(--delay-slow) var(--delay-entry),
                border-color var(--delay-slow) var(--delay-entry);
  }
.nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--ink-deep);
    border-bottom-color: var(--ink-deep);
    outline: none;
  }
.plain-visual {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--paint-muted);
    color: var(--tone-clear);
    border: 1px solid var(--surface-clear);
    border-radius: var(--corner-medium);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
.page-flow {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
  }
.plain-visual:focus-visible{outline: 2px solid var(--state-public);
    outline-offset: 2px;}
@media (max-width: 767px) {
    .team-benefit {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: var(--gutter-base) var(--measure-form);
    }

    .soft-proof {
      width: auto;
      justify-content: flex-start;
    }

    .team-frame {
      font-size: var(--copy-body);
    }

    .plain-visual {
      display: inline-flex;
    }

    .main-copy {
      display: none;
      width: 100%;
      order: 3;
      margin-top: var(--gutter-base);
      padding-top: var(--gutter-base);
      border-top: 1px solid var(--surface-clear);
    }

    .main-copy.is-open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }

    .nav-list li {
      width: 100%;
      border-bottom: 1px solid var(--surface-clear);
    }

    .nav-list li:last-child {
      border-bottom: none;
    }

    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.85em 0.25em;
      font-size: var(--copy-nav);
      text-transform: none;
      letter-spacing: 0.02em;
      border-bottom: none;
    }

    .nav-list a:hover,
    .nav-list a:focus-visible {
      color: var(--ink-deep);
      border-bottom-color: transparent;
    }
  }
.text-inner{padding:var(--measure-tight) var(--space-large) var(--gutter-base);font-family:var(--font-quiet);font-size:var(--label-button);line-height:var(--label-large);background:var(--ink-main);color:var(--ink-card);}
.strong-header{max-width:var(--space-block);margin:0 auto;display:grid;grid-template-columns:1.1fr 2fr 1.2fr;gap:var(--measure-small);align-items:start}
.page-area{display:flex;flex-direction:column;gap:var(--gutter-base)}
.strong-body{color:inherit;text-decoration:none;font-size:var(--font-body);font-weight:600;letter-spacing:0.01em}
.simple-stack{margin:0;font-size:var(--type-base);max-width:32ch;opacity:0.85}
.visual-rail{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:var(--measure-small)}
.offer-contact{min-width:0}
.narrow-header{margin:0 0 var(--gutter-base);font-size:var(--type-base);font-weight:600;text-transform:uppercase;letter-spacing:0.08em;opacity:0.75}
.main-story{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.5rem}
.main-story a{color:inherit;text-decoration:none;font-size:var(--copy-nav);border-bottom:1px solid transparent;transition:border-color var(--delay-slow) var(--delay-entry)}
.main-story a:hover,
  .main-story a:focus-visible{border-bottom-color:currentColor;outline:none;color:inherit}
.text-headline{min-width:0}
.media-details{gap:var(--gutter-base)}
.media-details li{display:flex;flex-direction:column;gap:0.25rem}
.direct-benefit{font-size:var(--type-base);text-transform:uppercase;letter-spacing:0.06em;opacity:0.7}
.compact-plan{font-size:var(--copy-nav);color:inherit;text-decoration:none;word-break:break-word}
a.footer-value:hover,
  a.footer-value:focus-visible{text-decoration:underline;outline:none;color:inherit}
.direct-team{max-width:var(--space-block);margin:var(--measure-tight) auto 0;padding-top:var(--gutter-base);border-top:1px solid rgba(255, 255, 255, 0.18);display:flex;flex-direction:column;gap:var(--gutter-base)}
.local-region{margin:0;font-size:var(--type-base);opacity:0.85;max-width:90ch}
.local-region a{color:inherit;text-decoration:underline}
.view{margin:0;font-size:var(--type-base);opacity:0.7}
@media (max-width: 960px) {.strong-header{grid-template-columns:1fr 1fr}.page-area{grid-column:1 / -1}.text-headline{grid-column:1 / -1}
  }
@media (max-width: 640px) {.text-inner{padding:var(--space-large) var(--measure-form) var(--gutter-base);background:var(--ink-main);color:var(--ink-card);}.strong-header{grid-template-columns:1fr}.visual-rail{grid-template-columns:1fr 1fr}
  }
.cookies {
    position: fixed;
    top: var(--gutter-base, 1rem);
    left: var(--gutter-base, 1rem);
    z-index: 9999;
    max-width: 22rem;
    width: calc(100% - 2rem);
    font-family: var(--font-quiet, system-ui, sans-serif);
    font-size: var(--type-base, 0.875rem);
    line-height: var(--label-large, 1.5);
    background: var(--paint-inverse, #ffffff);
    color: var(--ink-base, #1a1a1a);
    border: 1px solid var(--surface-clear, rgba(0, 0, 0, 0.12));
    border-radius: var(--corner-medium, 8px);
    box-shadow: var(--shadow-button, 0 4px 14px rgba(0, 0, 0, 0.12));
    padding: var(--tone-card, 1rem);
  }
.cookies .visual-header{display: flex;
    flex-direction: column;
    gap: var(--measure-small, 0.75rem);}
.cookies .bottom-copy{display: flex;
    flex-direction: column;
    gap: 0.35rem;}
.cookies .strong-note{margin: 0;
    font-size: var(--copy-nav, 1rem);
    font-weight: 600;
    line-height: 1.3;}
.cookies .fresh-flow{margin: 0;
    font-size: var(--type-base, 0.875rem);
    color: var(--tone-clear, #555555);}
.cookies .soft-media{display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;}
.cookies .soft-media button{font: inherit;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    border-radius: var(--corner-soft, 6px);
    border: 1px solid transparent;
    transition: background-color var(--delay-slow, 0.2s) var(--delay-entry, ease),
                color var(--delay-slow, 0.2s) var(--delay-entry, ease);}
.cookies .cookie-accept {
    background: var(--tone-extra-36, #1a1a1a);
    color: var(--paint-secondary, #ffffff);
  }
.cookies .cookie-accept:hover{
    background: var(--tone-extra-38, #333333);color:var(--ink-base);}
.cookies .cookie-reject {
    background: var(--tone-main, transparent);
    color: inherit;
    border-color: var(--surface-clear, rgba(0, 0, 0, 0.2));
  }
.cookies .cookie-reject:hover{
    background: var(--surface-primary, rgba(0, 0, 0, 0.06));color:var(--ink-base);}
.cookies .cookie-manage {
    background: transparent;
    color: var(--line-panel, #0a58ca);
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    text-decoration: underline;
  }
.cookies .cookie-manage:hover{color:inherit;}
@media (max-width: 480px) {
    .cookies {
      left: 0.5rem;
      right: 0.5rem;
      width: auto;
      max-width: none;
    }
  }
.visual-track{
    background: var(--tone-extra-21, linear-gradient(135deg, #fdfaf4 0%, #f2ece0 55%, #e6f2ef 100%));
    color: var(--surface-inverse, #211f1b);
    padding: 5rem 1.5rem 4.5rem;
  }
.visual-track .offer-frame{max-width: 720px;
    margin: 0 auto;}
.visual-track h1{margin: 0 0 1.25rem;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.01em;}
.visual-track .plain-service{margin: 0 0 2rem;
    font-size: 1.125rem;
    line-height: 1.65;}
.visual-track .top-rail{margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e4dccd;
    font-size: 1rem;
    line-height: 1.6;}
.visual-track .public-details{
    display: inline-block;
    margin-right: 1rem;
    padding: 0.7rem 1.25rem;
    background: var(--tone-extra-36, #0f8f8a);
    color: var(--paint-secondary, #ffffff);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
  }
.visual-track .public-details:hover{
    background: var(--tone-extra-38, #0b6f6b);color:var(--ink-base);}
.visual-track .narrow-fields{display: inline;
    color: #3a3730;}
.visual-track .narrow-fields a{color: #a8481f;
    text-decoration: underline;
    text-underline-offset: 3px;}
.visual-track .narrow-fields a:hover{color:inherit;}
@media (max-width: 560px) {.visual-track{
      padding: 3.5rem 1.25rem 3rem;
    }.visual-track .public-details{
      display: block;
      margin: 0 0 1rem;
      text-align: center;
    }
  }
.visual-track{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.public-shell{
    --field-extra-42: #e4dccd;
    --surface-muted: #c25a34;
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem 5rem;
  }
.public-shell .offer-frame{max-width: 1080px;
    margin: 0 auto;}
.public-shell .plain-service{max-width: 640px;
    margin-bottom: 3rem;}
.public-shell h2{font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.public-shell .plain-service p{margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;}
.public-shell .header{display: flex;
    flex-direction: column;
    border-top: 1px solid var(--field-extra-42);}
.public-shell .simple-note{display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title link"
      "text  link";
    column-gap: 2rem;
    row-gap: 0.5rem;
    align-items: baseline;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--field-extra-42);}
.public-shell .simple-note h3{grid-area: title;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 700;}
.public-shell .simple-note p{grid-area: text;
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 62ch;}
.public-shell .featured-stack{grid-area: link;
    align-self: center;
    white-space: nowrap;
    font-size: 0.92rem;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;}
.public-shell .featured-stack:hover{}
.public-shell .local-surface{margin: 2.5rem 0 0;
    font-size: 0.97rem;
    line-height: 1.65;}
@media (max-width: 640px) {.public-shell{
      padding: 3rem 1.15rem 3.5rem;
    }.public-shell h2{
      font-size: 1.55rem;
    }.public-shell .simple-note{
      grid-template-columns: 1fr;
      grid-template-areas:
        "title"
        "text"
        "link";
      row-gap: 0.7rem;
    }.public-shell .featured-stack{
      justify-self: start;
    }
  }
.public-shell{
  background: var(--ink-main);
  color: var(--ink-card);
}
.site-content{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem;
  }
.site-content .offer-frame{max-width: 46rem;
    margin: 0 auto;}
.site-content h2{font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    font-weight: 700;}
.site-content .plain-service{margin: 0 0 2.75rem;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.6;color:inherit;}
.site-content .direct-note{list-style: none;
    margin: 0;
    padding: 0;}
.site-content .open-view{padding: 0 0 2.25rem;
    margin: 0 0 2.25rem;
    border-bottom: 1px solid var(--surface-clear);}
.site-content .open-view:last-child{padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;}
.site-content .open-view time{display: block;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;color:inherit;
    margin-bottom: 0.5rem;}
.site-content .open-view h3{font-size: 1.2rem;
    line-height: 1.35;
    margin: 0 0 0.5rem;
    font-weight: 700;}
.site-content .open-view p{margin: 0;
    max-width: 38rem;
    line-height: 1.65;color:inherit;}
@media (max-width: 640px) {.site-content{
      padding: 3rem 1.25rem;
    }.site-content h2{
      font-size: 1.45rem;
    }.site-content .open-view{
      padding-bottom: 1.75rem;
      margin-bottom: 1.75rem;
    }
  }
.site-content{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.compact-stack{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 72px 24px 80px;
  }
.compact-stack .offer-frame{max-width: 720px;
    margin: 0 auto;}
.compact-stack .primary-figure h2{font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.25;
    margin: 0 0 20px;
    letter-spacing: -0.01em;}
.compact-stack .primary-figure p{font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: 62ch;}
.compact-stack .primary-figure .local-surface{margin-bottom: 28px;}
.compact-stack .top-rail{display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;}
.compact-stack .top-rail .go{
    display: inline-block;
    background: var(--tone-extra-36, #0f8f8a);
    color: var(--paint-secondary, #ffffff);
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.15s ease;
  }
.compact-stack .top-rail .go:hover{
    background: var(--tone-extra-38, #0b6f6b);color:var(--ink-base);}
.compact-stack .top-rail .narrow-fields{text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;}
.compact-stack .top-rail .narrow-fields:hover{border-bottom-color: #c25a34;}
@media (max-width: 560px) {.compact-stack{
      padding: 56px 20px 64px;
    }.compact-stack .top-rail{
      gap: 14px 18px;
    }.compact-stack .top-rail .go{
      width: 100%;
      text-align: center;
    }
  }
.compact-stack{
  background: var(--ink-main);
  color: var(--ink-card);
}
.team-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 5.5rem 1.5rem 4.5rem;
  }
.team-unit .offer-frame{max-width: 720px;
    margin: 0 auto;
    padding-left: 1.25rem;
    border-left: 3px solid #0f8f8a;}
.team-unit h1{margin: 0 0 1.1rem;
    font-size: clamp(1.75rem, 3.4vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 700;}
.team-unit .plain-service{margin: 0;
    max-width: 60ch;
    font-size: 1.05rem;
    line-height: 1.7;}
@media (max-width: 600px) {.team-unit{
      padding: 3.5rem 1.25rem 3rem;
    }.team-unit .offer-frame{
      padding-left: 1rem;
    }
  }
.team-unit{
  background: var(--ink-main);
  color: var(--ink-card);
}
.strong-view{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem 5rem;
  }
.strong-view .offer-frame{max-width: 1080px;
    margin: 0 auto;}
.strong-view .plain-service{max-width: 640px;
    margin-bottom: 3.5rem;}
.strong-view .plain-service h2{font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    font-weight: 700;}
.strong-view .plain-service p{margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;}
.strong-view .media-method{display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 3.5rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    padding-top: 2.5rem;}
.strong-view .fresh-team{flex: 1 1 240px;
    min-width: 220px;}
.strong-view .fresh-team h3{font-size: 1.12rem;
    margin: 0 0 0.35rem;
    font-weight: 700;}
.strong-view .fresh-team .site-fields{margin: 0 0 0.9rem;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;color:inherit;}
.strong-view .fresh-team p:last-child{margin: 0;
    font-size: 0.97rem;
    line-height: 1.65;}
.strong-view .primary-figure{margin: 3rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 620px;}
@media (max-width: 640px) {.strong-view{
      padding: 3rem 1.25rem 3.5rem;
    }.strong-view .plain-service h2{
      font-size: 1.55rem;
    }.strong-view .media-method{
      gap: 2rem;
    }
  }
.strong-view{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.top-service{
    --line-page: #211f1b;
    --field-base: #fdfaf4;
    --mark-strong: #f2ece0;
    --label-base: #e4dccd;
    --tone-light: #0f8f8a;
    --surface-muted: #c25a34;

    background: var(--field-base);
    color: var(--line-page);
    padding: 72px 24px 80px;
  }
.top-service .offer-frame{max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 56px 64px;
    align-items: start;}
.top-service .plain-service{padding-top: 6px;}
.top-service .plain-service h2{font-size: clamp(1.6rem, 2.4vw, 2.15rem);
    line-height: 1.22;
    margin: 0 0 20px;
    letter-spacing: -0.01em;}
.top-service .plain-service p{font-size: 1.02rem;
    line-height: 1.68;
    margin: 0;}
.top-service .clear-body{display: flex;
    flex-direction: column;
    gap: 28px;}
.top-service .primary-figure{border-top: 1px solid var(--label-base);
    padding-top: 22px;}
.top-service .primary-figure:first-child{border-top-color: #0f8f8a;
    border-top-width: 2px;}
.top-service .primary-figure h3{font-size: 1.08rem;
    margin: 0 0 10px;
    letter-spacing: 0.005em;}
.top-service .primary-figure p{margin: 0 0 10px;
    font-size: 0.97rem;
    line-height: 1.66;}
.top-service .primary-figure .soft-header{margin: 0;
    font-size: 0.9rem;
    font-style: italic;}
@media (max-width: 820px) {.top-service{
      padding: 56px 20px 64px;
    }.top-service .offer-frame{
      grid-template-columns: 1fr;
      gap: 36px;
    }.top-service .plain-service h2{
      font-size: 1.5rem;
    }
  }
.top-service{
  background: var(--ink-main);
  color: var(--ink-card);
}
.text-summary{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
  padding: 4.5rem 1.25rem;
}
.text-summary .offer-frame{max-width: 760px;
  margin: 0 auto;}
.text-summary h2{font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  font-weight: 700;}
.text-summary .plain-service{font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 2.75rem;
  max-width: 62ch;}
.text-summary .site-content{display: flex;
  flex-direction: column;
  gap: 2rem;}
.text-summary .open-view{padding-left: 1.25rem;
  border-left: 2px solid #c25a34;}
.text-summary .open-view h3{font-size: 1.1rem;
  margin: 0 0 0.5rem;
  font-weight: 700;}
.text-summary .open-view p{font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;}
.text-summary .local-surface{margin: 2.75rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 60ch;}
@media (max-width: 600px) {.text-summary{
    padding: 3rem 1rem;
  }.text-summary h2{
    font-size: 1.55rem;
  }.text-summary .site-content{
    gap: 1.6rem;
  }
}
.text-summary{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.team-unit{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 5.5rem 1.5rem 4.5rem;
  }
.team-unit .offer-frame{max-width: 720px;
    margin: 0 auto;}
.team-unit h1{font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 1.1rem;
    font-weight: 700;}
.team-unit .plain-service{font-size: 1.075rem;
    line-height: 1.65;
    margin: 0;
    max-width: 60ch;
    color: var(--tone-clear, #3a3730);}
@media (max-width: 640px) {.team-unit{
      padding: 3.75rem 1.25rem 3rem;
    }.team-unit .plain-service{
      font-size: 1rem;
    }
  }
.team-unit{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.open-proof{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 64px 24px 72px;
  }
.open-proof .offer-frame{max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 48px 56px;
    align-items: start;}
.open-proof .local-brand h2{font-size: 1.7rem;
    line-height: 1.25;
    margin: 0 0 16px;}
.open-proof .local-brand p{margin: 0;
    line-height: 1.6;}
.open-proof .direct-note{list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--surface-clear);}
.open-proof .open-view{padding: 20px 0 22px;
    border-bottom: 1px solid var(--surface-clear);}
.open-proof .open-view h3{font-size: 1.05rem;
    margin: 0 0 8px;}
.open-proof .open-view p{margin: 0;
    line-height: 1.6;}
.open-proof .plain-callout{grid-column: 2 / 3;
    margin: 0;
    font-size: 0.95rem;}
.open-proof .plain-callout a{text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;}
.open-proof .plain-callout a:hover{}
@media (max-width: 760px) {.open-proof{
      padding: 48px 20px 56px;
    }.open-proof .offer-frame{
      grid-template-columns: 1fr;
      gap: 32px;
    }.open-proof .plain-callout{
      grid-column: 1 / 2;
    }
  }
.open-proof{
  background: var(--ink-main);
  color: var(--ink-card);
}
.soft-content{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
  padding: 4.5rem 1.5rem 5rem;
}
.soft-content .offer-frame{max-width: 780px;
  margin: 0 auto;}
.soft-content .open-stack{margin-bottom: 3rem;}
.soft-content .open-stack h2{font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;}
.soft-content .open-stack p{font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 0.9rem;}
.soft-content .clear-body{display: flex;
  flex-direction: column;
  gap: 2.25rem;}
.soft-content .primary-figure h3{font-size: 1.12rem;
  line-height: 1.35;
  margin: 0 0 0.55rem;
  color: var(--surface-inverse);}
.soft-content .primary-figure p{font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  max-width: 62ch;}
.soft-content .offer-tile{margin-top: 3rem;
  font-size: 0.95rem;
  line-height: 1.6;}
.soft-content .offer-tile a{color:inherit;
  text-decoration: underline;
  text-underline-offset: 3px;}
.soft-content .offer-tile a:hover{color: #0b6f6b;}
@media (max-width: 560px) {.soft-content{
    padding: 3rem 1.15rem 3.5rem;
  }.soft-content .open-stack h2{
    font-size: 1.45rem;
  }.soft-content .clear-body{
    gap: 1.85rem;
  }
}
.soft-content{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.team-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 5.5rem 1.5rem 4.5rem;
  }
.team-unit .offer-frame{max-width: 720px;
    margin: 0 auto;
    border-left: 3px solid #0f8f8a;
    padding-left: 1.75rem;}
.team-unit h1{font-size: clamp(1.75rem, 1.2rem + 2vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;}
.team-unit .plain-service{font-size: 1.0625rem;
    line-height: 1.65;
    margin: 0;
    max-width: 60ch;
    color: var(--tone-clear, #3a3730);}
@media (max-width: 600px) {.team-unit{
      padding: 3.5rem 1.25rem 3rem;
    }.team-unit .offer-frame{
      padding-left: 1.25rem;
    }
  }
.compact-stack{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 72px 24px 84px;
  }
.compact-stack .offer-frame{max-width: 760px;
    margin: 0 auto;}
.compact-stack .primary-figure h2{font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.25;
    margin: 0 0 18px;
    letter-spacing: -0.01em;}
.compact-stack .primary-figure p{font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 16px;
    max-width: 60ch;}
.compact-stack .public-details{margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.compact-stack .go{
    display: inline-block;
    background: #0f8f8a;
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.15s ease;
  }
.compact-stack .go:hover{
    background: #0b6f6b;color:var(--ink-base);}
.compact-stack .top-rail{margin: 18px 0 0;
    font-size: 0.95rem;
    line-height: 1.55;}
.compact-stack .top-rail a{text-decoration: underline;
    text-underline-offset: 3px;}
.compact-stack .top-rail a:hover{}
@media (max-width: 560px) {.compact-stack{
      padding: 52px 18px 64px;
    }.compact-stack .go{
      display: block;
      text-align: center;
    }
  }
.soft-content{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.25rem 5rem;
  }
.soft-content .offer-frame{max-width: 780px;
    margin: 0 auto;}
.soft-content .open-stack{margin-bottom: 2.75rem;}
.soft-content .open-stack h2{font-size: 1.85rem;
    line-height: 1.25;
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;}
.soft-content .open-stack p{font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 0.9rem;
    color: var(--tone-clear);}
.soft-content .steady-service{list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.soft-content .box{padding: 1.6rem 0 1.5rem;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);}
.soft-content .box h3{font-size: 1.08rem;
    line-height: 1.4;
    margin: 0 0 0.5rem;color:inherit;}
.soft-content .box p{font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
    color: var(--tone-clear);}
.soft-content .top-rail{margin: 2.25rem 0 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--tone-clear);}
.soft-content .top-rail a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.soft-content .top-rail a:hover{color: #a8481f;}
@media (min-width: 720px) {.soft-content{
      padding: 5.5rem 2rem 6rem;
    }.soft-content .open-stack h2{
      font-size: 2.15rem;
    }.soft-content .box{
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 2rem;
      align-items: start;
    }.soft-content .box h3{
      margin: 0;
    }
  }
.team-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 5rem 1.5rem 4rem;
  }
.team-unit .offer-frame{max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: start;}
.team-unit .plain-service h1{font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 1.25rem;
    font-weight: 700;}
.team-unit .plain-service p{font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    max-width: 46ch;}
.team-unit .primary-figure{border-top: 2px solid #0f8f8a;
    padding-top: 1.1rem;
    margin-top: 0.4rem;}
.team-unit .primary-figure p{font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--tone-clear, #3a3730);}
@media (max-width: 760px) {.team-unit{
      padding: 3.25rem 1.25rem 2.75rem;
    }.team-unit .offer-frame{
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
.soft-content{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem;
  }
.soft-content .offer-frame{max-width: 780px;
    margin: 0 auto;}
.soft-content h2{font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.soft-content .plain-service{font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 2.75rem;
    max-width: 62ch;}
.soft-content .steady-service{display: flex;
    flex-direction: column;
    gap: 2.25rem;}
.soft-content .box h3{font-size: 1.15rem;
    line-height: 1.35;
    margin: 0 0 0.55rem;}
.soft-content .box p{margin: 0;
    line-height: 1.7;
    max-width: 68ch;}
.soft-content .top-rail{margin: 3rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    font-size: 0.98rem;
    line-height: 1.6;}
.soft-content .top-rail a{text-decoration: underline;
    text-underline-offset: 3px;}
.soft-content .top-rail a:hover{}
@media (min-width: 720px) {.soft-content{
      padding: 5.5rem 2rem;
    }.soft-content h2{
      font-size: 2.2rem;
    }.soft-content .steady-service{
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 3rem;
      row-gap: 2.5rem;
    }.soft-content .box:first-child{
      grid-column: 1 / -1;
    }
  }
.soft-content{
  background: var(--ink-main);
  color: var(--ink-card);
}
.focused-panel{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 64px 20px 72px;
  }
.focused-panel .offer-frame{max-width: 860px;
    margin: 0 auto;}
.focused-panel .narrow-actions{margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);}
.focused-panel .narrow-actions h2{font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -0.01em;}
.focused-panel .narrow-actions p{margin: 0;
    max-width: 60ch;
    font-size: 1rem;
    line-height: 1.6;}
.focused-panel .service-shell{display: flex;
    flex-direction: column;}
.focused-panel .contact-tile{padding: 22px 0 24px;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);}
.focused-panel .contact-tile h3{margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 700;}
.focused-panel .contact-tile p{margin: 0;
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 68ch;}
.focused-panel .plain-callout{margin: 28px 0 0;
    font-size: 0.92rem;
    line-height: 1.6;}
.focused-panel .plain-callout a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.focused-panel .plain-callout a:hover{color: #0b6f6b;}
@media (max-width: 560px) {.focused-panel{
      padding: 48px 16px 56px;
    }.focused-panel .narrow-actions h2{
      font-size: 1.45rem;
    }.focused-panel .contact-tile{
      padding: 18px 0 20px;
    }
  }
.focused-panel{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.site-content{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4rem 1.25rem;
  }
.site-content .offer-frame{max-width: 760px;
    margin: 0 auto;}
.site-content h2{font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.site-content .plain-service{font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 2.5rem;}
.site-content .direct-note{list-style: none;
    margin: 0;
    padding: 0;}
.site-content .open-view{padding: 1.4rem 0 1.6rem;
    border-top: 1px solid var(--surface-clear);}
.site-content .open-view:last-child{border-bottom: 1px solid var(--surface-clear);}
.site-content .open-view time{display: block;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;}
.site-content .open-view h3{font-size: 1.15rem;
    margin: 0 0 0.5rem;
    font-weight: 600;}
.site-content .open-view p{margin: 0;
    line-height: 1.65;
    max-width: 62ch;}
@media (min-width: 720px) {.site-content{
      padding: 5rem 2rem;
    }.site-content .open-view{
      display: grid;
      grid-template-columns: 110px 1fr;
      column-gap: 1.75rem;
      align-items: start;
    }.site-content .open-view time{
      margin-bottom: 0;
      padding-top: 0.35rem;
    }.site-content .open-view h3{
      grid-column: 2;
    }.site-content .open-view p{
      grid-column: 2;
    }
  }
.site-content{
  background: var(--ink-main);
  color: var(--ink-card);
}
.team-unit{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem 3.5rem;
  }
.team-unit .offer-frame{max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;}
.team-unit h1{font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    line-height: 1.18;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.team-unit .open-stack{font-size: 1.06rem;
    line-height: 1.65;
    margin: 0;
    max-width: 46ch;}
.team-unit .primary-figure{border-left: 3px solid #c25a34;
    padding: 0.25rem 0 0.25rem 1.25rem;
    font-size: 0.97rem;
    line-height: 1.6;}
.team-unit .primary-figure p{margin: 0 0 0.9rem;}
.team-unit .primary-figure p:last-child{margin-bottom: 0;}
.team-unit .bottom-track{font-size: 0.93rem;}
.team-unit a{color:inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;}
.team-unit a:hover{color:inherit;}
@media (max-width: 760px) {.team-unit{
      padding: 3rem 1.25rem 2.5rem;
    }.team-unit .offer-frame{
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
.clear-region{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.clear-region .offer-frame{max-width: 1080px;
    margin: 0 auto;}
.clear-region .open-stack{max-width: 640px;
    margin: 0 0 3rem;}
.clear-region .open-stack h2{font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1.2;
    margin: 0 0 0.9rem;
    letter-spacing: -0.01em;}
.clear-region .open-stack p{font-size: 1.02rem;
    line-height: 1.65;
    margin: 0;}
.clear-region .site-lead{display: grid;
    grid-template-columns: 1.15fr 1fr 0.95fr;
    gap: 2.75rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    padding-top: 2.5rem;}
.clear-region .simple-note{display: flex;
    flex-direction: column;
    gap: 0.55rem;}
.clear-region .simple-note .public-story{font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;}
.clear-region .simple-note h3{font-size: 1.12rem;
    line-height: 1.3;
    margin: 0;}
.clear-region .simple-note p{font-size: 0.97rem;
    line-height: 1.62;
    margin: 0;}
.clear-region .simple-note .contact-note{font-size: 0.88rem;
    line-height: 1.5;
    padding-top: 0.35rem;
    border-top: 1px dashed var(--surface-clear, #e4dccd);}
.clear-region .top-rail{align-self: flex-start;
    margin-top: 0.35rem;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;}
.clear-region .top-rail:hover{}
.clear-region .narrow-fields{margin: 3rem 0 0;
    max-width: 720px;
    font-size: 0.95rem;
    line-height: 1.6;}
.clear-region .narrow-fields a{text-decoration: none;
    border-bottom: 1px solid currentColor;}
.clear-region .narrow-fields a:hover{}
@media (max-width: 860px) {.clear-region .site-lead{
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
.clear-region{
  background: var(--ink-main);
  color: var(--ink-card);
}
.top-nav{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 72px 24px 84px;
  }
.top-nav .offer-frame{max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;}
.top-nav .plain-service h2{font-size: 1.65rem;
    line-height: 1.3;
    margin: 0 0 20px;
    letter-spacing: -0.005em;}
.top-nav .plain-service p{margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 52ch;}
.top-nav .plain-service p:last-child{margin-bottom: 0;}
.top-nav .text-team{border-top: 1px solid var(--surface-clear, #e4dccd);
    padding-top: 8px;}
.top-nav .open-inner{display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);
    font-size: 0.95rem;
    line-height: 1.55;
    align-items: baseline;}
.top-nav .open-inner:last-child{border-bottom: none;}
.top-nav .content-unit{color: var(--tone-clear, #3a3730);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;}
.top-nav .open-inner a{color:inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease, color 0.15s ease;}
.top-nav .open-inner a:hover{color: #0b6f6b;
    border-bottom-color: currentColor;}
@media (max-width: 820px) {.top-nav{
      padding: 56px 20px 64px;
    }.top-nav .offer-frame{
      grid-template-columns: 1fr;
      gap: 36px;
    }.top-nav .plain-service h2{
      font-size: 1.4rem;
    }.top-nav .open-inner{
      grid-template-columns: 1fr;
      gap: 4px;
    }
  }
.top-nav{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.team-unit{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 5.5rem 1.5rem 4.5rem;
  }
.team-unit .offer-frame{max-width: 720px;
    margin: 0 auto;}
.team-unit h1{font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 1.4rem;
    font-weight: 700;}
.team-unit .plain-service{font-size: 1.125rem;
    line-height: 1.65;
    margin: 0 0 1.6rem;
    max-width: 60ch;}
.team-unit .primary-figure{font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    padding-top: 1.1rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    max-width: 52ch;}
@media (max-width: 640px) {.team-unit{
      padding: 3.75rem 1.25rem 3rem;
    }.team-unit .plain-service{
      font-size: 1.05rem;
    }
  }
.fresh-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.fresh-unit .offer-frame{max-width: 68rem;
    margin: 0 auto;}
.fresh-unit .plain-service{max-width: 44rem;
    margin-bottom: 3rem;}
.fresh-unit .plain-service h2{font-size: 1.85rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.fresh-unit .plain-service p{font-size: 1.02rem;
    line-height: 1.65;
    margin: 0;}
.fresh-unit .bottom-intro{list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.fresh-unit .contact-tile{display: grid;
    grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
    gap: 1.5rem 2.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);}
.fresh-unit .contact-tile h3{font-size: 1.08rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;}
.fresh-unit .contact-tile p{margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;}
.fresh-unit .top-rail{margin: 2.5rem 0 0;
    font-size: 0.98rem;
    line-height: 1.6;}
.fresh-unit .top-rail a{text-decoration: underline;
    text-underline-offset: 3px;}
.fresh-unit .top-rail a:hover{}
@media (max-width: 640px) {.fresh-unit{
      padding: 3rem 1.15rem 3.5rem;
    }.fresh-unit .plain-service h2{
      font-size: 1.5rem;
    }.fresh-unit .contact-tile{
      grid-template-columns: 1fr;
      gap: 0.5rem;
      padding: 1.4rem 0;
    }
  }
.fresh-unit{
  background: var(--ink-main);
  color: var(--ink-card);
}
.soft-content{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 72px 24px 64px;
  }
.soft-content .offer-frame{max-width: 780px;
    margin: 0 auto;}
.soft-content h2{font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 18px;
    letter-spacing: -0.01em;}
.soft-content .plain-service{font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 40px;
    color: #3a3730;
    max-width: 62ch;}
.soft-content .service-shell{display: flex;
    flex-direction: column;
    gap: 30px;}
.soft-content .open-track h3{font-size: 1.08rem;
    line-height: 1.35;
    margin: 0 0 8px;color:inherit;}
.soft-content .open-track p{margin: 0;
    line-height: 1.65;
    font-size: 0.98rem;
    color: #3a3730;
    max-width: 66ch;}
.soft-content .open-track a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.soft-content .open-track a:hover{color: #a8481f;}
.soft-content .top-rail{margin: 44px 0 0;
    padding-top: 22px;
    border-top: 1px solid #e4dccd;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3a3730;}
.soft-content .top-rail a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.soft-content .top-rail a:hover{color: #0b6f6b;}
@media (max-width: 640px) {.soft-content{
      padding: 52px 18px 48px;
    }.soft-content h2{
      font-size: 1.45rem;
    }.soft-content .service-shell{
      gap: 24px;
    }
  }
.public-shell{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.public-shell .offer-frame{max-width: 68rem;
    margin: 0 auto;}
.public-shell h2{font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.public-shell .plain-service{max-width: 46rem;
    margin: 0 0 2.75rem;
    font-size: 1.02rem;
    line-height: 1.65;}
.public-shell .contact-visual{display: flex;
    flex-direction: column;
    gap: 2.25rem;}
.public-shell .simple-note{display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    column-gap: 2.5rem;
    row-gap: 0.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.public-shell .simple-note h3{grid-column: 1;
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 700;}
.public-shell .simple-note p{grid-column: 2;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;}
.public-shell .simple-note .featured-stack{grid-column: 2;
    justify-self: start;
    margin-top: 0.35rem;
    font-size: 0.92rem;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;}
.public-shell .simple-note .featured-stack:hover{}
@media (max-width: 720px) {.public-shell{
      padding: 3rem 1.25rem 3.5rem;
    }.public-shell .simple-note{
      grid-template-columns: 1fr;
      column-gap: 0;
    }.public-shell .simple-note h3,
    .public-shell .simple-note p,
    .public-shell .simple-note .featured-stack{
      grid-column: 1;
    }
  }
.team-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 5.5rem 1.5rem 4.5rem;
  }
.team-unit .offer-frame{max-width: 720px;
    margin: 0 auto;
    padding-left: 1.25rem;
    border-left: 3px solid #c25a34;}
.team-unit h1{margin: 0 0 1.25rem;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.01em;}
.team-unit .plain-service{margin: 0 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.65;}
.team-unit .primary-figure{margin: 0;
    max-width: 60ch;
    font-size: 0.98rem;
    line-height: 1.6;}
@media (max-width: 640px) {.team-unit{
      padding: 3.5rem 1.25rem 3rem;
    }.team-unit .offer-frame{
      padding-left: 1rem;
    }
  }
.proof{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.25rem 5rem;
  }
.proof .offer-frame{max-width: 880px;
    margin: 0 auto;}
.proof .plain-service{max-width: 620px;
    margin-bottom: 3rem;}
.proof .plain-service h2{font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 600;}
.proof .primary-figure{font-size: 1rem;
    line-height: 1.65;
    margin: 0;
    color: var(--tone-clear);}
.proof .narrow-flow{list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.proof .contact-tile{display: grid;
    grid-template-columns: minmax(180px, 260px) 1fr;
    gap: 1.5rem 2.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);}
.proof .contact-tile h3{font-size: 1.05rem;
    line-height: 1.35;
    margin: 0;
    font-weight: 600;}
.proof .contact-tile p{font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--tone-clear);}
.proof .local-surface{margin: 2.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 640px;
    color: var(--tone-clear);}
.proof .local-surface a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.proof .local-surface a:hover{color: #0b6f6b;}
@media (max-width: 640px) {.proof{
      padding: 3rem 1.1rem 3.5rem;
    }.proof .plain-service h2{
      font-size: 1.55rem;
    }.proof .contact-tile{
      grid-template-columns: 1fr;
      gap: 0.5rem;
      padding: 1.25rem 0;
    }
  }
.proof{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.quiet-visual{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.quiet-visual .offer-frame{max-width: 940px;
    margin: 0 auto;}
.quiet-visual .plain-service{max-width: 640px;
    margin-bottom: 3rem;}
.quiet-visual .plain-service h2{font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.quiet-visual .plain-service p{margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;}
.quiet-visual .contact-visual{list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.quiet-visual .simple-note{display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1.5rem 2.5rem;
    padding: 1.9rem 0;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);
    align-items: baseline;}
.quiet-visual .simple-note .steady-story{margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;}
.quiet-visual .simple-note .columns{margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: right;}
.quiet-visual .local-surface{margin: 2.5rem 0 0;
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 620px;}
.quiet-visual .local-surface a{text-decoration: underline;
    text-underline-offset: 3px;}
.quiet-visual .local-surface a:hover{}
@media (max-width: 680px) {.quiet-visual{
      padding: 3.2rem 1.2rem 3.6rem;
    }.quiet-visual .simple-note{
      grid-template-columns: 1fr;
      gap: 0.7rem;
    }.quiet-visual .simple-note .columns{
      text-align: left;
    }
  }
.quiet-visual{
  background: var(--ink-main);
  color: var(--ink-card);
}
.local-steps{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.local-steps .offer-frame{max-width: 780px;
    margin: 0 auto;}
.local-steps h2{font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.local-steps .plain-service{font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 2.75rem;
    max-width: 62ch;
    color: var(--tone-clear, #3a3730);}
.local-steps .service-shell{display: flex;
    flex-direction: column;
    gap: 2rem;}
.local-steps .open-track h3{font-size: 1.08rem;
    margin: 0 0 0.5rem;color:inherit;
    letter-spacing: 0.005em;}
.local-steps .open-track p{margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
    max-width: 68ch;}
.local-steps .primary-figure{margin: 3rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--tone-clear, #3a3730);}
.local-steps a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.local-steps a:hover{color: #a8481f;}
@media (max-width: 560px) {.local-steps{
      padding: 3rem 1.1rem 3.5rem;
    }.local-steps .plain-service{
      margin-bottom: 2rem;
    }.local-steps .service-shell{
      gap: 1.6rem;
    }
  }
.local-steps{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.team-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 72px 24px 64px;
  }
.team-unit .offer-frame{max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;}
.team-unit .plain-service h1{margin: 0 0 20px;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    line-height: 1.18;
    letter-spacing: -0.01em;}
.team-unit .open-benefit{margin: 0;
    max-width: 46ch;
    font-size: 1.05rem;
    line-height: 1.65;}
.team-unit .primary-figure{border-left: 2px solid #c25a34;
    padding: 4px 0 4px 24px;}
.team-unit .primary-figure h2{margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.35;
    letter-spacing: 0.01em;}
.team-unit .primary-figure p{margin: 0;
    font-size: 0.97rem;
    line-height: 1.62;}
@media (max-width: 760px) {.team-unit{
      padding: 48px 20px 44px;
    }.team-unit .offer-frame{
      grid-template-columns: 1fr;
      gap: 32px;
    }.team-unit .primary-figure{
      padding-left: 18px;
    }
  }
.focused-flow{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem;
  }
.focused-flow .offer-frame{max-width: 1080px;
    margin: 0 auto;}
.focused-flow .open-stack{max-width: 620px;
    margin-bottom: 2.75rem;}
.focused-flow h2{font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 0.9rem;
    letter-spacing: -0.01em;}
.focused-flow .plain-service{margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;}
.focused-flow .main-method{display: grid;
    grid-template-columns: 1.35fr 1fr;
    column-gap: 3rem;
    row-gap: 2.25rem;
    margin-bottom: 3rem;}
.focused-flow .fresh-content{margin: 0;}
.focused-flow .fresh-content:nth-child(1){grid-row: span 2;}
.focused-flow .steady-story{margin: 0 0 0.85rem;
    font-size: 1.05rem;
    line-height: 1.6;}
.focused-flow .fresh-content:nth-child(1) .steady-story{font-size: 1.2rem;
    line-height: 1.55;}
.focused-flow .columns{margin: 0;
    font-size: 0.88rem;
    letter-spacing: 0.01em;}
.focused-flow .primary-visual{display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-clear);}
.focused-flow .secondary-quote{display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 200px;
    flex: 1 1 200px;}
.focused-flow .media-footer{font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;}
.focused-flow .offer-form{font-size: 0.85rem;
    line-height: 1.5;}
@media (max-width: 760px) {.focused-flow{
      padding: 3.25rem 1.25rem;
    }.focused-flow .main-method{
      grid-template-columns: 1fr;
      row-gap: 1.9rem;
    }.focused-flow .fresh-content:nth-child(1){
      grid-row: auto;
    }.focused-flow h2{
      font-size: 1.6rem;
    }
  }
.focused-flow{
  background: var(--ink-main);
  color: var(--ink-card);
}
.narrow-menu{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.25rem 5rem;
  }
.narrow-menu .offer-frame{max-width: 1080px;
    margin: 0 auto;}
.narrow-menu .narrow-actions{max-width: 680px;
    margin-bottom: 3rem;}
.narrow-menu .narrow-actions h2{font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    margin: 0 0 0.9rem;
    font-weight: 600;}
.narrow-menu .plain-service{margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--tone-clear, #3a3730);}
.narrow-menu .service-shell{display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.narrow-menu .contact-tile{display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);}
.narrow-menu .local-feature h3{margin: 0 0 0.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;}
.narrow-menu .local-feature p{margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--tone-clear, #3a3730);
    max-width: 62ch;}
.narrow-menu .local-feature ul{margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.4rem;}
.narrow-menu .local-feature li{font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    padding-left: 0.9rem;}
.narrow-menu .local-feature li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c25a34;color:#ffffff;}
.narrow-menu .simple-copy{align-self: center;
    display: inline-block;
    padding: 0.7rem 1.3rem;
    border: 1px solid #0f8f8a;color:inherit;
    text-decoration: none;
    font-size: 0.92rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;}
.narrow-menu .simple-copy:hover{
    background: #0f8f8a;
    color: #ffffff;
  }
.narrow-menu .primary-figure{margin: 2.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--tone-clear, #3a3730);
    max-width: 70ch;}
.narrow-menu .primary-figure a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.narrow-menu .primary-figure a:hover{color: #a8481f;}
@media (max-width: 720px) {.narrow-menu{
      padding: 3rem 1rem 3.5rem;
    }.narrow-menu .contact-tile{
      grid-template-columns: 1fr;
      gap: 1.1rem;
    }.narrow-menu .simple-copy{
      justify-self: start;
    }
  }
.narrow-menu{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.local-steps{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.local-steps .offer-frame{max-width: 720px;
    margin: 0 auto;}
.local-steps h2{font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.25;
    margin: 0 0 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;}
.local-steps .plain-service{font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 2.2rem;}
.local-steps .clear-body{list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    border-top: 1px solid #e4dccd;}
.local-steps .clear-body li{padding: 1.15rem 0 1.2rem 1.1rem;
    border-bottom: 1px solid #e4dccd;
    border-left: 2px solid #0f8f8a;
    font-size: 0.98rem;
    line-height: 1.6;}
.local-steps .clear-body li:nth-child(even){border-left-color: #c25a34;}
.local-steps .clear-body li strong{display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;}
.local-steps .local-surface{font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;}
.local-steps .local-surface a{text-decoration: underline;
    text-underline-offset: 3px;}
.local-steps .local-surface a:hover{}
.local-steps{
  background: var(--ink-main);
  color: var(--ink-card);
}
.team-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 5rem 1.5rem 4rem;
  }
.team-unit .offer-frame{max-width: 62rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    column-gap: 3.5rem;
    row-gap: 1.25rem;
    align-items: start;}
.team-unit h1{grid-column: 1 / -1;
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 700;}
.team-unit .plain-service{grid-column: 1;
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;}
.team-unit .primary-figure{grid-column: 2;
    margin: 0.35rem 0 0;
    padding-left: 1.25rem;
    border-left: 2px solid #0f8f8a;
    font-size: 0.9375rem;
    line-height: 1.55;}
@media (max-width: 720px) {.team-unit{
      padding: 3.25rem 1.25rem 2.75rem;
    }.team-unit .offer-frame{
      grid-template-columns: 1fr;
      column-gap: 0;
      row-gap: 1.5rem;
    }.team-unit .plain-service,
    .team-unit .primary-figure{
      grid-column: 1;
    }
  }
.strong-view{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.strong-view .offer-frame{max-width: 1080px;
    margin: 0 auto;}
.strong-view .plain-header{max-width: 62ch;
    margin-bottom: 3rem;}
.strong-view .plain-header h2{font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.25;
    margin: 0 0 1rem;}
.strong-view .plain-header p{margin: 0 0 0.9rem;
    line-height: 1.65;}
.strong-view .media-method{display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3.5rem;
    row-gap: 2.6rem;}
.strong-view .site-stack h3{font-size: 1.125rem;
    margin: 0 0 0.3rem;}
.strong-view .site-stack .site-fields{margin: 0 0 0.7rem;
    font-size: 0.9rem;
    letter-spacing: 0.01em;color:inherit;}
.strong-view .site-stack p:last-child{margin: 0;
    line-height: 1.65;}
.strong-view .local-surface{margin: 3.5rem 0 0;
    max-width: 62ch;
    line-height: 1.65;}
.strong-view .local-surface a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.strong-view .local-surface a:hover{color: #0b6f6b;}
@media (max-width: 720px) {.strong-view{
      padding: 3rem 1.25rem 3.5rem;
    }.strong-view .media-method{
      grid-template-columns: 1fr;
      row-gap: 2.2rem;
    }
  }
.bottom-shell{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 88px 24px 96px;
  }
.bottom-shell .offer-frame{max-width: 720px;
    margin: 0 auto;}
.bottom-shell h1{font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 28px;
    letter-spacing: -0.01em;}
.bottom-shell .plain-service{font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--surface-clear, #e4dccd);}
.bottom-shell .primary-figure{font-size: 1.02rem;
    line-height: 1.75;
    margin: 0 0 28px;}
.bottom-shell .soft-inner{margin: 0;
    font-size: 1rem;
    line-height: 1.6;}
.bottom-shell .soft-inner a{text-decoration: underline;
    text-underline-offset: 3px;}
.bottom-shell .soft-inner a:hover{}
@media (max-width: 560px) {.bottom-shell{
      padding: 64px 20px 72px;
    }.bottom-shell .plain-service{
      font-size: 1.06rem;
    }
  }
.bottom-shell{
  background: var(--ink-main);
  color: var(--ink-card);
}
.team-unit{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 5.5rem 1.5rem 4.5rem;
  }
.team-unit .offer-frame{max-width: 46rem;
    margin: 0 auto;
    border-left: 3px solid #c25a34;
    padding-left: 1.75rem;}
.team-unit h1{font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 1.35rem;
    font-weight: 700;}
.team-unit .plain-service{font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0;
    max-width: 40rem;}
.team-unit .plain-service a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.team-unit .plain-service a:hover{color: #0b6f6b;}
@media (max-width: 640px) {.team-unit{
      padding: 3.5rem 1.25rem 3rem;
    }.team-unit .offer-frame{
      padding-left: 1.25rem;
    }
  }
.focused-flow{
    --gap-card: 2.4rem;
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.focused-flow .offer-frame{max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    column-gap: 3.5rem;
    row-gap: var(--gap-card);}
.focused-flow .soft-summary{grid-column: 1 / 2;
    align-self: start;}
.focused-flow .soft-summary h2{font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.focused-flow .soft-summary p{margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 52ch;}
.focused-flow .compact-group{grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
    padding-top: 0.35rem;}
.focused-flow .primary-figure{border-top: 1px solid var(--surface-clear, #e4dccd);
    padding-top: 1rem;}
.focused-flow .fields{margin: 0 0 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;}
.focused-flow .wide-area{margin: 0 0 0.5rem;
    font-size: 1.08rem;
    line-height: 1.4;}
.focused-flow .open-group{margin: 0 0 0.5rem;
    font-size: 0.95rem;
    line-height: 1.65;}
.focused-flow .top-headline{margin: 0;
    font-size: 0.82rem;
    opacity: 0.75;}
.focused-flow .steady-story{grid-column: 1 / -1;
    margin: 0;
    padding: 1.6rem 0 0;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    max-width: 68ch;}
.focused-flow .steady-story p{margin: 0 0 0.8rem;
    font-size: 1.08rem;
    line-height: 1.65;
    font-style: italic;}
.focused-flow .steady-story footer{font-size: 0.88rem;}
.focused-flow .proof{grid-column: 1 / -1;
    padding-top: 0.6rem;}
.focused-flow .focused-feature{margin: 0 0 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;}
.focused-flow .public-frame{list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 2.4rem;}
.focused-flow .public-frame li{font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 0.9rem;
    position: relative;}
.focused-flow .public-frame li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0f8f8a;color:#ffffff;}
@media (max-width: 820px) {.focused-flow .offer-frame{
      grid-template-columns: 1fr;
      column-gap: 0;
    }.focused-flow .soft-summary,
    .focused-flow .compact-group,
    .focused-flow .steady-story,
    .focused-flow .proof{
      grid-column: 1 / -1;
    }.focused-flow{
      padding: 3.2rem 1.2rem 3.6rem;
    }
  }
.compact-stack{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 5.5rem 1.5rem 5rem;
  }
.compact-stack .offer-frame{max-width: 760px;
    margin: 0 auto;
    border-top: 1px solid #e4dccd;
    padding-top: 2.75rem;}
.compact-stack h2{font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    line-height: 1.25;
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;
    font-weight: 600;}
.compact-stack .plain-service{margin: 0 0 2rem;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 58ch;}
.compact-stack .public-details{display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1.25rem 2rem;}
.compact-stack .go{
    display: inline-block;
    background: #0f8f8a;
    color: #ffffff;
    padding: 0.95rem 1.6rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
  }
.compact-stack .go:hover,
  .compact-stack .go:focus{
    background: #0b6f6b;color:var(--ink-base);}
.compact-stack .narrow-fields{margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #3a3730;
    max-width: 34ch;}
.compact-stack .narrow-fields a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.compact-stack .narrow-fields a:hover,
  .compact-stack .narrow-fields a:focus{color: var(--line-inverse, #a8481f);}
@media (max-width: 560px) {.compact-stack{
      padding: 4rem 1.25rem 3.5rem;
    }.compact-stack .public-details{
      gap: 1rem;
    }
  }
.compact-stack{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.team-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 5rem 1.5rem 4rem;
  }
.team-unit .offer-frame{max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    column-gap: 4rem;
    row-gap: 1.5rem;
    align-items: start;}
.team-unit h1{grid-column: 1 / -1;
    margin: 0 0 1.25rem;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -0.01em;}
.team-unit .plain-service{grid-column: 1 / 2;}
.team-unit .plain-service p{margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.65;}
.team-unit .plain-service p:last-child{margin-bottom: 0;}
.team-unit .primary-figure{grid-column: 2 / 3;
    margin: 0;
    padding-left: 1.25rem;
    border-left: 2px solid #c25a34;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--tone-clear, #3a3730);}
@media (max-width: 760px) {.team-unit{
      padding: 3.25rem 1.25rem 2.75rem;
    }.team-unit .offer-frame{
      grid-template-columns: 1fr;
      column-gap: 0;
      row-gap: 1.25rem;
    }.team-unit .plain-service,
    .team-unit .primary-figure{
      grid-column: 1 / -1;
    }
  }
.local-steps{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.25rem;
  }
.local-steps .offer-frame{max-width: 780px;
    margin: 0 auto;}
.local-steps .narrow-actions{border-bottom: 1px solid var(--surface-clear);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;}
.local-steps h2{font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 0.85rem;
    letter-spacing: -0.01em;}
.local-steps .plain-service{margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 62ch;}
.local-steps .clear-body{display: flex;
    flex-direction: column;
    gap: 1.75rem;}
.local-steps .primary-figure{padding-left: 1.25rem;
    border-left: 3px solid #c25a34;}
.local-steps .primary-figure:nth-child(2){border-left-color: var(--tone-extra-36);}
.local-steps .primary-figure h3{margin: 0 0 0.5rem;
    font-size: 1.08rem;
    line-height: 1.35;}
.local-steps .primary-figure p{margin: 0;
    line-height: 1.7;}
.local-steps .local-surface{margin: 2.75rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-clear);
    font-size: 0.98rem;
    line-height: 1.7;}
.local-steps .local-surface a{text-decoration: underline;
    text-underline-offset: 3px;}
.local-steps .local-surface a:hover{}
@media (max-width: 600px) {.local-steps{
      padding: 3rem 1rem;
    }.local-steps h2{
      font-size: 1.4rem;
    }.local-steps .primary-figure{
      padding-left: 1rem;
    }
  }
.narrow-menu{
  --label-base: #e4dccd;
  --line-cool: #3a3730;
  background: var(--tone-extra-33, #fdfaf4);
  color: var(--surface-inverse, #211f1b);
  padding: 4.5rem 1.5rem 5rem;
}
.narrow-menu .offer-frame{max-width: 1080px;
  margin: 0 auto;}
.narrow-menu .open-stack{max-width: 640px;
  margin-bottom: 3.5rem;}
.narrow-menu .open-stack h2{font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;}
.narrow-menu .open-stack p{font-size: 1.02rem;
  line-height: 1.65;
  color: var(--line-cool);
  margin: 0;}
.narrow-menu .focused-intro{display: flex;
  flex-direction: column;
  gap: 2.75rem;}
.narrow-menu .main-body{display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 1.5rem 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--label-base);
  align-items: start;}
.narrow-menu .page-body{display: flex;
  align-items: baseline;
  gap: 0.9rem;}
.narrow-menu .clear-method{font-size: 0.85rem;
  letter-spacing: 0.08em;color:inherit;}
.narrow-menu .page-body h3{font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;}
.narrow-menu .quiet-body{grid-column: 1;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--line-cool);
  margin: 0.6rem 0 0;}
.narrow-menu .media-shell{grid-column: 2;
  grid-row: 1 / span 2;
  list-style: none;
  margin: 0;
  padding: 0;}
.narrow-menu .media-shell li{position: relative;
  padding: 0 0 0.85rem 1.1rem;
  font-size: 0.97rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--label-base);}
.narrow-menu .media-shell li:last-child{border-bottom: 0;
  padding-bottom: 0;}
.narrow-menu .media-shell li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #0f8f8a;
  border-radius: 50%;color:#ffffff;}
.narrow-menu .primary-note{grid-column: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--line-cool);
  margin: 0;}
.narrow-menu .active-frame{grid-column: 1;
  justify-self: start;
  font-size: 0.92rem;color:inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;}
.narrow-menu .active-frame:hover{color: #0b6f6b;}
.narrow-menu .top-rail{margin: 3.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--label-base);
  font-size: 0.92rem;
  color: var(--line-cool);}
.narrow-menu .top-rail a{color:inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;}
.narrow-menu .top-rail a:hover{color: #0b6f6b;}
@media (max-width: 760px) {.narrow-menu{
    padding: 3rem 1.15rem 3.5rem;
  }.narrow-menu .open-stack h2{
    font-size: 1.55rem;
  }.narrow-menu .main-body{
    grid-template-columns: 1fr;
    gap: 1rem;
  }.narrow-menu .media-shell{
    grid-column: 1;
    grid-row: auto;
  }
}
.main-stack{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 64px 20px 72px;
  }
.main-stack .offer-frame{max-width: 720px;
    margin: 0 auto;}
.main-stack .contact-story{border-bottom: 1px solid var(--surface-clear, #e4dccd);
    padding-bottom: 28px;
    margin-bottom: 32px;}
.main-stack .active-nav{margin: 0 0 14px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;color:inherit;}
.main-stack h1{margin: 0 0 12px;
    font-size: clamp(1.7rem, 3.4vw, 2.35rem);
    line-height: 1.22;
    font-weight: 700;}
.main-stack .bar{margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--tone-clear, #3a3730);}
.main-stack .simple-contact p{margin: 0 0 18px;
    font-size: 1.02rem;
    line-height: 1.72;}
.main-stack .top-rail{margin: 40px 0 36px;
    padding-left: 22px;
    border-left: 3px solid #c25a34;}
.main-stack .top-rail h2{margin: 0 0 20px;
    font-size: 1.2rem;
    font-weight: 700;}
.main-stack .direct-note{list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;}
.main-stack .direct-note li{position: relative;
    padding: 0 0 22px 0;
    margin-bottom: 22px;
    border-bottom: 1px dashed var(--surface-clear, #e4dccd);
    counter-increment: step;}
.main-stack .direct-note li:last-child{border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;}
.main-stack .direct-note li::before{content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;color:inherit;
    margin-bottom: 6px;}
.main-stack .direct-note h3{margin: 0 0 8px;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;}
.main-stack .direct-note p{margin: 0;
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--tone-clear, #3a3730);}
.main-stack .entry-foot{padding-top: 24px;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.main-stack .primary-figure{margin: 0;
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--tone-clear, #3a3730);}
.main-stack .primary-figure a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.main-stack .primary-figure a:hover{color: #0b6f6b;}
@media (max-width: 540px) {.main-stack{
      padding: 44px 16px 52px;
    }.main-stack .top-rail{
      padding-left: 16px;
    }
  }
.main-stack{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.main-stack{
    --curve-soft: 10px;
    --ink-dark: #e4dccd;
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 64px 20px 72px;
  }
.main-stack .offer-frame{max-width: 920px;
    margin: 0 auto;}
.main-stack .primary-content{border-bottom: 1px solid var(--ink-dark);
    padding-bottom: 24px;
    margin-bottom: 32px;}
.main-stack .bottom-headline{font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b6558;
    margin: 0 0 14px;}
.main-stack h1{font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 12px;}
.main-stack .page-summary{font-size: 1.1rem;
    color: #4a463d;
    margin: 0;}
.main-stack .plain-service{font-size: 1.08rem;
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 68ch;}
.main-stack .wide-menu{display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 48px;
    align-items: start;}
.main-stack .open-items h2{font-size: 1.3rem;
    line-height: 1.35;
    margin: 32px 0 12px;}
.main-stack .open-items h2:first-child{margin-top: 0;}
.main-stack .open-items p{font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 18px;}
.main-stack .compact-body{
    background: var(--paint-muted);
    color: var(--tone-clear);
    border-radius: var(--curve-soft);
    padding: 22px 20px;
  }
.main-stack .compact-body h3{font-size: 1rem;
    margin: 0 0 12px;}
.main-stack .compact-body p{font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 12px;}
.main-stack .compact-body .content-contact{margin: 0;
    padding-top: 12px;
    border-top: 1px solid #ddd4c2;
    font-size: 0.88rem;}
.main-stack .post-foot{margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--ink-dark);}
.main-stack .post-related{font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b6558;
    margin: 0 0 12px;}
.main-stack .read-more{list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;}
.main-stack .read-more a{color:inherit;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;}
.main-stack .read-more a:hover{border-bottom-color: #0f8f8a;}
@media (max-width: 720px) {.main-stack{
      padding: 48px 18px 56px;
    }.main-stack .wide-menu{
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }
.main-stack{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
  padding: 4rem 1.5rem 5rem;
}
.main-stack .offer-frame{max-width: 720px;
  margin: 0 auto;}
.main-stack .narrow-actions{margin-bottom: 2.5rem;}
.main-stack .active-nav{font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tone-clear, #6b6459);
  margin: 0 0 0.9rem;}
.main-stack h1{font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.25;
  margin: 0 0 0.9rem;}
.main-stack .bar{font-size: 1.05rem;
  color: var(--tone-clear, #6b6459);
  margin: 0;}
.main-stack .plain-copy p{font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 1.4rem;}
.main-stack .clear-body{display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin: 2.5rem 0 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--surface-clear, #e4dccd);}
.main-stack .primary-figure{
  background: var(--paint-muted, #f2ece0);
  color: var(--tone-clear, #3a3730);
  padding: 1.2rem 1.3rem;
  border-radius: 6px;
  border-left: 3px solid #0f8f8a;
}
.main-stack .primary-figure h3{font-size: 1rem;
  margin: 0 0 0.5rem;}
.main-stack .primary-figure p{font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;}
.main-stack .featured-stack{margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-clear, #e4dccd);}
.main-stack .featured-stack p{font-size: 0.95rem;
  color: var(--tone-clear, #6b6459);
  margin: 0 0 0.6rem;}
.main-stack .featured-stack a{color:inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: 1rem;}
.main-stack .featured-stack a:hover{color:inherit;}
@media (min-width: 640px) {.main-stack .clear-body{
    grid-template-columns: 1fr 1fr;
  }
}
.team-unit{
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 3.5rem;
  }
.team-unit .offer-frame{max-width: 62rem;
    margin: 0 auto;
    border-left: 3px solid #0f8f8a;
    padding-left: 1.75rem;}
.team-unit h1{font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;
    font-weight: 700;}
.team-unit .plain-service{max-width: 46rem;
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;}
@media (max-width: 640px) {.team-unit{
      padding: 3rem 1.25rem 2.5rem;
    }.team-unit .offer-frame{
      padding-left: 1.1rem;
    }
  }
.clear-shell{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem 5rem;
  }
.clear-shell .offer-frame{max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 3.5rem 4rem;
    align-items: start;}
.clear-shell .plain-service h2{font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;}
.clear-shell .plain-service p{margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 46ch;}
.clear-shell .site-lead{display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    padding-top: 0.4rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.clear-shell .contact-list{padding-top: 1.4rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);}
.clear-shell .contact-list:first-child,
  .clear-shell .contact-list:nth-child(2){border-top: none;
    padding-top: 0.6rem;}
.clear-shell .contact-list h3{font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.6rem;color:inherit;
    font-weight: 600;}
.clear-shell .contact-list p{margin: 0 0 0.45rem;
    font-size: 0.98rem;
    line-height: 1.55;}
.clear-shell .contact-list a{color: var(--surface-inverse);
    text-decoration: none;
    border-bottom: 1px solid #c25a34;
    padding-bottom: 1px;}
.clear-shell .contact-list a:hover{color:inherit;}
.clear-shell .contact-list .primary-figure{font-size: 0.86rem;
    line-height: 1.5;
    color: var(--tone-clear, #3a3730);
    opacity: 0.85;
    margin-bottom: 0;}
.clear-shell .local-surface{grid-column: 1 / -1;
    margin: 0;
    padding-top: 1.6rem;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 62ch;}
@media (max-width: 820px) {.clear-shell{
      padding: 3rem 1.25rem 3.5rem;
    }.clear-shell .offer-frame{
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }.clear-shell .site-lead{
      grid-template-columns: 1fr;
      gap: 1.4rem;
    }.clear-shell .contact-list:first-child,
    .clear-shell .contact-list:nth-child(2){
      border-top: 1px solid var(--surface-clear, #e4dccd);
      padding-top: 1.4rem;
    }.clear-shell .contact-list:first-child{
      border-top: none;
      padding-top: 0.6rem;
    }
  }
.clear-shell{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.top-media{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4rem 1.5rem;
  }
.top-media .offer-frame{max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;}
.top-media .open-stack h2{font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 0.9rem;}
.top-media .open-stack p{max-width: 62ch;
    line-height: 1.65;
    margin: 0;}
.top-media .text-form{display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-clear);}
.top-media .simple-note{min-width: 200px;
    flex: 1 1 220px;}
.top-media .content-unit{display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;}
.top-media .simple-note p{margin: 0;
    line-height: 1.5;}
.top-media .simple-note a{text-decoration: none;
    border-bottom: 1px solid var(--tone-extra-36);}
.top-media .simple-note a:hover{border-color: var(--tone-extra-38);}
.top-media .site-media{
    background: var(--paint-muted);
    color: var(--tone-clear);
    padding: 1.8rem 2rem;
    border-radius: 6px;
  }
.top-media .site-media h3{margin: 0 0 0.7rem;
    font-size: 1.2rem;}
.top-media .site-media p{margin: 0;
    line-height: 1.65;
    max-width: 68ch;}
.top-media .site-media a{text-decoration: none;
    border-bottom: 1px solid var(--tone-extra-36);}
.top-media .site-media a:hover{border-color: var(--tone-extra-38);}
@media (max-width: 640px) {.top-media{
      padding: 3rem 1.2rem;
    }.top-media .open-stack h2{
      font-size: 1.55rem;
    }.top-media .site-media{
      padding: 1.4rem 1.3rem;
    }
  }
.top-media{
  background: var(--ink-main);
  color: var(--ink-card);
}
.main-shell{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem 5rem;
  }
.main-shell .offer-frame{max-width: 1040px;
    margin: 0 auto;}
.main-shell h2{font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.main-shell .plain-service{max-width: 62ch;
    margin: 0 0 2.5rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--tone-clear);}
.main-shell .plain-copy{display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
    border-top: 1px solid var(--surface-clear);
    padding-top: 2.5rem;}
.main-shell .compact-surface p{margin: 0 0 1.1rem;
    line-height: 1.65;
    font-size: 0.98rem;}
.main-shell .clear-body{list-style: none;
    margin: 1.6rem 0 1.6rem;
    padding: 0;}
.main-shell .clear-body li{position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--tone-clear);}
.main-shell .clear-body li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: #c25a34;color:#ffffff;}
.main-shell .text-team{margin-top: 1.6rem;
    font-size: 0.95rem;
    line-height: 1.6;}
.main-shell .text-team a{color:inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;}
.main-shell .text-team a:hover{color: #0b6f6b;}
.main-shell .text-view{display: flex;
    flex-direction: column;
    gap: 1.25rem;}
.main-shell .featured-media{display: flex;
    flex-direction: column;
    gap: 0.5rem;}
.main-shell label{font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;}
.main-shell input,
  .main-shell textarea{
    font: inherit;
    color: var(--surface-inverse);
    background: var(--paint-inverse);
    border: 1px solid var(--surface-clear);
    border-radius: 4px;
    padding: 0.75rem 0.85rem;
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
  }
.main-shell input:focus,
  .main-shell textarea:focus{outline: 2px solid #0f8f8a;
    outline-offset: 1px;
    border-color: #0f8f8a;}
.main-shell textarea{resize: vertical;
    min-height: 110px;}
.main-shell button{
    align-self: flex-start;
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #ffffff;
    background: #0f8f8a;
    border: none;
    border-radius: 4px;
    padding: 0.85rem 1.6rem;
    cursor: pointer;
  }
.main-shell button:hover{
    background: #0b6f6b;color:var(--ink-base);}
@media (max-width: 760px) {.main-shell{
      padding: 3rem 1.15rem 3.5rem;
    }.main-shell .plain-copy{
      grid-template-columns: 1fr;
      gap: 2.25rem;
    }
  }
.main-shell{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.bottom-lead{
    --field-extra-42: #e4dccd;
    --mark-strong: #f2ece0;
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4rem 1.5rem 5rem;
  }
.bottom-lead .offer-frame{max-width: 760px;
    margin: 0 auto;}
.bottom-lead .narrow-actions{padding-bottom: 2rem;
    border-bottom: 1px solid var(--field-extra-42);}
.bottom-lead h1{font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.bottom-lead .plain-service{font-size: 1.05rem;
    line-height: 1.7;
    color: var(--tone-clear);
    margin: 0;}
.bottom-lead .clear-body{margin-top: 2.5rem;}
.bottom-lead .primary-figure{padding: 1.75rem 0;
    border-bottom: 1px solid var(--field-extra-42);}
.bottom-lead .primary-figure:last-child{border-bottom: none;}
.bottom-lead .primary-figure h2{font-size: 1.15rem;
    line-height: 1.35;
    margin: 0 0 0.75rem;color:inherit;}
.bottom-lead .primary-figure p{font-size: 0.98rem;
    line-height: 1.75;
    margin: 0 0 0.6rem;}
.bottom-lead .primary-figure p:last-child{margin-bottom: 0;}
.bottom-lead .primary-figure a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.bottom-lead .primary-figure a:hover{color: var(--line-inverse, #a8481f);}
.bottom-lead .active-surface{font-size: 0.85rem;
    color: var(--tone-clear);
    letter-spacing: 0.02em;}
.bottom-lead .local-surface{
    margin: 2.5rem 0 0;
    padding: 1.25rem 1.5rem;
    background: var(--paint-muted);
    color: var(--tone-clear);
    font-size: 0.95rem;
    line-height: 1.7;
    border-left: 3px solid #0f8f8a;
  }
@media (max-width: 560px) {.bottom-lead{
      padding: 3rem 1.1rem 3.5rem;
    }.bottom-lead .primary-figure{
      padding: 1.4rem 0;
    }
  }
.bottom-lead{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.service-brand{
    --field-extra-42: #e4dccd;
    --line-cool: #3a3730;
    background: var(--tone-extra-33, #fdfaf4);
    color: var(--surface-inverse, #211f1b);
    padding: 4.5rem 1.5rem 5rem;
  }
.service-brand .offer-frame{max-width: 760px;
    margin: 0 auto;}
.service-brand .open-stack h2{font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.2rem);
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;}
.service-brand .open-stack .plain-service{font-size: 1.05rem;
    line-height: 1.7;
    color: var(--line-cool);
    margin: 0 0 2.5rem;
    max-width: 62ch;}
.service-brand .clear-body{display: flex;
    flex-direction: column;}
.service-brand .primary-figure{padding: 1.6rem 0;
    border-top: 1px solid var(--field-extra-42);}
.service-brand .primary-figure:last-child{border-bottom: 1px solid var(--field-extra-42);}
.service-brand .primary-figure h3{font-size: 1.05rem;
    margin: 0 0 0.55rem;
    letter-spacing: 0.01em;}
.service-brand .primary-figure p{margin: 0;
    line-height: 1.72;
    color: var(--line-cool);
    max-width: 68ch;}
.service-brand .public-feature{margin: 2.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--line-cool);
    max-width: 68ch;}
.service-brand .public-feature a{color:inherit;
    text-decoration: underline;
    text-underline-offset: 3px;}
.service-brand .public-feature a:hover{color: #0b6f6b;}
@media (max-width: 560px) {.service-brand{
      padding: 3rem 1.1rem 3.5rem;
    }.service-brand .primary-figure{
      padding: 1.3rem 0;
    }
  }
.service-brand{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
.team-unit{
    background: linear-gradient(135deg, #fdfaf4 0%, #f2ece0 55%, #e6f2ef 100%);
    color: #211f1b;
    padding: 5.5rem 1.5rem 4.5rem;
  }
.team-unit .offer-frame{max-width: 640px;
    margin: 0 auto;}
.team-unit h1{font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    line-height: 1.2;
    margin: 0 0 1.1rem;}
.team-unit .plain-service{font-size: 1.08rem;
    line-height: 1.65;
    margin: 0 0 1rem;}
.team-unit .primary-figure{font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    color: #3a3730;
    border-top: 1px solid #e4dccd;
    padding-top: 1rem;}
.content-nav{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 72px 24px 88px;
  }
.content-nav .offer-frame{max-width: 860px;
    margin: 0 auto;}
.content-nav .primary-figure{max-width: 640px;
    margin-bottom: 56px;}
.content-nav .primary-figure h1{font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 18px;
    font-weight: 700;
    letter-spacing: -0.01em;}
.content-nav .primary-figure p{font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;}
.content-nav .direct-note{display: flex;
    flex-direction: column;
    gap: 28px;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    padding-top: 36px;
    margin-bottom: 56px;}
.content-nav .open-view{display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: baseline;}
.content-nav .open-view h3{font-size: 1rem;
    margin: 0;
    font-weight: 700;}
.content-nav .open-view p{margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;}
.content-nav .quiet-benefit{
    background: var(--paint-muted, #f2ece0);
    color: var(--tone-clear, #3a3730);
    padding: 28px 32px;
    border-radius: 6px;
    margin-bottom: 40px;
  }
.content-nav .quiet-benefit p{margin: 0 0 8px;
    font-size: 0.98rem;
    line-height: 1.55;}
.content-nav .quiet-benefit p:last-child{margin-bottom: 0;}
.content-nav .quiet-benefit .open-inner a{text-decoration: none;
    border-bottom: 1px solid currentColor;}
.content-nav .quiet-benefit .open-inner a:hover{}
.content-nav .plain-callout{font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;}
.content-nav .plain-callout a{text-decoration: none;
    border-bottom: 1px solid currentColor;}
.content-nav .plain-callout a:hover{}
@media (max-width: 640px) {.content-nav{
      padding: 48px 20px 64px;
    }.content-nav .primary-figure h1{
      font-size: 1.55rem;
    }.content-nav .open-view{
      grid-template-columns: 1fr;
      gap: 6px;
    }.content-nav .quiet-benefit{
      padding: 22px 20px;
    }
  }
.content-nav{
  background: var(--ink-main);
  color: var(--ink-card);
}
.compact-stack{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.5rem 5rem;
  }
.compact-stack .offer-frame{max-width: 640px;
    margin: 0 auto;}
.compact-stack h2{font-size: 1.85rem;
    line-height: 1.25;
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;}
.compact-stack .plain-service{font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 1rem;}
.compact-stack .primary-figure{font-size: 0.98rem;
    line-height: 1.6;
    color: var(--tone-clear);
    margin: 0 0 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--surface-clear);}
.compact-stack .top-rail{display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;}
.compact-stack .go{
    display: inline-block;
    background: var(--tone-extra-36);
    color: var(--paint-secondary);
    padding: 0.85rem 1.6rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    transition: background 0.2s ease;
  }
.compact-stack .go:hover{
    background: var(--tone-extra-38);color:var(--ink-base);}
.compact-stack .narrow-fields{color:inherit;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;}
.compact-stack .narrow-fields:hover{border-bottom-color: #c25a34;}
.404{
    background: var(--tone-extra-33);
    color: var(--surface-inverse);
    padding: 4.5rem 1.25rem 5rem;
  }
.404 .offer-frame{
    max-width: 640px;
    margin: 0 auto;
  }
.404 h1{
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
  }
.404 .plain-service{
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 52ch;
  }
.404 .top-rail{
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--surface-clear, #e4dccd);
    border-bottom: 1px solid var(--surface-clear, #e4dccd);
    margin-bottom: 1.75rem;
  }
.404 .go{
    display: inline-block;
    padding: 0.7rem 1.35rem;
    border-radius: 6px;
    background: var(--tone-extra-36, #0f8f8a);
    color: var(--paint-secondary, #ffffff);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.2;
    transition: background 0.18s ease;
  }
.404 .go:hover{
    background: var(--tone-extra-38, #0b6f6b);color:var(--ink-base);}
.404 .go.alt{
    background: transparent;
    color: #c25a34;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #c25a34;
    border-radius: 0;
  }
.404 .go.alt:hover{
    background: transparent;
    color: #a8481f;
    border-bottom-color: #a8481f;
  }
.404 .primary-figure{
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    color: var(--tone-clear, #3a3730);
  }
.404 .primary-figure a{
    color: #c25a34;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
  }
.404 .primary-figure a:hover{
    color: #a8481f;
  }
@media (max-width: 520px) {.404{
      padding: 3rem 1rem 3.5rem;
    }.404 .top-rail{
      flex-direction: column;
      align-items: flex-start;
    }
  }
.404{
  background: var(--tone-extra-33);
  color: var(--surface-inverse);
}
