*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden }
body { overflow-x: hidden }
a { color: var(--green); text-decoration: none }
a:hover { text-decoration: underline }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem }
header { border-bottom: 1px solid var(--border); padding: 1rem 0; background: var(--dark) }
header .inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem }
header .logo { font-weight: 700; font-size: 1.1rem; color: var(--heading) }
.header-actions { display:flex; align-items:center; justify-content:flex-end; gap:0.65rem; flex-wrap:wrap }
.header-cta { display:inline-flex; align-items:center; justify-content:center; min-height:42px; border-radius:8px; padding:0.58rem 0.95rem; font-size:0.9rem; font-weight:800; white-space:nowrap }
.header-cta.primary { background:var(--green); color:#0f1117 }
.header-cta.secondary { color:var(--heading); border:1px solid var(--border); background:var(--surface-strong) }
.header-cta:hover { opacity:0.9; text-decoration:none }
.header-cta.secondary:hover { opacity:1; border-color:var(--green); color:var(--green) }
.header-nav { display:flex; align-items:center; gap:0.25rem }
.header-nav a { color:var(--muted); font-size:0.88rem; font-weight:600; padding:0.4rem 0.65rem; border-radius:6px; white-space:nowrap; transition:color 0.15s,background 0.15s }
.header-nav a:hover { color:var(--heading); background:var(--surface-strong); text-decoration:none }
.nav-toggle { display:none }
.nav-hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; width:36px; height:36px; cursor:pointer; padding:6px; border-radius:6px; background:var(--surface-strong); border:1px solid var(--border) }
.nav-hamburger span { display:block; height:2px; background:var(--heading); border-radius:2px; transition:transform 0.2s,opacity 0.2s }
.nav-toggle:checked ~ .header-inner .nav-hamburger span:nth-child(1) { transform:translateY(7px) rotate(45deg) }
.nav-toggle:checked ~ .header-inner .nav-hamburger span:nth-child(2) { opacity:0 }
.nav-toggle:checked ~ .header-inner .nav-hamburger span:nth-child(3) { transform:translateY(-7px) rotate(-45deg) }
.nav-toggle:checked ~ .mobile-nav { display:flex }
.mobile-nav { display:none; flex-direction:column; gap:0.25rem; padding:0.75rem 0 1rem; border-top:1px solid var(--border) }
.mobile-nav a { color:var(--muted); font-size:0.95rem; font-weight:600; padding:0.6rem 0.5rem; border-radius:6px }
.mobile-nav a:hover { color:var(--heading); background:var(--surface-strong); text-decoration:none }
@media (max-width: 700px) {
  .header-nav { display:none }
  .nav-hamburger { display:flex }
  .header-cta.primary { font-size:0.82rem; padding:0.45rem 0.75rem; min-height:36px }
  .header-cta.secondary { display:none }
}
.hero { padding: 2rem 0 1.5rem }
.home-hero { position: relative; overflow: hidden }
.home-hero-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); gap: 3rem; align-items: center; padding-top: 5rem; padding-bottom: 3.75rem; position: relative; z-index: 1 }
.hero-bg::before { content: ''; position: absolute; inset: 0; background-image: var(--hero-img); background-size: cover; background-position: center; filter: brightness(0.3) saturate(0.6); z-index: 0 }
.hero-bg .label { color: var(--green) !important }
.hero-bg h1, .hero-bg .hero-panel-title { color: #fff !important }
.hero-bg p { color: rgba(255,255,255,0.8) !important }
.hero-bg a[href^="tel"] { color: #fff !important }
.hero-bg .hero-panel { background: rgba(0,0,0,0.35) !important; border-color: rgba(255,255,255,0.12) !important; backdrop-filter: blur(8px) }
.hero .label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.35rem); font-weight: 800; letter-spacing: 0; line-height: 1.05; color: var(--heading); margin-bottom: 1.25rem; max-width: 820px }
.home-hero-inner h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.05 }
.hero p { font-size: clamp(1rem, 1.7vw, 1.18rem); color: var(--muted); max-width: 760px }
.home-hero-inner p { font-size: clamp(1.08rem, 2vw, 1.32rem) }
.hero-actions { display:flex; flex-wrap:wrap; gap:0.75rem; margin-top:1.75rem }
.cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--green); color: #0f1117; font-weight: 800; padding: 0.85rem 1.2rem; border-radius: 8px; font-size: 0.95rem; min-height: 48px }
.cta:hover { opacity: 0.9; text-decoration: none }
.cta.secondary { background: transparent; border: 1.5px solid var(--border); color: var(--heading) }
.cta.secondary:hover { border-color: var(--green); color: var(--green); opacity: 1 }
.hero-panel { background: var(--surface-strong); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem }
.hero-panel-title { color: var(--heading); font-weight: 800; font-size: 1rem; margin-bottom: 0 }
.hero-strip { display:flex; flex-wrap:wrap; gap:0.6rem; margin-top:1rem }
.pill { display:inline-flex; align-items:center; border:1px solid var(--border); background:var(--surface-strong); color:var(--muted); border-radius:6px; padding:0.45rem 0.7rem; font-size:0.84rem; font-weight:650 }
section { padding: 3.5rem 0 }
section:nth-of-type(even) { background: var(--surface); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; border-radius: var(--radius); box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04) }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:1.5rem; margin-bottom:1.5rem }
.section-kicker { color:var(--green); font-size:0.75rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:0.35rem }
.section-copy { color:var(--muted); max-width:560px; font-size:0.98rem }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 800; color: var(--heading); margin-bottom: 0; line-height: 1.15 }
h3 { font-size: 1.05rem; font-weight: 600; color: var(--heading); margin-bottom: 0.5rem; line-height: 1.3 }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease; position: relative }
.card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--green) 45%, var(--border)); background: var(--surface-strong) }
.card a { color: var(--heading); font-weight: 750 }
.card p { color: var(--muted); font-size: 0.9rem; margin-top: 0.35rem }
.card-link::after { content: ''; position: absolute; inset: 0; z-index: 1 }
.card-link:hover { text-decoration: none }
.post-card { display:flex; flex-direction:column; min-height:100%; padding:0; overflow:hidden }
.post-card-image { width:100%; height:168px; object-fit:cover; display:block; background:var(--surface) }
.post-card-body { display:flex; flex:1; flex-direction:column; padding:1.25rem }
.post-card-title { color:var(--heading); font-size:1.05rem; line-height:1.45; font-weight:800 }
.post-card-date { color:var(--muted); font-size:0.78rem; margin-bottom:0.4rem }
.post-card-excerpt { color:var(--muted); font-size:0.9rem; line-height:1.65; margin-top:0.6rem }
.post-card-author { display:flex; align-items:center; gap:0.65rem; margin-top:auto; padding-top:1.25rem; color:var(--muted); font-size:0.82rem }
.author-avatar { width:34px; height:34px; border-radius:50%; object-fit:cover; flex-shrink:0; border:1px solid var(--border); background:var(--soft); color:var(--green); display:inline-flex; align-items:center; justify-content:center; font-size:0.72rem; font-weight:800 }
.author-copy { min-width:0; display:flex; flex-direction:column; line-height:1.25 }
.author-name { color:var(--heading); font-weight:800 }
.author-title { color:var(--muted); font-size:0.78rem; margin-top:0.12rem }
.faq-preview-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin-top:1.5rem }
.faq-preview-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.25rem }
.faq-preview-card h3 { font-size:1rem; line-height:1.4; margin-bottom:0.65rem }
.faq-preview-card p { color:var(--muted); font-size:0.9rem; line-height:1.65 }
.service-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:1.15rem }
.service-card { --service-accent:var(--green); min-height: 248px; display:flex; flex-direction:column; gap:1rem; overflow:hidden; padding:1.35rem; isolation:isolate; background:linear-gradient(145deg, color-mix(in srgb, var(--service-accent) 9%, var(--surface)) 0%, var(--surface) 46%, var(--surface-strong) 100%); border-color:color-mix(in srgb, var(--service-accent) 28%, var(--border)); box-shadow:0 1px 0 rgba(255,255,255,0.04) inset }
.service-card::before { content:''; position:absolute; inset:0 0 auto 0; height:4px; background:linear-gradient(90deg, var(--service-accent), color-mix(in srgb, var(--service-accent) 28%, transparent)); z-index:-1 }
.service-card::after { content:''; position:absolute; right:-44px; top:-44px; width:132px; height:132px; border-radius:50%; background:color-mix(in srgb, var(--service-accent) 18%, transparent); filter:blur(2px); opacity:0.72; z-index:-1; transition:transform 0.2s ease, opacity 0.2s ease }
.service-card:hover { transform:translateY(-4px); border-color:color-mix(in srgb, var(--service-accent) 58%, var(--border)); background:linear-gradient(145deg, color-mix(in srgb, var(--service-accent) 13%, var(--surface)) 0%, var(--surface-strong) 58%, var(--surface-strong) 100%); box-shadow:0 18px 50px rgba(0,0,0,0.22) }
.service-card:hover::after { transform:scale(1.18) translate(-8px, 8px); opacity:1 }
.service-card-top { display:flex; align-items:center; justify-content:space-between; gap:1rem }
.service-mark { width:42px; height:42px; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; color:var(--heading); background:color-mix(in srgb, var(--service-accent) 18%, var(--surface-strong)); border:1px solid color-mix(in srgb, var(--service-accent) 40%, var(--border)); font-size:0.78rem; font-weight:850; letter-spacing:0.05em }
.service-arrow { width:34px; height:34px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; color:var(--service-accent); background:color-mix(in srgb, var(--service-accent) 11%, transparent); border:1px solid color-mix(in srgb, var(--service-accent) 30%, var(--border)); transition:transform 0.18s ease, background 0.18s ease }
.service-card:hover .service-arrow { transform:translate(2px,-2px); background:color-mix(in srgb, var(--service-accent) 18%, transparent) }
.service-card a { color:var(--heading); font-size:1.12rem; font-weight:820; line-height:1.24; max-width:90% }
.service-card a:hover { color:var(--heading); text-decoration:none }
.service-card .service-desc { color:var(--muted); font-size:0.92rem; line-height:1.65; flex:1; margin-top:0 }
.service-meta { display:inline-flex; align-items:center; gap:0.45rem; width:max-content; max-width:100%; color:var(--service-accent); font-size:0.76rem; font-weight:850; letter-spacing:0.04em; text-transform:uppercase; margin-top:auto }
.service-meta::before { content:''; width:22px; height:1px; background:currentColor; opacity:0.75 }
.split-grid { display:grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr); gap:1rem; align-items:start }
.area-list { display:flex; flex-wrap:wrap; gap:0.65rem }
.area-list a { color:var(--heading); background:var(--surface); border:1px solid var(--border); border-radius:6px; padding:0.6rem 0.85rem; font-weight:700; font-size:0.9rem }
.area-list a:hover { border-color:var(--green); color:var(--green); text-decoration:none }
.hours-grid { display: grid; grid-template-columns: 140px 1fr; gap: 0.4rem 1rem }
.hours-grid .day { color: var(--muted); font-size: 0.9rem }
.hours-grid .time { font-size: 0.9rem }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem }
.faq-item .q { font-weight: 600; color: var(--heading); margin-bottom: 0.5rem }
.faq-item .a { color: var(--muted); font-size: 0.95rem }
.contact-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem }
.contact-box p { color: var(--muted); margin-bottom: 0.35rem; font-size: 0.95rem }
.contact-box .big { color: var(--heading); font-size: 1.05rem; font-weight: 600 }
.contact-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:1rem }
.contact-grid .contact-box { min-height: 100% }
.contact-label { color:var(--green); font-size:0.72rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:0.5rem !important }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem }
.breadcrumb a { color: var(--muted) }
.breadcrumb a:hover { color: var(--green) }
footer { border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; color: var(--muted); font-size: 0.85rem; margin-top: 2rem; background: var(--surface) }
footer a { color: var(--muted); text-decoration: none }
footer a:hover { color: var(--green) }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem }
.footer-brand p { line-height: 1.55 }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.25rem; font-size: 0.8rem; color: var(--muted) }
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr; gap: 1.75rem } }
.post-hero { padding: 3rem 0 2rem }
.post-subtitle { font-size: 1rem; color: var(--muted); margin-top: 0.35rem; font-style: italic }
.post-h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; color: var(--heading); line-height: 1.2; margin: 0.75rem 0 1rem }
.post-lead { font-size: 1.15rem; color: var(--muted); max-width: 680px; line-height: 1.65 }
.post-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.85rem; color: var(--muted) }
.post-author { font-weight: 600; color: var(--green) }
.post-dot { opacity: 0.4 }
.share-wrap { position: relative; margin-left: auto }
.share-btn { display: flex; align-items: center; gap: 0.4rem; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 0.35rem 0.75rem; font-size: 0.8rem; color: var(--text); cursor: pointer; transition: border-color 0.15s }
.share-btn:hover { border-color: var(--green) }
.share-menu { display: none; position: absolute; right: 0; top: calc(100% + 6px); min-width: 170px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 100; overflow: hidden }
.share-menu.open { display: block }
.share-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1rem; font-size: 0.85rem; color: var(--text); cursor: pointer; transition: background 0.1s; text-decoration: none; width: 100%; box-sizing: border-box; background: none; border: none; font-family: inherit }
.share-item:hover { background: var(--border) }
.share-item svg { flex-shrink: 0; opacity: 0.7 }
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 3rem; padding: 2rem 0 3rem; border-top: 1px solid var(--border) }
.post-body { min-width: 0; max-width: 100%; overflow-wrap: anywhere; word-break: normal }
.post-body * { max-width: 100% }
.post-body h2 { font-size: 1.35rem; font-weight: 700; color: var(--heading); margin: 2rem 0 0.75rem }
.post-body h3 { font-size: 1.05rem; font-weight: 600; color: var(--heading); margin: 1.5rem 0 0.5rem }
.post-body p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; font-size: 1rem }
.post-body ul { color: var(--muted); padding-left: 1.5rem; margin-bottom: 1rem }
.post-body li { margin-bottom: 0.5rem; line-height: 1.65 }
.post-body strong { color: var(--text) }
.post-body img, .post-body video, .post-body iframe { max-width: 100%; height: auto }
.post-body pre, .post-body code { white-space: pre-wrap; overflow-wrap: anywhere }
.post-body table { display: block; max-width: 100%; overflow-x: auto }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; position: sticky; top: 1.5rem }
.sidebar-title { font-weight: 700; color: var(--heading); margin-bottom: 0.5rem; font-size: 0.95rem }
.sidebar-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.55; margin-bottom: 1rem }
.sidebar-cta { display: block; background: var(--green); color: #0f1117; font-weight: 700; text-align: center; padding: 0.6rem 1rem; border-radius: 6px; font-size: 0.9rem; margin-bottom: 0.6rem }
.sidebar-cta:hover { opacity: 0.9; text-decoration: none }
.sidebar-link { display: block; text-align: center; font-size: 0.85rem; color: var(--muted) }
.sidebar-service { display: block; color: var(--muted); font-size: 0.85rem; padding: 0.3rem 0; border-bottom: 1px solid var(--border) }
.sidebar-service:last-child { border-bottom: none }
.sidebar-post-link:last-of-type { border-bottom: none !important }
.sidebar-post-link:hover span { color: var(--green) }
@media (max-width: 900px) { .home-hero-inner, .split-grid, .contact-grid, .faq-preview-grid { grid-template-columns: 1fr } .hero-panel { max-width: 560px } }
@media (max-width: 768px) { .post-layout { grid-template-columns: minmax(0, 1fr); gap:0; padding:1.5rem 0 2.5rem } .post-sidebar { display: none } .post-meta { align-items:flex-start; flex-wrap:wrap } .share-wrap { flex-basis:100%; margin-left:0; margin-top:0.35rem } .share-menu { left:0; right:auto } .section-head { display:block } .section-copy { margin-top:0.65rem } }
@media (max-width: 600px) { .wrap { padding: 0 1rem } header .inner { align-items:flex-start } .header-actions { gap:0.45rem } .header-cta { min-height:38px; padding:0.5rem 0.72rem; font-size:0.82rem } .hero { padding: 3rem 0 2.5rem } .home-hero-inner h1 { font-size: clamp(2.45rem, 14vw, 4rem) } .hero-metric-grid { grid-template-columns:1fr } section { padding:2.5rem 0 } .service-card { min-height:220px; padding:1.15rem } .post-h1 { font-size: clamp(1.55rem, 9vw, 2.1rem) } .post-lead { font-size:1rem } .post-body ul { padding-left:1.15rem } }
.block-key-takeaways { background:var(--soft); border:1px solid color-mix(in srgb,var(--green) 30%,var(--border)); border-radius:var(--radius); padding:1.25rem 1.5rem; margin:1.5rem 0 }
.block-key-takeaways h2 { font-size:1rem; font-weight:700; color:var(--green); margin-bottom:0.75rem; text-transform:uppercase; letter-spacing:0.05em }
.block-key-takeaways ul { padding-left:1.25rem; margin:0 }
.block-key-takeaways li { color:var(--text); font-size:0.95rem; margin-bottom:0.45rem; line-height:1.55 }
.block-section { margin:2rem 0 }
.block-section h2 { font-size:1.35rem; font-weight:700; color:var(--heading); margin:0 0 0.75rem }
.block-section h3 { font-size:1.05rem; font-weight:600; color:var(--heading); margin:1.25rem 0 0.4rem }
.block-section p { color:var(--muted); margin-bottom:0.85rem; line-height:1.75; font-size:1rem }
.block-section strong { color:var(--text) }
.block-image { margin:1.5rem 0 }
.block-image img { width:100%; border-radius:var(--radius); display:block }
.block-image figcaption { color:var(--muted); font-size:0.82rem; margin-top:0.4rem; text-align:center; font-style:italic }
.block-table { margin:1.5rem 0 }
.block-table-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch }
.block-table table { width:100%; min-width:480px; border-collapse:collapse; font-size:0.9rem }
.block-table th { background:var(--surface); color:var(--heading); font-weight:700; padding:0.6rem 0.85rem; text-align:left; border-bottom:2px solid var(--border) }
.block-table td { padding:0.55rem 0.85rem; color:var(--muted); border-bottom:1px solid var(--border) }
.block-table tr:last-child td { border-bottom:none }
.block-faq { margin:2rem 0 }
.block-faq h2 { font-size:1.35rem; font-weight:700; color:var(--heading); margin-bottom:1rem }
.block-faq-item { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.1rem 1.25rem; margin-bottom:0.75rem }
.block-faq-item h3 { font-size:1rem; font-weight:600; color:var(--heading); margin-bottom:0.4rem }
.block-faq-item p { color:var(--muted); font-size:0.95rem; line-height:1.65; margin:0 }
.block-cta { background:var(--surface); border:1px solid color-mix(in srgb,var(--green) 40%,var(--border)); border-radius:var(--radius); padding:1.5rem; margin:2rem 0 }
.block-cta h2 { font-size:1.2rem; font-weight:700; color:var(--heading); margin-bottom:0.5rem }
.block-cta p { color:var(--muted); font-size:0.95rem; line-height:1.65; margin:0 }
.block-callout { border-left:3px solid var(--green); padding:0.85rem 1.1rem; margin:1.25rem 0; background:var(--soft); border-radius:0 var(--radius) var(--radius) 0 }
.block-callout p { color:var(--text); font-size:0.95rem; line-height:1.6; margin:0 }
.block-callout.warning { border-left-color:#f59e0b }
.block-callout.tip { border-left-color:#3b82f6 }