:root {
  --trivet-ink: #182331;
  --trivet-blue: #3f5f87;
  --trivet-blue-dark: #263f5f;
  --trivet-mint: #2f8f83;
  --trivet-coral: #c9674b;
  --trivet-warm: #f7f4ef;
  --trivet-line: rgba(24, 35, 49, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body.service-page { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--trivet-warm); color: var(--trivet-ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
body.service-page a { color: inherit; }
body.service-page main { min-width: 0; }
img { height: auto; max-width: 100%; }
.skip-link { background: #fff; border-radius: 8px; box-shadow: 0 14px 34px rgba(24,35,49,.18); font-weight: 800; left: 1rem; padding: .75rem 1rem; position: fixed; top: 1rem; transform: translateY(-140%); z-index: 50; }
.skip-link:focus { transform: translateY(0); }
.service-header { align-items: center; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--trivet-line); display: flex; gap: 1rem; justify-content: space-between; padding: .7rem max(1rem, calc((100vw - 1180px) / 2)); position: sticky; top: 0; width: 100%; z-index: 30; }
.service-top-nav { align-items: center; display: flex; flex: 1 1 auto; gap: clamp(.65rem, 1.2vw, 1.2rem); justify-content: center; min-width: 0; font-size: .92rem; font-weight: 800; }
.service-top-nav a { text-decoration: none; }
.service-top-nav a:hover, .service-top-nav a:focus-visible { color: var(--trivet-blue); }
.service-phone { background: var(--trivet-blue); border-radius: 999px; box-shadow: 0 10px 24px rgba(63,95,135,.22); color: #fff !important; font-weight: 900; padding: .64rem 1rem; text-decoration: none; white-space: nowrap; }
.service-site-header { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--trivet-line); position: sticky; top: 0; width: 100%; z-index: 30; }
.service-topbar { align-items: center; background: var(--trivet-blue-dark); color: #fff; display: flex; flex-wrap: wrap; gap: .45rem 1rem; font-size: .86rem; justify-content: center; min-height: 34px; padding: .35rem 1rem; }
.service-topbar a { font-weight: 900; text-decoration: none; }
.service-nav { align-items: center; display: flex; gap: 1rem; justify-content: space-between; margin: 0 auto; max-width: 1180px; min-width: 0; padding: .7rem 1rem; }
.service-brand { align-items: center; display: inline-flex; flex: 0 1 auto; gap: .7rem; min-width: 0; text-decoration: none; }
.service-brand img { border-radius: 10px; box-shadow: 0 8px 20px rgba(24,35,49,.12); }
.service-brand span { min-width: 0; }
.service-brand strong { display: block; font-family: Georgia, serif; font-size: 1.22rem; line-height: 1; }
.service-brand small { color: #5d6876; display: block; font-size: .72rem; font-weight: 900; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.service-brand strong,
.service-brand small { overflow-wrap: anywhere; }
.service-nav-links { align-items: center; display: flex; flex: 1 1 auto; gap: clamp(.65rem, 1.2vw, 1.2rem); justify-content: center; min-width: 0; font-size: .92rem; font-weight: 800; }
.service-nav-links a { text-decoration: none; }
.service-nav-links a:hover, .service-nav-links a:focus-visible { color: var(--trivet-blue); }
.service-nav-cta, .service-button.primary { background: var(--trivet-blue); color: #fff !important; }
.service-nav-cta { border-radius: 999px; box-shadow: 0 10px 24px rgba(63,95,135,.22); padding: .64rem 1rem; }
.service-menu-toggle,
.service-mobile-menu-backdrop,
.service-mobile-menu { display: none; }

.service-menu-toggle {
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-menu-toggle span,
.service-menu-toggle::before,
.service-menu-toggle::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: opacity .18s ease, transform .18s ease;
  width: 18px;
}

.service-menu-toggle::before { transform: translateY(-6px); }
.service-menu-toggle::after { transform: translateY(6px); }

.service-mobile-menu-head {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.service-mobile-menu-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
}

.service-mobile-menu-subtitle {
  color: #647081;
  display: block;
  font-size: .85rem;
  font-weight: 750;
  margin-top: .2rem;
}

.service-mobile-menu-close {
  align-items: center;
  background: #f5f8fb;
  border: 1px solid rgba(24, 35, 49, .1);
  border-radius: 8px;
  color: var(--trivet-ink);
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.service-mobile-menu-links {
  display: grid;
  gap: .38rem;
}

.service-mobile-menu a {
  border-radius: 8px;
  font-weight: 850;
  padding: .82rem 1rem;
  text-decoration: none;
}

.service-mobile-menu a:hover,
.service-mobile-menu a:focus-visible { background: #edf6f4; }

.service-mobile-menu-actions {
  border-top: 1px solid rgba(24, 35, 49, .1);
  display: grid;
  gap: .65rem;
  margin-top: auto;
  padding-top: 1rem;
}

.service-mobile-menu-call,
.service-mobile-menu-appointment {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: .76rem 1rem;
  text-align: center;
  text-decoration: none;
}

.service-mobile-menu-call {
  background: #edf6f4;
  color: var(--trivet-blue-dark);
}

.service-mobile-menu-appointment {
  background: var(--trivet-blue);
  color: #fff !important;
}
.service-hero { background: linear-gradient(135deg, #f7f4ef 0%, #edf6f4 100%); display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: minmax(0, 1fr) minmax(320px, min(42vw, 520px)); margin: 0 auto; max-width: 1240px; min-height: 620px; padding: clamp(2rem, 5vw, 4.8rem) 1rem; width: 100%; }
.service-hero-copy { align-self: center; max-width: 760px; min-width: 0; }
.service-breadcrumb { align-items: center; color: #5f6c78; display: flex; flex-wrap: wrap; font-size: .88rem; gap: .45rem; margin-bottom: 1.2rem; min-width: 0; overflow-wrap: anywhere; }
.service-breadcrumb a { font-weight: 800; text-decoration: none; }
.service-hero-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1rem; }
.service-hero-badges span, .service-status { background: rgba(63,95,135,.1); border: 1px solid rgba(63,95,135,.18); border-radius: 999px; color: var(--trivet-blue-dark); display: inline-flex; font-size: .82rem; font-weight: 900; padding: .42rem .75rem; }
.service-status.soon { background: #fff4e8; border-color: rgba(201,103,75,.25); color: #93452d; }
.service-hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.35rem, 5vw, 4.7rem); line-height: 1.02; margin: 0 0 1.2rem; max-width: 820px; overflow-wrap: anywhere; }
.service-hero p { color: #4f5e6d; font-size: clamp(1.05rem, 2vw, 1.24rem); margin: 0 0 1.4rem; max-width: 740px; overflow-wrap: anywhere; }
.service-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.35rem; min-width: 0; }
.service-button { align-items: center; border: 1px solid rgba(63,95,135,.2); border-radius: 999px; display: inline-flex; font-weight: 900; max-width: 100%; min-height: 46px; padding: .78rem 1.1rem; text-decoration: none; white-space: normal; }
.service-button.secondary { background: #fff; color: var(--trivet-blue-dark); }
.service-hero-image { align-self: center; border-radius: 8px; margin: 0; min-width: 0; overflow: hidden; box-shadow: 0 24px 60px rgba(24,35,49,.16); }
.service-hero-image img { aspect-ratio: 1672 / 941; display: block; object-fit: cover; width: 100%; }
.service-layout { align-items: start; display: grid; gap: clamp(1.1rem, 2.4vw, 2rem); grid-template-columns: minmax(0, 820px) minmax(260px, 300px); margin: 0 auto; max-width: 1180px; min-width: 0; padding: 3rem 1rem 4.5rem; width: 100%; }
.service-article { min-width: 0; }
.service-section { background: #fff; border: 1px solid var(--trivet-line); border-radius: 8px; box-shadow: 0 16px 42px rgba(24,35,49,.06); margin-bottom: 1rem; overflow-wrap: anywhere; padding: clamp(1.25rem, 3vw, 2rem); scroll-margin-top: 130px; }
.service-section h2 { color: var(--trivet-ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.16; margin: 0 0 1rem; overflow-wrap: anywhere; }
.service-section h3 { font-size: 1.08rem; margin: 1.35rem 0 .6rem; overflow-wrap: anywhere; }
.service-section p { color: #3f4f5f; margin: 0 0 1rem; }
.service-section p:last-child { margin-bottom: 0; }
.service-brief { border-left: 5px solid var(--trivet-mint); }
.service-bullets, .service-checklist { display: grid; gap: .7rem; list-style: none; margin: 0; padding: 0; }
.service-bullets li, .service-checklist li { background: #f8faf9; border: 1px solid rgba(24,35,49,.08); border-radius: 8px; padding: .82rem 1rem .82rem 2.6rem; position: relative; }
.service-bullets li::before, .service-checklist li::before { background: var(--trivet-mint); border-radius: 999px; color: #fff; content: "✓"; font-size: .8rem; font-weight: 900; height: 1.25rem; left: .85rem; line-height: 1.25rem; position: absolute; text-align: center; top: .95rem; width: 1.25rem; }
.service-warning { background: #fff8f5; border-color: rgba(201,103,75,.3); }
.service-warning h2 { color: #8a3c27; }
.service-faq-list { display: grid; gap: .7rem; }
.service-faq-item { background: #f8faf9; border: 1px solid rgba(24,35,49,.09); border-radius: 8px; padding: 0; }
.service-faq-item summary { cursor: pointer; font-weight: 900; list-style: none; padding: 1rem 1.1rem; }
.service-faq-item summary::-webkit-details-marker { display: none; }
.service-faq-item p { border-top: 1px solid rgba(24,35,49,.08); padding: 1rem 1.1rem; }
.service-related-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.service-related-links a, .service-related-links span { background: #edf6f4; border: 1px solid rgba(47,143,131,.18); border-radius: 999px; color: var(--trivet-blue-dark); font-weight: 850; padding: .56rem .82rem; text-decoration: none; }
.service-cta-block { background: #f5f9fc; border-color: rgba(63,95,135,.22); }
.service-disclaimer { background: #fff8f5; border-color: rgba(201,103,75,.24); }
.service-disclaimer h2 { color: #8a3c27; }
.service-disclaimer a { color: var(--trivet-blue-dark); font-weight: 900; }
.service-exact-source { overflow-wrap: anywhere; }
.service-exact-text { color: var(--trivet-ink); font-family: inherit; font-size: 1rem; line-height: 1.78; margin: 0; white-space: pre-wrap; }
.service-sidebar { display: grid; gap: 1rem; min-width: 0; position: sticky; top: 116px; }
.service-side-panel { background: #fff; border: 1px solid var(--trivet-line); border-radius: 8px; box-shadow: 0 16px 42px rgba(24,35,49,.06); padding: 1rem; }
.service-side-panel h2 { font-family: Georgia, serif; font-size: 1.18rem; margin: 0 0 .75rem; }
.service-side-panel nav { display: grid; gap: .2rem; }
.service-side-panel nav a { border-radius: 7px; color: #4f5e6d; font-size: .9rem; font-weight: 800; padding: .46rem .55rem; text-decoration: none; }
.service-side-panel nav a:hover, .service-side-panel nav a:focus-visible { background: #edf6f4; color: var(--trivet-blue-dark); }
.service-side-panel.contact a { color: var(--trivet-blue-dark); display: block; font-weight: 900; margin: .5rem 0; text-decoration: none; }
.service-side-panel small { color: #647081; display: block; }
.service-footer { align-items: center; background: var(--trivet-blue-dark); color: #fff; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding: 2rem max(1rem, calc((100vw - 1180px) / 2)); }
.service-footer p { margin: .25rem 0 0; opacity: .86; }
.service-footer a { display: inline-flex; font-weight: 850; margin-left: 1rem; text-decoration: none; }
.service-legal-links { align-items: center; border-top: 1px solid rgba(255,255,255,.18); display: flex; flex-basis: 100%; flex-wrap: wrap; gap: .75rem 1rem; justify-content: center; margin-top: .75rem; padding-top: .9rem; width: 100%; }
.service-legal-links a { color: inherit; font-size: .88rem; font-weight: 850; margin-left: 0; opacity: .92; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.service-legal-links a:hover, .service-legal-links a:focus-visible { opacity: 1; }
.trivet-service-directory { background: #fff; border-top: 1px solid rgba(24,35,49,.08); color: var(--trivet-ink); padding: 4rem 1rem; }
.trivet-service-directory-inner { margin: 0 auto; max-width: 1180px; }
.trivet-service-directory h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; margin: 0 0 1rem; }
.trivet-service-directory p { color: #5c6875; max-width: 760px; }
.trivet-service-directory-grid { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); margin-top: 1.8rem; }
.trivet-service-directory-card { background: #f8faf9; border: 1px solid rgba(24,35,49,.09); border-radius: 8px; display: grid; gap: .45rem; padding: 1rem; text-decoration: none; }
.trivet-service-directory-card strong { color: var(--trivet-ink); font-size: 1rem; }
.trivet-service-directory-card span { color: var(--trivet-blue); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.trivet-service-directory-card small { color: #607080; font-size: .86rem; line-height: 1.5; }
.trivet-service-directory-card:hover, .trivet-service-directory-card:focus-visible { border-color: rgba(47,143,131,.38); box-shadow: 0 16px 34px rgba(24,35,49,.09); transform: translateY(-1px); }
:focus-visible { outline: 3px solid rgba(47,143,131,.45); outline-offset: 3px; }
@media (max-width: 1120px) {
  .service-top-nav,
  .service-phone,
  .service-nav-links { display: none; }
  .service-header { gap: .8rem; padding: .7rem 1rem; }
  .service-menu-toggle { background: rgba(255,255,255,.96); border: 1px solid rgba(24,35,49,.12); border-radius: 8px; box-shadow: 0 8px 22px rgba(24,35,49,.14); color: var(--trivet-ink); display: inline-flex; flex: 0 0 auto; font-size: 0; height: 42px; padding: 0; width: 42px; }
  body.service-mobile-menu-open { overflow: hidden; }
  body.service-mobile-menu-open .service-menu-toggle span { opacity: 0; }
  body.service-mobile-menu-open .service-menu-toggle::before { transform: rotate(45deg); }
  body.service-mobile-menu-open .service-menu-toggle::after { transform: rotate(-45deg); }
  .service-mobile-menu-backdrop { background: rgba(24,35,49,.44); border: 0; display: block; inset: 0; opacity: 0; padding: 0; pointer-events: none; position: fixed; transition: opacity .2s ease; z-index: 58; }
  .service-mobile-menu-backdrop[hidden] { display: none; }
  body.service-mobile-menu-open .service-mobile-menu-backdrop { opacity: 1; pointer-events: auto; }
  .service-mobile-menu { background: #fff; border-left: 1px solid rgba(24,35,49,.12); box-shadow: -18px 0 38px rgba(24,35,49,.2); color: var(--trivet-ink); display: flex; flex-direction: column; gap: 1rem; height: calc(var(--service-vh, 1vh) * 100); max-height: 100svh; max-width: min(330px, calc(100vw - 1.25rem)); overflow-y: auto; padding: 1.1rem; position: fixed; right: 0; top: 0; transform: translateX(105%); transition: transform .24s ease; width: 86vw; z-index: 59; }
  .service-mobile-menu[hidden] { display: none; }
  body.service-mobile-menu-open .service-mobile-menu { transform: translateX(0); }
  .service-hero { grid-template-columns: 1fr; min-height: auto; }
  .service-hero-image { max-width: 760px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-side-panel nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 681px) and (max-width: 1120px) {
  .service-hero { padding-bottom: clamp(2.2rem, 4vw, 3.5rem); padding-top: clamp(2.2rem, 4vw, 3.5rem); }
  .service-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-side-panel:first-child { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .service-topbar { font-size: .78rem; justify-content: flex-start; line-height: 1.35; min-height: auto; padding: .42rem 1rem; }
  .service-nav,
  .service-header { min-height: 64px; }
  .service-brand { gap: .5rem; max-width: calc(100% - 54px); }
  .service-brand img { height: 44px; width: 44px; }
  .service-brand strong { font-size: 1.05rem; }
  .service-brand small { letter-spacing: .1em; }
  .service-mobile-menu { max-width: 100vw; padding: 1rem; width: min(92vw, 330px); }
  .service-hero { gap: 1.25rem; padding-bottom: 1.8rem; padding-top: 1.45rem; }
  .service-hero h1 { font-size: clamp(2.1rem, 12vw, 3.2rem); }
  .service-hero p { font-size: 1rem; }
  .service-hero-image { border-radius: 0; box-shadow: none; margin-left: -1rem; margin-right: -1rem; max-width: none; }
  .service-actions, .service-button { width: 100%; }
  .service-button { justify-content: center; }
  .service-layout { padding-top: 1.2rem; }
  .service-section { border-radius: 0; margin-left: -1rem; margin-right: -1rem; }
  .service-bullets li,
  .service-checklist li { padding-right: .85rem; }
  .service-side-panel nav, .trivet-service-directory-grid { grid-template-columns: 1fr; }
  .service-footer { align-items: flex-start; flex-direction: column; }
  .service-footer a { margin: .4rem .8rem .2rem 0; }
  .service-legal-links { justify-content: flex-start; }
}
@media (max-width: 420px) {
  .service-brand small { font-size: .62rem; letter-spacing: .07em; }
  .service-hero h1 { font-size: clamp(1.9rem, 10.8vw, 2.65rem); }
  .service-section h2 { font-size: clamp(1.42rem, 8vw, 1.9rem); }
  .service-mobile-menu-title { font-size: 1.35rem; }
}
@media (orientation: landscape) and (max-height: 520px) and (max-width: 1120px) {
  .service-mobile-menu { gap: .7rem; padding-bottom: .75rem; padding-top: .75rem; }
  .service-mobile-menu-actions { margin-top: .25rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
