:root {
  --nh-black: #0d0d0b;
  --nh-ink: #171714;
  --nh-muted: #64625a;
  --nh-yellow: #f6c21a;
  --nh-yellow-strong: #eab308;
  --nh-yellow-soft: #fff4c2;
  --nh-paper: #fbfaf6;
  --nh-warm: #f3f0e7;
  --nh-white: #fff;
  --nh-line: #ded8c6;
  --nh-line-soft: #ebe6d8;
  --nh-radius-sm: 8px;
  --nh-radius: 16px;
  --nh-radius-lg: 24px;
  --nh-shadow-sm: 0 8px 24px rgba(13, 13, 11, .06);
  --nh-shadow: 0 18px 48px rgba(13, 13, 11, .10);
  --nh-shadow-lg: 0 28px 80px rgba(13, 13, 11, .16);
  --nh-wrap: 1600px;
  --nh-gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--nh-paper);
  color: var(--nh-ink);
  font-family: Inter, Aptos, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
button,
input,
textarea,
select { font: inherit; }
a { color: inherit; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; }
:focus-visible {
  outline: 3px solid rgba(246, 194, 26, .75);
  outline-offset: 3px;
}

.nh-main { min-height: 60vh; overflow: clip; }
.nh-hero > .wp-block-group__inner-container,
.nh-section > .wp-block-group__inner-container,
.nh-wrap > .wp-block-group__inner-container,
.nh-section-inner > .wp-block-group__inner-container,
.nh-hero-inner > .wp-block-group__inner-container,
.nh-hero-copy > .wp-block-group__inner-container,
.nh-hero-media > .wp-block-group__inner-container,
.nh-card-grid > .wp-block-group__inner-container,
.nh-trust-grid > .wp-block-group__inner-container,
.nh-blog-links > .wp-block-group__inner-container,
.nh-blog-grid > .wp-block-group__inner-container,
.nh-faq > .wp-block-group__inner-container,
.nh-form > .wp-block-group__inner-container,
.nh-footer-grid > .wp-block-group__inner-container,
.nh-sitemap-list > .wp-block-group__inner-container {
  display: contents;
}
.nh-wrap,
.nh-footer-grid {
  width: min(var(--nh-wrap), calc(100% - (var(--nh-gutter) * 2)));
  margin-inline: auto;
}
.nh-wrap { min-width: 0; }

.nh-header {
  position: sticky;
  top: 12px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(var(--nh-wrap), calc(100% - 28px));
  min-height: 64px;
  margin: 12px auto 0;
  padding: 8px 10px 8px 14px;
  color: #fff;
  background: rgba(13, 13, 11, .92);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  box-shadow: var(--nh-shadow-lg);
  backdrop-filter: blur(18px);
}
.nh-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.nh-logo span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  margin-right: 8px;
  padding: 0 11px;
  color: #111;
  background: var(--nh-yellow);
  border-radius: 999px;
}
.nh-nav { flex: 1 1 auto; min-width: 0; }
.nh-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nh-menu li { position: relative; }
.nh-menu a {
  display: block;
  padding: 10px 11px;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.nh-menu li:hover > a,
.nh-menu a:focus-visible {
  background: rgba(255, 255, 255, .12);
}
.nh-menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 6px;
  width: min(780px, 92vw);
  max-height: min(70vh, 640px);
  margin: 0;
  padding: 14px;
  overflow: auto;
  list-style: none;
  background: #141411;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--nh-radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease;
}
.nh-menu li:hover > .sub-menu,
.nh-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nh-menu .sub-menu a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  white-space: normal;
}
.nh-menu .sub-menu a:hover { background: rgba(246, 194, 26, .16); }
.nh-call,
.nh-quote,
.nh-primary-call,
.nh-secondary-link,
.wp-block-button__link,
.nh-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.nh-call {
  color: #111;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}
.nh-quote,
.wp-block-button__link,
.nh-form button {
  color: #111;
  background: var(--nh-yellow);
}
.nh-primary-call {
  color: #fff;
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}
.nh-secondary-link {
  color: #111;
  background: #fff;
  border: 1px solid var(--nh-line);
}
.nh-call:hover,
.nh-quote:hover,
.nh-primary-call:hover,
.nh-secondary-link:hover,
.wp-block-button__link:hover,
.nh-form button:hover {
  transform: translateY(-1px);
  box-shadow: var(--nh-shadow-sm);
}
.nh-menu-toggle { display: none; }

.nh-hero {
  position: relative;
  padding: 56px 0 64px;
  color: var(--nh-ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(246, 194, 26, .34), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--nh-paper) 52%, var(--nh-warm) 100%);
  overflow: hidden;
}
.nh-hero.wp-block-group {
  display: block;
  min-height: 0;
}
.nh-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .86fr);
  gap: 56px;
  align-items: center;
  min-height: min(660px, calc(100vh - 140px));
}
.nh-hero-copy,
.nh-hero-media { min-width: 0; }
.nh-hero-copy { align-self: center; }
.nh-kicker {
  margin: 0 0 14px;
  color: #856500;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 950;
}
.nh-hero h1,
.nh-hero-copy h1,
.entry-content .nh-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(3.25rem, 5.1vw, 5.65rem);
  line-height: .94;
  letter-spacing: 0;
}
.nh-lead {
  max-width: 640px;
  margin: 0;
  color: #45433c;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}
.nh-action-row,
.nh-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}
.nh-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.nh-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #222019;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 850;
  box-shadow: var(--nh-shadow-sm);
}
.nh-hero-media .nh-image {
  align-self: center;
  margin: 0;
}
.nh-hero-media .nh-image img {
  width: 100%;
  height: clamp(320px, 36vw, 470px);
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--nh-shadow-lg);
}
.nh-hero-ticket {
  width: min(100%, 248px);
  margin: -58px 0 0 22px;
  padding: 18px;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  position: relative;
  z-index: 2;
}
.nh-hero-ticket strong {
  display: block;
  color: var(--nh-yellow);
  font-size: 1.02rem;
}
.nh-hero-ticket span {
  display: block;
  margin-top: 2px;
  color: #e6e4dc;
  font-size: .9rem;
}

.nh-service-hero { background: linear-gradient(90deg, #111 0%, #111 43%, var(--nh-paper) 43%, var(--nh-paper) 100%); color: #fff; }
.nh-service-hero .nh-lead { color: #efefe9; }
.nh-service-hero .nh-secondary-link { color: #fff; background: transparent; border-color: #555; }
.nh-service-hero .nh-hero-proof span { color: #fff; background: rgba(255, 255, 255, .08); border-color: #333; box-shadow: none; }
.nh-area-hero { background: #111; color: #fff; }
.nh-area-hero .nh-lead { color: #e8e8df; }
.nh-local-hero,
.nh-blog-hero,
.nh-blog-index-hero,
.nh-sitemap-hero,
.nh-contact-hero,
.nh-index-hero,
.nh-area-index-hero { background: linear-gradient(135deg, #fff, var(--nh-warm)); }

.nh-section {
  padding: 72px 0;
  background: var(--nh-paper);
  color: var(--nh-ink);
}
.nh-section:nth-of-type(odd) { background: #fff; }
.nh-section.wp-block-group {
  padding-left: 0;
  padding-right: 0;
}
.nh-section .nh-wrap,
.nh-section .nh-section-inner,
.nh-section-inner {
  width: min(var(--nh-wrap), calc(100% - (var(--nh-gutter) * 2)));
  margin-inline: auto;
  min-width: 0;
}
.nh-section h2,
.nh-section-inner h2 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.nh-section h3,
.nh-section-inner h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.24;
}
.nh-section p,
.nh-section-inner p {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--nh-muted);
}
figure.nh-image,
.nh-image {
  display: block;
  clear: both;
  margin: 28px auto;
}
.nh-section figure.nh-image,
.nh-section .wp-block-image.nh-image {
  margin-top: 28px;
  margin-bottom: 28px;
}
.nh-image img,
figure.nh-image img,
.wp-block-image.nh-image img {
  display: block;
  width: 100%;
  height: clamp(240px, 31vw, 420px);
  object-fit: cover;
  border-radius: var(--nh-radius-lg);
  background: #ddd;
  box-shadow: var(--nh-shadow);
}

.nh-card-grid,
.nh-trust-grid,
.nh-blog-links,
.nh-blog-grid {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  min-width: 0;
}
.nh-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nh-trust-grid { grid-template-columns: 1.18fr repeat(3, 1fr); }
.nh-blog-links,
.nh-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nh-card,
.nh-trust-grid .nh-card,
.nh-blog-grid .nh-card {
  grid-column: auto;
  min-width: 0;
  padding: 24px;
  color: var(--nh-ink);
  background: #fff;
  border: 1px solid var(--nh-line-soft);
  border-radius: var(--nh-radius);
  box-shadow: var(--nh-shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.nh-card:hover {
  border-color: #d4ceb9;
  transform: translateY(-2px);
  box-shadow: var(--nh-shadow);
}
.nh-card h3 { margin: 0 0 10px; }
.nh-card p { margin: 0 0 12px; }
.nh-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 8px;
  padding: 9px 13px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
}
.nh-trust-grid .nh-card:first-child {
  color: #fff;
  background: #111;
  border-color: #111;
}
.nh-process-band,
.nh-local-services {
  color: #fff;
  background: #111;
}
.nh-process-band .nh-card,
.nh-local-services .nh-card {
  color: #fff;
  background: #1a1a17;
  border-color: #333;
}

.nh-table-wrap {
  margin: 28px 0;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius-lg);
  box-shadow: var(--nh-shadow-sm);
}
.nh-table-wrap table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}
.nh-table-wrap th,
.nh-table-wrap td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--nh-line-soft);
}
.nh-table-wrap th {
  color: #fff;
  background: #111;
  font-weight: 900;
}
.nh-table-wrap tr:last-child td { border-bottom: 0; }

.nh-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  min-width: 0;
}
.nh-faq details {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--nh-line-soft);
  border-radius: var(--nh-radius);
  box-shadow: var(--nh-shadow-sm);
}
.nh-faq summary {
  cursor: pointer;
  font-weight: 900;
}
.nh-faq details p { margin-top: 10px; }

.nh-form {
  display: grid;
  gap: 14px;
  width: min(800px, 100%);
  max-width: 800px;
  margin: 24px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--nh-line-soft);
  border-radius: var(--nh-radius-lg);
  box-shadow: var(--nh-shadow-sm);
}
.nh-form label {
  display: grid;
  gap: 6px;
  color: var(--nh-ink);
  font-weight: 850;
}
.nh-form input,
.nh-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--nh-ink);
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 12px;
}
.nh-form textarea { min-height: 150px; resize: vertical; }

.nh-sitemap-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  max-height: 720px;
  margin: 28px 0;
  padding: 18px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--nh-line-soft);
  border-radius: var(--nh-radius-lg);
  box-shadow: var(--nh-shadow-sm);
}
.nh-sitemap-list a {
  display: block;
  padding: 9px 10px;
  background: var(--nh-warm);
  border-radius: 12px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 800;
}

.nh-service-story,
.nh-local-service-intro {
  background: linear-gradient(90deg, var(--accent, #fff7d7), var(--nh-paper));
}
.nh-service-story .nh-wrap,
.nh-local-service-intro .nh-wrap,
.nh-local-brief .nh-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  gap: 32px;
  align-items: start;
}
.nh-service-story .nh-image,
.nh-local-service-intro .nh-image {
  grid-column: 2;
  grid-row: 1 / span 5;
}
.nh-included .nh-wrap,
.nh-local-estimate .nh-wrap {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
  gap: 32px;
}
.nh-included .nh-image,
.nh-local-estimate .nh-image,
.nh-local-brief .nh-image {
  grid-column: 1;
  grid-row: 1 / span 4;
}
.nh-service-wet { --accent: #dcefed; }
.nh-service-spark { --accent: #fff0ae; }
.nh-service-finish { --accent: #f3e8da; }
.nh-service-renovation { --accent: #e7e2d8; }
.nh-service-secure { --accent: #eeeeee; }
.nh-service-craft { --accent: #fff7d7; }
.nh-local-map { background: #e9e7dd; }

.nh-footer {
  padding: 64px 0 32px;
  color: #fff;
  background: #0d0d0b;
  border-top: 8px solid var(--nh-yellow);
}
.nh-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .8fr) minmax(180px, .8fr);
  gap: 32px;
  align-items: start;
}
.nh-footer h2,
.nh-footer h3 { margin: 0 0 12px; }
.nh-footer p { margin: 0 0 14px; color: #d9d7cf; }
.nh-footer a { color: #fff; }
.nh-floating-call { display: none; }

@media (max-width: 1100px) {
  .nh-header { width: calc(100% - 24px); }
  .nh-menu a { padding-inline: 8px; }
  .nh-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .84fr);
    gap: 32px;
  }
  .nh-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nh-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  :root { --nh-gutter: 20px; }
  .nh-header {
    top: 0;
    width: 100%;
    min-height: 64px;
    margin: 0;
    border-inline: 0;
    border-radius: 0;
  }
  .nh-logo { min-width: 0; font-size: .98rem; }
  .nh-menu-toggle {
    display: grid;
    place-items: center;
    gap: 4px;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    background: #fff;
    border: 0;
    border-radius: 999px;
  }
  .nh-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 2px;
  }
  .nh-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: none;
    max-height: calc(100vh - 88px);
    padding: 12px;
    overflow: auto;
    color: #fff;
    background: #111;
    border: 1px solid #333;
    border-radius: var(--nh-radius-lg);
    box-shadow: var(--nh-shadow-lg);
  }
  .nh-nav.open { display: block; }
  .nh-menu { display: grid; gap: 4px; }
  .nh-menu a {
    min-height: 42px;
    padding: 12px;
    border-radius: 12px;
    white-space: normal;
  }
  .nh-menu .sub-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: auto;
    max-height: none;
    margin: 0;
    padding: 4px 0 8px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nh-call { display: none; }
  .nh-quote { min-height: 40px; padding: 10px 14px; }
  .nh-hero { padding: 40px 0 52px; }
  .nh-hero-inner {
    display: block;
    min-height: 0;
  }
  .nh-hero h1,
  .nh-hero-copy h1,
  .entry-content .nh-hero h1 {
    max-width: 680px;
    font-size: clamp(2.65rem, 8.2vw, 4.15rem);
    line-height: .98;
  }
  .nh-lead { font-size: 1rem; line-height: 1.68; }
  .nh-action-row { gap: 10px; }
  .nh-hero-media .nh-image {
    margin: 28px 0 0;
  }
  .nh-hero-media .nh-image img,
  .nh-image img,
  figure.nh-image img,
  .wp-block-image.nh-image img {
    height: clamp(220px, 42vw, 360px);
    aspect-ratio: auto;
    border-radius: 20px;
  }
  .nh-hero-ticket {
    width: auto;
    margin: 12px 0 0;
  }
  .nh-section { padding: 56px 0; }
  .nh-section.wp-block-group {
    padding-left: 0;
    padding-right: 0;
  }
  .nh-section h2,
  .nh-section-inner h2 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }
  .nh-card-grid,
  .nh-trust-grid,
  .nh-blog-links,
  .nh-blog-grid,
  .nh-faq,
  .nh-footer-grid,
  .nh-sitemap-list,
  .nh-service-story .nh-wrap,
  .nh-local-service-intro .nh-wrap,
  .nh-local-brief .nh-wrap,
  .nh-included .nh-wrap,
  .nh-local-estimate .nh-wrap {
    grid-template-columns: 1fr;
  }
  .nh-service-story .nh-image,
  .nh-local-service-intro .nh-image,
  .nh-included .nh-image,
  .nh-local-estimate .nh-image,
  .nh-local-brief .nh-image {
    grid-column: auto;
    grid-row: auto;
  }
  .nh-floating-call {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    color: #111;
    background: var(--nh-yellow);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
  }
}

@media (max-width: 520px) {
  body { font-size: 15.5px; }
  .nh-header { gap: 8px; padding: 8px 12px; }
  .nh-logo span { min-height: 32px; margin-right: 6px; padding-inline: 9px; }
  .nh-quote { padding-inline: 12px; }
  .nh-hero { padding-top: 38px; }
  .nh-hero h1,
  .nh-hero-copy h1,
  .entry-content .nh-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.35rem);
  }
  .nh-primary-call,
  .nh-secondary-link {
    width: 100%;
    max-width: 280px;
  }
  .nh-hero-proof span { min-height: 32px; font-size: .82rem; }
  .nh-card { padding: 22px; }
  .nh-table-wrap table { min-width: 560px; }
  .nh-footer { padding-top: 48px; padding-bottom: 88px; }
}
