:root {
  --orange: oklch(0.63 0.19 42);
  --orange-deep: oklch(0.57 0.18 38);
  --red: oklch(0.55 0.21 29);
  --red-deep: oklch(0.49 0.2 29);
  --ink: oklch(0.22 0.005 60);
  --ink-2: oklch(0.32 0.005 60);
  --body: oklch(0.46 0.005 60);
  --muted: oklch(0.6 0.005 60);
  --black: oklch(0.17 0.004 60);
  --black-2: oklch(0.21 0.004 60);
  --bg: oklch(1 0 0);
  --gray: oklch(0.955 0.002 60);
  --line: oklch(0.9 0.003 60);
  --shadow-sm: 0 1px 2px oklch(0.2 0 0 / 0.06), 0 4px 12px oklch(0.2 0 0 / 0.06);
  --shadow-md: 0 8px 26px oklch(0.2 0 0 / 0.12);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Public Sans", system-ui, sans-serif;
  color: var(--body); background: var(--bg); line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Archivo", sans-serif; color: var(--ink); line-height: 1.06; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: 0.84rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 4px; cursor: pointer; border: 0;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s;
}
.btn svg { width: 16px; height: 16px; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--black); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border: 2px solid oklch(1 0 0 / 0.7); }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 17px 34px; font-size: 0.9rem; }

/* Announcement bar */
.announce { background: var(--black); color: oklch(0.82 0.005 60); font-size: 0.8rem; font-weight: 500; }
.announce .container { display: flex; align-items: center; gap: 26px; height: 38px; }
.announce span { display: inline-flex; align-items: center; gap: 8px; }
.announce svg { width: 14px; height: 14px; color: var(--orange); }
.announce .spacer { margin-left: auto; }
.announce a { color: #fff; font-weight: 700; }
@media (max-width: 600px) { .announce .hide-sm { display: none; } }

/* Header */
header.site { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); }
header.site .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .mark { width: 30px; height: 30px; color: var(--orange); }
.brand .name { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.brand .name b { color: var(--orange); font-weight: 800; }
nav.main { display: flex; align-items: center; gap: 28px; margin-left: auto; }
nav.main > a, nav.main > .has-drop > a { font-weight: 600; font-size: 0.95rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: 4px; transition: color .14s; cursor: pointer; }
nav.main a:hover, nav.main a.active { color: var(--orange); }
nav.main svg { width: 14px; height: 14px; }
.has-drop { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-md);
  padding: 10px; min-width: 260px; opacity: 0; visibility: hidden; transition: opacity .16s, transform .16s; z-index: 70;
  columns: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.dropdown a { display: block; padding: 9px 12px; font-size: 0.86rem; font-weight: 600; color: var(--ink-2); border-radius: 5px; white-space: nowrap; }
.dropdown a:hover { background: var(--gray); color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 12px; margin-left: 28px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }
@media (max-width: 1080px) { nav.main { display: none; } .header-cta { margin-left: 0; } .nav-toggle { display: block; } }
@media (max-width: 560px) { .header-cta .btn span.full { display: none; } .header-cta { gap: 8px; } }

.mobile-menu { display: none; background: #fff; border-bottom: 1px solid var(--line); max-height: 76vh; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 28px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu .grp { padding: 13px 28px 6px; font-family: "Archivo"; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.mobile-menu a.sub { padding-left: 40px; font-weight: 500; font-size: 0.92rem; color: var(--ink-2); }

/* Hero (home) */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .ph { width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, oklch(0.17 0.01 50 / 0.92) 0%, oklch(0.17 0.01 50 / 0.7) 42%, oklch(0.2 0.02 40 / 0.35) 100%); }
.hero .container { position: relative; z-index: 2; padding-top: 92px; padding-bottom: 104px; }
.hero-inner { max-width: 620px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-family: "Archivo"; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 22px; }
.hero-eyebrow svg { width: 16px; height: 16px; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p.lede { font-size: 1.2rem; color: oklch(0.92 0.005 60); max-width: 510px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust .t { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.92rem; color: oklch(0.95 0.005 60); }
.hero-trust .t svg { width: 18px; height: 18px; color: var(--orange); }

/* Inner page hero */
.page-hero { position: relative; background: var(--black); color: #fff; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(820px 360px at 88% -20%, oklch(0.63 0.19 42 / 0.32), transparent 62%); }
.page-hero .container { position: relative; z-index: 2; padding: 60px 28px 58px; }
.crumb { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 600; color: oklch(0.7 0.005 60); margin-bottom: 18px; flex-wrap: wrap; }
.crumb a { color: oklch(0.78 0.02 50); }
.crumb a:hover { color: var(--orange); }
.crumb svg { width: 13px; height: 13px; opacity: 0.6; }
.crumb .cur { color: #fff; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-family: "Archivo"; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 14px; }
.page-hero .eyebrow svg { width: 15px; height: 15px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 16px; max-width: 760px; }
.page-hero p { font-size: 1.12rem; color: oklch(0.9 0.005 60); max-width: 620px; }

/* Image placeholders */
.ph { background: repeating-linear-gradient(135deg, oklch(0.3 0.01 50) 0 14px, oklch(0.26 0.01 50) 14px 28px); display: grid; place-items: center; color: oklch(0.85 0.02 50); }
.ph.light { background: repeating-linear-gradient(135deg, oklch(0.91 0.01 50) 0 12px, oklch(0.95 0.008 50) 12px 24px); color: var(--orange-deep); }
.ph span { font-family: ui-monospace, Menlo, monospace; font-size: 0.74rem; letter-spacing: 0.03em; background: oklch(0 0 0 / 0.32); color: #fff; padding: 6px 12px; border-radius: 6px; text-align: center; }
.ph.light span { background: oklch(1 0 0 / 0.8); color: var(--orange-deep); border: 1px solid var(--line); }

/* Section basics */
.section { padding: 88px 0; }
.section.sm { padding: 64px 0; }
.section.gray { background: var(--gray); }
.head-center { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.head-center h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
.head-center p { color: var(--body); font-size: 1.08rem; }
.accent-rule { width: 60px; height: 4px; background: var(--orange); margin: 16px auto 0; border-radius: 2px; }

/* Services grid */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card .img { aspect-ratio: 16 / 10; }
.svc-card .img .ph { width: 100%; height: 100%; }
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.svc-card p { font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.svc-card a.more { color: var(--orange); font-weight: 700; font-size: 0.86rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-card a.more svg { width: 15px; height: 15px; transition: transform .15s; }
.svc-card:hover a.more svg { transform: translateX(4px); }
@media (max-width: 1080px) { .svc-grid, .svc-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid, .svc-grid.cols-3 { grid-template-columns: 1fr; } }

/* Why network */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; text-transform: uppercase; margin-bottom: 18px; }
.why > .why-wrap > div > p { color: var(--body); font-size: 1.06rem; margin-bottom: 26px; }
.check-list { display: grid; gap: 14px; margin-bottom: 30px; }
.check-list li { list-style: none; display: flex; align-items: center; gap: 13px; font-family: "Archivo"; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.check-list li svg { width: 24px; height: 24px; color: var(--orange); flex: none; }
.why-img { border-radius: 12px; overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow-md); }
.why-img .ph { width: 100%; height: 100%; }
.why-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .why-wrap { grid-template-columns: 1fr; gap: 40px; } .why-img { order: -1; } }

/* Feature/value cards (icon tiles) */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px; box-shadow: var(--shadow-sm); }
.value-card .ic { width: 52px; height: 52px; border-radius: 12px; background: oklch(0.63 0.19 42 / 0.12); display: grid; place-items: center; margin-bottom: 18px; }
.value-card .ic svg { width: 27px; height: 27px; color: var(--orange-deep); }
.value-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 9px; }
.value-card p { font-size: 0.96rem; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 32px 28px; box-shadow: var(--shadow-sm); }
.step .num { counter-increment: step; font-family: "Archivo"; font-weight: 800; font-size: 1.05rem; width: 44px; height: 44px; border-radius: 10px; background: var(--orange); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.22rem; margin-bottom: 9px; }
.step p { font-size: 0.97rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* Content layout (detail pages) */
.content-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.prose h2 { font-size: 1.7rem; font-weight: 800; text-transform: uppercase; margin: 34px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.22rem; font-weight: 700; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; font-size: 1.04rem; }
.prose ul { margin: 0 0 18px; padding: 0; display: grid; gap: 11px; }
.prose ul li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: var(--ink-2); }
.prose ul li svg { width: 21px; height: 21px; color: var(--orange); flex: none; margin-top: 2px; }
.prose .lead { font-size: 1.16rem; color: var(--ink-2); margin-bottom: 22px; }
.prose img, .prose .ph { border-radius: 10px; }
.detail-img { aspect-ratio: 16 / 8; border-radius: 10px; overflow: hidden; margin: 8px 0 28px; box-shadow: var(--shadow-sm); }
.detail-img .ph { width: 100%; height: 100%; }

/* Sidebar */
.sidebar { position: sticky; top: 92px; display: grid; gap: 22px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px 24px; box-shadow: var(--shadow-sm); }
.side-card.dark { background: var(--black); color: oklch(0.78 0.005 60); border: 0; }
.side-card h3 { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.side-card.dark h3 { color: #fff; }
.side-card .phone { font-family: "Archivo"; font-weight: 800; font-size: 1.7rem; color: #fff; display: block; margin: 6px 0 4px; }
.side-card.dark p { font-size: 0.92rem; margin-bottom: 16px; }
.side-card .btn { width: 100%; }
.side-links a { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink-2); font-size: 0.96rem; }
.side-links a:last-child { border-bottom: 0; }
.side-links a:hover { color: var(--orange); }
.side-links svg { width: 16px; height: 16px; color: var(--orange); flex: none; }
@media (max-width: 980px) { .content-wrap { grid-template-columns: 1fr; gap: 40px; } .sidebar { position: static; grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .sidebar { grid-template-columns: 1fr; } }

/* Testimonials */
.stars-c { display: flex; justify-content: center; gap: 4px; color: var(--orange); margin: -4px 0 0; }
.stars-c svg { width: 22px; height: 22px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review .quote-mark { font-family: Georgia, serif; font-size: 3rem; line-height: 0.6; color: var(--orange); height: 26px; }
.review p { color: var(--ink-2); font-size: 1rem; font-style: italic; margin-bottom: 22px; flex: 1; }
.review .who { display: flex; align-items: center; gap: 13px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-family: "Archivo"; font-weight: 700; font-size: 1.05rem; }
.review .who b { display: block; font-family: "Archivo"; color: var(--ink); font-size: 1rem; }
.review .who span { font-size: 0.84rem; color: var(--muted); }
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta { background: var(--orange); color: #fff; text-align: center; padding: 70px 0; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
.cta p { color: oklch(1 0 0 / 0.92); font-size: 1.12rem; max-width: 620px; margin: 0 auto 30px; }
.cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Area grid */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-card .pin { width: 44px; height: 44px; border-radius: 10px; background: oklch(0.63 0.19 42 / 0.12); display: grid; place-items: center; margin-bottom: 16px; }
.area-card .pin svg { width: 23px; height: 23px; color: var(--orange-deep); }
.area-card h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 8px; }
.area-card p { font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.area-card a.more { color: var(--orange); font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.area-card a.more svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }

/* Directory */
.dir-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dir-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 20px; }
.dir-card .logo { width: 64px; height: 64px; border-radius: 12px; background: var(--gray); border: 1px solid var(--line); display: grid; place-items: center; font-family: "Archivo"; font-weight: 800; font-size: 1.3rem; color: var(--orange-deep); flex: none; }
.dir-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 4px; }
.dir-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; flex-wrap: wrap; }
.dir-stars { display: inline-flex; gap: 2px; color: var(--orange); }
.dir-stars svg { width: 14px; height: 14px; }
.dir-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
.dir-badge { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 20px; background: oklch(0.63 0.19 42 / 0.12); color: var(--orange-deep); }
.dir-badge.green { background: oklch(0.6 0.13 150 / 0.14); color: oklch(0.42 0.11 150); }

/* Editorial note */
.dir-note { background: var(--gray); border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: 8px; padding: 20px 24px; margin-bottom: 36px; font-size: 0.95rem; color: var(--ink-2); }
.dir-note strong { font-family: "Archivo"; color: var(--ink); }

/* Ranked directory */
.rank-list { display: flex; flex-direction: column; gap: 20px; }
.rank-card { display: flex; gap: 22px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px; box-shadow: var(--shadow-sm); }
.rank-card.featured { border: 2px solid var(--orange); box-shadow: var(--shadow-md); background: linear-gradient(180deg, oklch(0.63 0.19 42 / 0.05), #fff 120px); }
.rank-num { flex-shrink: 0; width: 46px; height: 46px; border-radius: 10px; background: var(--ink); color: #fff; font-family: "Archivo"; font-weight: 800; font-size: 1.25rem; display: grid; place-items: center; }
.rank-card.featured .rank-num { background: var(--orange); box-shadow: 0 4px 14px oklch(0.63 0.19 42 / 0.4); }
.rank-body { flex: 1; min-width: 0; }
.rank-toprow { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.rank-name { font-size: 1.32rem; font-weight: 800; }
.rank-headline { font-size: 0.96rem; color: var(--muted); margin-top: 3px; }
.rank-rating { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.stars-wrap { position: relative; display: inline-flex; line-height: 0; }
.stars-bg, .stars-fg { display: inline-flex; gap: 2px; }
.stars-bg { color: var(--line); }
.stars-fg { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; color: var(--orange); }
.stars-wrap svg { width: 17px; height: 17px; flex-shrink: 0; }
.rank-score { font-size: 0.9rem; color: var(--muted); white-space: nowrap; }
.rank-score b { font-family: "Archivo"; color: var(--ink); font-size: 1rem; }
.rank-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.rank-desc { font-size: 0.96rem; margin-top: 14px; }
.rank-specs { display: flex; flex-wrap: wrap; gap: 10px 36px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.spec { display: flex; flex-direction: column; gap: 2px; }
.spec label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.spec span { font-size: 0.92rem; color: var(--ink-2); font-weight: 500; }
.spec a.spec-phone { font-family: "Archivo"; font-weight: 700; font-size: 1.02rem; color: var(--orange); display: inline-flex; align-items: center; gap: 7px; }
.spec a.spec-phone svg { width: 15px; height: 15px; }
.spec a.spec-phone:hover { color: var(--orange-deep); }
.rank-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.rank-tags .tag { font-size: 0.78rem; font-weight: 600; padding: 5px 11px; border-radius: 6px; background: var(--gray); border: 1px solid var(--line); color: var(--ink-2); }
.rank-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.rank-actions .btn-outline { color: var(--ink); border-color: var(--line); }
.rank-actions .btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (max-width: 640px) {
  .rank-card { padding: 22px; gap: 16px; }
  .rank-num { width: 38px; height: 38px; font-size: 1.05rem; }
  .rank-toprow { flex-direction: column; }
}

.dir-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.dir-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--ink); text-decoration: none; width: fit-content; }
.dir-contact a:hover { color: var(--orange); }
.dir-contact a svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--muted); }
.dir-contact a:hover svg { color: var(--orange); }
@media (max-width: 760px) { .dir-grid { grid-template-columns: 1fr; } }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .img { aspect-ratio: 16 / 9; }
.blog-card .img .ph { width: 100%; height: 100%; }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-tag { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.blog-card p { font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.blog-card .date { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: start; }
.info-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.info-row .ic { width: 50px; height: 50px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-sm); flex: none; }
.info-row .ic svg { width: 23px; height: 23px; color: var(--orange); }
.info-row b { font-family: "Archivo"; font-size: 1.16rem; color: var(--ink); display: block; }
.info-row span { color: var(--muted); font-size: 0.9rem; }
.form-card { background: #fff; border-radius: 14px; padding: 34px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-card h3 { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.form-card > p { margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--bg); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px oklch(0.63 0.19 42 / 0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--orange); margin: 0 auto 14px; }
.form-success h3 { margin-bottom: 8px; font-size: 1.4rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } .field-row { grid-template-columns: 1fr; } }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: "Archivo"; font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.faq-q .chev { width: 22px; height: 22px; color: var(--orange); transition: transform .25s; flex: none; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; }

/* Footer */
footer.site { background: var(--black); color: oklch(0.72 0.005 60); padding: 64px 0 26px; font-size: 0.94rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1fr; gap: 44px; margin-bottom: 46px; }
footer .brand .name, footer .brand .name b { color: #fff; }
footer .brand .mark { color: var(--orange); }
.foot-about { margin: 18px 0; max-width: 300px; line-height: 1.65; }
.foot-find { color: var(--orange); font-family: "Archivo"; font-weight: 700; text-transform: uppercase; font-size: 0.86rem; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.foot-email { display: inline-flex; align-items: center; gap: 8px; }
.foot-email svg { width: 15px; height: 15px; color: var(--orange); }
.foot-col h4 { color: #fff; font-family: "Archivo"; font-size: 1.02rem; font-weight: 700; margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; padding: 5px 0; color: oklch(0.72 0.005 60); transition: color .14s; }
.foot-col a:hover { color: var(--orange); }
.foot-area a { display: flex; align-items: center; gap: 8px; }
.foot-area svg { width: 14px; height: 14px; color: var(--orange); flex: none; }
.foot-area .viewall { color: var(--orange); font-weight: 700; margin-top: 6px; }
.hours-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; }
.hours-row svg { width: 15px; height: 15px; color: var(--orange); flex: none; }
.hours-row b { color: #fff; font-weight: 600; }
.emerg-box { margin-top: 14px; padding: 14px 16px; background: oklch(1 0 0 / 0.05); border-left: 3px solid var(--orange); border-radius: 0 6px 6px 0; }
.emerg-box b { color: #fff; display: block; font-family: "Archivo"; font-size: 0.92rem; margin-bottom: 3px; }
.emerg-box span { font-size: 0.85rem; }
.foot-bottom { border-top: 1px solid oklch(1 0 0 / 0.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.84rem; color: var(--muted); }
.foot-bottom a:hover { color: #fff; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* Article (blog post) */
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 18px; font-size: 0.92rem; color: oklch(1 0 0 / 0.82); }
.article-meta .am-item { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 16px; height: 16px; color: var(--orange); }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: oklch(1 0 0 / 0.4); }
.prose .figure { margin: 8px 0 30px; }
.prose .figcaption { font-size: 0.84rem; color: var(--muted); margin-top: 10px; font-style: italic; }
.prose blockquote { margin: 26px 0; padding: 20px 26px; border-left: 4px solid var(--orange); background: var(--gray); border-radius: 0 8px 8px 0; }
.prose blockquote p { font-size: 1.16rem; font-style: italic; color: var(--ink); margin: 0; }
sup.ref { font-size: 0.7em; line-height: 0; font-weight: 700; }
sup.ref a { color: var(--orange-deep); padding: 0 1px; }
.prose .keytable { width: 100%; border-collapse: collapse; margin: 8px 0 26px; font-size: 0.98rem; }
.prose .keytable th, .prose .keytable td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.prose .keytable thead th { font-family: "Archivo"; font-weight: 700; background: var(--gray); border-bottom: 2px solid var(--line); }
.prose .keytable tbody tr:last-child td { border-bottom: 0; }
.references { margin-top: 40px; padding-top: 26px; border-top: 2px solid var(--line); }
.legal { max-width: 820px; margin: 0 auto; }
.legal ul { margin: 0 0 18px 22px; padding: 0; display: block; }
.legal ul li { list-style: disc; display: list-item; margin-bottom: 8px; font-size: 1.02rem; color: var(--ink-2); }
.legal .updated { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }
.legal a { color: var(--orange-deep); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.references h2 { font-size: 1.3rem !important; text-transform: uppercase; margin-bottom: 16px !important; }
.references ol { margin: 0; padding-left: 22px; display: grid; gap: 10px; }
.references li { font-size: 0.92rem; color: var(--ink-2); line-height: 1.5; }
.references li a { color: var(--orange-deep); font-weight: 600; word-break: break-word; }
.references li a:hover { text-decoration: underline; }
.article-disclaimer { margin-top: 22px; font-size: 0.86rem; color: var(--muted); font-style: italic; }
.side-links a.dot-cat span.cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); display: block; font-weight: 600; }
.side-links a.read-link { flex-direction: column; align-items: flex-start; gap: 3px; }
.side-links a.read-link b { font-weight: 700; color: var(--ink); font-size: 0.95rem; line-height: 1.25; }
.side-links a.read-link:hover b { color: var(--orange); }

/* Sticky mobile call bar */
.call-bar { display: none; }
@media (max-width: 640px) {
  .call-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; gap: 10px; padding: 10px 14px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 18px oklch(0.2 0 0 / 0.12); }
  .call-bar .btn { flex: 1; }
  body { padding-bottom: 68px; }
}
