:root {
  --navy: #06394a;
  --orange: #ff4d2e;
  --yellow: #ffd166;
  --teal: #00a6a6;
  --ink: #082733;
  --muted: #60717a;
  --line: #d6e7e9;
  --soft: #edf8f7;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(6, 57, 74, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.home-header {
  background: linear-gradient(90deg, #042b38, #07576b 58%, #0b7a75);
  border-bottom: 0;
}

.home-header .brand,
.home-header .main-nav a {
  color: var(--white);
}

.home-header .header-call {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 77, 46, .3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: var(--white);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex: 1;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a { color: #27384c; }
.main-nav a:hover, .text-link:hover { color: var(--orange); }

.header-call {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 9px 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 108px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 630px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.home-hero-shade {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 166, 166, .18), transparent 42%),
    linear-gradient(120deg, rgba(4, 43, 56, .76), rgba(4, 43, 56, .3));
}

.home-hero-content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(760px, calc(100% - 36px));
  padding: 60px 0;
  text-align: center;
}

.home-hero-content h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  text-shadow: 0 6px 24px rgba(0,0,0,.26);
}

.home-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.95);
  font-size: clamp(18px, 2vw, 23px);
}

.stacked-actions {
  display: grid;
  grid-template-columns: minmax(180px, auto);
  gap: 16px;
  justify-content: center;
}

.stacked-actions .btn {
  min-width: 190px;
  min-height: 58px;
  font-size: 18px;
}

.pulse {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.compact-phone {
  margin-top: 18px;
  font-size: clamp(24px, 3vw, 36px);
}

.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(11, 31, 58, .94), rgba(11, 31, 58, .58) 48%, rgba(11, 31, 58, .22)); }

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding: 48px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 4px; font-size: clamp(52px, 8vw, 104px); line-height: .9; letter-spacing: 0; }
.hero h2 { margin-bottom: 16px; font-size: clamp(25px, 4vw, 48px); line-height: 1.05; letter-spacing: 0; }
.hero p:not(.eyebrow) { max-width: 620px; font-size: clamp(18px, 2vw, 24px); color: rgba(255,255,255,.92); }

.hero-actions, .row-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(6, 57, 74, .16);
}

.btn.primary { color: var(--white); background: linear-gradient(135deg, var(--orange), #ff7d35); }
.btn.secondary { color: var(--navy); background: var(--white); }
.hero-phone { display: inline-block; margin-top: 24px; font-size: clamp(30px, 4vw, 48px); font-weight: 950; }

.quote-strip {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(90deg, #ff4d2e, #ff8a2a 50%, #00a6a6);
}

.quote-strip div {
  display: grid;
  gap: 2px;
}

.quote-strip strong { font-size: 18px; }
.quote-strip span { color: rgba(255,255,255,.9); }
.quote-strip .btn { background: var(--navy); }

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 70px);
}

.muted { background: var(--soft); }
.choose { padding-top: 28px; }
.section-heading { max-width: 820px; margin-bottom: 28px; }
.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.centered p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}
.section-heading h2, .split h2, .estimate-band h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.05; color: var(--navy); letter-spacing: 0; }
.row-heading { justify-content: space-between; max-width: none; }
.text-link { color: var(--navy); font-weight: 900; }

.feature-grid, .card-grid, .review-grid, .area-grid, .seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row article {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: transform .24s ease, background .24s ease;
}

.trust-row article:hover {
  transform: translateY(-6px);
  background: #f7fffd;
}

.trust-row article:last-child { border-right: 0; }

.trust-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--orange));
  font-weight: 900;
}

.trust-row h3,
.tip-grid h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.trust-row p,
.tip-grid p {
  color: var(--muted);
}

.offering-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 22px;
  margin-top: 34px;
  align-items: start;
}

.service-menu {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f4fbfb);
  box-shadow: 0 12px 36px rgba(11,31,58,.07);
}

.service-menu h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 22px;
}

.service-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(214, 231, 233, .9);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-menu a:hover {
  transform: translateX(4px);
  color: var(--orange);
  border-color: rgba(255, 77, 46, .42);
  box-shadow: 0 10px 24px rgba(255, 77, 46, .12);
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.offering-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(11,31,58,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(6,57,74,.18);
}

.offering-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.offering-card:hover img,
.portfolio-strip img:hover,
.portfolio-item:hover img,
.service-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.05);
}

.offering-card div {
  padding: 24px;
}

.offering-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.offering-card p {
  color: var(--muted);
}

.offering-card span,
.tip-grid span {
  color: var(--orange);
  font-weight: 900;
}

.offering-card span::after,
.service-card .card-quote::after {
  content: " ->";
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.seo-link-grid a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff, #f2fbfb);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 24px rgba(11,31,58,.05);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.seo-link-grid a:hover,
.seo-link-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255,77,46,.55);
  box-shadow: 0 18px 40px rgba(6,57,74,.14);
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tip-grid article {
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(11,31,58,.05);
  transition: transform .24s ease, box-shadow .24s ease;
}

.tip-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(6,57,74,.14);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.faq-list p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.feature-grid article, .review-grid figure, .area-card, .seo-card {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(11,31,58,.05);
  transition: transform .24s ease, box-shadow .24s ease;
}

.review-grid figure:hover,
.area-card:hover,
.seo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(6,57,74,.14);
}

.feature-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.feature-grid span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--orange);
}

.service-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(11,31,58,.05);
  transition: transform .24s ease, box-shadow .24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(6,57,74,.14);
}

.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card h3 { margin: 18px 18px 6px; color: var(--navy); font-size: 22px; }
.service-card p { margin: 0 18px 20px; color: var(--muted); }
.service-card .card-quote {
  display: inline-flex;
  margin: 0 18px 22px;
  color: var(--orange);
  font-weight: 900;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
}

.portfolio-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .5s ease, filter .5s ease;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.map-panel {
  min-height: 390px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(11,31,58,.7), rgba(11,31,58,.7)),
    linear-gradient(135deg, rgba(0, 91, 128, .9), rgba(255, 68, 54, .72)) center/cover;
  box-shadow: var(--shadow);
}

.map-panel span {
  display: grid;
  place-items: center;
  min-height: 94px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.review-grid blockquote {
  margin: 0 0 18px;
  color: #26384c;
  font-size: 18px;
}

.review-grid figcaption { color: var(--navy); font-weight: 900; }

.stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #f6b800;
  font-size: 18px;
  font-weight: 900;
}

.stars span {
  color: #4285f4;
  font-size: 13px;
}

.nyc-aerial-map {
  position: relative;
  aspect-ratio: 1.55 / 1;
  min-height: 430px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  background: #06394a;
}

.nyc-aerial-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 42%, rgba(0,166,166,.12), transparent 35%),
    linear-gradient(120deg, rgba(4,43,56,.56), rgba(4,43,56,.18) 42%, rgba(255,77,46,.1));
  pointer-events: none;
}

.nyc-aerial-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}

.borough-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.map-zone {
  cursor: pointer;
  outline: none;
}

.map-zone polygon {
  fill: rgba(0, 166, 166, .42);
  stroke: rgba(255,255,255,.86);
  stroke-width: 4;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.34));
  transition: fill .24s ease, stroke .24s ease, stroke-width .24s ease, filter .24s ease, transform .24s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.map-zone text {
  fill: #ffffff;
  font-size: 28px;
  font-weight: 950;
  paint-order: stroke;
  pointer-events: none;
  stroke: rgba(4,43,56,.62);
  stroke-width: 5px;
  text-anchor: middle;
  transition: fill .24s ease, transform .24s ease;
}

.map-zone:hover polygon,
.map-zone:focus-visible polygon {
  fill: rgba(255,77,46,.82);
  stroke: #ffffff;
  stroke-width: 6;
  filter: drop-shadow(0 18px 30px rgba(255,77,46,.45));
  transform: scale(1.035);
}

.map-zone:hover text,
.map-zone:focus-visible text {
  fill: #ffffff;
  transform: translateY(-4px);
}

.map-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  color: var(--white);
  background: rgba(4,43,56,.74);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.estimate-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(135deg, #042b38, #07576b 56%, #0b7a75);
  color: var(--white);
}

.estimate-band h2 { color: var(--white); }
.estimate-form, .contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #6c625e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea { min-height: 118px; resize: vertical; }
.estimate-form textarea, .estimate-form button, .estimate-form .form-status, .contact-form textarea, .contact-form .full, .contact-form button, .contact-form .form-status, .contact-form h2, .contact-form .form-intro, .contact-form .notice, .contact-form .privacy-note { grid-column: 1 / -1; }

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-weight: 800;
}

.contact-form .form-status {
  color: var(--muted);
}

.form-status.success {
  color: #0b8f57;
}

.form-status.error {
  color: #c92a2a;
}

button:disabled {
  cursor: wait;
  opacity: .72;
}

.site-footer {
  padding: clamp(48px, 6vw, 72px) clamp(18px, 5vw, 70px) 26px;
  color: rgba(255,255,255,.72);
  background: #101112;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .7fr));
  gap: clamp(28px, 5vw, 70px);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 950;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--white);
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0;
}

.footer-phone {
  display: inline-flex;
  color: #ff7d35;
  font-size: 22px;
  font-weight: 950;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: rgba(255,255,255,.38);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255,255,255,.62);
  font-weight: 750;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1280px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.38);
  font-size: 14px;
}

.page-hero {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(120deg, rgba(4,43,56,.92), rgba(0,166,166,.52)), var(--page-image) center/cover;
}

.page-hero h1 { font-size: clamp(42px, 6vw, 78px); line-height: 1; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.9); font-size: 20px; }
.content-narrow { max-width: 950px; }
.content-narrow p { color: var(--muted); font-size: 18px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 260px;
}

.portfolio-item img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(11,31,58,.86);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
}

.contact-card {
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.contact-card a { display: block; margin-top: 10px; color: var(--white); font-size: 22px; font-weight: 900; }

.clean-contact-card {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(11,31,58,.08);
}

.clean-contact-card:hover {
  background: #f8fbfb;
}

.clean-contact-card h2 {
  color: var(--navy);
}

.clean-contact-card .hours {
  color: var(--muted);
}

.quiet-contact-link {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.clean-contact-card a.quiet-contact-link {
  color: var(--navy);
}

.quiet-contact-link:hover,
.quiet-contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line);
  background: #f3f7f7;
}

.email-link-button {
  color: var(--orange);
}

.contact-experience {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #fbfaf8;
}

.reach-panel h2,
.quote-panel h2 {
  color: #171717;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.reach-panel > p:not(.eyebrow),
.form-intro {
  color: #756f6a;
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}

.contact-method {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 16px 18px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(17,17,17,.08);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.contact-method::before {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  font-size: 24px;
  font-weight: 900;
  grid-row: 1 / span 2;
}

.contact-method.call { background: #3b8151; }
.contact-method.text { background: #3863e8; }
.contact-method.email-trigger { background: #1b1918; font: inherit; }
.contact-method.call::before { content: "☎"; }
.contact-method.text::before { content: "▱"; }
.contact-method.email-trigger::before { content: "✉"; }

.contact-method:hover {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 24px 48px rgba(17,17,17,.14);
}

.contact-method span {
  display: block;
  grid-column: 2;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-method strong {
  display: block;
  grid-column: 2;
  color: var(--white);
  font-size: clamp(22px, 3vw, 27px);
  line-height: 1.05;
}

.hours-card,
.quote-panel {
  border: 1px solid #ebe5df;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(17,17,17,.08);
}

.hours-card {
  padding: 26px;
}

.hours-card h3 {
  margin-bottom: 16px;
  color: #171717;
}

.hours-card p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #eee8e2;
  color: #756f6a;
}

.hours-card p:last-child {
  border-bottom: 0;
}

.hours-card strong {
  color: #3b8151;
  white-space: nowrap;
}

.quote-panel {
  padding: clamp(24px, 4vw, 42px);
}

.quote-panel input,
.quote-panel select,
.quote-panel textarea,
.email-message-form input,
.email-message-form textarea {
  border-color: #e8dfd6;
  background: #fbfaf8;
}

.wide-submit {
  min-height: 62px;
  margin-top: 4px;
  font-size: 19px;
}

.privacy-note {
  margin: 0;
  color: #8a837d;
  text-align: center;
  font-size: 13px;
}

.email-modal[hidden] {
  display: none;
}

.email-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.email-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 43, 56, .64);
  backdrop-filter: blur(8px);
}

.email-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.email-modal-card h2 {
  color: var(--navy);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--soft);
  font-size: 24px;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.notice {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .header-call { display: none; }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero { min-height: min(640px, calc(100vh - 96px)); }
  .feature-grid, .card-grid, .review-grid, .area-grid, .seo-grid, .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-row, .offering-grid, .tip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offering-layout { grid-template-columns: 1fr; }
  .trust-row article:nth-child(2) { border-right: 0; }
  .trust-row article { border-bottom: 1px solid var(--line); }
  .split, .estimate-band, .contact-layout, .contact-experience { grid-template-columns: 1fr; }
  .portfolio-strip { grid-template-columns: 1fr; }
  .portfolio-strip img { height: 280px; }
  .quote-strip { grid-template-columns: 1fr; }
  .nyc-aerial-map {
    aspect-ratio: auto;
    height: min(520px, 72vw);
    min-height: 360px;
  }
  .seo-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .site-header { padding: 12px 16px; }
  .brand span:last-child { font-size: 15px; }
  .brand-logo { width: 44px; height: 44px; }
  .hero-content { margin-left: 18px; }
  .hero-overlay { background: rgba(11,31,58,.74); }
  .feature-grid, .card-grid, .review-grid, .area-grid, .seo-grid, .portfolio-grid, .estimate-form, .contact-form { grid-template-columns: 1fr; }
  .trust-row, .offering-grid, .tip-grid { grid-template-columns: 1fr; }
  .offering-layout { grid-template-columns: 1fr; }
  .trust-row article { border-right: 0; }
  .home-header .main-nav.open a { color: var(--navy); }
  .map-panel { grid-template-columns: 1fr; }
  .nyc-aerial-map {
    height: 500px;
    min-height: 0;
  }
  .seo-link-grid { grid-template-columns: 1fr; }
  .map-zone text { font-size: 34px; }
  .contact-method {
    grid-template-columns: 48px 1fr;
    padding: 14px;
  }
  .contact-method::before {
    width: 48px;
    height: 48px;
  }
  .hours-card p,
  .footer-bottom {
    display: grid;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.08) translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 77, 46, 0); }
  50% { box-shadow: 0 0 0 8px rgba(255, 77, 46, .18), 0 18px 34px rgba(255, 77, 46, .28); }
}
