/*
Theme Name: Northeast Home and More
Theme URI: https://northeasthomeandmore.com
Author: Northeast Home and More
Description: Custom theme for Northeast Home and More - community-focused contracting, property management, and new home construction in Painesville, Ohio.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: northeast-home
*/

/* ─── COLOR SYSTEM ─── */
:root {
  /* Primary Palette */
  --walnut:        #5C3D2E;
  --walnut-dark:   #3E2820;
  --walnut-mid:    #6E4A38;
  --ivory:         #FFFFF0;
  --ivory-dark:    #F5F0DC;
  --ivory-deeper:  #EDE8D0;
  --gold:          #B8960C;
  --gold-light:    #CCA80E;
  --gold-pale:     #D4B96A;

  /* Supporting */
  --charcoal:      #1C1C1C;
  --muted:         #7A6B5A;
  --muted-light:   #A89880;
  --white:         #FFFEF8;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── NAVBAR ─── */
.nh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--walnut-dark);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 2px solid var(--gold);
}
.nh-nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nh-logo-ne {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--ivory); line-height: 1; letter-spacing: -1px;
}
.nh-logo-text {
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 14px;
}
.nh-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 600;
  color: var(--ivory); letter-spacing: 0.5px;
}
.nh-logo-text span:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400;
  color: var(--gold-pale); letter-spacing: 2px;
  text-transform: uppercase; margin-top: 1px;
}

/* ─── NAV MENU ─── */
.nh-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nh-nav-links li { list-style: none; }
.nh-nav-links li a {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: color 0.2s;
}
.nh-nav-links li a:hover,
.nh-nav-links .current-menu-item > a,
.nh-nav-links .current_page_item > a { color: var(--gold-pale); }
.nh-nav-links li:last-child a {
  background: var(--gold) !important;
  color: var(--walnut-dark) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 700;
  transition: background 0.2s !important;
}
.nh-nav-links li:last-child a:hover { background: var(--gold-light) !important; }
.nh-nav-cta {
  background: var(--gold) !important;
  color: var(--walnut-dark) !important;
  padding: 10px 22px !important;
  border-radius: 2px; font-weight: 700;
}
.nh-nav-cta:hover { background: var(--gold-light) !important; }

/* ─── PAGE OFFSET ─── */
.nh-page-wrap { padding-top: 72px; }

/* ─── BUTTONS ─── */
.nh-btn-primary {
  display: inline-block;
  background: var(--walnut); color: var(--ivory);
  padding: 15px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.nh-btn-primary:hover { background: var(--walnut-mid); transform: translateY(-1px); color: var(--ivory); }

.nh-btn-outline {
  display: inline-block;
  background: transparent; color: var(--ivory);
  padding: 15px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3); cursor: pointer; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.nh-btn-outline:hover { border-color: var(--gold-pale); color: var(--gold-pale); }

.nh-btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--walnut-dark);
  padding: 15px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nh-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--walnut-dark); }

.nh-btn-white {
  display: inline-block;
  background: var(--ivory); color: var(--walnut);
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nh-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--walnut); }

/* ─── SECTION BASE ─── */
.nh-section { padding: 90px 8%; }

.nh-section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.nh-section-label::before {
  content: ''; width: 28px; height: 1px;
  background: var(--gold); display: block;
}

.nh-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 20px;
}
.nh-section-title.light { color: var(--ivory); }

.nh-section-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: var(--muted); max-width: 580px; margin-bottom: 56px;
}
.nh-section-sub.light { color: rgba(255,255,255,0.6); }

/* ─── PAGE HEADER ─── */
.nh-page-header {
  background: var(--walnut-dark);
  position: relative; overflow: hidden;
}
.nh-page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.1;
}
.nh-page-header-inner { padding: 72px 8% 64px; position: relative; z-index: 2; }
.nh-breadcrumb {
  font-size: 12px; letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px; text-transform: uppercase;
}
.nh-breadcrumb span { color: var(--gold-pale); }
.nh-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; color: var(--ivory);
  line-height: 1.1; margin-bottom: 16px;
}
.nh-page-header p {
  font-family: 'Source Serif 4', serif;
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 520px; line-height: 1.7;
}
.nh-page-header-bar {
  height: 4px;
  background: linear-gradient(to right, var(--walnut), var(--gold));
}

/* ─── HERO ─── */
.nh-hero {
  height: calc(100vh - 72px); min-height: 580px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.nh-hero-left {
  background: var(--walnut-dark);
  padding: 80px 8%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.nh-hero-left::after {
  content: '';
  position: absolute; right: -40px; top: 0; bottom: 0; width: 80px;
  background: var(--walnut-dark);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}
.nh-hero-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-pale);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.nh-hero-tag::before {
  content: ''; width: 32px; height: 1px;
  background: var(--gold); display: block;
}
.nh-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 600; line-height: 1.15;
  color: var(--ivory); margin-bottom: 28px;
}
.nh-hero h1 em { font-style: italic; color: var(--gold-pale); }
.nh-hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px; max-width: 420px;
}
.nh-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.nh-hero-right { position: relative; overflow: hidden; }
.nh-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.8) saturate(0.85);
}
.nh-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(62,40,32,0.35) 0%, transparent 60%);
}
.nh-hero-stats {
  position: absolute; bottom: 48px; left: 40px;
  display: flex;
  background: rgba(30,20,15,0.88);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--gold);
}
.nh-hero-stat {
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.nh-hero-stat:last-child { border-right: none; }
.nh-hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--gold-pale);
}
.nh-hero-stat span {
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* ─── WHY SECTION ─── */
.nh-why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.nh-why-img-wrap { position: relative; }
.nh-why-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; }
.nh-why-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--walnut-dark); color: var(--ivory);
  padding: 28px 32px; border-top: 3px solid var(--gold);
}
.nh-why-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--gold-pale);
}
.nh-why-badge span {
  font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.nh-why-list { list-style: none; margin-top: 36px; }
.nh-why-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--ivory-deeper);
}
.nh-why-list li:first-child { border-top: 1px solid var(--ivory-deeper); }
.nh-why-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--walnut); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory); font-size: 16px; margin-top: 2px;
}
.nh-why-list h4 {
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px;
}
.nh-why-list p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── SERVICES DARK SECTION ─── */
.nh-services-dark { background: var(--walnut-dark); }

.nh-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px;
}
.nh-service-card {
  background: var(--walnut);
  padding: 48px 36px; position: relative; overflow: hidden;
  transition: background 0.3s;
}
.nh-service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}
.nh-service-card:hover::before { transform: scaleX(1); }
.nh-service-card:hover { background: var(--walnut-mid); }

.nh-service-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute; top: 20px; right: 28px; line-height: 1;
}
.nh-service-icon { font-size: 32px; margin-bottom: 24px; display: block; }
.nh-service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--ivory); margin-bottom: 16px;
}
.nh-service-card p {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,0.5); margin-bottom: 28px;
}
.nh-service-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-pale);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.nh-service-link::after { content: '→'; transition: transform 0.2s; }
.nh-service-card:hover .nh-service-link::after { transform: translateX(4px); }

/* ─── PROJECTS ─── */
.nh-projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.nh-project-card { position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; }
.nh-project-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s;
  filter: saturate(0.8); display: block;
}
.nh-project-card:hover img { transform: scale(1.05); filter: saturate(1); }
.nh-project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,18,12,0.92) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px;
}
.nh-project-type {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-pale); margin-bottom: 6px;
}
.nh-project-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600; color: var(--ivory);
}

/* ─── FULL PROJECT CARDS ─── */
.nh-projects-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.nh-project-full-card {
  overflow: hidden; border-radius: 2px;
  background: var(--white);
  transition: box-shadow 0.3s;
}
.nh-project-full-card:hover { box-shadow: 0 16px 48px rgba(92,61,46,0.15); }
.nh-project-full-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s; filter: saturate(0.8); display: block;
}
.nh-project-full-card:hover img { transform: scale(1.04); filter: saturate(1); }
.nh-project-card-body {
  padding: 22px 22px 24px;
  border-top: 3px solid var(--ivory-deeper);
  transition: border-color 0.3s;
}
.nh-project-full-card:hover .nh-project-card-body { border-color: var(--gold); }
.nh-project-card-body span {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 6px;
}
.nh-project-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--charcoal); margin-bottom: 8px;
}
.nh-project-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIAL ─── */
.nh-testimonial {
  background: var(--walnut); text-align: center; padding: 90px 8%;
}
.nh-testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 32px);
  font-style: italic; font-weight: 400;
  color: var(--ivory); line-height: 1.6;
  max-width: 800px; margin: 0 auto 32px;
  position: relative;
}
.nh-testimonial-quote::before {
  content: '"';
  font-size: 100px; line-height: 0.8;
  color: var(--gold); opacity: 0.35;
  position: absolute; top: -10px; left: -20px; font-style: normal;
}
.nh-testimonial-author { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.nh-testimonial-author strong { display: block; color: var(--gold-pale); margin-bottom: 4px; }

/* ─── CTA BANNER ─── */
.nh-cta-banner {
  background: var(--gold);
  padding: 72px 8%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.nh-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600; color: var(--walnut-dark);
  max-width: 560px; line-height: 1.3;
}

/* ─── SERVICE DETAIL ─── */
.nh-service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 90px 8%;
  background: var(--ivory);
}
.nh-service-detail:nth-child(even) { background: var(--ivory-dark); }
.nh-service-detail:nth-child(even) .nh-sd-img { order: 2; }
.nh-service-detail:nth-child(even) .nh-sd-content { order: 1; }
.nh-sd-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; }
.nh-sd-content p {
  font-family: 'Source Serif 4', serif;
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: var(--muted); margin-bottom: 24px;
}
.nh-service-features { list-style: none; margin-bottom: 36px; }
.nh-service-features li {
  padding: 10px 0; border-bottom: 1px solid var(--ivory-deeper);
  font-size: 14px; color: var(--charcoal);
  display: flex; align-items: center; gap: 12px;
}
.nh-service-features li::before {
  content: '✓'; color: var(--gold);
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}

/* ─── VALUES ─── */
.nh-values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 56px;
}
.nh-value-card { background: var(--walnut); padding: 40px 28px; text-align: center; }
.nh-value-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.nh-value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--ivory); margin-bottom: 12px;
}
.nh-value-card p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); }

/* ─── TEAM ─── */
.nh-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.nh-team-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  filter: saturate(0.6); transition: filter 0.3s; display: block;
}
.nh-team-card:hover img { filter: saturate(1); }
.nh-team-info {
  background: var(--white); padding: 20px 22px;
  border-bottom: 3px solid var(--gold);
}
.nh-team-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--charcoal); margin-bottom: 4px;
}
.nh-team-info span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--walnut); }

/* ─── ABOUT ─── */
.nh-about-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.nh-about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; }
.nh-about-text p {
  font-family: 'Source Serif 4', serif;
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: var(--muted); margin-bottom: 24px;
}
.nh-about-text p strong { color: var(--charcoal); font-weight: 600; }

/* ─── CONTACT ─── */
.nh-contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.nh-contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600; color: var(--charcoal); margin-bottom: 20px;
}
.nh-contact-info > p {
  font-family: 'Source Serif 4', serif;
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--muted); margin-bottom: 36px;
}
.nh-contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.nh-contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--walnut); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nh-contact-detail-text strong {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 3px;
}
.nh-contact-detail-text span { font-size: 15px; color: var(--muted); }
.nh-contact-form {
  background: var(--white); padding: 48px;
  border-top: 4px solid var(--gold);
}
.nh-contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; margin-bottom: 32px; color: var(--charcoal);
}
.nh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.nh-form-group { margin-bottom: 20px; }
.nh-form-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 8px;
}
.nh-form-group input,
.nh-form-group select,
.nh-form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--ivory-deeper);
  background: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 14px; color: var(--charcoal);
  border-radius: 2px; outline: none;
  transition: border-color 0.2s;
}
.nh-form-group input:focus,
.nh-form-group select:focus,
.nh-form-group textarea:focus { border-color: var(--gold); }
.nh-form-group textarea { resize: vertical; min-height: 120px; }

/* ─── FILTER BAR ─── */
.nh-filter-bar { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.nh-filter-btn {
  padding: 9px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid var(--ivory-deeper);
  background: transparent; cursor: pointer;
  color: var(--muted); border-radius: 2px; transition: all 0.2s;
}
.nh-filter-btn.active, .nh-filter-btn:hover {
  background: var(--walnut); color: var(--ivory); border-color: var(--walnut);
}

/* ─── FOOTER ─── */
.nh-footer {
  background: var(--walnut-dark);
  padding: 64px 8% 32px;
  border-top: 2px solid var(--gold);
}
.nh-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.nh-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--ivory); margin-bottom: 6px;
}
.nh-footer-tagline {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-pale); margin-bottom: 20px;
}
.nh-footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.4); max-width: 280px; }
.nh-footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.nh-footer-col ul { list-style: none; }
.nh-footer-col ul li { margin-bottom: 10px; }
.nh-footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.nh-footer-col ul li a:hover { color: var(--gold-pale); }
.nh-footer-contact-item { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.nh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.nh-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ─── BLOG ─── */
.nh-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.nh-blog-card {
  background: var(--white); border-radius: 2px;
  overflow: hidden; transition: box-shadow 0.3s;
}
.nh-blog-card:hover { box-shadow: 0 16px 48px rgba(92,61,46,0.12); }
.nh-blog-thumb {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  transition: transform 0.4s; filter: saturate(0.8);
}
.nh-blog-card:hover .nh-blog-thumb { transform: scale(1.04); filter: saturate(1); }
.nh-blog-body { padding: 24px; }
.nh-blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.nh-blog-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
}
.nh-blog-date { font-size: 12px; color: var(--muted); }
.nh-blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 600; line-height: 1.35;
  color: var(--charcoal); margin-bottom: 10px;
}
.nh-blog-body h3 a { color: inherit; text-decoration: none; }
.nh-blog-body h3 a:hover { color: var(--walnut); }
.nh-blog-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.nh-blog-read {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.nh-blog-read:hover { color: var(--walnut); }

/* ─── SINGLE POST ─── */
.nh-single-wrap {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 64px; padding: 72px 8%; background: var(--ivory);
  align-items: start;
}
.nh-single-content {
  font-family: 'Source Serif 4', serif;
  font-size: 18px; font-weight: 300; line-height: 1.9;
  color: var(--charcoal);
}
.nh-single-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600;
  color: var(--charcoal); margin: 40px 0 16px;
}
.nh-single-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--charcoal); margin: 32px 0 12px;
}
.nh-single-content p { margin-bottom: 24px; }
.nh-single-content ul, .nh-single-content ol { margin: 0 0 24px 24px; }
.nh-single-content li { margin-bottom: 8px; }
.nh-single-content strong { color: var(--charcoal); font-weight: 600; }
.nh-single-back { margin-top: 48px; }
.nh-single-sidebar { position: sticky; top: 96px; }
.nh-sidebar-cta {
  background: var(--walnut-dark);
  border-top: 3px solid var(--gold);
  padding: 32px; margin-bottom: 32px;
}
.nh-sidebar-cta h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--ivory); margin-bottom: 12px;
}
.nh-sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.nh-sidebar-recent { background: var(--white); padding: 28px; border-top: 3px solid var(--ivory-deeper); }
.nh-sidebar-recent h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--charcoal); margin-bottom: 20px;
}
.nh-sidebar-post {
  display: block; padding: 12px 0;
  border-bottom: 1px solid var(--ivory-deeper);
  font-family: 'Jost', sans-serif;
  font-size: 14px; color: var(--charcoal);
  text-decoration: none; line-height: 1.4; transition: color 0.2s;
}
.nh-sidebar-post span { display: block; font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-bottom: 4px; }
.nh-sidebar-post:hover { color: var(--walnut); }

/* ─── ANIMATIONS ─── */
@keyframes nhFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.nh-hero-left > * { animation: nhFadeUp 0.6s ease forwards; opacity: 0; }
.nh-hero-tag { animation-delay: 0.1s; }
.nh-hero h1 { animation-delay: 0.2s; }
.nh-hero-sub { animation-delay: 0.3s; }
.nh-hero-buttons { animation-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nh-hero { grid-template-columns: 1fr; height: auto; }
  .nh-hero-right { height: 340px; }
  .nh-hero-left::after { display: none; }
  .nh-why-grid, .nh-about-story, .nh-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nh-services-grid, .nh-projects-grid, .nh-projects-full-grid, .nh-team-grid, .nh-blog-grid { grid-template-columns: 1fr; }
  .nh-values-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-footer-grid { grid-template-columns: 1fr 1fr; }
  .nh-service-detail { grid-template-columns: 1fr; gap: 40px; padding: 60px 6%; }
  .nh-service-detail:nth-child(even) .nh-sd-img,
  .nh-service-detail:nth-child(even) .nh-sd-content { order: unset; }
  .nh-nav-links { display: none; }
  .nh-form-row { grid-template-columns: 1fr; }
  .nh-cta-banner { flex-direction: column; text-align: center; }
  .nh-why-badge { position: static; margin-top: 20px; }
  .nh-single-wrap { grid-template-columns: 1fr; }
  .nh-single-sidebar { position: static; }
}

/* ─── SOCIAL ICONS ─── */
.nh-footer-social {
  display: flex; gap: 12px; margin-top: 24px;
}
.nh-social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nh-social-icon:hover {
  background: var(--gold);
  color: var(--walnut-dark);
  border-color: var(--gold);
}

/* ─── WPFORMS STYLING ─── */
.wpforms-container { margin: 0 !important; }
.wpforms-form .wpforms-field { margin-bottom: 20px !important; }
.wpforms-form label.wpforms-field-label {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  color: var(--charcoal) !important; margin-bottom: 8px !important;
}
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="url"],
.wpforms-form select,
.wpforms-form textarea {
  width: 100% !important;
  padding: 13px 16px !important;
  border: 1px solid var(--ivory-deeper) !important;
  background: var(--ivory) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important; color: var(--charcoal) !important;
  border-radius: 2px !important; outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
}
.wpforms-form input:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: none !important;
}
.wpforms-form textarea { min-height: 120px !important; }
.wpforms-form .wpforms-submit-container { margin-top: 8px !important; }
.wpforms-form button[type="submit"],
.wpforms-form input[type="submit"] {
  width: 100% !important;
  background: var(--walnut) !important;
  color: var(--ivory) !important;
  padding: 17px 32px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important; font-weight: 600 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  border: none !important; cursor: pointer !important;
  border-radius: 2px !important;
  transition: background 0.2s !important;
}
.wpforms-form button[type="submit"]:hover,
.wpforms-form input[type="submit"]:hover {
  background: var(--walnut-mid) !important;
}
.wpforms-confirmation-container-full {
  background: var(--ivory-dark) !important;
  border-left: 4px solid var(--gold) !important;
  padding: 20px 24px !important;
  font-family: 'Jost', sans-serif !important;
  color: var(--charcoal) !important;
}

/* ─── GALLERY GRID ─── */
.nh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nh-gallery-item {
  position: relative; overflow: hidden;
  border-radius: 2px; cursor: pointer;
  aspect-ratio: 4/3;
}
.nh-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s, filter 0.3s;
  filter: saturate(0.85);
}
.nh-gallery-item:hover img { transform: scale(1.06); filter: saturate(1); }
.nh-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(62,40,32,0.85) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.nh-gallery-item:hover .nh-gallery-overlay { opacity: 1; }
.nh-gallery-overlay span {
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-pale);
}

/* ─── LIGHTBOX ─── */
.nh-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(20,12,8,0.96);
  align-items: center; justify-content: center;
}
.nh-lightbox.active { display: flex; }
.nh-lb-inner {
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.nh-lb-inner img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; border-radius: 2px;
}
.nh-lb-inner p {
  color: rgba(255,255,255,0.6);
  font-family: 'Jost', sans-serif;
  font-size: 13px; letter-spacing: 1px;
  margin-top: 16px; text-align: center;
}
.nh-lb-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: white;
  font-size: 28px; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
.nh-lb-close:hover { opacity: 1; }
.nh-lb-prev, .nh-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 24px; cursor: pointer;
  padding: 16px 20px; border-radius: 2px;
  transition: background 0.2s;
}
.nh-lb-prev { left: 24px; }
.nh-lb-next { right: 24px; }
.nh-lb-prev:hover, .nh-lb-next:hover { background: var(--gold); color: var(--walnut-dark); }

@media (max-width: 900px) {
  .nh-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-lb-prev { left: 8px; }
  .nh-lb-next { right: 8px; }
}

/* ─── SERVICES OVERVIEW CARDS ─── */
.nh-services-overview-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.nh-service-overview-card {
  display: block; text-decoration: none;
  background: var(--white); padding: 40px 32px;
  border-top: 4px solid var(--ivory-deeper);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  position: relative;
}
.nh-service-overview-card:hover {
  border-color: var(--gold); box-shadow: 0 16px 48px rgba(92,61,46,0.12);
  transform: translateY(-4px);
}
.nh-soc-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.nh-soc-num {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: rgba(92,61,46,0.06); line-height: 1;
}
.nh-service-overview-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--charcoal); margin-bottom: 12px;
}
.nh-service-overview-card p {
  font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px;
}
.nh-service-overview-card ul {
  list-style: none; margin-bottom: 24px;
}
.nh-service-overview-card ul li {
  font-size: 13px; color: var(--charcoal); padding: 6px 0;
  border-bottom: 1px solid var(--ivory-deeper);
  display: flex; align-items: center; gap: 8px;
}
.nh-service-overview-card ul li::before {
  content: '✓'; color: var(--gold); font-weight: 700; font-size: 12px;
}
.nh-soc-link {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ─── DIFFERENCE GRID ─── */
.nh-diff-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 56px;
}
.nh-diff-item { background: var(--walnut); padding: 36px 28px; }
.nh-diff-item span { font-size: 32px; display: block; margin-bottom: 16px; }
.nh-diff-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--ivory); margin-bottom: 10px;
}
.nh-diff-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ─── PROCESS STEPS ─── */
.nh-process-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; margin-top: 56px;
}
.nh-process-step {
  background: var(--walnut); padding: 36px 24px; position: relative;
}
.nh-process-step::after {
  content: '→';
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 20px; z-index: 2;
}
.nh-process-step:last-child::after { display: none; }
.nh-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700;
  color: var(--gold); opacity: 0.6;
  line-height: 1; margin-bottom: 16px;
}
.nh-process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--ivory); margin-bottom: 10px;
}
.nh-process-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ─── FAQ ─── */
.nh-faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-top: 48px; }
.nh-faq-item { padding: 28px 32px; background: var(--white); border-left: 3px solid var(--gold); }
.nh-faq-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--charcoal); margin-bottom: 12px;
}
.nh-faq-item p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── SERVICE DETAIL FULL (individual service pages) ─── */
.nh-service-detail-full {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.nh-service-detail-full .nh-sd-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px;
}
.nh-service-detail-full .nh-sd-content p {
  font-family: 'Source Serif 4', serif;
  font-size: 17px; font-weight: 300; line-height: 1.85;
  color: var(--muted); margin-bottom: 24px;
}

/* ─── PROJECT DETAIL PAGE ─── */
.nh-project-detail-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start;
}
.nh-project-detail-content {
  font-family: 'Source Serif 4', serif;
  font-size: 18px; font-weight: 300; line-height: 1.9; color: var(--charcoal);
}
.nh-project-detail-content p { margin-bottom: 24px; }
.nh-project-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; margin: 32px 0 14px; color: var(--charcoal);
}
.nh-project-meta-box {
  background: var(--white); padding: 28px;
  border-top: 3px solid var(--gold);
}
.nh-project-meta-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--charcoal); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--ivory-deeper);
}
.nh-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--ivory-deeper);
  font-size: 13px;
}
.nh-meta-row span { color: var(--muted); letter-spacing: 0.5px; }
.nh-meta-row strong { color: var(--charcoal); font-weight: 600; text-align: right; }
.nh-project-detail-sidebar { position: sticky; top: 96px; }

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 900px) {
  .nh-services-overview-grid { grid-template-columns: 1fr; }
  .nh-diff-grid { grid-template-columns: repeat(2,1fr); }
  .nh-process-steps { grid-template-columns: 1fr; }
  .nh-process-step::after { display: none; }
  .nh-faq-grid { grid-template-columns: 1fr; }
  .nh-service-detail-full { grid-template-columns: 1fr; }
  .nh-project-detail-grid { grid-template-columns: 1fr; }
  .nh-project-detail-sidebar { position: static; }
}

/* ═══════════════════════════════════════
   MOBILE HAMBURGER MENU
═══════════════════════════════════════ */
.nh-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 8px;
  z-index: 1100;
}
.nh-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ivory); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nh-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nh-hamburger.active span:nth-child(2) { opacity: 0; }
.nh-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nh-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(20,12,8,0.6); z-index: 999;
}
.nh-mobile-overlay.active { display: block; }

/* ═══════════════════════════════════════
   COMPREHENSIVE MOBILE FIXES
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* NAV */
  .nh-hamburger { display: flex; }

  .nh-nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--walnut-dark);
    border-top: 2px solid var(--gold);
    padding: 24px 0 32px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    pointer-events: none;
  }

  .nh-nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nh-nav-links li { width: 100%; }

  .nh-nav-links li a {
    display: block !important;
    padding: 14px 32px !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    color: rgba(255,255,255,0.8) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    background: none !important;
    border-radius: 0 !important;
  }

  .nh-nav-links li a:hover { color: var(--gold-pale) !important; }

  /* Last item = CTA button in mobile */
  .nh-nav-links li:last-child a {
    margin: 16px 32px 0 !important;
    padding: 14px 24px !important;
    background: var(--gold) !important;
    color: var(--walnut-dark) !important;
    border-bottom: none !important;
    border-radius: 2px !important;
    text-align: center !important;
    width: calc(100% - 64px) !important;
    display: block !important;
  }

  /* HERO */
  .nh-hero { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .nh-hero-left { padding: 56px 6% 48px; }
  .nh-hero-left::after { display: none; }
  .nh-hero h1 { font-size: 36px; }
  .nh-hero-sub { font-size: 15px; }
  .nh-hero-buttons { flex-direction: column; gap: 12px; }
  .nh-btn-primary, .nh-btn-outline, .nh-btn-gold { width: 100%; text-align: center; }
  .nh-hero-right { height: 280px; }
  .nh-hero-stats { left: 16px; bottom: 16px; }
  .nh-hero-stat { padding: 12px 16px; }
  .nh-hero-stat strong { font-size: 20px; }
  .nh-hero-stat span { font-size: 10px; }

  /* SECTIONS */
  .nh-section { padding: 60px 6%; }

  /* WHY GRID */
  .nh-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .nh-why-img-wrap { order: -1; }
  .nh-why-badge { position: static; margin-top: 16px; display: inline-block; }
  .nh-why-img { aspect-ratio: 16/9; }

  /* SERVICES DARK */
  .nh-services-grid { grid-template-columns: 1fr; gap: 2px; }
  .nh-service-card { padding: 36px 28px; }

  /* SERVICES OVERVIEW */
  .nh-services-overview-grid { grid-template-columns: 1fr; gap: 16px; }

  /* NORTHEAST DIFFERENCE */
  .nh-diff-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .nh-diff-item { padding: 28px 20px; }
  .nh-diff-item h4 { font-size: 15px; }
  .nh-diff-item p { font-size: 12px; }

  /* PROCESS STEPS */
  .nh-process-steps { grid-template-columns: 1fr; gap: 2px; }
  .nh-process-step { padding: 28px 24px; }
  .nh-process-step::after { display: none; }

  /* FAQ */
  .nh-faq-grid { grid-template-columns: 1fr; gap: 16px; }

  /* PROJECTS */
  .nh-projects-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .nh-projects-full-grid { grid-template-columns: 1fr; }
  .nh-filter-bar { gap: 8px; }
  .nh-filter-btn { padding: 8px 14px; font-size: 11px; }

  /* ABOUT */
  .nh-about-story { grid-template-columns: 1fr; gap: 40px; }
  .nh-about-img { aspect-ratio: 16/9; }

  /* VALUES */
  .nh-values-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .nh-value-card { padding: 28px 20px; }

  /* TEAM */
  .nh-team-grid { grid-template-columns: 1fr; gap: 24px; }

  /* SERVICE DETAIL */
  .nh-service-detail { grid-template-columns: 1fr; gap: 40px; padding: 60px 6%; }
  .nh-service-detail:nth-child(even) .nh-sd-img,
  .nh-service-detail:nth-child(even) .nh-sd-content { order: unset; }
  .nh-service-detail-full { grid-template-columns: 1fr; gap: 40px; }

  /* CONTACT */
  .nh-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .nh-contact-form { padding: 32px 24px; }
  .nh-form-row { grid-template-columns: 1fr; gap: 0; }

  /* CONTACT FORM WPFORMS - PHONE COLOR FIX */
  .wpforms-form input[type="tel"],
  .wpforms-form input[type="text"],
  .wpforms-form input[type="email"],
  .wpforms-form textarea,
  .wpforms-form select {
    color: var(--charcoal) !important;
    background: var(--ivory) !important;
    -webkit-text-fill-color: var(--charcoal) !important;
  }

  /* SUBMIT BUTTON MOBILE */
  .wpforms-form button[type="submit"],
  .wpforms-form input[type="submit"] {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .wpforms-submit-container { padding: 0 !important; }

  /* CTA BANNER */
  .nh-cta-banner { flex-direction: column; text-align: center; padding: 56px 6%; gap: 24px; }
  .nh-cta-banner h2 { font-size: 24px; }
  .nh-btn-white { width: 100%; text-align: center; }

  /* TESTIMONIAL */
  .nh-testimonial { padding: 60px 6%; }
  .nh-testimonial-quote { font-size: 18px; }
  .nh-testimonial-quote::before { font-size: 60px; left: -10px; }

  /* PAGE HEADER */
  .nh-page-header-inner { padding: 48px 6% 40px; }
  .nh-page-header h1 { font-size: 32px; }
  .nh-page-header p { font-size: 15px; }

  /* SINGLE POST */
  .nh-single-wrap { grid-template-columns: 1fr; padding: 48px 6%; gap: 40px; }
  .nh-single-sidebar { position: static; }

  /* BLOG */
  .nh-blog-grid { grid-template-columns: 1fr; gap: 24px; }

  /* GALLERY */
  .nh-gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* LIGHTBOX */
  .nh-lb-prev { left: 8px; padding: 12px 14px; font-size: 18px; }
  .nh-lb-next { right: 8px; padding: 12px 14px; font-size: 18px; }

  /* PROJECT DETAIL */
  .nh-project-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .nh-project-detail-sidebar { position: static; }

  /* FOOTER */
  .nh-footer { padding: 48px 6% 32px; }
  .nh-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nh-footer-logo { font-size: 18px; }
  .nh-footer-desc { max-width: 100%; }
  .nh-footer-col h4 { margin-bottom: 12px; }
  .nh-footer-col ul li { margin-bottom: 8px; }
  .nh-footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* SECTION TITLES */
  .nh-section-title { font-size: 28px; }
  .nh-section-sub { font-size: 15px; margin-bottom: 36px; }
}

/* Fix phone input color globally */
input[type="tel"],
.wpforms-field-phone input {
  color: var(--charcoal) !important;
  -webkit-text-fill-color: var(--charcoal) !important;
}
