/* ── HD CLEANING & MAINTENANCE — SHARED CSS v2 ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
  --navy:        #1c2b3a;
  --navy-deep:   #111e2b;
  --amber:       #e8920a;
  --amber-light: #f5a820;
  --amber-pale:  #fef3dc;
  --off-white:   #f5f2ed;
  --warm-white:  #faf8f4;
  --paper:       #f0ece4;
  --text:        #1a2332;
  --text-mid:    #3d4f63;
  --text-light:  #6b7c93;
  --rule:        #ddd8cf;
  --card-bg:     #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 66px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-deep);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}
nav.nav-hidden { transform: translateY(-100%); }

.nav-logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.nav-logo-badge {
  width: 42px; height: 42px;
  background: var(--amber);
  color: var(--navy-deep);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.03em; flex-shrink: 0;
  border-radius: 2px;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px;
  color: #fff; letter-spacing: 0.02em; line-height: 1.15;
}
.nav-logo-tagline {
  font-size: 11px; color: var(--amber);
  letter-spacing: 0.06em; margin-top: 1px;
}

.nav-links { display: none; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber-light); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--navy-deep) !important;
  padding: 9px 20px !important;
  font-weight: 700 !important; border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber-light) !important; color: var(--navy-deep) !important; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--amber); border-radius: 2px; transition: all 0.3s;
}

#header-spacer { height: 66px; }

/* ── SECTION LAYOUT ── */
section { padding: 88px 48px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.label-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--amber);
}

h2.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900; color: var(--text);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
h2.section-heading .amber { color: var(--amber); }
h2.section-heading .light { color: #fff; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--navy-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 32px; text-decoration: none;
  border: none; cursor: pointer; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 31px; text-decoration: none;
  border: 2px solid var(--rule); cursor: pointer; border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 31px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35); cursor: pointer; border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--amber); color: var(--amber); }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 52px 48px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.45); text-decoration: none;
  text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── MOBILE ── */
@media (min-width: 901px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    justify-content: center; align-items: center;
    gap: 36px; transform: translateX(100%);
    transition: transform 0.3s; z-index: 1050;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; letter-spacing: 0.1em; }
  #header-spacer { height: 60px; }
  section { padding: 64px 20px; }
  footer { padding: 44px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
