/*
Theme Name: Delaware Heights
Theme URI: https://deheights.com
Author: Delaware Heights Inc
Author URI: https://deheights.com
Description: Premium custom home construction and restoration theme for Delaware Heights Inc. Features luxury design with navy and gold color scheme, Amish craftsmanship highlights, project portfolio, and 24/7 restoration services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deheights
Tags: construction, real-estate, portfolio, luxury, business
*/

/* ============================================================
   THEME VARIABLES & RESET
   ============================================================ */
:root {
  --navy: #1a2244;
  --navy-light: #2b337c;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --cream: #f7f4ef;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f0ede8;
  --dark: #0f1420;
  --text: #1a1a2e;
  --border: rgba(26,34,68,0.12);
  --shadow: 0 2px 12px rgba(26,34,68,0.06);
  --shadow-lg: 0 12px 40px rgba(26,34,68,0.14);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.dh-serif { font-family: var(--font-serif); }
.dh-section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.dh-section-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.dh-section-h { font-size: clamp(28px,4vw,52px); font-weight: 300; color: var(--navy); line-height: 1.1; margin-bottom: 1rem; }
.dh-section-h--white { color: var(--white); }
.dh-section-sub { font-size: 15px; color: var(--gray); line-height: 1.8; max-width: 560px; margin-bottom: 3rem; }
.dh-divider { width: 60px; height: 2px; background: var(--gold); margin-bottom: 3rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.dh-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.dh-section { padding: 6rem 2rem; }
.dh-section--cream { background: var(--cream); }
.dh-section--white { background: var(--white); }
.dh-section--dark { background: var(--dark); }
.dh-section--navy { background: var(--navy); }
.dh-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.dh-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.dh-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.dh-btn {
  display: inline-block; font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; padding: 14px 28px;
  border: 2px solid transparent; transition: var(--transition);
}
.dh-btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.dh-btn--gold:hover { background: transparent; color: var(--gold); }
.dh-btn--outline-white { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); }
.dh-btn--outline-white:hover { border-color: var(--gold); color: var(--gold); }
.dh-btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.dh-btn--navy:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.dh-btn--sm { padding: 9px 20px; font-size: 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#dh-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy) 100%);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(26,34,68,.3);
  transition: var(--transition);
}
.dh-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.dh-logo-mark {
  width: 38px; height: 38px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dh-logo-mark span { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--navy); }
.dh-logo-name { font-family: var(--font-serif); font-size: 20px; color: var(--gold); letter-spacing: .02em; }
.dh-nav { display: flex; align-items: center; gap: 2.5rem; }
.dh-nav a { font-size: 13px; letter-spacing: .05em; color: rgba(255,255,255,.75); text-transform: uppercase; }
.dh-nav a:hover, .dh-nav a.current-menu-item { color: var(--gold); }
.dh-nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-size: 13px; font-weight: 500; letter-spacing: .05em;
  padding: 9px 20px; text-transform: uppercase;
  border: 2px solid var(--gold);
}
.dh-nav-cta:hover { background: transparent !important; color: var(--gold) !important; }
.dh-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.dh-nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; transition: var(--transition); }
.dh-mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); z-index: 999; flex-direction: column;
  padding: 1.5rem 2rem; gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  border-top: 1px solid var(--border);
}
.dh-mobile-nav.open { display: flex; }
.dh-mobile-nav a { font-size: 15px; color: var(--navy); padding: .5rem 0; border-bottom: 1px solid var(--border); letter-spacing: .04em; }
.dh-mobile-nav .dh-btn--gold { text-align: center; margin-top: .5rem; border: 2px solid var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
#dh-hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.dh-hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .18;
}
.dh-hero-geo {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: linear-gradient(135deg,rgba(30,45,94,.92),rgba(15,20,32,.96));
  clip-path: polygon(15% 0,100% 0,100% 100%,0% 100%);
}
.dh-hero-lines {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(201,169,110,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(201,169,110,.05) 1px,transparent 1px);
  background-size: 60px 60px;
}
.dh-hero-accent { position: absolute; bottom: 0; left: 0; width: 6px; height: 60%; background: var(--gold); }
.dh-hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%;
}
.dh-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,169,110,.4); padding: 6px 14px;
  margin-bottom: 2rem; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}
.dh-hero h1 { font-size: clamp(42px,5vw,68px); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 1.5rem; }
.dh-hero h1 em { font-style: italic; color: var(--gold); }
.dh-hero-sub { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 2.5rem; max-width: 420px; }
.dh-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.dh-hero-stats { display: flex; flex-direction: column; gap: 1px; }
.dh-stat {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,169,110,.15);
  padding: 1.5rem 2rem; display: flex; gap: 1.5rem; align-items: center;
  transition: var(--transition);
}
.dh-stat:hover { background: rgba(255,255,255,.07); }
.dh-stat-num { font-family: var(--font-serif); font-size: 42px; font-weight: 300; color: var(--gold); line-height: 1; min-width: 80px; }
.dh-stat-label { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.dh-stat-label strong { display: block; color: rgba(255,255,255,.85); font-weight: 400; font-size: 15px; margin-bottom: 2px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
#dh-trust {
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 1.25rem 4rem; display: flex; align-items: center;
  justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.dh-trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray); letter-spacing: .03em; }
.dh-trust-dot { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
#dh-gallery { display: grid; grid-template-columns: repeat(5,1fr); height: 260px; overflow: hidden; }
.dh-gallery-item { overflow: hidden; }
.dh-gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82); transition: var(--transition); }
.dh-gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }

/* ============================================================
   SERVICES
   ============================================================ */
.dh-services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 2px; }
.dh-service-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid transparent; padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow);
}
.dh-service-card:hover { background: var(--navy); border-top-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dh-service-card:hover .dh-service-num { color: rgba(201,169,110,.25); }
.dh-service-card:hover .dh-service-title { color: var(--white); }
.dh-service-card:hover .dh-service-desc { color: rgba(255,255,255,.65); }
.dh-service-card:hover .dh-service-link { color: var(--gold); }
.dh-service-num { font-family: var(--font-serif); font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 1.5rem; transition: var(--transition); }
.dh-service-title { font-size: 24px; color: var(--navy); margin-bottom: 1rem; transition: var(--transition); }
.dh-service-desc { font-size: 14px; color: #4b5563; line-height: 1.8; margin-bottom: 1.5rem; transition: var(--transition); }
.dh-service-link { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-light); font-weight: 500; transition: var(--transition); }
.dh-service-link::after { content: ' →'; }

/* ============================================================
   PROCESS
   ============================================================ */
.dh-process-grid { display: grid; grid-template-columns: repeat(6,1fr); }
.dh-process-step { padding: 2.5rem 1.75rem; border-right: 1px solid var(--border); }
.dh-process-step:last-child { border-right: none; }
.dh-process-num { font-family: var(--font-serif); font-size: 64px; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 1.5rem; display: block; }
.dh-process-step h3 { font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: .75rem; }
.dh-process-step p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   PROJECTS
   ============================================================ */
#dh-projects { background: var(--gray-light); padding: 6rem 2rem; }
.dh-projects-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(340px,1fr)); gap: 2rem; }
.dh-project-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.dh-project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dh-project-gallery { position: relative; height: 260px; overflow: hidden; background: var(--navy); }
.dh-project-gallery-track { display: flex; height: 100%; transition: transform .4s ease; }
.dh-project-gallery-slide { min-width: 100%; height: 100%; overflow: hidden; flex-shrink: 0; }
.dh-project-gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dh-project-card:hover .dh-project-gallery-slide img { transform: scale(1.04); }
.dh-project-gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top,rgba(15,20,32,.7),transparent); pointer-events: none; }
.dh-project-badge { position: absolute; top: 1rem; left: 1rem; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; font-weight: 500; z-index: 2; }
.dh-badge--sale { background: var(--gold); color: var(--navy); }
.dh-badge--completed { background: #2d6a4f; color: #fff; }
.dh-badge--ongoing { background: var(--navy-light); color: #fff; }
.dh-badge--coming-soon { background: rgba(201,169,110,.15); color: var(--gold); border: 1px solid rgba(201,169,110,.4); }
.dh-gallery-dots { position: absolute; bottom: .75rem; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 3; }
.dh-gallery-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: var(--transition); border: none; padding: 0; }
.dh-gallery-dot.active { background: var(--gold); }
.dh-gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.35); color: #fff; border: none; width: 32px; height: 32px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; z-index: 3; transition: var(--transition); border-radius: 2px; }
.dh-gallery-arrow:hover { background: rgba(0,0,0,.6); }
.dh-gallery-arrow--prev { left: .75rem; }
.dh-gallery-arrow--next { right: .75rem; }
.dh-project-info { padding: 1.5rem; }
.dh-project-info h3 { font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: .4rem; }
.dh-project-loc { font-size: 12px; color: var(--gray); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .75rem; }
.dh-project-price { font-family: var(--font-serif); font-size: 26px; font-weight: 300; color: var(--gold); }
.dh-project-desc { font-size: 13px; color: var(--gray); line-height: 1.7; margin-top: .5rem; }
.dh-project-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.dh-project-tag { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; border: 1px solid var(--border); padding: 3px 10px; color: var(--gray); }

/* ============================================================
   RESTORATION
   ============================================================ */
#dh-restoration { background: var(--dark); padding: 6rem 2rem; }
.dh-resto-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-bottom: 3rem; }
.dh-resto-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 2rem 1.75rem; transition: var(--transition); }
.dh-resto-card:hover { background: rgba(255,255,255,.08); }
.dh-resto-icon { font-size: 32px; margin-bottom: 1rem; display: block; }
.dh-resto-card h3 { font-family: var(--font-serif); font-size: 20px; color: var(--white); margin-bottom: .75rem; }
.dh-resto-card p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
.dh-resto-emergency {
  background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.3);
  padding: 2rem 2.5rem; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.dh-resto-emergency h3 { font-family: var(--font-serif); font-size: 26px; color: var(--white); margin-bottom: .4rem; }
.dh-resto-emergency p { font-size: 14px; color: rgba(255,255,255,.5); }
.dh-resto-phone { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--gold); text-decoration: none; display: block; margin-bottom: 4px; }
.dh-resto-hotline { font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; }

/* ============================================================
   VALUES
   ============================================================ */
.dh-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.dh-value-card { }
.dh-value-line { width: 32px; height: 2px; background: var(--gold); margin-bottom: 1.25rem; }
.dh-value-card h3 { font-size: 22px; color: var(--navy); margin-bottom: .75rem; }
.dh-value-card p { font-size: 14px; color: var(--gray); line-height: 1.8; }

/* ============================================================
   CTA / CONTACT
   ============================================================ */
#dh-contact { background: var(--navy); padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.dh-contact-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(201,169,110,.07); }
.dh-contact-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.dh-contact-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-bottom: 1.5rem; }
.dh-contact-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 1.75rem 1.5rem; }
.dh-contact-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; display: block; }
.dh-contact-value { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--white); display: block; line-height: 1.4; text-decoration: none; }
.dh-contact-note { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#dh-footer { background: var(--dark); padding: 3rem 4rem 2rem; border-top: 3px solid var(--gold); }
.dh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.dh-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.dh-footer-logo-mark { width: 32px; height: 32px; background: var(--gold); display: flex; align-items: center; justify-content: center; }
.dh-footer-logo-mark span { font-family: var(--font-serif); font-size: 16px; font-weight: 600; color: var(--navy); }
.dh-footer-logo-name { font-family: var(--font-serif); font-size: 18px; color: var(--gold); }
.dh-footer-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 1.25rem; }
.dh-footer-established { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.dh-footer-col h4 { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.dh-footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.dh-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.65); }
.dh-footer-col ul li a:hover { color: var(--gold); }
.dh-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.dh-footer-copy { font-size: 12px; color: rgba(255,255,255,.4); }
.dh-footer-legal { display: flex; gap: 1.5rem; }
.dh-footer-legal a { font-size: 12px; color: rgba(255,255,255,.4); }
.dh-footer-legal a:hover { color: var(--gold); }

/* ============================================================
   INQUIRY DIALOG
   ============================================================ */
#dh-inquiry-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,15,26,.88); z-index: 2000;
  align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
#dh-inquiry-overlay.open { display: flex; }
.dh-inquiry-modal { background: var(--white); max-width: 520px; width: 90%; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,.4); }
.dh-inquiry-header { background: linear-gradient(135deg,var(--navy),var(--navy-light)); padding: 2rem 2.5rem; border-bottom: 3px solid var(--gold); }
.dh-inquiry-header h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 300; color: var(--white); }
.dh-inquiry-header p { font-size: 13px; color: rgba(255,255,255,.6); margin-top: .4rem; }
.dh-inquiry-close { position: absolute; top: 1.25rem; right: 1.5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--white); width: 32px; height: 32px; font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; line-height: 1; transition: var(--transition); }
.dh-inquiry-close:hover { background: rgba(255,255,255,.2); }
.dh-inquiry-body { padding: 2rem 2.5rem; }
.dh-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.dh-field label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }
.dh-field input, .dh-field textarea, .dh-field select { border: 1px solid var(--border); padding: .75rem 1rem; font-size: 14px; outline: none; width: 100%; transition: border-color .2s; background: var(--white); }
.dh-field input:focus, .dh-field textarea:focus, .dh-field select:focus { border-color: var(--gold); }
.dh-field textarea { min-height: 110px; resize: vertical; }
.dh-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dh-inquiry-error { display: none; font-size: 13px; color: #e53935; padding: .5rem 0; }
.dh-inquiry-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; padding: 1rem; font-size: 14px; margin-top: 1rem; }

/* FAB BUTTON */
#dh-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  background: linear-gradient(135deg,var(--navy),var(--navy-light));
  color: var(--white); font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 24px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(26,34,68,.4);
  border: 2px solid var(--gold); transition: var(--transition);
  cursor: pointer;
}
#dh-fab:hover { background: var(--gold); color: var(--navy); }

/* ADMIN GEAR */
#dh-admin-btn {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 400;
  background: var(--navy); border: 2px solid var(--gold);
  color: var(--gold); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: var(--transition);
}
#dh-admin-btn:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   WORDPRESS PAGE TITLE HIDE ON FRONT PAGE
   ============================================================ */
.home .entry-title,
.home .page-header,
.home .page-title,
.home h1.entry-title,
.home .wp-block-post-title {
  display: none !important;
}
.home .entry-content,
.home .page-content {
  margin: 0 !important;
  padding: 0 !important;
}
.home .hentry,
.home article {
  margin: 0 !important;
  padding: 0 !important;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  /* Header */
  #dh-header { padding: 0 1.5rem; }
  .dh-nav { display: none; }
  .dh-nav-toggle { display: flex; }

  /* Hero */
  #dh-hero { min-height: 100svh; }
  .dh-hero-inner {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    gap: 2rem;
  }
  .dh-hero-geo,
  .dh-hero-lines,
  .dh-hero-accent { display: none; }
  .dh-hero-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1px;
    width: 100%;
  }
  .dh-hero-left { max-width: 100%; }

  /* Trust bar */
  #dh-trust {
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Gallery strip */
  #dh-gallery { grid-template-columns: repeat(3,1fr); height: 200px; }
  #dh-gallery .dh-gallery-item:nth-child(4),
  #dh-gallery .dh-gallery-item:nth-child(5) { display: none; }

  /* Sections */
  .dh-section { padding: 4rem 1.5rem; }
  .dh-container { padding: 0 1.5rem; }
  .dh-grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .dh-grid-3 { grid-template-columns: repeat(2,1fr); }
  .dh-grid-4 { grid-template-columns: repeat(2,1fr); }

  /* Services */
  .dh-services-grid { grid-template-columns: repeat(2,1fr); }

  /* Process */
  .dh-process-grid { grid-template-columns: repeat(3,1fr); }
  .dh-process-step { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
  .dh-process-step:nth-child(3),
  .dh-process-step:last-child { border-bottom: none; }

  /* Projects */
  .dh-projects-grid { grid-template-columns: repeat(2,1fr); }

  /* Restoration */
  #dh-restoration { padding: 4rem 1.5rem; }
  .dh-resto-grid { grid-template-columns: repeat(2,1fr); }
  .dh-resto-emergency { flex-direction: column; gap: 1.5rem; text-align: center; }
  .dh-resto-phone { font-size: 28px; }

  /* Values */
  .dh-values-grid { grid-template-columns: repeat(2,1fr); }

  /* Contact */
  #dh-contact { padding: 5rem 1.5rem; }
  .dh-contact-cards { grid-template-columns: repeat(2,1fr); }

  /* Footer */
  #dh-footer { padding: 3rem 1.5rem 2rem; }
  .dh-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Header */
  #dh-header { padding: 0 1rem; height: 64px; }
  .dh-logo-name { font-size: 17px; }
  .dh-mobile-nav { top: 64px; }

  /* Hero */
  #dh-hero { min-height: 100svh; }
  .dh-hero-inner { padding: 6rem 1rem 3rem; }
  .dh-hero-badge { font-size: 10px; }
  .dh-hero-stats { grid-template-columns: repeat(2,1fr); }
  .dh-stat { padding: 1rem; }
  .dh-stat-num { font-size: 32px; }
  .dh-hero-btns { flex-direction: column; gap: .75rem; }
  .dh-btn { text-align: center; width: 100%; box-sizing: border-box; }

  /* Trust bar */
  #dh-trust {
    padding: 1rem;
    gap: .75rem 1.25rem;
    justify-content: flex-start;
  }
  .dh-trust-item { font-size: 12px; }

  /* Gallery */
  #dh-gallery { grid-template-columns: repeat(2,1fr); height: 160px; }
  #dh-gallery .dh-gallery-item:nth-child(3),
  #dh-gallery .dh-gallery-item:nth-child(4),
  #dh-gallery .dh-gallery-item:nth-child(5) { display: none; }

  /* Layout */
  .dh-section { padding: 3.5rem 1rem; }
  .dh-container { padding: 0 1rem; }
  .dh-grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .dh-grid-3 { grid-template-columns: 1fr; }
  .dh-grid-4 { grid-template-columns: 1fr; }
  .dh-section-h { font-size: clamp(26px,7vw,40px); }
  .dh-section-sub { font-size: 14px; margin-bottom: 2rem; }

  /* Services */
  .dh-services-grid { grid-template-columns: 1fr; }
  .dh-service-card { padding: 1.5rem; }

  /* Process */
  .dh-process-grid { grid-template-columns: 1fr 1fr; }
  .dh-process-step { padding: 1.25rem; }

  /* Projects */
  .dh-projects-grid { grid-template-columns: 1fr; }
  .dh-project-gallery { height: 240px; }

  /* Restoration */
  #dh-restoration { padding: 3.5rem 1rem; }
  .dh-resto-grid { grid-template-columns: 1fr; }
  .dh-resto-card { padding: 1.5rem; }
  .dh-resto-emergency { padding: 1.5rem; flex-direction: column; }
  .dh-resto-phone { font-size: 26px; }

  /* Values */
  .dh-values-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Contact */
  #dh-contact { padding: 4rem 1rem; }
  .dh-contact-cards { grid-template-columns: 1fr 1fr; }
  .dh-contact-card { padding: 1.25rem 1rem; }
  .dh-contact-value { font-size: 15px; }

  /* Footer */
  #dh-footer { padding: 3rem 1rem 2rem; }
  .dh-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .dh-footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }

  /* Inquiry modal */
  .dh-inquiry-modal { width: 95%; max-height: 90svh; overflow-y: auto; }
  .dh-inquiry-header { padding: 1.5rem; }
  .dh-inquiry-body { padding: 1.5rem; }
  .dh-fields-row { grid-template-columns: 1fr; }

  /* FAB */
  #dh-fab { bottom: 1rem; right: 1rem; padding: 12px 18px; font-size: 12px; }
  #dh-admin-btn { bottom: 1rem; left: 1rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {

  /* Header */
  #dh-header { padding: 0 .875rem; }
  .dh-logo-name { display: none; }

  /* Hero */
  .dh-hero-inner { padding: 5.5rem .875rem 2.5rem; }
  .dh-hero-stats { grid-template-columns: repeat(2,1fr); }
  .dh-stat-num { font-size: 28px; }
  .dh-stat-label { font-size: 11px; }

  /* Trust bar */
  #dh-trust { flex-direction: column; align-items: flex-start; }

  /* Gallery */
  #dh-gallery { grid-template-columns: 1fr 1fr; height: 130px; }

  /* Layout */
  .dh-section { padding: 3rem .875rem; }
  .dh-container { padding: 0 .875rem; }

  /* Process */
  .dh-process-grid { grid-template-columns: 1fr; }

  /* Contact */
  .dh-contact-cards { grid-template-columns: 1fr; }

  /* Restoration emergency bar */
  .dh-resto-emergency { padding: 1.25rem; }
  .dh-resto-phone { font-size: 22px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.dh-fade-up { animation: fadeUp .7s ease forwards; }
.dh-fade-up-2 { animation: fadeUp .7s .15s ease forwards; opacity: 0; }
.dh-fade-up-3 { animation: fadeUp .7s .3s ease forwards; opacity: 0; }
.dh-fade-up-4 { animation: fadeUp .7s .45s ease forwards; opacity: 0; }

/* ============================================================
   WORDPRESS DEFAULTS
   ============================================================ */
.wp-block-image { margin: 2rem 0; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 2rem; }
.alignright { float: right; margin-left: 2rem; }
.wp-caption { max-width: 100%; }
.sticky { }
.bypostauthor { }
.gallery { display: flex; flex-wrap: wrap; gap: 1rem; }
.gallery-item { flex: 1; min-width: 200px; }

