/* ═══════════════════════════════════════════════════════════════
   Avorino — Navigation + Footer (CDN bundle for all pages)
   Include via: <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Rejhinald/avorino@{hash}/avorino-nav-footer.css">
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   PRELOADER — div logo support
   ═══════════════════════════════════════════ */
/* Paint roller animation needs overflow visible for roller SVG movement */
/* width: 200px fixes centering — without it the 0-width flex child anchors
   at viewport center and the 200px logo content extends rightward, clipping
   on mobile and appearing off-center on all viewports. */
.preloader-text {
  overflow: visible !important;
  width: 200px !important;
  position: relative;
}

.preloader-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Center logo in preloader (absolute so house SVG doesn't push it down) */
.preloader-logo-wrap {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
}

/* When preloader logo is a div with background-image (Webflow swap) */
.preloader-text > div,
.preloader-text .preloader-logo-div,
.preloader-logo-wrap > div,
.preloader-logo-wrap .preloader-logo-div {
  height: 48px;
  width: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

/* ═══════════════════════════════════════════
   NAVIGATION BAR
   ═══════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  mix-blend-mode: normal !important;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease,
              -webkit-backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

/* ── Nav spacer — transparent push-down so hero clears the fixed nav ── */
.nav-spacer {
  height: 96px;
  background-color: transparent !important;
}

/* ── Default: dark text everywhere ── */
nav.site-nav .nav-logo,
nav.site-nav .nav-logo.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  color: #111111 !important;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color 0.4s ease;
}

/* Support <img> nav logo */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* Support <div> nav logo with background-image (Webflow swap) */
.nav-logo > div,
.nav-logo .nav-logo-div {
  height: 28px;
  width: 140px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav.site-nav .nav-link,
nav.site-nav .nav-links .nav-link,
nav.site-nav .nav-link.nav-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #111111 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.4s ease;
}

/* Hide Reviews nav link */
nav.site-nav .nav-link[href="/clientreviews"],
nav.site-nav .nav-link[href="/clientreviews/"],
nav.site-nav .nav-link[href="/reviews"],
nav.site-nav .nav-link[href="/reviews/"] {
  display: none !important;
}

nav.site-nav .nav-link:hover {
  opacity: 1;
  color: #c8222a !important;
}

/* Logo always shows in color (no filter) */
nav.site-nav .nav-logo > div,
nav.site-nav .nav-logo .nav-logo-div,
nav.site-nav .nav-logo-img {
  filter: none !important;
}

nav.site-nav .nav-cta {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #000000 !important;
  background-color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 100px;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav.site-nav .nav-cta:hover {
  background-color: #c8222a !important;
  color: #ffffff !important;
}

nav.site-nav .nav-burger span {
  background-color: #ffffff !important;
}

/* ── Scrolled State: translucent frosted glass ── */
nav.site-nav.nav--scrolled {
  background-color: rgba(240, 237, 232, 0.12) !important;
  backdrop-filter: blur(20px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
  box-shadow: 0 1px 0 rgba(240, 237, 232, 0.08), 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Scrolled CTA: invert to dark bg */
nav.site-nav.nav--scrolled .nav-cta {
  color: #f0ede8 !important;
  background-color: #111111 !important;
}

nav.site-nav.nav--scrolled .nav-cta:hover {
  background-color: #c8222a !important;
  color: #ffffff !important;
}

/* ── Dropdown Open State: disable blend mode, frosted glass + dark text ── */
nav.site-nav.nav--dropdown-open {
  background-color: rgba(232, 228, 223, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease;
}

/* Keep blend-mode normal + bg while dropdown is closing to prevent flash */
nav.site-nav:has(.is-closing) {
  background-color: rgba(232, 228, 223, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

nav.site-nav.nav--dropdown-open .nav-logo,
nav.site-nav.nav--dropdown-open .nav-link {
  color: #111111 !important;
}

/* Invert div-based nav logo when dropdown opens (cream bg = need dark logo) */
nav.site-nav.nav--dropdown-open .nav-logo > div,
nav.site-nav.nav--dropdown-open .nav-logo .nav-logo-div,
nav.site-nav.nav--dropdown-open .nav-logo-img {
  filter: none !important;
}

nav.site-nav.nav--dropdown-open .nav-cta {
  color: #f0ede8 !important;
  background-color: #111111 !important;
}

nav.site-nav.nav--dropdown-open .nav-link--has-dropdown {
  opacity: 1;
}

nav.site-nav.nav--dropdown-open .nav-link:hover {
  color: #c8222a !important;
}

/* ── Nav Item (wrapper for link + dropdown) ── */
.nav-item {
  position: static;
  display: flex;
  align-items: center;
}

/* ── Dropdown Chevron ── */
.nav-link--has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-link--has-dropdown::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-item.is-open .nav-link--has-dropdown::after {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════
   DROPDOWN PANELS
   ═══════════════════════════════════════════ */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #111111;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              visibility 0.35s;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Stagger Reveal Animation ── */
@keyframes navItemFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-item.is-open .nav-dd-service-card,
.nav-item.is-open .nav-dd-link,
.nav-item.is-open .nav-dd-link--featured,
.nav-item.is-open .nav-dd-city-col,
.nav-item.is-open .nav-dd-label,
.nav-item.is-open .nav-dd-divider {
  opacity: 0;
  animation: navItemFadeUp 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  /* animation-delay set by JS via inline style */
}

/* ── Dropdown Inner Container ── */
.nav-dd-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 64px;
}

/* ── Shared Dropdown Elements ── */
.nav-dd-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f0ede8;
  opacity: 0.3;
  margin-bottom: 20px;
}

.nav-dd-link {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.5;
  text-decoration: none;
  padding: 6px 0;
  transition: opacity 0.25s ease;
}

.nav-dd-link:hover {
  opacity: 1;
}

.nav-dd-link--featured {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  opacity: 0.7;
  padding: 8px 0;
}

.nav-dd-link--featured:hover {
  opacity: 1;
  color: #c8222a;
}

.nav-dd-divider {
  height: 1px;
  background-color: #f0ede8;
  opacity: 0.06;
  margin: 20px 0;
}

/* ═══════════════════════════════════════════
   SERVICES DROPDOWN — icon + text cards (3-col)
   ═══════════════════════════════════════════ */
.nav-dd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.nav-dd-service-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  position: relative;
}

.nav-dd-service-card:hover {
  background-color: rgba(240, 237, 232, 0.05);
}

/* Icon container */
.nav-dd-service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: rgba(240, 237, 232, 0.04);
  border: 1px solid rgba(240, 237, 232, 0.06);
  color: #f0ede8;
  opacity: 0.45;
  transition: opacity 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.nav-dd-service-card:hover .nav-dd-service-icon {
  opacity: 0.8;
  border-color: rgba(200, 34, 42, 0.25);
  background-color: rgba(200, 34, 42, 0.06);
}

.nav-dd-service-icon svg {
  width: 22px;
  height: 22px;
}

/* Text container */
.nav-dd-service-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.nav-dd-service-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.85;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-dd-service-card:hover .nav-dd-service-title {
  opacity: 1;
  color: #ffffff;
}

.nav-dd-service-desc {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #f0ede8;
  opacity: 0.28;
  transition: opacity 0.3s ease;
}

.nav-dd-service-card:hover .nav-dd-service-desc {
  opacity: 0.45;
}

/* ── ADU Dropdown — left sidebar + city grid ── */
.nav-dd-adu-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
}

.nav-dd-adu-left {
  padding-right: 48px;
  border-right: 1px solid rgba(240, 237, 232, 0.06);
}

.nav-dd-adu-right {
  padding-left: 48px;
}

.nav-dd-cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
}

.nav-dd-city-col {
  display: flex;
  flex-direction: column;
}

.nav-dd-city {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.4;
  text-decoration: none;
  padding: 5px 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-dd-city:hover {
  opacity: 1;
  color: #c8222a;
}

/* ── Resources Dropdown — full-width with card layout (matches Services) ── */
.nav-item:has(.nav-dropdown--resources) {
  position: static;
}

.nav-dropdown--resources {
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  border-radius: 0 !important;
}

.nav-dropdown--resources .nav-dd-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px !important;
  padding: 48px 64px !important;
}

/* Style links as service-card equivalents: icon left, title + desc right */
.nav-dropdown--resources .nav-dd-link {
  display: grid !important;
  grid-template-columns: 44px 1fr !important;
  grid-template-rows: auto auto !important;
  column-gap: 16px !important;
  row-gap: 6px !important;
  align-items: start !important;
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  color: #f0ede8 !important;
  opacity: 0.85;
  padding: 28px 24px !important;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background-color 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.nav-dropdown--resources .nav-dd-link:hover {
  opacity: 1;
  background-color: rgba(240, 237, 232, 0.05);
  color: #ffffff !important;
}

/* Icon box (mirrors .nav-dd-service-icon) */
.nav-dropdown--resources .nav-dd-link::before {
  content: '';
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(240, 237, 232, 0.04);
  border: 1px solid rgba(240, 237, 232, 0.06);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nav-dropdown--resources .nav-dd-link:hover::before {
  border-color: rgba(200, 34, 42, 0.25);
  background-color: rgba(200, 34, 42, 0.06);
}

/* Description line under each title */
.nav-dropdown--resources .nav-dd-link::after {
  grid-column: 2;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.28;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
.nav-dropdown--resources .nav-dd-link:hover::after {
  opacity: 0.45;
}

/* Per-link descriptions */
.nav-dropdown--resources .nav-dd-link[href="/financing"]::after {
  content: 'Flexible payment plans to fund your project.';
}
.nav-dropdown--resources .nav-dd-link[href="/investment"]::after {
  content: 'Partner with us on high-return builds.';
}
.nav-dropdown--resources .nav-dd-link[href="/flippingopportunity"]::after {
  content: 'Turn undervalued properties into profit.';
}
.nav-dropdown--resources .nav-dd-link[href="/blog"]::after {
  content: 'Insights, tips, and project spotlights.';
}
.nav-dropdown--resources .nav-dd-link[href="/free-estimate"]::after {
  content: 'Get a no-obligation project quote today.';
}

/* Unique icons per Resources link via SVG background */
.nav-dropdown--resources .nav-dd-link[href="/financing"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23f0ede8' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.nav-dropdown--resources .nav-dd-link[href="/investment"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23f0ede8' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 7 13.5 15.5 8.5 10.5 2 17'/%3E%3Cpolyline points='16 7 22 7 22 13'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.nav-dropdown--resources .nav-dd-link[href="/flippingopportunity"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23f0ede8' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='17 1 21 5 17 9'/%3E%3Cpath d='M3 11V9a4 4 0 0 1 4-4h14'/%3E%3Cpolyline points='7 23 3 19 7 15'/%3E%3Cpath d='M21 13v2a4 4 0 0 1-4 4H3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.nav-dropdown--resources .nav-dd-link[href="/blog"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23f0ede8' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.nav-dropdown--resources .nav-dd-link[href="/free-estimate"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23f0ede8' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.nav-dropdown--resources .nav-dd-divider {
  display: none !important;
}

/* ═══════════════════════════════════════════
   BURGER MENU
   ═══════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 18px;
  padding: 0;
  z-index: 1002;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #f0ede8;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.4s ease;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   MOBILE OVERLAY
   ═══════════════════════════════════════════ */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #111111;
  z-index: 999;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 96px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile-group {
  padding: 24px 0;
  border-bottom: 1px solid rgba(240, 237, 232, 0.06);
}

.nav-mobile-group:last-child {
  border-bottom: none;
}

.nav-mobile-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f0ede8;
  opacity: 0.25;
  margin-bottom: 16px;
  display: block;
}

.nav-mobile-overlay .nav-mobile-group > a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.6;
  display: block;
  padding: 8px 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-mobile-overlay .nav-mobile-group > a:hover {
  opacity: 1;
}

.nav-mobile-overlay a {
  transition: opacity 0.3s ease;
}

/* ── Mobile Accordion (Cities) ── */
.nav-mobile-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile-accordion .nav-mobile-label {
  margin-bottom: 0;
}

.nav-mobile-accordion-icon {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #f0ede8;
  opacity: 0.3;
  transition: transform 0.3s ease, opacity 0.3s ease;
  line-height: 1;
}

.nav-mobile-accordion.is-open .nav-mobile-accordion-icon {
  transform: rotate(45deg);
  opacity: 0.6;
}

.nav-mobile-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-mobile-accordion.is-open + .nav-mobile-accordion-body {
  max-height: 600px;
}

.nav-mobile-city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  padding-top: 16px;
}

.nav-mobile-city-grid a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.4;
  text-decoration: none;
  padding: 6px 0;
  display: block;
  transition: opacity 0.2s ease;
}

.nav-mobile-city-grid a:hover {
  opacity: 1;
}

/* ── Mobile CTA ── */
.nav-mobile-group--cta {
  padding-top: 32px;
  border-bottom: none;
}

.nav-mobile-cta {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #111111;
  background-color: #f0ede8;
  text-align: center;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-mobile-cta:hover {
  background-color: #c8222a;
  color: #f0ede8;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background-color: #111111;
  color: #f0ede8;
  padding: 96px 80px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(240, 237, 232, 0.06);
  margin-bottom: 48px;
}

.footer-brand-name {
  margin-bottom: 20px;
}

/* Support both <img> and <div> with background-image for logo */
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* When logo is a div with background-image */
.footer-brand-name > div,
.footer-brand-name .footer-logo-div {
  height: 32px;
  width: 160px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #f0ede8;
  opacity: 0.5;
  max-width: 300px;
  margin-bottom: 28px;
}

.footer-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.footer-contact-item {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-contact-item:hover {
  opacity: 1;
}

.footer-license {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #f0ede8;
  opacity: 0.35;
}

.footer-col-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f0ede8;
  opacity: 0.5;
  margin-bottom: 20px;
}

.footer-col a {
  font-family: 'DM Sans', system-ui, sans-serif;
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.6;
  padding: 5px 0;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
}

/* ── Cities We Serve — Flat Grid ── */
.footer-cities {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(240, 237, 232, 0.06);
  margin-bottom: 32px;
}

.footer-cities-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f0ede8;
  opacity: 0.4;
  margin-bottom: 16px;
}

.footer-cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px 32px;
}

.footer-cities-grid a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.45;
  text-decoration: none;
  padding: 4px 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-cities-grid a:hover {
  opacity: 0.85;
  color: #c8222a;
}

.footer-cities-grid span {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.25;
  padding: 4px 0;
}

/* ── Bottom Bar ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #f0ede8;
  opacity: 0.5;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
}

.footer-bottom-links a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #f0ede8;
  opacity: 0.15;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-bottom-links a:hover {
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (≤991px)
   ═══════════════════════════════════════════ */
@media (max-width: 991px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-overlay { display: flex; }
  .nav-dropdown { display: none; }

  /* Footer */
  .footer { padding: 72px 48px 40px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2px 24px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile Landscape (≤767px)
   ═══════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Nav */
  .site-nav { padding: 16px 24px; }
  .nav-mobile-scroll { padding: 80px 24px 36px; }
  .nav-mobile-overlay .nav-mobile-group > a { font-size: 22px; }
  .nav-mobile-city-grid a { font-size: 17px; padding: 5px 0; }

  /* Footer */
  .footer { padding: 56px 24px 32px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-cities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 16px;
  }
  .footer-cities-grid a { font-size: 14px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile Portrait (≤478px)
   ═══════════════════════════════════════════ */
@media (max-width: 478px) {
  /* Nav */
  .site-nav { padding: 14px 16px; }
  .nav-mobile-scroll { padding: 72px 16px 32px; }
  .nav-mobile-group { padding: 20px 0; }
  .nav-mobile-overlay .nav-mobile-group > a { font-size: 21px; padding: 7px 0; }
  .nav-mobile-city-grid { gap: 0 16px; }
  .nav-mobile-city-grid a { font-size: 16px; }

  /* Footer */
  .footer { padding: 48px 16px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-top .footer-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }
  .footer-top .footer-col .footer-col-title {
    grid-column: 1 / -1;
  }
  .footer-cities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-serving-list { font-size: 14px; }
}
