/* ── SECTION 1: RESET + VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #ea580c;
  --primary-dark:   #c2410c;
  --primary-dim:    rgba(234,88,12,0.10);
  --primary-border: rgba(234,88,12,0.30);
  --primary-glow:   rgba(234,88,12,0.15);
  --bg:             #faf8f5;
  --bg2:            #f5f0eb;
  --bg3:            #ede8e3;
  --border:         #e7e5e4;
  --border2:        #d6d3d1;
  --text:           #1c1917;
  --muted:          #78716c;
  --faint:          #a8a29e;
  --ink:            #1c1917;
  --ink2:           #292524;
  --white:          #ffffff;
  --surface:        #ffffff;
  --radius:         16px;
  --radius-sm:      10px;
  --radius-xs:      6px;
  --orange:         var(--primary);
  --orange-dim:     var(--primary-dim);
  --orange-mid:     var(--primary-border);
  --box-shadow-2:   0 4px 20px 0 rgba(15,15,15,0.06);
  --box-shadow-3:   0 4px 20px 0 rgba(15,15,15,0.14);
}

html, body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
html { -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
body.all-pages { display: flex; flex-direction: column; min-height: 100vh; }
body.all-pages .container.main { margin-top: 32px; }


/* ── SECTION 2: TYPOGRAPHY ── */
h1 {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-weight: 900;
  line-height: 1.05;
}
h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.25;
}
p { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; }


/* ── SECTION 3: NAVIGATION ── */
nav {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  padding: 0 48px;
}
.nav-inner {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
/* Logo link — classless <a> direct child of .nav-inner */
.nav-inner > a {
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.logo { height: 24px; display: block; }
.footer-logo { height: 24px; display: block; }

/* Nav links — pill shape */
.nav-links {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  text-decoration: none;
  transition: all .15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* More dropdown */
.nav-more { position: relative; }
.nav-more-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  font-family: inherit;
}
.nav-more:hover .nav-more-btn,
.nav-more:focus-within .nav-more-btn {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.nav-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;
  min-width: 200px;
  background: var(--ink2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  flex-direction: column;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-more:hover .nav-dropdown,
.nav-more:focus-within .nav-dropdown { display: flex; }
/* Invisible bridge — prevents hover gap from breaking dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: var(--primary-dim);
  color: #fff;
}

.nav-cta {
  background: var(--primary);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .15s;
}
.nav-cta:hover { background: var(--primary-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all .25s;
  transform-origin: center;
}
/* translateY = gap (5px) + span height (2px) = 7px */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--ink);
  flex-direction: column;
  z-index: 99;
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 12px 24px;
  transition: color .15s;
}
.mobile-menu a:hover { color: #fff; }
.m-cta {
  background: var(--primary);
  color: var(--ink) !important;
  border-radius: 100px;
  margin: 8px 24px 0;
  padding: 10px 20px !important;
  text-align: center;
  font-weight: 700 !important;
}


/* ── SECTION 4: LAYOUT CONTENT ── */

/* .wrap — inner content container */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Section headers */
.section-hd {
  display: flex;
  align-items: flex-end;
  margin-bottom: 22px;
  padding-top: 56px;
}
.section-hd-left {}
.s-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.section-hd h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.5px;
}
.s-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  margin-left: auto;
  border-bottom: 1.5px solid #fed7aa;
  padding-bottom: 1px;
  transition: color .15s;
}
.s-link:hover { color: #9a3412; }

/* Hero */
.hero {
  background: var(--ink);
  padding: 56px 28px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(194,65,12,0.18) 0%, transparent 65%);
}
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-top {
  text-align: center;
  margin-bottom: 48px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fb923c;
  margin-bottom: 18px;
}
.hero-kicker-line {
  width: 28px;
  height: 1px;
  background: var(--primary);
}
.hero h1 {
  font-size: 54px;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 14px;
}
.hero h1 .warm { color: #fb923c; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Room grid */
.room-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 0;
}
.room-tile {
  border-radius: 16px 16px 0 0;
  padding: 24px 16px 28px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-bottom: none;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.room-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,0.06);
  transition: opacity .2s;
}
.room-tile:hover::before { opacity: 1; }
.room-tile:hover {
  border-color: rgba(251,146,60,0.5);
  transform: translateY(-3px);
}
.rt-kitchen  { background: linear-gradient(160deg,#451a03,#7c2d12); }
.rt-bathroom { background: linear-gradient(160deg,#0c2340,#1e3a5f); }
.rt-living   { background: linear-gradient(160deg,#1a1a2e,#16213e); }
.rt-outdoor  { background: linear-gradient(160deg,#052e16,#14532d); }
.rt-garage   { background: linear-gradient(160deg,#1c1917,#292524); }
.rt-bedroom  { background: linear-gradient(160deg,#2d1b4e,#4c1d95); }
.room-tile-icon  { font-size: 30px; line-height: 1; }
.room-tile-name  { font-size: 13.5px; font-weight: 800; color: #fff; letter-spacing: -.2px; }
.room-tile-count { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* Quick-fix rail */
.quickfix-wrap {
  background: var(--primary);
  padding: 14px 0;
}
.quickfix-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.quickfix-inner::-webkit-scrollbar { display: none; }
.qf-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  flex-shrink: 0;
}
.qf-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.qf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  transition: background .15s;
  flex-shrink: 0;
}
.qf-link:hover { background: rgba(255,255,255,0.22); }

/* Project card grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proj-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all .15s;
}
.proj-card:hover {
  box-shadow: 0 8px 32px var(--primary-glow);
  border-color: #fed7aa;
  transform: translateY(-2px);
}
.proj-card-vis {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.proj-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  color: #fff;
}
.badge-easy     { background: #16a34a; }
.badge-weekend  { background: #d97706; }
.badge-advanced { background: #dc2626; }
.proj-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proj-tag {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}
.proj-card-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.proj-desc {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.proj-arrow {
  display: flex;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-dark);
  align-items: center;
  gap: 4px;
}

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
}
.feat-left {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feat-left-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fb923c;
  margin-bottom: 16px;
}
.feat-left h2 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.feat-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  width: fit-content;
  transition: background .15s;
}
.feat-cta:hover { background: var(--primary-dark); }
.feat-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink2);
}
.feat-mini {
  background: var(--ink);
  padding: 24px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .15s;
}
.feat-mini:hover { background: var(--ink2); }
.feat-mini-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fb923c;
}
.feat-mini-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.feat-mini-arrow { display: block; font-size: 12px; color: rgba(255,255,255,0.35); margin-top: auto; }

/* Category mosaic */
.cat-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-tile {
  border-radius: var(--radius);
  padding: 26px 20px;
  text-decoration: none;
  transition: all .15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 130px;
  position: relative;
  overflow: hidden;
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.15);
}
.cat-tile-icon { display: block; font-size: 28px; line-height: 1; }
.cat-tile-name { display: block; font-size: 15px; font-weight: 800; color: #fff; line-height: 1.2; }
.cat-tile-sub  { display: block; font-size: 11.5px; color: rgba(255,255,255,0.65); font-weight: 500; }
.ct-diy     { background: linear-gradient(145deg,#7c2d12,#c2410c); }
.ct-imp     { background: linear-gradient(145deg,#1e3a5f,#1d4ed8); }
.ct-clean   { background: linear-gradient(145deg,#064e3b,#059669); }
.ct-smart   { background: linear-gradient(145deg,#1e1b4b,#4f46e5); }
.ct-lawn    { background: linear-gradient(145deg,#14532d,#16a34a); }
.ct-safety  { background: linear-gradient(145deg,#7f1d1d,#dc2626); }
.ct-design  { background: linear-gradient(145deg,#4a1d96,#7c3aed); }
.ct-energy  { background: linear-gradient(145deg,#78350f,#d97706); }
.ct-pests   { background: linear-gradient(145deg,#1c1917,#44403c); }
.ct-moving  { background: linear-gradient(145deg,#0c4a6e,#0ea5e9); }
.ct-finance { background: linear-gradient(145deg,#052e16,#15803d); }
.ct-roofing { background: linear-gradient(145deg,#292524,#57534e); }

/* 3-col list blocks */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.list-block {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 24px 26px;
}
.list-block-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #fef3c7;
}
.list-block-icon  { font-size: 20px; }
.list-block-title { font-size: 15px; font-weight: 800; color: var(--ink); }
.list-items { display: flex; flex-direction: column; }
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg);
  text-decoration: none;
}
.list-item:last-child { border-bottom: none; }
.list-item:hover .li-title { color: var(--primary-dark); }
.li-dot {
  width: 6px;
  height: 6px;
  background: #fed7aa;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.li-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  transition: color .15s;
}

/* Smart home band */
.smart-band {
  background: linear-gradient(135deg,#0f0f23,#1e1b4b,#312e81);
  margin-top: 56px;
  border-radius: 20px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.smart-left .s-eyebrow { color: #a5b4fc; margin-bottom: 12px; }
.smart-left h2 {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.smart-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.smart-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4f46e5;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .15s;
}
.smart-cta:hover { background: #4338ca; }
.smart-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.smart-link {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  transition: background .15s;
}
.smart-link:hover { background: rgba(255,255,255,0.12); }
.smart-link-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 5px;
}
.smart-link-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Seasonal strip */
.seasonal {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
}
.seasonal-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.seasonal h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.3px;
}
.seasonal-links { display: flex; flex-wrap: wrap; gap: 10px; }
.seasonal-link {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.seasonal-link:hover {
  border-color: var(--primary);
  background: #fff7ed;
  color: var(--primary-dark);
}

/* Utility */
.pb-56 { padding-bottom: 56px; }


/* ── SECTION 5: FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 52px 28px 32px;
  margin-top: 64px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand-name span { color: #fb923c; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .15s;
}
.footer-col a:hover { color: #fb923c; }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
}
.footer-bottom a:hover { color: #fb923c; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-disclaimer {
  max-width: 600px;
  font-size: 11px;
  color: rgba(255,255,255,0.14);
  line-height: 1.6;
  margin-top: 4px;
}
.footer-copy {
  width: 100%;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  line-height: 1.6;
  text-align: center;
}

/* Legacy footer aliases used in CMS files */
.f-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.f-links a { font-size: 12.5px; color: rgba(255,255,255,0.25); font-weight: 600; transition: color .2s; }
.f-links a:hover { color: rgba(255,255,255,0.6); }
.f-copy { font-size: 12px; color: rgba(255,255,255,0.25); font-weight: 500; }
.f-disclaimer { max-width: 600px; font-size: 11px; color: rgba(255,255,255,0.14); line-height: 1.6; margin-top: 4px; }


/* ── SECTION 6: CONTACT FORM ── */
.contact {
  max-width: 560px;
  margin: 0 auto;
}
.contact p {
  margin-bottom: 12px;
}
.contact p:last-child { margin-bottom: 0; }
.contact input,
.contact textarea {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.contact input::placeholder,
.contact textarea::placeholder { color: var(--faint); }
.contact input:focus,
.contact textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.contact textarea { resize: vertical; min-height: 110px; }
.contact button[type="submit"] {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.contact button[type="submit"]:hover { background: var(--primary-dark); }


/* ── SECTION 7: WIDGETS ── */

/* SUBLIST widget */
.item-sublist {}
.sublist.card {
  border: none !important;
  box-shadow: var(--box-shadow-2);
  transition: box-shadow .2s, transform .2s;
  border-radius: var(--radius);
}
.sublist.card:hover {
  box-shadow: var(--box-shadow-3);
  transform: translateY(-2px);
}
.sublist.card:hover .card-title,
.sublist.card:hover h5,
.sublist.card:hover h4 { color: var(--primary-dark); }
@media (max-width: 767.98px) {
  .sublist.card { flex-direction: row !important; }
  .sublist.card .card-img-top,
  .sublist.card img { width: 120px; flex-shrink: 0; }
}

/* BUBBLES widget */
.item-bubbles {}
.bubbles-chip {
  display: block;
  width: 100%;
}
.bubbles-link {
  display: block;
  text-decoration: none;
  width: 100%;
}
.bubbles-outer {
  height: auto;
  padding: 3px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  transition: all .15s;
}
.bubbles-outer::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23ea580c'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.bubbles-link:hover .bubbles-outer {
  background: var(--primary-dim);
  border-color: var(--primary-border);
  padding-left: 20px;
}
.bubbles-chip-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
}
/* CMS wrapper fixes */
.sibling.link-button {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: auto !important;
  min-height: 0 !important;
}
repeat {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
}
.col-gap:has(> .item-bubbles)::before { display: none !important; }


/* ── SECTION 8: LAYOUT RESET (CRITICAL — hero full-width) ── */
body.home-page .container.main { width: 100%; max-width: 100% !important; padding: 0; }
.container.layout { max-width: 100%; padding: 0 !important; }
.container.layout .row.layout { margin: 0 !important; }
body.home-page .container.layout .row.layout > .cols { padding: 0 !important; }
body.home-page .container.layout .col-gap { padding: 0 !important; }

body.all-pages .content .container.main { padding: 24px 16px; }
.dir-content {
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding: 52px 48px;
  background: var(--bg);
}
.container.main { max-width: 1600px !important; }


/* ── SECTION 9: RESPONSIVE ── */

/* Tablet ≤1199px */
@media (max-width: 1199.98px) {
  nav { padding: 0 24px; }
  .hero { padding: 44px 24px 0; }
  .hero h1 { font-size: 44px; }
  .room-grid { grid-template-columns: repeat(3, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split { grid-template-columns: 1fr; }
  .feat-right { grid-template-columns: repeat(4, 1fr); }
  .cat-mosaic { grid-template-columns: repeat(3, 1fr); }
  .smart-band { grid-template-columns: 1fr; padding: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dir-content { padding: 40px 24px; }
}

/* Mobile ≤767px */
@media (max-width: 767.98px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-inner { padding: 0; }
  .nav-links { display: none; }
  .nav-more { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 36px 16px 0; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-top { margin-bottom: 32px; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .quickfix-inner { padding: 0 16px; }
  .wrap { padding: 0 16px; }
  .section-hd { padding-top: 40px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split { border-radius: 12px; }
  .feat-right { grid-template-columns: repeat(2, 1fr); }
  .feat-left { padding: 28px 24px; }
  .cat-mosaic { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: 1fr; }
  .smart-band { margin-top: 32px; padding: 28px 20px; border-radius: 16px; }
  .smart-links { grid-template-columns: 1fr; }
  .seasonal { grid-template-columns: 1fr; padding: 24px 20px; margin-top: 16px; }
  footer { padding: 36px 16px 24px; margin-top: 40px; text-align: center; }
  .footer-inner { text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-col h4 { text-align: center; }
  .footer-col a { text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; gap: 12px; }
  .footer-disclaimer { margin: 8px auto 0; text-align: center; }
  .contact-wrap { padding: 24px 20px; }
}

/* Small mobile ≤374px */
@media (max-width: 374px) {
  .hero h1 { font-size: 28px; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
  .cat-mosaic { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
