@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* =============================================
   RESET & VARIABLES
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #1a2744;
  --navy-deep:   #0f1828;
  --navy-mid:    #223060;
  --yellow:      #f5c518;
  --yellow-dark: #d4a80e;
  --yellow-pale: rgba(245, 197, 24, 0.1);
  --white:       #ffffff;
  --off-white:   #f6f8fb;
  --grey-light:  #e4e9f2;
  --grey-mid:    #8896b3;
  --grey-dark:   #4a5568;
  --text:        #1a2235;
  --text-body:   #4f5d75;

  --max-w:       1200px;
  --pad-x:       clamp(1.25rem, 5vw, 2.25rem);
  --section-v:   clamp(4rem, 9vw, 7rem);
  --transition:  0.22s ease;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 4px rgba(26, 39, 68, 0.07);
  --shadow:      0 4px 18px rgba(26, 39, 68, 0.11);
  --shadow-lg:   0 12px 40px rgba(26, 39, 68, 0.17);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.55rem); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 0.75rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 1.7rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 197, 24, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.1rem;
  font-size: 1.02rem;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.section-header h2 { margin-bottom: 0.55rem; }
.section-header .lead {
  font-size: 1.08rem;
  color: var(--grey-dark);
  max-width: 58ch;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.is-scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(26, 39, 68, 0.11);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  gap: 0;
}
.nav-logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.3;
}
.nav.is-scrolled .nav-logo-main { color: var(--navy); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav.is-scrolled .nav-links a { color: var(--grey-dark); }
.nav.is-scrolled .nav-links a:hover { color: var(--navy); }

/* Phone CTA */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--yellow);
  padding: 0.52rem 1rem;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-phone:hover { background: var(--yellow); color: var(--navy); }

.nav.is-scrolled .nav-phone { color: var(--navy); border-color: var(--navy); }
.nav.is-scrolled .nav-phone:hover { background: var(--navy); color: var(--white); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.nav.is-scrolled .nav-hamburger span { background: var(--navy); }

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

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding: 0.75rem var(--pad-x) 1.5rem;
  box-shadow: 0 12px 30px rgba(26, 39, 68, 0.12);
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { margin-bottom: 0.75rem; }
.nav-mobile ul a {
  display: block;
  padding: 0.8rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-light);
  transition: color var(--transition);
}
.nav-mobile ul a:hover { color: var(--yellow-dark); }

.nav-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  margin-top: 0.75rem;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-mobile-phone:hover { background: var(--navy-mid); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image: url('brandt and sons photo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(15, 24, 40, 0.93) 0%,
    rgba(26, 39, 68, 0.82) 55%,
    rgba(26, 39, 68, 0.68) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 var(--pad-x);
  padding-top: 5rem;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.28);
  padding: 0.38rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
  font-weight: 800;
  max-width: 18ch;
}

.hero-subhead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 50ch;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.45rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.01em;
  transition: opacity var(--transition);
}
.hero-phone svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-phone:hover { opacity: 0.82; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: hero-bounce 2.2s ease infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-7px); }
}

/* =============================================
   SOCIAL PROOF BAR
   ============================================= */
.proof-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
}
.proof-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
}
.proof-item svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* =============================================
   SERVICES PREVIEW
   ============================================= */
.services-preview {
  padding: var(--section-v) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.75rem;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 197, 24, 0.3);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(26, 39, 68, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-icon svg { width: 24px; height: 24px; color: var(--navy); }

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}

.services-footer { text-align: center; }

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--section-v) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-content .eyebrow { color: var(--yellow-dark); }
.about-content h2 { color: var(--navy); margin-bottom: 1.2rem; }
.about-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 54ch;
}
.about-content p:last-of-type { margin-bottom: 1.85rem; }

/* Trust badges */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--navy);
  transition: border-color var(--transition), background var(--transition);
}
.trust-badge:hover {
  border-color: rgba(245, 197, 24, 0.45);
  background: rgba(245, 197, 24, 0.05);
}
.trust-badge svg { width: 17px; height: 17px; color: var(--yellow-dark); flex-shrink: 0; }

/* Photo placeholder */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #c5cede;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: #6d7d99;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  padding: var(--section-v) 0;
  background: var(--navy);
}
.why-us .section-header h2  { color: var(--white); }
.why-us .section-header .lead { color: rgba(255, 255, 255, 0.6); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.why-card {
  padding: 2rem 1.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 197, 24, 0.35);
  transform: translateY(-3px);
}

.why-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--yellow);
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 0.9rem;
}
.why-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.68;
}

/* =============================================
   SERVICE AREA
   ============================================= */
.service-area {
  padding: var(--section-v) 0;
  background: var(--off-white);
  text-align: center;
}
.service-area .section-header { text-align: center; }
.service-area .section-header h2 { color: var(--navy); }
.service-area .section-header .lead { margin: 0 auto; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.area-tag {
  padding: 0.52rem 1.15rem;
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  cursor: default;
  letter-spacing: 0.01em;
}
.area-tag:hover {
  border-color: var(--yellow);
  background: rgba(245, 197, 24, 0.07);
}

/* =============================================
   PAGE HEADER (services / contact pages)
   ============================================= */
.page-header {
  padding: 9rem 0 4.5rem;
  background: var(--navy);
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  opacity: 0.6;
}
.page-header .eyebrow { color: var(--yellow); opacity: 0.9; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header .lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  margin: 0 auto;
  text-align: center;
}

/* =============================================
   SERVICES PAGE — DETAIL
   ============================================= */
.service-item {
  padding: calc(var(--section-v) * 0.75) 0;
  border-bottom: 1px solid var(--grey-light);
}
.service-item:nth-child(even) { background: var(--off-white); }
.service-item:last-child { border-bottom: none; }

.service-item-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.service-item-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 90px;
}

.service-item-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(26, 39, 68, 0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-item-icon-wrap svg { width: 36px; height: 36px; color: var(--navy); }

.service-item-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  color: var(--grey-light);
  line-height: 1;
}

.service-item-sidebar h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
}

.service-item-body p {
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.72;
  max-width: 62ch;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 1.4rem 0 1.6rem;
  list-style: none;
}
.service-chips li {
  padding: 0.35rem 0.85rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Services page CTA banner */
.service-cta-band {
  padding: 5.5rem 0;
  background: var(--yellow);
  text-align: center;
}
.service-cta-band h2 { color: var(--navy); margin-bottom: 0.65rem; }
.service-cta-band p { color: rgba(26, 39, 68, 0.72); margin: 0 auto 2rem; font-size: 1.05rem; }
.service-cta-band .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.service-cta-band .btn-outline { border-color: rgba(26, 39, 68, 0.5); color: var(--navy); }
.service-cta-band .btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: var(--section-v) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info { padding-top: 0.5rem; }
.contact-info h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-info-intro {
  color: var(--text-body);
  font-size: 0.93rem;
  margin-bottom: 1.75rem;
  max-width: 36ch;
}

.contact-big-phone {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
  transition: color var(--transition);
}
.contact-big-phone svg { width: 28px; height: 28px; color: var(--yellow-dark); flex-shrink: 0; }
.contact-big-phone:hover { color: var(--yellow-dark); }

/* Hours */
.contact-hours { margin-bottom: 1.75rem; }
.contact-hours-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.75rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--text); }
.hours-row .time { color: var(--text-body); }
.hours-row .closed { color: var(--grey-mid); font-style: italic; }

.response-note {
  padding: 0.9rem 1.1rem;
  background: var(--yellow-pale);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
}

/* Form */
.contact-form {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.25rem;
}
.contact-form h3 {
  color: var(--navy);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}
.contact-form .form-intro {
  color: var(--text-body);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.15rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--text);
  margin-bottom: 0.38rem;
}
label .req { color: #c53030; margin-left: 2px; }

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: #b0bacf; }
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.09);
}
input.error, select.error, textarea.error {
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.09);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 108px; }

.form-radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.form-radio {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.form-radio input[type="radio"] {
  width: auto;
  border: none;
  box-shadow: none;
  accent-color: var(--navy);
}

.field-error {
  display: block;
  font-size: 0.76rem;
  color: #c53030;
  margin-top: 0.3rem;
  font-weight: 500;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.98rem;
  padding: 0.95rem;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success-icon {
  width: 68px;
  height: 68px;
  background: rgba(72, 187, 120, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #38a169;
}
.form-success h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}
.form-success p { font-size: 0.93rem; max-width: 42ch; margin: 0 auto; }
.form-success a { color: var(--yellow-dark); font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
}

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem var(--pad-x) 2.75rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.footer-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}
.footer-tagline {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.6;
  max-width: 30ch;
  margin-bottom: 1.1rem;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
  transition: opacity var(--transition);
}
.footer-phone svg { width: 16px; height: 16px; }
.footer-phone:hover { opacity: 0.75; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.2rem var(--pad-x);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .service-item-inner {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  /* Nav */
  .nav-links,
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-content { text-align: center; padding-top: 6rem; }
  .hero-content h1 { max-width: 100%; }
  .hero-subhead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-phone { justify-content: center; }

  /* Proof bar */
  .proof-bar-inner { gap: 0.5rem 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-content p { max-width: 100%; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; }

  /* Trust badges */
  .trust-badges { grid-template-columns: 1fr; }

  /* Services page detail */
  .service-item-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-item-sidebar { position: static; }
  .service-item-num { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem 1.5rem; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   RESPONSIVE — SMALL (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .service-cta-band .cta-actions { flex-direction: column; align-items: center; }
  .proof-item span { display: none; }
}
