/* ============================================================
   Washington DC Wallpaper Installation
   Visual Style: Nordic Navy #0B1426 / Aged Brass #9F874E
   Fonts: DM Serif Display (headings) + Outfit (body)
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --nordic-navy: #0B1426;
  --fjord-shadow: #050A14;
  --seafoam-linen: #E9F0EA;
  --seafoam-mist: #F4FAF6;
  --navy-charcoal: #1C2634;
  --aged-brass: #9F874E;
  --aged-brass-light: #C4AC6E;
  --aged-brass-dark: #7A6838;
  --white: #FFFFFF;
  --gray-100: #F7F8F9;
  --gray-200: #E8EAED;
  --gray-300: #D1D5DB;
  --gray-600: #6B7280;
  --error-red: #ff6b6b;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(11,20,38,0.08);
  --shadow-md: 0 4px 20px rgba(11,20,38,0.12);
  --shadow-lg: 0 8px 40px rgba(11,20,38,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--navy-charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--nordic-navy);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Top Bar --- */
.top-bar {
  background: var(--fjord-shadow);
  color: var(--seafoam-mist);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(159,135,78,0.2);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--aged-brass-light);
  font-weight: 500;
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--aged-brass); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left a[href^="mailto:"]::before {
  content: '\2709';
  font-size: 0.85rem;
  line-height: 1;
}
.top-bar-right { font-size: 0.8rem; opacity: 0.8; }

/* --- Header / Navbar --- */
.header {
  background: var(--nordic-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 68px;
}
.logo a {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--seafoam-mist);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .accent { color: var(--aged-brass); }

/* --- Desktop Nav --- */
.nav { display: flex; align-items: center; gap: 0; }
.nav a {
  color: var(--seafoam-mist);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 22px 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav a:hover,
.nav a.active {
  color: var(--aged-brass);
  background: rgba(159,135,78,0.08);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--aged-brass);
  transition: width var(--transition);
}
.nav a:hover::after,
.nav a.active::after { width: 60%; }

/* --- Dropdown --- */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nordic-navy);
  min-width: 260px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  border-top: 2px solid var(--aged-brass);
  z-index: 1001;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 0.85rem;
  text-transform: none;
  border-bottom: 1px solid rgba(159,135,78,0.1);
  letter-spacing: 0;
}
.dropdown a:hover {
  background: rgba(159,135,78,0.12);
  color: var(--aged-brass);
  padding-left: 26px;
}
.dropdown a::after { display: none; }

/* --- Mobile Menu Toggle --- */
.close-btn { display: none; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--seafoam-mist);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
  background: var(--nordic-navy);
  color: var(--seafoam-mist);
  padding: 96px 0 76px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(120deg, rgba(11,20,38,0.9) 0%, rgba(5,10,20,0.82) 55%, rgba(5,10,20,0.88) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(159,135,78,0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--seafoam-mist); margin-bottom: 20px; }
.hero h1 .accent { color: var(--aged-brass); }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; line-height: 1.8; }
.hero-copy { max-width: 640px; }
.hero-form {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--nordic-navy) 0%, var(--fjord-shadow) 100%);
  color: var(--seafoam-mist);
  padding: 56px 0 48px;
  text-align: center;
}
.page-hero h1 { color: var(--seafoam-mist); margin-bottom: 12px; }
.page-hero p { opacity: 0.85; font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.7;
}
.breadcrumb a { color: var(--aged-brass-light); }
.breadcrumb a:hover { color: var(--aged-brass); text-decoration: underline; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-height: 52px;
}
.btn-primary {
  background: var(--aged-brass);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(159,135,78,0.3);
}
.btn-primary:hover {
  background: var(--aged-brass-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(159,135,78,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--aged-brass);
  border: 2px solid var(--aged-brass);
}
.btn-outline:hover {
  background: var(--aged-brass);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-light {
  background: rgba(255,255,255,0.12);
  color: var(--seafoam-mist);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-light:hover {
  background: rgba(255,255,255,0.2);
}

/* --- Form Styles (ANTI-ERROR RULE 1) --- */
.feedback-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.feedback-form-container h2 {
  text-align: center;
  color: var(--nordic-navy);
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.form-group {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--gray-100);
  color: var(--navy-charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--aged-brass);
  box-shadow: 0 0 0 3px rgba(159,135,78,0.15);
  background: var(--white);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-submit {
  text-align: center;
  margin-top: 20px;
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aged-brass);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 48px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  min-height: 52px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(159,135,78,0.3);
}
.submit-btn:hover {
  background: var(--aged-brass-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(159,135,78,0.4);
}
#form-success {
  text-align: center;
  padding: 24px;
  color: var(--aged-brass);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Hero form on dark bg */
.hero .feedback-form-container {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(159,135,78,0.25);
  backdrop-filter: blur(8px);
}
.hero .feedback-form-container h2 { color: var(--seafoam-mist); }
.hero .form-group input,
.hero .form-group textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(159,135,78,0.3);
  color: var(--seafoam-mist);
}
.hero .form-group input::placeholder,
.hero .form-group textarea::placeholder { color: rgba(244,250,246,0.5); }
.hero .form-group input:focus,
.hero .form-group textarea:focus {
  border-color: var(--aged-brass);
  background: rgba(255,255,255,0.12);
}

/* --- Sections --- */
.section { padding: 72px 0; }
.section-dark {
  background: var(--nordic-navy);
  color: var(--seafoam-mist);
}
.section-dark h2 { color: var(--seafoam-mist); }
.section-light { background: var(--seafoam-linen); }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--aged-brass);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; }
.card-link {
  color: var(--aged-brass);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { color: var(--aged-brass-dark); gap: 10px; }

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.hero-grid > *,
.reviews-grid > *,
.contact-grid > *,
.about-grid > *,
.footer-grid > * {
  min-width: 0;
}

/* --- Service Page Content (ANTI-ERROR RULE 2) --- */
.service-content { padding: 64px 0; }
.service-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  border: 2px solid var(--seafoam-linen);
}
.content-block { margin-bottom: 48px; }
.content-block h2 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--seafoam-linen);
  margin-bottom: 20px;
}
.content-block ul,
.content-block ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.cta-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

/* --- City Page --- */
.city-badge {
  display: inline-block;
  background: var(--seafoam-linen);
  color: var(--aged-brass-dark);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.neighborhoods-grid span {
  background: var(--seafoam-linen);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-charcoal);
  border: 1px solid var(--gray-200);
}
.nearby-areas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.nearby-areas a {
  background: var(--nordic-navy);
  color: var(--seafoam-mist);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.nearby-areas a:hover {
  background: var(--aged-brass);
  transform: translateY(-2px);
}

/* --- Reviews --- */
.reviews-section {
  background: linear-gradient(180deg, var(--seafoam-linen) 0%, rgba(233,240,234,0.55) 100%);
}
.reviews-section .section-title p {
  color: var(--gray-600);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(159,135,78,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(159,135,78,0.16);
}
.review-card p {
  margin-bottom: 18px;
  padding-right: 16px;
}
.review-author {
  display: block;
  font-weight: 700;
  color: var(--nordic-navy);
}
.review-location {
  display: block;
  font-size: 0.9rem;
  color: var(--aged-brass-dark);
}

/* --- Contact Page (ANTI-ERROR RULE 3) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-left .feedback-form-container {
  margin-top: 16px;
}
.contact-info {
  margin-top: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--seafoam-linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--aged-brass);
  font-size: 1.1rem;
}
.contact-info-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.contact-info-item p,
.contact-info-item a {
  color: var(--nordic-navy);
  font-weight: 500;
  margin-bottom: 0;
}
.contact-info-item a:hover { color: var(--aged-brass); }

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--seafoam-linen);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* --- FAQ Accordion --- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nordic-navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--aged-brass); }
.faq-question .icon {
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--aged-brass);
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 20px;
}
.faq-answer p { color: var(--gray-600); line-height: 1.8; }
.faq-answer a { color: var(--aged-brass); font-weight: 500; }
.faq-answer a:hover { text-decoration: underline; }

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--seafoam-linen);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }

/* --- Footer --- */
.footer {
  background: var(--fjord-shadow);
  color: var(--seafoam-mist);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(159,135,78,0.15);
}
.footer h3 {
  color: var(--aged-brass);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer p { opacity: 0.8; font-size: 0.9rem; line-height: 1.7; }
.footer a {
  color: var(--seafoam-mist);
  opacity: 0.75;
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
  transition: all var(--transition);
}
.footer a:hover { opacity: 1; color: var(--aged-brass); padding-left: 6px; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* --- Sticky Quote Button --- */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--aged-brass);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(159,135,78,0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sticky-quote-btn::before {
  content: '\2709';
  font-family: 'Segoe UI Symbol', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  font-size: 1rem;
  line-height: 1;
}
.sticky-quote-btn:hover {
  background: var(--aged-brass-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(159,135,78,0.5);
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,10,20,0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-charcoal);
  transition: all var(--transition);
  z-index: 10;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--gray-200); }
.modal-content .feedback-form-container {
  border: none;
  box-shadow: none;
}

/* --- Service Areas Grid (text-only cards) --- */
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--aged-brass);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.area-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.area-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 12px; }

/* --- Hub Cards (no images to avoid duplication) --- */
.hub-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.hub-card:hover {
  border-color: var(--aged-brass);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.hub-card .hub-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hub-card h3 { margin-bottom: 12px; }
.hub-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 20px; }
.hub-card .card-link {
  margin-top: auto;
  align-self: center;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-form { max-width: none; justify-self: stretch; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header .container { min-height: 64px; }
  .logo { min-width: 0; }
  .logo a { font-size: 1.05rem; }

  .modal-overlay {
    align-items: center;
    padding: 12px;
  }
  .modal-content {
    max-height: calc(100vh - 24px);
  }
  .modal-content .feedback-form-container {
    padding-top: 56px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  /* Mobile Nav (ANTI-ERROR RULE 4) */
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(78vw, 420px);
    height: 100vh;
    background: var(--nordic-navy);
    flex-direction: column;
    align-items: stretch;
    padding: 72px 0 24px;
    transition: right 0.35s ease;
    overflow-y: auto;
    z-index: 1100;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav.open { right: 0; }
  .nav a {
    padding: 16px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(159,135,78,0.1);
  }
  .nav a::after {
    left: 24px;
    transform: none;
  }
  .nav .close-btn {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--seafoam-mist);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    z-index: 10;
  }

  /* Mobile dropdown */
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    min-width: 0;
    background: rgba(159,135,78,0.06);
  }
  .has-dropdown.open .dropdown { max-height: 800px; }
  .dropdown a { padding: 12px 32px; font-size: 0.88rem; }

  /* Mobile sticky button */
  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 32px);
    max-width: 360px;
    justify-content: center;
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
}

@media (max-width: 480px) {
  .hero { padding: 56px 0 48px; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .header .container { gap: 12px; }
  .logo a { font-size: 0.98rem; }
  .hub-card { padding: 24px 20px; }
  .review-card { padding: 24px 20px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-accent { color: var(--aged-brass); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* --- Animation --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
