/* =========================================================================
   NEMCO, Inc. — Site Stylesheet
   Pixel-faithful rebuild of the legacy WP/Divi theme as static HTML.
   ========================================================================= */

:root {
  /* Brand tokens */
  --c-primary: #002d31;          /* deep teal - dark sections, footer, body text on light bg */
  --c-primary-2: #0e3a3f;        /* slightly lighter for "OUR SERVICES" section bg */
  --c-primary-3: #001719;        /* near-black teal for copyright bar */
  --c-tertiary: #5a8b91;         /* mid-teal - top utility bar bg, service card bg, accent */
  --c-tertiary-soft: #6f969a;    /* hover/link blue-grey */
  --c-mint: #d8efe6;             /* pale mint - header band */
  --c-mint-2: #ecf5f4;           /* lighter mint - subtle bg / form input */
  --c-gold: #e6b13a;             /* CTA bar background */
  --c-gold-button: #f3e5c3;      /* pale mint-cream button on gold CTA */
  --c-text: #151d1d;
  --c-muted: #4a5a5b;
  --c-rule: #c0c8c9;
  --c-white: #ffffff;
  --c-link: #114a51;

  /* Type */
  --ff-sans: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1140px;
  --pad-section: 80px;
  --pad-section-mobile: 40px;
  --gutter: 24px;
  --radius: 8px;
  --radius-lg: 14px;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-pop: 0 14px 38px -16px rgba(0, 0, 0, 0.35);
}

/* -------------------------------------------------------------------------
   Reset + base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 108px;
}
@media (max-width: 640px) {
  body { padding-top: 92px; }
}
body.has-hero { padding-top: 0; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-link); text-decoration: none; transition: color 160ms ease; }
a:hover, a:focus-visible { color: var(--c-tertiary); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--c-tertiary);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-primary);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(28px, 4.4vw, 42px); letter-spacing: -0.01em; }
h2 { font-size: clamp(24px, 3.2vw, 32px); }
h3 { font-size: clamp(18px, 2vw, 22px); }

p { margin: 0 0 1em; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--pad-section-mobile) 0; }
@media (min-width: 768px) { section { padding: var(--pad-section) 0; } }

/* -------------------------------------------------------------------------
   Sticky header stack (top utility bar + main header)
   ------------------------------------------------------------------------- */
.site-headers {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.top-bar {
  background-color: rgba(18, 56, 62, 0.35);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: var(--c-white);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 6px 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
}

.top-bar a {
  color: var(--c-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover, .top-bar a:focus-visible { color: var(--c-mint); }

.top-bar .sep { opacity: 0; width: 0; }
.top-bar svg { width: 14px; height: 14px; flex: none; }

@media (max-width: 640px) {
  .top-bar { font-size: 12px; padding: 8px 12px; }
  .top-bar .top-bar-address { display: none; }
}

/* -------------------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------------------- */
.site-header {
  background-color: rgba(216, 239, 230, 0.65);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
  padding: 14px 0;
  position: relative;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .logo {
  display: block;
  width: 130px;
}
.site-header .logo img { width: 100%; height: auto; }

.main-nav { display: flex; align-items: center; }

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-primary);
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover, .main-nav a:focus-visible,
.main-nav li.current > a { color: var(--c-tertiary); }

/* Dropdown */
.main-nav .has-dropdown { position: relative; }

.main-nav .has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 10px 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.main-nav .has-dropdown:hover > .dropdown,
.main-nav .has-dropdown:focus-within > .dropdown,
.main-nav .has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-nav .dropdown li { display: block; }
.main-nav .dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-bottom: none;
  white-space: nowrap;
}
.main-nav .dropdown a:hover { background: var(--c-mint-2); color: var(--c-tertiary); }

/* Mobile nav button */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px; height: 42px;
  padding: 0;
  cursor: pointer;
  color: var(--c-primary);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
  transition: transform 200ms ease, top 200ms ease, opacity 160ms ease;
}
.nav-toggle span { margin: 0 auto; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after  { top: 8px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-mint);
    border-top: 1px solid rgba(0,0,0,0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
  }
  .main-nav.open { max-height: 70vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 0; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; padding: 12px 24px; border-bottom: 0; }
  .main-nav .has-dropdown > a::after { float: right; margin-top: 6px; }
  .main-nav .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: var(--c-mint-2);
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease;
  }
  .main-nav .has-dropdown.open > .dropdown { max-height: 400px; }
  .main-nav .dropdown a { padding: 10px 40px; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--c-primary);
  color: var(--c-white);
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(0, 45, 49, 0.48) 0%,
    rgba(0, 45, 49, 0.28) 45%,
    rgba(0, 45, 49, 0.10) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 150px 0 90px;
}
@media (max-width: 640px) {
  .hero-inner { padding: 120px 0 60px; }
}

.hero h1 {
  color: var(--c-white);
  font-size: clamp(32px, 5.4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  max-width: 22ch;
  margin-bottom: 16px;
}

.hero .sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin-bottom: 28px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-slider-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 160ms ease, transform 160ms ease;
}
.hero-slider-dots button.is-active {
  background: var(--c-white);
  transform: scale(1.3);
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  text-decoration: none;
}
.btn:focus-visible { outline-offset: 3px; }

.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--c-tertiary);
  border-color: var(--c-tertiary);
  color: var(--c-white);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--c-mint);
  color: var(--c-primary);
  border-color: var(--c-mint);
}
.btn-light:hover, .btn-light:focus-visible {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-primary);
}

.btn-cta {
  background: var(--c-gold-button);
  color: var(--c-primary);
  border-color: var(--c-gold-button);
  padding: 14px 36px;
  font-size: 14px;
}
.btn-cta:hover, .btn-cta:focus-visible {
  background: var(--c-white);
  border-color: var(--c-white);
}

/* -------------------------------------------------------------------------
   Section: Our Services (dark teal bg with cards)
   ------------------------------------------------------------------------- */
.services-intro {
  background: var(--c-white);
  text-align: center;
  padding: 56px 0 36px;
}
.services-intro h2 {
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.section-services {
  background: var(--c-primary-2);
  color: var(--c-white);
  padding: 70px 0 90px;
}
.section-services h2 {
  color: var(--c-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.section-services.no-heading {
  padding: 30px 0 80px;
}
.section-services.no-heading > .container > h2 { display: none; }

.service-grid {
  display: grid;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  /* 4+2 layout: when there are exactly 6 cards, center the last 2 in cols 2 & 3 */
  .service-grid > :nth-last-child(2):nth-child(5) { grid-column-start: 2; }
}

.service-card {
  background: var(--c-tertiary);
  color: var(--c-white);
  border-radius: 4px;
  padding: 56px 22px 28px;
  text-align: center;
  position: relative;
  margin-top: 50px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }

.service-card .photo {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}
.service-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

.service-card h3 {
  color: var(--c-white);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.92);
}

.service-card .details {
  display: inline-block;
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 12px;
  margin-top: auto;
}
.service-card .details::after { content: " →"; }
.service-card .details:hover { color: var(--c-mint); }

/* -------------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------------- */
.section-testimonials { background: var(--c-white); padding: 60px 0; }
.section-testimonials h2 {
  text-align: center;
  color: var(--c-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 22px;
  margin-bottom: 36px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 36px 22px 24px;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid #eef2f1;
  align-self: start;
}

.testimonial .quote-icon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-mint-2);
  color: var(--c-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eef2f1;
  font-size: 22px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 14px;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: var(--c-primary);
  margin-top: 8px;
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--c-muted);
  margin-top: 2px;
}

/* -------------------------------------------------------------------------
   Yellow CTA strip
   ------------------------------------------------------------------------- */
.cta-strip {
  background: var(--c-gold);
  text-align: center;
  padding: 70px 24px;
}
.cta-strip .container { max-width: 720px; }
.cta-strip h2 {
  color: var(--c-white);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.cta-strip p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

/* -------------------------------------------------------------------------
   Page header (sub-pages)
   ------------------------------------------------------------------------- */
.page-header {
  background: var(--c-white);
  padding: 60px 0 50px;
}
.page-header .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 820px) {
  .page-header .container { grid-template-columns: 2fr 1fr; }
}
.page-header h1 {
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--c-primary);
}
.page-header .sub {
  font-size: 16px;
  color: var(--c-tertiary);
  font-weight: 600;
  margin-bottom: 18px;
}
.page-header .lede {
  font-size: 15px;
  color: var(--c-muted);
  margin-bottom: 20px;
  max-width: 56ch;
}
.page-header .header-aside {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-header .header-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-tertiary);
  display: flex; align-items: center; justify-content: center;
  border: 6px solid var(--c-mint-2);
  box-shadow: var(--shadow-pop);
}
.page-header .header-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-header .header-photo.is-logo {
  background: var(--c-primary);
  border-radius: 4px;
  width: 200px; height: 200px;
  border: none;
  padding: 30px;
}
.page-header .header-photo.is-logo img {
  width: 100%; height: auto; object-fit: contain;
}

.page-header .lede-strong {
  font-size: 18px;
  color: var(--c-tertiary);
  font-weight: 700;
  margin: 0 0 4px;
}
.page-header .tagline-3w {
  font-size: 17px;
  color: var(--c-primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 22px;
}

.divider-teal {
  background: var(--c-tertiary);
  height: 34px;
}

/* -------------------------------------------------------------------------
   Service detail body
   ------------------------------------------------------------------------- */
.service-detail {
  padding: 40px 0 60px;
  background: var(--c-white);
}
.service-detail .with-icon {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  padding-top: 30px;
  border-top: 1px solid var(--c-rule);
}
@media (min-width: 820px) {
  .service-detail .with-icon { grid-template-columns: 220px 1fr; }
}
.service-detail .icon-cone {
  display: flex; justify-content: center; align-items: flex-start;
}
.service-detail .icon-cone .cone {
  width: 70px; height: 70px;
  display: block;
  margin: 0 auto;
}

.service-detail h2 {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 14px;
}
.service-detail h3 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 18px 0 8px;
}
.service-detail ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 20px;
  color: var(--c-muted);
  font-size: 13.5px;
}
.service-detail ul li { margin-bottom: 6px; }

.service-detail .three-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px 36px;
  align-items: start;
}
@media (min-width: 720px) {
  .service-detail .three-col { grid-template-columns: repeat(3, 1fr); }
}
.service-detail .three-col h3 { margin-top: 0; }
.service-detail .three-col ul { font-size: 13px; }

/* About page specifics */
.about-body {
  padding: 50px 0 30px;
  background: var(--c-white);
}
.about-body .container { max-width: 900px; }
.about-body p { color: var(--c-muted); font-size: 15px; }
.about-body .lede-strong { font-size: 18px; color: var(--c-tertiary); font-weight: 700; margin-bottom: 4px; }
.about-body .tagline-3w { font-size: 17px; color: var(--c-primary); font-weight: 800; letter-spacing: 0.04em; margin-bottom: 24px; }

.video-block {
  background: linear-gradient(180deg, var(--c-mint-2) 0%, var(--c-white) 100%);
  padding: 70px 0 80px;
}
.video-block .container { max-width: 1100px; }
.video-block-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.video-block-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-tertiary);
  margin: 0 0 10px;
}
.video-block-header h2 {
  margin: 0 0 12px;
  color: var(--c-primary);
}
.video-block-header .lede {
  color: var(--c-muted);
  font-size: 15px;
  margin: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 820px) {
  .video-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.video-tile {
  margin: 0;
  position: relative;
  transition: transform 280ms ease;
}
.video-tile:hover { transform: translateY(-3px); }

.video-block .ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(0, 45, 49, 0.08);
}
.video-block .ratio iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

.behind-scenes {
  background: var(--c-white);
  text-align: center;
  padding: 30px 24px 60px;
}
.behind-scenes .container { max-width: 760px; }
.behind-scenes p:first-child { color: var(--c-tertiary); font-weight: 700; font-size: 17px; }
.behind-scenes p { color: var(--c-muted); font-size: 14px; }

/* -------------------------------------------------------------------------
   Contact page
   ------------------------------------------------------------------------- */
.contact-grid {
  padding: 50px 0;
  background: var(--c-white);
}
.contact-grid .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 880px) {
  .contact-grid .container { grid-template-columns: 1.6fr 1fr; }
}

.contact-info h1 { text-transform: uppercase; margin-bottom: 6px; }
.contact-info .tagline { color: var(--c-tertiary); font-weight: 600; margin-bottom: 18px; }
.contact-info .address {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-primary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  font-size: 14px;
}
.contact-info .phone-fax { color: var(--c-muted); font-size: 13.5px; margin-bottom: 18px; }
.contact-info .phone-fax span { display: block; }

.directory {
  margin-top: 24px;
}
.directory h2 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}
.directory table { width: 100%; border-collapse: collapse; font-size: 13px; }
.directory td {
  padding: 11px 8px;
  border-bottom: 1px solid #e6ecec;
  vertical-align: middle;
  color: var(--c-text);
}
.directory td:first-child { font-weight: 700; color: var(--c-primary); white-space: nowrap; }
.directory td:nth-child(2) a { color: var(--c-tertiary); word-break: break-word; }
.directory td:nth-child(3) { white-space: nowrap; color: var(--c-muted); }

@media (max-width: 560px) {
  .directory td { display: block; border-bottom: 0; padding: 2px 0; }
  .directory tr { display: block; padding: 12px 0; border-bottom: 1px solid #e6ecec; }
}

.contact-form {
  background: var(--c-white);
  border-radius: var(--radius);
}
.contact-form .nm-block {
  display: flex; justify-content: center;
  margin-bottom: 18px;
}
.contact-form .nm-block img { max-width: 180px; }

/* -------------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------------- */
.form { display: grid; gap: 14px; }
.form .field { display: flex; flex-direction: column; gap: 6px; }
.form .row { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form .row.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 600px) { .form .row.three { grid-template-columns: 1fr 1fr 1fr; } }

.form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.02em;
}
.form label .req { color: #b03030; }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form input[type="time"],
.form input[type="number"],
.form select,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d6dcdc;
  background: var(--c-mint-2);
  border-radius: 4px;
  font: inherit;
  color: var(--c-text);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--c-tertiary);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(90, 139, 145, 0.18);
}
.form textarea { min-height: 140px; resize: vertical; }

.form .check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 600px) { .form .check-list.two { grid-template-columns: 1fr 1fr; } }
.form .check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text);
  cursor: pointer;
}
.form .check input { accent-color: var(--c-tertiary); width: 16px; height: 16px; }

.form .radio-row { display: inline-flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.form fieldset {
  border: 1px solid #d6dcdc;
  border-radius: var(--radius);
  padding: 18px;
  margin: 0;
}
.form fieldset legend {
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form .help {
  font-size: 12px;
  color: var(--c-muted);
}
.form .actions { margin-top: 8px; display: flex; gap: 12px; flex-wrap: wrap; }

.form .ack {
  background: var(--c-mint-2);
  border-left: 3px solid var(--c-tertiary);
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.55;
}

/* -------------------------------------------------------------------------
   Map block
   ------------------------------------------------------------------------- */
.map-block {
  position: relative;
  width: 100%;
  height: 360px;
  background: var(--c-mint-2);
  overflow: hidden;
}
.map-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 32px;
  background: var(--c-tertiary);
  z-index: 1;
}
.map-block iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 50px 0 20px;
}
.site-footer .container {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 720px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
.site-footer .foot-logo img { max-width: 170px; }
.site-footer h3 {
  color: var(--c-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.site-footer p, .site-footer a { color: var(--c-white); font-size: 13.5px; }
.site-footer p { margin: 0 0 4px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--c-mint); }
.site-footer .meta { margin-top: 12px; }
.site-footer .contact-us-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

.foot-nav {
  background: var(--c-mint);
  color: var(--c-primary);
  padding: 14px 0;
}
.foot-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
}
.foot-nav a {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.02em;
}
.foot-nav a:hover, .foot-nav a:focus-visible { color: var(--c-tertiary); }

.copyright-bar {
  background: var(--c-primary-3);
  color: rgba(255,255,255,0.65);
  padding: 14px 0;
  font-size: 11.5px;
}
.copyright-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.copyright-bar a { color: rgba(255,255,255,0.85); }
.copyright-bar .social a { display: inline-flex; align-items: center; gap: 8px; }
.copyright-bar svg { width: 14px; height: 14px; }
.lws-badge { display: inline-flex; align-items: center; gap: 10px; }
.lws-badge img { max-height: 30px; opacity: 0.85; transition: opacity 160ms ease; }
.lws-badge:hover img { opacity: 1; }

/* -------------------------------------------------------------------------
   Misc utilities
   ------------------------------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-14 { margin-top: 14px; }
.honeypot { display: none; }
.text-req { color: #b03030; }

.fieldset-section {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 0 0 10px;
}
.fieldset-section + .row,
.fieldset-section + .field { margin-top: 0; }
.fieldset-section.second { margin-top: 18px; }

/* Thank-you page */
.thank-you {
  padding: 90px 0 100px;
  background: var(--c-mint-2);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.thank-you .container { max-width: 720px; }
.thank-you-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-pop);
  border: 1px solid #e6eced;
  animation: rise 600ms ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.thank-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  color: var(--c-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-mint-2);
}
.thank-icon svg { width: 44px; height: 44px; }
.thank-you-card h1 { margin-bottom: 8px; }
.thank-you-card .lede-strong {
  font-size: 18px;
  color: var(--c-tertiary);
  font-weight: 700;
  margin-bottom: 14px;
}
.thank-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* Hero slide bg images */
.hero-slide.slide-1 { background-image: url("../images/hero/slide-cleaning.jpg"); }
.hero-slide.slide-2 { background-image: url("../images/hero/slide-concierge.jpg"); }
.hero-slide.slide-3 { background-image: url("../images/hero/slide-construction.jpg"); }
.hero-slide.slide-4 { background-image: url("../images/hero/slide-landscape.jpg"); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .service-card, .btn, .testimonial { transition: none !important; }
}
