:root {
  --ink: #0e1013;
  --ink-2: #16191f;
  --paper: #f5f3ed;
  --paper-2: #fffefb;
  --gold: #f7b719;
  --gold-2: #ffd25a;
  --muted: #6f7278;
  --line: rgba(14,16,19,.13);
  --white: #fff;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 18px 55px rgba(0,0,0,.14);
  --shadow-dark: 0 24px 70px rgba(0,0,0,.30);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  padding: .7rem 1rem;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 3.25rem 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-black { color: var(--white); background: #090a0c; }
.section-white { background: var(--paper-2); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .8rem;
  color: #9b6b00;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-dark .kicker, .section-black .kicker { color: var(--gold-2); }
.kicker::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; letter-spacing: -.03em; }
h1, h2, .display { font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif; text-transform: uppercase; }
h1 { font-size: clamp(3.25rem, 15vw, 8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(2.15rem, 8vw, 4.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.lead { font-size: clamp(1.05rem, 3.7vw, 1.35rem); color: #4b4f56; max-width: 68ch; }
.section-dark .lead, .section-black .lead { color: #c9cbd0; }
.small { font-size: .88rem; color: var(--muted); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px rgba(247,183,25,.28); }
.btn-primary:hover { background: var(--gold-2); }
.btn-ghost { border-color: rgba(255,255,255,.32); color: var(--white); background: rgba(0,0,0,.18); backdrop-filter: blur(8px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: .7rem 0;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled { background: rgba(10,11,13,.96); box-shadow: 0 8px 30px rgba(0,0,0,.22); padding: .5rem 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: .8rem; position: relative; z-index: 120; }
.brand { display: inline-flex; align-items: center; gap: .65rem; min-width: 0; }
.brand-logo { width: 54px; height: 54px; object-fit: cover; border-radius: 14px; border: 2px solid rgba(255,255,255,.24); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-family: Impact, "Arial Narrow", sans-serif; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; }
.brand-text span { color: #d7d9dd; font-size: .72rem; margin-top: .18rem; }
.menu-toggle { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; background: rgba(0,0,0,.24); color: white; display: grid; place-items: center; cursor: pointer; }
.menu-toggle svg { width: 23px; height: 23px; }
.desktop-nav, .header-call { display: none; }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #08090b;
  padding: 6.7rem max(1rem, env(safe-area-inset-right)) calc(2rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem .2rem; border-bottom: 1px solid rgba(255,255,255,.12); font-size: clamp(1.08rem, 5vw, 1.28rem); line-height: 1.2; font-weight: 850; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #15171a var(--hero-image) center/cover no-repeat;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.92) 100%); }
.hero::after { content: ""; position: absolute; inset: auto -18% -14% auto; width: 80vw; height: 80vw; max-width: 620px; max-height: 620px; border: 2px solid rgba(247,183,25,.24); border-radius: 50%; z-index: -1; box-shadow: 0 0 0 36px rgba(247,183,25,.05), 0 0 0 72px rgba(247,183,25,.025); }
.hero-home { --hero-image: url('https://images.unsplash.com/photo-1770763233593-74dfd0da7bf0?auto=format&fit=crop&w=2000&q=82'); background-position: 54% center; }
.hero-services { --hero-image: url('https://images.unsplash.com/photo-1756027583186-a04a19e4f6ce?auto=format&fit=crop&w=2000&q=82'); align-items: center; background-position: center; }
.hero-water-electric { --hero-image: url('https://images.unsplash.com/photo-1548292194-dcb53d80747d?auto=format&fit=crop&w=2000&q=82'); background-position: center; }
.hero-maintenance { --hero-image: url('https://images.unsplash.com/photo-1745449064670-94bd0fc13df8?auto=format&fit=crop&w=2000&q=82'); background-position: center; }
.hero-contact { --hero-image: url('https://images.unsplash.com/photo-1770763233593-74dfd0da7bf0?auto=format&fit=crop&w=2000&q=82'); align-items: center; background-position: center; }
.hero-content { width: 100%; padding: 7.25rem 0 4.25rem; }
.hero .eyebrow { display: inline-flex; gap: .55rem; align-items: center; padding: .48rem .75rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(0,0,0,.24); backdrop-filter: blur(8px); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 900; margin-bottom: 1rem; }
.hero .eyebrow i { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(247,183,25,.16); }
.hero h1 {
  max-width: 100%;
  font-size: clamp(2.55rem, 11vw, 3.35rem);
  line-height: .98;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  text-shadow: 0 8px 35px rgba(0,0,0,.45);
}
.hero h1 span { color: var(--gold); }
.hero p { max-width: 620px; color: #f0f1f3; font-size: 1.05rem; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .45rem; margin-top: 1.4rem; max-width: 580px; }
.proof-chip { min-height: 78px; padding: .75rem .55rem; background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; backdrop-filter: blur(8px); }
.proof-chip strong { display: block; color: var(--gold); font-size: .9rem; }
.proof-chip span { font-size: .72rem; color: #e7e8ea; }
.hero-sidecard { margin-top: 1.4rem; max-width: 390px; padding: 1rem; background: rgba(255,255,255,.95); color: var(--ink); border-radius: 20px; box-shadow: var(--shadow-dark); }
.hero-sidecard strong { display:block; font-size: 1.15rem; margin-bottom: .3rem; }
.hero-sidecard p { color: #565a61; font-size: .92rem; margin-bottom: .75rem; }

/* Cards and grids */
.cards { display: grid; gap: 1rem; }
.service-card { position: relative; overflow: hidden; min-height: 250px; border-radius: var(--radius); background: #23262c; color: white; box-shadow: var(--shadow); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .54; transition: transform .4s ease, opacity .4s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.83)); }
.service-card:hover img { transform: scale(1.035); opacity: .62; }
.service-card-content { position: absolute; z-index: 2; inset: auto 1rem 1rem; }
.service-card .icon, .icon-box { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--gold); color: var(--ink); margin-bottom: .7rem; }
.service-card h3 { font-size: 1.45rem; }
.service-card p { color: #e4e5e8; margin-bottom: 0; font-size: .92rem; }

.icon-box svg, .service-card .icon svg { width: 23px; height: 23px; }
.feature-grid { display: grid; gap: 1rem; }
.feature { padding: 1.15rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper-2); }
.feature h3 { font-size: 1.1rem; }
.feature p { margin-bottom: 0; color: #60646a; }

.split { display: grid; gap: 1.4rem; align-items: center; }
.media-frame { position: relative; min-height: 360px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #222; }
.media-frame img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.media-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); border-radius: inherit; pointer-events: none; }
.media-tag { position: absolute; left: .85rem; bottom: .85rem; z-index: 2; padding: .72rem .85rem; background: rgba(8,9,11,.88); color: white; border-radius: 14px; font-weight: 800; backdrop-filter: blur(8px); }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.stat { padding: 1rem; border-radius: 18px; background: #191b20; color: white; border: 1px solid rgba(255,255,255,.09); }
.stat strong { display: block; color: var(--gold); font-size: 1.65rem; line-height: 1.1; }
.stat span { color: #c8cad0; font-size: .83rem; }

.steps { display: grid; gap: .8rem; counter-reset: step; }
.step { counter-increment: step; position: relative; padding: 1rem 1rem 1rem 4.2rem; border-radius: 18px; background: white; border: 1px solid var(--line); }
.step::before { content: counter(step, decimal-leading-zero); position: absolute; left: 1rem; top: 1rem; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--ink); color: var(--gold); font-weight: 900; }
.step p { margin-bottom: 0; color: #62666d; font-size: .92rem; }

.service-list { display: grid; gap: .7rem; }
.service-row { display: grid; grid-template-columns: 42px 1fr; gap: .8rem; padding: .95rem; border-radius: 17px; background: white; border: 1px solid var(--line); }
.service-row .num { width: 42px; height: 42px; border-radius: 12px; background: var(--gold); display: grid; place-items: center; font-weight: 950; }
.service-row p { margin-bottom: 0; color: #60646a; font-size: .91rem; }

.band { position: relative; overflow: hidden; padding: 1.5rem; border-radius: var(--radius-lg); background: var(--gold); color: var(--ink); }
.band::after { content: "HM"; position: absolute; right: -1rem; bottom: -2.5rem; font-family: Impact, sans-serif; font-size: 9rem; line-height: 1; color: rgba(0,0,0,.075); transform: rotate(-8deg); }
.band h2 { max-width: 11ch; font-size: clamp(2.2rem, 10vw, 4.3rem); }
.band p { max-width: 60ch; }

.check-list { display: grid; gap: .65rem; padding: 0; margin: 1.2rem 0 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 25px 1fr; gap: .6rem; align-items: start; }
.check-list li::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 950; line-height: 1; }

/* Service page */
.service-matrix { display: grid; gap: .8rem; }
.matrix-card { padding: 1.1rem; border-radius: 20px; background: white; border: 1px solid var(--line); min-height: 160px; }
.matrix-card strong { display: block; margin: .75rem 0 .35rem; font-size: 1.12rem; }
.matrix-card p { color: #62666d; margin-bottom: 0; font-size: .9rem; }
.matrix-card .mini-icon { width: 38px; height: 38px; border-radius: 11px; display:grid; place-items:center; background: #15171a; color: var(--gold); }
.matrix-card .mini-icon svg { width: 21px; height:21px; }

.category-block { display: grid; gap: 1rem; padding: 1rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.category-image { min-height: 260px; border-radius: 22px; overflow: hidden; }
.category-image img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.category-body { padding: .2rem .1rem; }
.category-body ul { padding-left: 1.1rem; color: #555a61; }

/* Special water/electric layout */
.dual-service { display: grid; gap: 1rem; }
.dual-panel { min-height: 430px; border-radius: var(--radius-lg); overflow: hidden; position: relative; color: white; background: #15171a; }
.dual-panel img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.48; }
.dual-panel::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.90)); }
.dual-panel .content { position:absolute; z-index:2; inset:auto 1.1rem 1.1rem; }
.dual-panel .badge { display:inline-block; padding:.35rem .55rem; background:var(--gold); color:var(--ink); border-radius:999px; font-size:.72rem; font-weight:900; text-transform:uppercase; margin-bottom:.65rem; }
.dual-panel p { color:#e0e2e5; }

.notice { padding: 1rem; border-left: 4px solid var(--gold); background: #fff8df; border-radius: 0 15px 15px 0; }
.notice p { margin-bottom: 0; color: #5e501d; }

/* Contact */
.contact-grid { display: grid; gap: 1rem; }
.contact-card { padding: 1.25rem; border-radius: 22px; background: white; border: 1px solid var(--line); }
.contact-card.big { background: var(--ink); color: white; }
.contact-card .label { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; }
.contact-card.big .label { color: #aeb1b7; }
.phone-display { font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(2.25rem, 12vw, 4.6rem); letter-spacing: .02em; line-height: 1; color: var(--gold); margin: .5rem 0 1rem; white-space: nowrap; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { cursor: pointer; font-weight: 900; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.5rem; line-height:1; color:#9f7206; }
.faq details[open] summary::after { content:"–"; }
.faq p { color:#61656c; margin: .7rem 0 0; }

/* Footer */
.site-footer { background: #08090b; color: #fff; padding: 3rem 0; }
.footer-grid { display: grid; gap: 1.6rem; }
.footer-brand { display:flex; gap:.85rem; align-items:center; }
.footer-brand img { width:78px; height:78px; object-fit:cover; border-radius:18px; }
.footer-brand strong { display:block; font-family:Impact,"Arial Narrow",sans-serif; font-size:1.4rem; text-transform:uppercase; }
.footer-brand span { color:#aeb1b7; font-size:.86rem; }
.footer-links { display:grid; gap:.45rem; }
.footer-links a { color:#d7d9dc; }
.footer-links a:hover { color:var(--gold); }
.footer-bottom { margin-top:2rem; padding-top:1rem; border-top:1px solid rgba(255,255,255,.1); color:#8d9198; font-size:.8rem; }

.floating-call { position: fixed; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom)); z-index: 80; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--ink); box-shadow: 0 12px 34px rgba(0,0,0,.28); border: 3px solid rgba(255,255,255,.88); }
.floating-call svg { width:26px; height:26px; }

@media (max-width: 479px) {
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .brand { gap: .5rem; max-width: calc(100% - 58px); }
  .brand-logo { width: 50px; height: 50px; border-radius: 13px; flex: 0 0 auto; }
  .brand-text strong { font-size: .94rem; }
  .brand-text span { font-size: .66rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
  .menu-toggle { width: 46px; height: 46px; flex: 0 0 auto; }
  .hero .eyebrow { font-size: .68rem; margin-bottom: .85rem; }
  .hero p { font-size: 1rem; line-height: 1.55; }
  .hero .btn-row { gap: .6rem; }
  .hero .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr 1fr 1fr; }
  .proof-chip { min-height: 70px; }
}

@media (min-width: 640px) {
  .container { width: min(calc(100% - 3rem), var(--max)); }
  .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-matrix { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats { grid-template-columns: repeat(4,1fr); }
  .contact-grid { grid-template-columns: 1.3fr .7fr; }
  .contact-card.big { grid-row: span 2; }
  .hero-proof { gap: .7rem; }
  .proof-chip { padding: .9rem; }
  .proof-chip strong { font-size: 1rem; }
  .proof-chip span { font-size: .8rem; }
}

@media (min-width: 900px) {
  .section { padding: 6.5rem 0; }
  .menu-toggle, .mobile-nav { display: none; }
  .desktop-nav { display: flex; align-items: center; gap: 1.2rem; }
  .desktop-nav a { font-size: .92rem; font-weight: 800; color: #e4e5e7; position: relative; }
  .desktop-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:-.35rem; height:2px; background:var(--gold); transition:right .2s ease; }
  .desktop-nav a:hover::after, .desktop-nav a.active::after { right:0; }
  .header-call { display:inline-flex; min-height:46px; align-items:center; padding:.65rem .9rem; gap:.5rem; border-radius:999px; background:var(--gold); color:var(--ink); font-weight:950; }
  .header-call svg { width:18px; height:18px; }
  .brand-logo { width: 62px; height: 62px; }
  .hero-content { padding: 10rem 0 7rem; }
  .hero h1 {
    max-width: 16ch;
    font-size: clamp(4rem, 5.7vw, 6.8rem);
    line-height: .94;
    text-wrap: pretty;
  }
  .hero-home .hero-layout { grid-template-columns: minmax(0,1.55fr) minmax(260px,.45fr); }
  .hero-home .hero h1 { max-width: 15ch; }
  .hero p { font-size: 1.18rem; }
  .hero-layout { display:grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.55fr); gap: 2.5rem; align-items:end; }
  .hero-sidecard { margin:0 0 .3rem auto; }
  .cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .service-card { min-height: 330px; }
  .feature-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split.reverse .media-frame { order:2; }
  .steps { grid-template-columns: repeat(4,1fr); }
  .step { padding: 4.4rem 1rem 1rem; min-height: 220px; }
  .step::before { left:1rem; top:1rem; }
  .service-matrix { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .category-block { grid-template-columns: .85fr 1.15fr; padding: 1.2rem; align-items: stretch; }
  .category-block.reverse .category-image { order:2; }
  .category-body { padding: 1rem 1.1rem; align-self:center; }
  .dual-service { grid-template-columns: 1fr 1fr; }
  .dual-panel { min-height: 610px; }
  .dual-panel .content { inset:auto 2rem 2rem; max-width:520px; }
  .dual-panel h2 { font-size:3.5rem; }
  .band { padding: 2.6rem 3rem; }
  .contact-grid { grid-template-columns: 1.35fr .65fr .65fr; }
  .contact-card.big { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1.2fr .7fr .7fr; align-items:start; }
  .site-footer { padding-bottom: 3rem; }
  .floating-call { bottom: 1.25rem; right: 1.4rem; }
}

@media (min-width: 1200px) {
  .desktop-nav { gap: 1.6rem; }
  .service-card-content { inset:auto 1.4rem 1.4rem; }
  .hero::after { right:-6%; bottom:-28%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 639px) {
  .floating-call {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    padding: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  .floating-call svg { width: 24px; height: 24px; }
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }


/* Local SEO & FAQ */
.local-seo{background:#f4f1e8}.local-grid{display:grid;gap:.75rem;margin-top:1.5rem}.local-grid a{display:flex;flex-direction:column;gap:.2rem;padding:1rem;border:1px solid var(--line);border-radius:18px;background:#fff;color:var(--ink);box-shadow:0 8px 24px rgba(0,0,0,.04)}.local-grid strong{font-size:1rem}.local-grid span{font-size:.88rem;color:#62666d}.faq-list{display:grid;gap:.7rem;margin-top:1.5rem}.faq-list details{background:#fff;border:1px solid var(--line);border-radius:17px;padding:0 1rem}.faq-list summary{cursor:pointer;list-style:none;font-weight:850;padding:1rem 2rem 1rem 0;position:relative}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary::after{content:"+";position:absolute;right:0;top:.8rem;font-size:1.5rem;color:#9a6a00}.faq-list details[open] summary::after{content:"–"}.faq-list details p{color:#5e6269;padding:0 0 1rem;margin:0}@media(min-width:700px){.local-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(min-width:1050px){.local-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
