

.svc-hero {
  background: var(--paper-2);
  padding: clamp(48px, 7vw, 112px) 0 clamp(40px, 5vw, 80px);
  border-bottom: 1px solid var(--rule);
}

.crumbs {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--text-mute);
  margin-bottom: clamp(24px, 3vw, 40px);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs a {
  color: var(--text-mute);
  border-bottom: 1px solid transparent;
  transition: color 180ms, border-color 180ms;
}
.crumbs a:hover { color: var(--accent); border-color: var(--accent); }
.crumbs span:not(.sep) { color: var(--text); font-weight: 500; }
.crumbs .sep { color: var(--text-faint); }

.svc-h1 {
  font-family: var(--font-display);
  font-size: var(--t-h1);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.02;
  max-width: 18ch;
  margin: 0 0 clamp(20px, 2vw, 32px);
}
.svc-h1 em { color: var(--accent); font-style: normal; font-weight: 600; }

.svc-lead {
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 64ch;
  margin: 0 0 clamp(28px, 3vw, 40px);
}
.svc-lead strong { color: var(--text); font-weight: 500; }

.svc-lead-line { display: block; }
.svc-lead-line + .svc-lead-line { margin-top: .6em; }

.svc-meta {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  border-top: 1px solid var(--rule-2);
  padding-top: clamp(20px, 2vw, 32px);
  flex-wrap: wrap;
}
.svc-meta-cell { display: flex; flex-direction: column; gap: 4px; }
.svc-meta-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.svc-meta-val {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--text);
  font-feature-settings: "tnum";
}
.svc-meta-val small { font-size: .55em; color: var(--text-mute); margin-left: 4px; }

.svc-meta-asof {
  font-size: 13px;
  color: var(--text-on-ink-faint); 
  font-weight: 500;
  letter-spacing: .01em;
  margin-top: 3px;
  white-space: nowrap;
}

.svc-meta-price-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gilt);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.svc-meta-price-link:hover { color: var(--gilt-strong, var(--gilt)); }

.svc-body { padding: clamp(48px, 7vw, 112px) 0; }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }

.article-content {
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--text);
  max-width: 70ch;
}
.article-content > h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: clamp(40px, 5vw, 64px) 0 16px;
  color: var(--text);
}
.article-content > h2:first-child { margin-top: 0; }
.article-content > h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.article-content p { margin: 0 0 16px; text-wrap: pretty; }
.article-content p strong { color: var(--text); font-weight: 500; }
.article-content p.lead { font-size: 19px; line-height: 1.55; color: var(--text-mute); max-width: 60ch; }
.article-content p a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.article-content ul, .article-content ol {
  margin: 12px 0 16px;
  list-style: none;
  padding: 0;
  counter-reset: svc-step;
}
.article-content ul li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 16.5px;
}
.article-content ul li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--accent);
}
.article-content ol li {
  position: relative;
  padding: 8px 0 8px 44px;
  font-size: 16.5px;
  counter-increment: svc-step;
}
.article-content ol li::before {
  content: counter(svc-step, decimal);
  position: absolute;
  top: 10px;
  left: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-feature-settings: "tnum","lnum";
  color: var(--accent);
  letter-spacing: 0;
}

.inline-cta {
  margin: clamp(28px, 3vw, 44px) 0;
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.inline-cta p { margin: 0; font-size: 15.5px; color: var(--text-mute); flex: 1 1 280px; }
.inline-cta p strong { color: var(--text); font-weight: 500; }
.inline-cta .btn { flex: 0 0 auto; }

.svc-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--rule-2);
  border: 1px solid var(--rule-2);
  margin: 16px 0 24px;
}
.svc-pricing-cell {
  background: var(--paper-3);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 180px;
}
.svc-pricing-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.svc-pricing-val {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--text);
  font-feature-settings: "tnum";
}
.svc-pricing-val small { font-size: .55em; color: var(--text-mute); margin-left: 4px; }


.svc-aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.svc-aside-card {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 28px;
}
.svc-aside-card .eyebrow { color: var(--text-on-ink-mute); }
.svc-aside-card .eyebrow::before { background: var(--accent-on-ink); }
.svc-aside-h {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.015em;
  margin: 14px 0 18px;
  line-height: 1.15;
}
.svc-aside-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-on-ink-mute);
}
.svc-aside-list strong { color: var(--text-on-ink); font-weight: 500; }
.svc-aside-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}
.svc-aside-card .btn-primary {
  background: var(--accent-on-ink);
  color: var(--ink);
  border-color: var(--accent-on-ink);
}
.svc-aside-card .btn-primary:hover {
  background: var(--accent-on-ink-strong);
  border-color: var(--accent-on-ink-strong);
  color: var(--ink);
}
.svc-aside-trust {
  padding: 24px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.55;
}
.svc-aside-trust strong { color: var(--text); font-weight: 500; }
.svc-aside-trust a { color: var(--accent); border-bottom: 1px solid currentColor; }


.svc-related {
  background: var(--paper-2);
  padding: clamp(48px, 6vw, 96px) 0;
  border-top: 1px solid var(--rule);
}
.svc-related-h {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0 0 28px;
}
.svc-related-h em { color: var(--accent); font-style: normal; font-weight: 600; }
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.svc-related-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--text);
  transition: border-color 180ms, transform 180ms;
}
.svc-related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.svc-related-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.005em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.svc-related-card-price {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.svc-related-card-price b { color: var(--accent); font-weight: 500; }


.final-cta {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--accent-on-ink);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -.025em;
  margin: 0 0 16px;
  color: var(--text-on-ink);
}
.final-cta p {
  font-size: 16px;
  color: var(--text-on-ink-mute);
  max-width: 60ch;
  margin: 0 0 28px;
  line-height: 1.65;
}
.final-cta p strong { color: var(--text-on-ink); font-weight: 500; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-buttons .btn-primary {
  background: var(--accent-on-ink);
  color: var(--ink);
  border-color: var(--accent-on-ink);
}
.cta-buttons .btn-primary:hover {
  background: var(--accent-on-ink-strong);
  border-color: var(--accent-on-ink-strong);
  color: var(--ink);
}
.cta-buttons .btn-ghost { color: var(--text-on-ink); border-color: var(--rule-on-ink-2); }
.cta-buttons .btn-ghost:hover { color: var(--accent-on-ink); border-color: var(--accent-on-ink); }


.cat-hero {
  background: var(--paper-2);
  padding: clamp(48px, 7vw, 120px) 0 clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.cat-hero h1 {
  font-family: var(--font-display);
  font-size: var(--t-h1);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.02;
  max-width: 18ch;
  margin: 24px 0 24px;
}
.cat-hero h1 em { color: var(--accent); font-style: normal; font-weight: 600; }
.cat-list { padding: clamp(56px, 7vw, 112px) 0; }
.cat-block {
  padding: clamp(40px, 5vw, 72px) 0;
  border-top: 1px solid var(--rule);
}
.cat-block:last-child { border-bottom: 1px solid var(--rule); }
.cat-block-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  margin-bottom: clamp(20px, 3vw, 40px);
}
@media (max-width: 800px) { .cat-block-head { grid-template-columns: 1fr; gap: 16px; } }

.cat-plaque {
  margin: 0 0 clamp(20px, 2.6vw, 32px);
  max-width: min(360px, 100%);
  border-radius: var(--r-1, 2px);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 1px 2px rgba(15,28,24,.06);
}
.cat-plaque img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.cat-block-num {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 6px;
  font-feature-settings: "tnum","lnum";
}
.cat-block-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.cat-block-title em { color: var(--accent); font-style: normal; font-weight: 600; }
.cat-block-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 60ch;
}

.svc-index {
  list-style: none;
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(36px, 4vw, 72px);
}
.svc-index li { margin: 0; border-top: 1px solid var(--rule); }
.svc-index a {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0 13px 18px;
  color: var(--text);
  text-decoration: none;
  transition: color .18s ease;
}
.svc-index a::before {
  content: "·";
  position: absolute; left: 3px; top: 12px;
  color: var(--gilt-deep); font-weight: 700; font-size: 1.12em;
}
.svc-index-name { font-size: 16px; line-height: 1.35; }
.svc-index-price {
  flex: 0 0 auto;
  font-size: 13px; color: var(--text-mute);
  font-feature-settings: "tnum","lnum"; white-space: nowrap;
}
.svc-index-price b {
  font-family: var(--font-display); font-weight: 400;
  color: var(--text); font-size: 14.5px; margin-right: 1px;
}
.svc-index a:hover { color: var(--accent); }
.svc-index a:hover::before { color: var(--accent-strong); }
.svc-index a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 600px) { .svc-index { grid-template-columns: 1fr; } }


.sitemap-links {
  list-style: none;
  margin: clamp(20px, 2.2vw, 32px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 2px clamp(24px, 3vw, 56px);
}
.sitemap-links li { margin: 0; }
.sitemap-links a {
  position: relative;
  display: block;
  padding: 6px 0 6px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  transition: color .18s ease;
}
.sitemap-links a::before {
  content: "·";
  position: absolute;
  left: 3px;
  top: 6px;
  color: var(--gilt-deep);
  font-weight: 700;
  font-size: 1.12em;
}
.sitemap-links a:hover { color: var(--accent); }
.sitemap-links a:hover::before { color: var(--accent-strong); }
.sitemap-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 560px) { .sitemap-links { grid-template-columns: 1fr; } }


.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%; left: -16px; right: -16px; height: 12px;
  pointer-events: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after { pointer-events: auto; }

.nav-dropdown > .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -10px -28px -34px;
  z-index: -1;
}
.nav-dropdown > a::after {
  
  content: "";
  display: inline-block;
  width: 10px;
  height: 6px;
  margin-left: 7px;
  opacity: .5;
  vertical-align: 1px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 3.6L9 1' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 3.6L9 1' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 220ms;
  
  position: static;
  height: 6px;
  left: auto;
  right: auto;
  bottom: auto;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after { transform: rotate(180deg); opacity: 1; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 56px -28px rgba(0,0,0,.18), 0 4px 12px -4px rgba(0,0,0,.08);
  min-width: 940px;
  
  
  
  max-width: calc(100vw - 32px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  
  transition: opacity 180ms var(--ease-out) 120ms, transform 180ms var(--ease-out) 120ms, visibility 0s linear 300ms;
  visibility: hidden;
  z-index: 51;
}
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  
  transition: opacity 160ms var(--ease-out) 140ms, transform 160ms var(--ease-out) 140ms, visibility 0s linear 140ms;
  z-index: 52;
}
.nav-dropdown-col {
  padding: 16px 22px;
  border-right: 1px solid var(--rule);
}
.nav-dropdown-col:last-child { border-right: 0; }
.nav-dropdown-col .nav-col-label,
.nav-dropdown-col h4 {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  margin: 0 0 14px;
}
.nav-dropdown-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text) !important;   
  letter-spacing: 0;
  
  
  overflow-wrap: anywhere;
}
.nav-dropdown-col a::after { display: none; }
.nav-dropdown-col a:hover { opacity: 1; color: var(--accent) !important; }

.nav-dropdown-col a.nav-sub {
  position: relative;
  padding: 3px 0 3px 16px;
  font-size: 13px;
  color: var(--text-mute) !important;
}
.nav-dropdown-col a.nav-sub::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 7px;
  height: 1px;
  background: var(--gilt);
}
.nav-dropdown-col a.nav-sub:hover { color: var(--accent) !important; }
@media (max-width: 1240px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: 0;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0;
  }
  
  .nav-dropdown > .nav-dropdown-menu::before { display: none; }
  .nav-dropdown > a { pointer-events: none; opacity: .6; }
  .nav-dropdown-col {
    padding: 4px 0 12px 0;
    border-right: 0;
    border-bottom: 1px dashed var(--rule);
  }
  .nav-dropdown-col:last-child { border-bottom: 0; }
  .nav-dropdown-col .nav-col-label { margin-top: 8px; }
}


.purposes-band {
  padding: clamp(48px, 7vw, 96px) 0 clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--rule);
}
.purposes-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(28px, 3vw, 48px);
}
.purposes-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 8px 0 0;
}
.purposes-h2 em { color: var(--accent); font-style: normal; font-weight: 600; }
.purposes-intro {
  max-width: 42ch;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
}

.purpose-list { margin: 0; border-top: 1px solid var(--rule); }
.purpose-row {
  display: grid;
  grid-template-columns: 132px minmax(150px, 200px) 1fr auto;
  align-items: baseline;
  gap: clamp(16px, 2.4vw, 44px);
  padding: clamp(18px, 1.9vw, 26px) 4px;
  border-bottom: 1px solid var(--rule);
  color: var(--text);
  text-decoration: none;
}
.purpose-row-art {
  align-self: center;
  width: 132px; aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--r-1, 2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.35) inset,
              0 8px 18px -12px rgba(11,24,20,.35);
}
.purpose-row-art img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(.82);
  transition: filter .25s ease;
}
.purpose-row:hover .purpose-row-art img { filter: saturate(1); }
.purpose-row-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--text);
  transition: color .18s ease;
}
.purpose-row:hover .purpose-row-name { color: var(--accent); }
.purpose-row:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.purpose-row-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 58ch;
}
.purpose-row-price {
  font-size: 13.5px;
  color: var(--text-mute);
  white-space: nowrap;
  font-feature-settings: "tnum","lnum";
  text-align: right;
}
.purpose-row-price b {
  font-family: var(--font-display); font-weight: 400;
  color: var(--text); font-size: 16px; margin-right: 1px;
}
@media (max-width: 720px) {
  
  .purpose-row { grid-template-columns: 1fr auto; gap: 4px 14px; }
  .purpose-row-art { grid-column: 1 / -1; grid-row: 1; width: 100%; aspect-ratio: 5 / 2; margin-bottom: 8px; }
  .purpose-row-name { grid-column: 1; grid-row: 2; }
  .purpose-row-price { grid-column: 2; grid-row: 2; }
  .purpose-row-desc { grid-column: 1 / -1; grid-row: 3; }
}


.faq-section {
  background: var(--paper);
  padding: clamp(40px, 5vw, 72px) 0;
  border-top: 1px solid var(--rule);
}
.faq-section-h, .calc-section-h {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}
.faq-section-h em, .calc-section-h em { color: var(--accent); font-style: normal; font-weight: 600; }
.faq-answer ul, .faq-answer ol { margin: 10px 0 0; padding-left: 1.5em; }
.faq-answer ul { list-style: disc; }       
.faq-answer ol { list-style: decimal; }
.faq-answer li { margin: 4px 0; line-height: 1.6; padding-left: 4px; }
.faq-answer li::marker { color: var(--accent); font-weight: 600; }
.faq-answer > * + p { margin-top: .6rem; }
.faq-answer p:first-child { margin-top: 0; }


.otch { padding: clamp(40px, 5vw, 72px) 0; background: var(--paper); border-top: 1px solid var(--rule); }
.otch__eyebrow { margin: 0; font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--gilt-deep); font-weight: 600; }
.otch-section-h { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 36px); font-weight: 400; letter-spacing: -.02em; line-height: 1.14; margin: 14px 0 0; max-width: 20ch; text-wrap: balance; }
.otch-section-h em { color: var(--gilt-deep); font-style: normal; font-weight: 600; }
.otch__lead { margin-top: 16px; max-width: 58ch; font-size: clamp(16px, 1.9vw, 19px); color: var(--text-mute); }
.otch__lead p { margin: 0 0 6px; }

.otch__facts { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: baseline; font-size: clamp(15px, 1.7vw, 17px); color: var(--text-mute); }
.otch__facts .u { display: inline-flex; align-items: baseline; gap: .35em; white-space: nowrap; }
.otch__facts b { color: var(--ink); font-weight: 600; }
.otch__facts .sep { color: var(--gilt); font-weight: 700; margin: 0 .7em; }

.otch__hero { margin-top: clamp(28px, 4vw, 52px); background: var(--ink); border-radius: 2px; padding: clamp(22px, 3.4vw, 46px); display: grid; gap: clamp(24px, 3.4vw, 46px); grid-template-columns: 1.25fr 1fr; align-items: center; }
.otch__shot { display: block; width: 100%; padding: 0; border: 1px solid var(--gilt); border-radius: 2px; background: transparent; cursor: zoom-in; box-shadow: 0 18px 44px rgba(0,0,0,.34); }
.otch__shot img { display: block; width: 100%; height: auto; }
.otch__shot--doc { border-color: rgba(197,165,114,.5); background: rgba(255,255,255,.03); padding: clamp(10px, 1.6vw, 22px); }
.otch__cap { margin-top: 12px; font-size: 14px; color: var(--text-on-ink-faint); }
.otch__side { color: var(--paper); }
.otch__side .k { margin: 0; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: #E9D5A8; font-weight: 600; }
.otch__side h3 { font-family: var(--font-display); margin: 12px 0 0; font-size: clamp(21px, 2.5vw, 30px); font-weight: 400; line-height: 1.16; color: var(--paper); }
.otch__side h3 em { font-style: normal; color: #E9D5A8; }
.otch__side p { margin: 16px 0 0; font-size: clamp(15px, 1.7vw, 17px); line-height: 1.55; color: #D6DFD9; }
.otch__side .src { margin-top: 20px; font-size: 14px; color: var(--text-on-ink-faint); }
.otch__buttons { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }
.otch__side .btn-ghost--ink { color: var(--paper); border-color: rgba(233,213,168,.55); background: transparent; }
.otch__side .btn-ghost--ink:hover { background: rgba(233,213,168,.10); border-color: #E9D5A8; }


dialog.otch-pdf { border: 0; padding: 0; width: min(1100px, 94vw); max-width: none; background: transparent; }
dialog.otch-pdf::backdrop { background: rgba(20,33,29,.96); }
.otch-pdf__in { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 18px; height: 92vh; }
.otch-pdf__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--paper); font-size: 14px; letter-spacing: .06em; }
.otch-pdf__act { display: flex; align-items: center; gap: 16px; }
.otch-pdf__dl { font-size: 14px; letter-spacing: .06em; color: #E9D5A8; text-decoration: underline; text-underline-offset: 4px; }
.otch-pdf__x { padding: 0 6px; border: 0; background: transparent; color: var(--paper); font-size: 26px; line-height: 1; cursor: pointer; }
.otch-pdf__x:hover { color: #E9D5A8; }
.otch-pdf__frame { flex: 1 1 auto; width: 100%; border: 1px solid var(--gilt); border-radius: 2px; background: #fff; }
dialog.otch-pdf.is-loading .otch-pdf__in::after { content: "Загружаем образец отчёта…"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 15px; letter-spacing: .06em; color: #3A3A3A; }

@media (max-width: 900px) {
  .otch__hero { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .otch__facts .sep { margin: 0 .5em; }
}


.cat-band{
  position:relative; isolation:isolate; overflow:clip;
  border-radius:var(--r-1,2px);
  min-height:clamp(210px,28vh,320px);
  display:flex; align-items:flex-end;
  padding:clamp(16px,2.6vw,30px) clamp(18px,3.4vw,44px);
  container-type:inline-size;
  view-timeline-name:--cat-band; view-timeline-axis:block;
}
.cat-band__art{
  position:absolute; inset:0; z-index:-2; overflow:hidden; pointer-events:none;
  background:linear-gradient(160deg,#F7F7F4 0%,#F2F1EC 55%,#EBEBE6 100%);
}

.cat-band__art img{
  position:absolute; left:0; right:0; top:-9%; width:100%; height:118%;
  object-fit:cover; will-change:transform;
}
@keyframes catBandParallax{
  from{ transform:translate3d(0,-4.5%,0); }
  to  { transform:translate3d(0, 4.5%,0); }
}
@supports (animation-timeline:view()){
  .cat-band__art img{
    animation:catBandParallax linear both;
    animation-timeline:--cat-band;
    animation-range:cover 0% cover 100%;
  }
}

.cat-band__scrim{
  position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:
    linear-gradient(100deg, rgba(250,250,247,.94) 0%, rgba(250,250,247,.82) 32%, rgba(250,250,247,.42) 58%, rgba(250,250,247,.06) 78%, transparent 90%),
    linear-gradient(0deg, rgba(250,250,247,.66) 0%, rgba(250,250,247,.22) 38%, transparent 62%);
}

.cat-band::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px; z-index:0;
  background:linear-gradient(90deg,
    rgba(197,165,114,0) 0%, rgba(197,165,114,.5) 18%,
    rgba(197,165,114,.8) 50%, rgba(197,165,114,.5) 82%, rgba(197,165,114,0) 100%);
}
.cat-band__text{ position:relative; z-index:1; max-width:62ch; }
.cat-band__title{
  margin:0; font-size:clamp(26px,4.6cqi,44px); line-height:1.08;
  color:var(--ink); text-wrap:balance;
}
.cat-band__intro{
  margin:12px 0 0; font-size:clamp(14px,1.8cqi,17px); line-height:1.5;
  color:var(--text-mute,#5B6F68); max-width:58ch;
}
.cat-band__intro b{ font-weight:600; color:var(--ink); }

.cat-band + .svc-index{ margin-top:clamp(18px,2.6vw,28px); }
@media (max-width:720px){
  .cat-band{ min-height:clamp(180px,26vh,240px); }
  
  .cat-band__scrim{
    background:linear-gradient(180deg, rgba(250,250,247,.62) 0%, rgba(250,250,247,.86) 42%, rgba(250,250,247,.97) 100%);
  }
  .cat-band__intro{ font-size:15.5px; color:var(--text,#25332D); }
}

.svc-index.reveal li{
  opacity:0; transform:translateY(12px);
  transition:opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.svc-index.reveal.is-in li{ opacity:1; transform:none; }
.svc-index.reveal.is-in li:nth-child(2){ transition-delay:.04s }
.svc-index.reveal.is-in li:nth-child(3){ transition-delay:.08s }
.svc-index.reveal.is-in li:nth-child(4){ transition-delay:.12s }
.svc-index.reveal.is-in li:nth-child(5){ transition-delay:.16s }
.svc-index.reveal.is-in li:nth-child(6){ transition-delay:.20s }
.svc-index.reveal.is-in li:nth-child(7){ transition-delay:.24s }
.svc-index.reveal.is-in li:nth-child(8){ transition-delay:.28s }
.svc-index.reveal.is-in li:nth-child(9){ transition-delay:.32s }
.svc-index.reveal.is-in li:nth-child(10){ transition-delay:.36s }
.svc-index.reveal.is-in li:nth-child(11){ transition-delay:.40s }
.svc-index.reveal.is-in li:nth-child(12){ transition-delay:.44s }
.svc-index.reveal.is-in li:nth-child(13){ transition-delay:.48s }
.svc-index.reveal.is-in li:nth-child(14){ transition-delay:.52s }
@media (prefers-reduced-motion: reduce){
  .cat-band__art img{ animation:none!important; transform:none!important; }
  .svc-index.reveal li{ opacity:1!important; transform:none!important; transition:none!important; }
}


.nav-dropdown-menu .nav-menu-all{
  grid-column:1/-1;
  display:block;
  padding:10px 22px 12px;
  margin-bottom:4px;
  font-size:14px;
  font-weight:600;
  color:var(--gilt-deep) !important;
  border-bottom:1px solid var(--rule);
  overflow-wrap:anywhere;
}
.nav-dropdown-menu .nav-menu-all::after{ display:none; }
.nav-dropdown-menu .nav-menu-all:hover{ color:var(--accent) !important; }
@media (max-width:1240px){
  .nav-dropdown-menu .nav-menu-all{ padding:8px 0 10px; margin-bottom:2px; }
}


.cat-body{
  display:grid; grid-template-columns:1fr clamp(150px,17vw,230px);
  gap:clamp(18px,2.6vw,44px); align-items:center;
}
.cat-band + .cat-body{ margin-top:clamp(18px,2.6vw,28px); }
.cat-float{
  margin:0; pointer-events:none; user-select:none;
  display:flex; justify-content:center; align-items:center;
  filter:drop-shadow(0 20px 30px rgba(31,63,55,.16));
  animation:catFloat 7s ease-in-out infinite alternate;
}

.cat-float img{ max-width:100%; max-height:min(300px,30vh); width:auto; height:auto; display:block; }
@keyframes catFloat{
  from{ transform:translateY(-7px) rotate(-1.6deg); }
  to  { transform:translateY(8px) rotate(1.4deg); }
}
@media (max-width:1000px){
  .cat-body{ display:block; }
  .cat-float{ display:none; }
}
@media (prefers-reduced-motion:reduce){
  .cat-float{ animation:none; }
}


.cat-band__art img{ transition:scale .8s var(--ease-out); }
.cat-band:hover .cat-band__art img{ scale:1.025; }
.svc-index a{ transition:background-color .25s var(--ease-out), padding-left .25s var(--ease-out); }
.svc-index a:hover{ background:rgba(197,165,114,.09); padding-left:8px; }
.svc-index a:hover .svc-index-price b{ color:var(--gilt-deep); }
@media (prefers-reduced-motion:reduce){
  .cat-band__art img{ transition:none; }
  .cat-band:hover .cat-band__art img{ scale:none; }
  .svc-index a{ transition:none; }
}


@media (min-width:1241px){
  .nav-dropdown:not(.nav-dropdown--slim):not(.header-contact){ position:static; }
  .nav-dropdown:not(.nav-dropdown--slim):not(.header-contact)::after{ content:none; }
  .nav-dropdown:not(.nav-dropdown--slim):not(.header-contact) > .nav-dropdown-menu{
    left:50%; right:auto;
    top:calc(100% + 4px);
    transform:translate(-50%,-8px);
  }
  .nav-dropdown:not(.nav-dropdown--slim):not(.header-contact):hover > .nav-dropdown-menu,
  .nav-dropdown:not(.nav-dropdown--slim):not(.header-contact):focus-within > .nav-dropdown-menu{
    transform:translate(-50%,0);
  }
  .nav-dropdown:not(.nav-dropdown--slim):not(.header-contact) > .nav-dropdown-menu::before{
    inset:-40px -28px -34px;
  }
}
