/* ============================================
   Jensen Contracting — Seattle General Contractor
   Brand: gold + charcoal industrial
   Raleway body · Montserrat display
   ============================================ */

:root {
  /* Brand */
  --gold:         #e8a317;
  --gold-dark:    #c48515;
  --gold-light:   #f5c35c;
  --gold-tint:    #fdf5e4;
  --orange:       #ff6900;   /* accent pulled from their blocks */

  --charcoal:     #2d2d2d;
  --steel:        #1a1d21;
  --ink:          #121518;
  --slate:        #3c4148;
  --gray:         #5e646c;
  --gray-light:   #8a9099;
  --border:       #dcdcdc;
  --border-soft:  #ececec;
  --off-white:    #f7f7f5;
  --white:        #ffffff;

  --ok:           #1e7b34;
  --err:          #b3271d;

  --shadow-sm:    0 2px 6px rgba(26,29,33,.06);
  --shadow-md:    0 10px 30px rgba(26,29,33,.10);
  --shadow-lg:    0 20px 60px rgba(26,29,33,.18);

  --f-display:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-body:       "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 3px;
  --r:    6px;
  --r-lg: 10px;

  --container: 1280px;
  --ease: cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange); }

h1,h2,h3,h4,h5 {
  font-family: var(--f-display);
  color: var(--steel);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 .5em;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--slate); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 46px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 34px; height: 2px;
  background: var(--gold);
}

.lede {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 640px;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--steel);
  color: rgba(255,255,255,.85);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .eyebrow::before { background: var(--gold-light); }
.section-dark p { color: rgba(255,255,255,.8); }

.section-header { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.section-header .eyebrow { padding-left: 0; padding-bottom: 0; display: inline-flex; align-items: center; gap: 12px; }
.section-header .eyebrow::before {
  position: static;
  display: inline-block;
}
.section-header p { color: var(--gray); font-size: 1.06rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--r);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.btn i { font-size: 1em; }
.btn-lg { padding: 19px 38px; font-size: .94rem; }
.btn-sm { padding: 11px 20px; font-size: .78rem; }

.btn-primary {
  background: var(--gold);
  color: var(--steel);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(232,163,23,.32);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--steel);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232,163,23,.4);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-orange:hover {
  background: #e45d00;
  border-color: #e45d00;
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel);
}
.btn-dark:hover {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: #fff;
  color: var(--steel);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--steel);
  border-color: var(--steel);
}
.btn-outline-dark:hover {
  background: var(--steel);
  color: var(--gold-light);
}

/* ============ HEADER ============ */
.topbar {
  background: var(--steel);
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--gold);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.95); font-weight: 500; }
.topbar a:hover { color: var(--gold-light); }
.topbar-left, .topbar-right {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-left span, .topbar-right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar i { color: var(--gold-light); }
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(232,163,23,.15);
  border: 1px solid rgba(232,163,23,.35);
  border-radius: 3px;
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.head {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border-soft);
  transition: box-shadow .25s var(--ease);
}
.head.scrolled { box-shadow: 0 4px 16px rgba(26,29,33,.08); }
.head-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-main {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.nav-link {
  padding: 14px 16px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  transition: color .15s var(--ease);
}
.nav-link:hover { color: var(--gold-dark); }
.nav-link.active { color: var(--gold-dark); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-item { position: relative; display: inline-flex; align-items: center; }
.caret { font-size: .6rem; opacity: .5; }
.nav-item:hover .nav-drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-drop {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 6px);
  min-width: 280px;
  background: #fff;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all .18s var(--ease);
  z-index: 90;
}
.nav-drop a {
  display: block;
  padding: 11px 22px;
  font-family: var(--f-body);
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0;
  text-transform: none;
}
.nav-drop a:hover { background: var(--gold-tint); color: var(--gold-dark); }

.head-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: end;
}
.head-phone {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  transition: all .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.head-phone:hover {
  border-color: var(--gold);
  background: var(--gold-tint);
}
.head-phone i {
  color: var(--gold-dark);
  font-size: .95rem;
}
.head-phone-num {
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--steel);
  letter-spacing: -.005em;
  white-space: nowrap;
}

.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0 12px;
  z-index: 100;
  position: relative;
}
.hamburger span { height: 2px; background: var(--steel); transition: all .25s var(--ease); }
.hamburger.open { background: var(--steel); }
.hamburger.open span { background: var(--gold-light); }
.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); }

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(18,21,24,.55);
  z-index: 92;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
}
.scrim.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: 340px; max-width: 88vw;
  height: 100vh;
  background: #fff;
  z-index: 95;
  padding: 72px 26px 32px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  -webkit-overflow-scrolling: touch;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--steel);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.drawer-close:hover {
  background: var(--steel);
  color: var(--gold-light);
  border-color: var(--steel);
}
.drawer-brand {
  padding: 0 0 14px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.drawer-brand img { height: 44px; width: auto; }
.drawer a.drawer-link {
  display: block;
  padding: 13px 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-soft);
}
.drawer a.drawer-link.active { color: var(--gold-dark); }
.drawer-sublabel {
  display: block;
  font-family: var(--f-display);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin: 18px 0 4px;
  font-weight: 700;
}
.drawer-sub a {
  display: block;
  padding: 10px 0 10px 14px;
  font-family: var(--f-body);
  font-size: .92rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-soft);
}
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 15px;
  background: var(--gold);
  color: var(--steel) !important;
  border-radius: var(--r);
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .88rem;
}
.drawer-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 15px;
  background: var(--steel);
  color: #fff !important;
  border-radius: var(--r);
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .88rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 100px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(12,15,18,.92) 0%, rgba(12,15,18,.72) 45%, rgba(12,15,18,.35) 90%, rgba(12,15,18,.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(232,163,23,.15);
  border: 1px solid rgba(232,163,23,.4);
  border-radius: 3px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -.018em;
  line-height: 1.08;
}
.hero h1 span { color: var(--gold-light); display: inline-block; }
.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  display: flex;
  gap: 44px;
  margin-top: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 620px;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-trust-item .v {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -.01em;
}
.hero-trust-item .l {
  font-family: var(--f-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--gold);
  color: var(--steel);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .04em;
  color: var(--steel);
}
.trust-strip-item i { font-size: 1.05rem; color: var(--steel); }

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .25s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--steel);
  padding: 5px 11px;
  border-radius: 3px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 {
  margin-bottom: 10px;
  color: var(--steel);
}
.service-card-body p {
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 18px;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: auto;
}
.service-card-link i { transition: transform .2s var(--ease); font-size: .85em; }
.service-card:hover .service-card-link i { transform: translateX(4px); }

/* ============ VALUES (3-column feature block) ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--gold);
  border-radius: 0 0 var(--r) var(--r);
  transition: all .25s var(--ease);
}
.value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 64px; height: 64px;
  background: var(--gold-tint);
  color: var(--gold-dark);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.value h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--steel);
}
.value p { color: var(--gray); font-size: .95rem; margin: 0; }

/* ============ SPLIT / STORY ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img-wrap { position: relative; }
.split-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--steel);
  padding: 24px 28px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
.split-badge .v {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}
.split-badge .l {
  font-family: var(--f-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.split-text h2 { margin-bottom: 20px; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--slate);
}
.checklist i {
  color: var(--gold-dark);
  font-size: .92rem;
  margin-top: 5px;
}
.checklist strong { color: var(--steel); display: inline-block; margin-right: 4px; }

/* ============ PROCESS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 2px;
  background-image: linear-gradient(to right, var(--gold) 60%, transparent 0);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--off-white);
  padding: 0 12px;
}
.process-num {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  background: #fff;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--steel);
  transition: all .25s var(--ease);
}
.process-step:hover .process-num {
  background: var(--gold);
  transform: scale(1.08);
}
.process-step h4 { margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { color: var(--gray); font-size: .92rem; margin: 0; }

/* ============ SERVICE AREA ============ */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s var(--ease);
}
.area-chip:hover {
  background: var(--gold);
  color: var(--steel);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.area-chip i { color: var(--gold-light); }
.area-chip:hover i { color: var(--steel); }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-sm);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: 1/2; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 34px 30px;
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: .88rem;
  letter-spacing: .05em;
}
.testimonial-text {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--steel);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--steel);
  font-size: .95rem;
}
.testimonial-loc {
  color: var(--gray);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============ CTA BAND ============ */
.cta-band {
  background-image: linear-gradient(rgba(18,21,24,.86), rgba(18,21,24,.86)), url('/img/hero/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 88px 0;
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.cta-band h2 span { color: var(--gold-light); }
.cta-band p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ CONTACT / FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.contact-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--gold);
  border-radius: var(--r);
  align-items: center;
  transition: all .22s var(--ease);
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--orange);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--gold-tint);
  color: var(--gold-dark);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.contact-card h4 {
  margin: 0 0 2px;
  color: var(--steel);
  font-size: 1rem;
  font-family: var(--f-body);
  font-weight: 700;
}
.contact-card p {
  margin: 0;
  color: var(--gray);
  font-size: .92rem;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-card h3 {
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 1.4rem;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label {
  display: block;
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 7px;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--f-body);
  font-size: .98rem;
  color: var(--steel);
  background: #fff;
  transition: all .18s var(--ease);
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,163,23,.15);
}
.form-card textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--ok);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

/* ============ FOOTER ============ */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-brand img { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .92; }
.foot-brand p { color: rgba(255,255,255,.65); max-width: 320px; line-height: 1.7; font-size: .92rem; }
.foot-social {
  display: flex; gap: 10px; margin-top: 20px;
}
.foot-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .2s var(--ease);
}
.foot-social a:hover {
  background: var(--gold);
  color: var(--steel);
  transform: translateY(-3px);
}
.foot h4 {
  color: #fff;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.foot a { color: rgba(255,255,255,.7); }
.foot a:hover { color: var(--gold-light); }
.foot-links { display: flex; flex-direction: column; gap: 12px; font-size: .92rem; }
.foot-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .92rem;
}
.foot-contact-row i { color: var(--gold-light); width: 16px; margin-top: 4px; }
.foot-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.foot-bottom-links { display: flex; gap: 24px; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 70;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 18px rgba(18,21,24,.1);
}
.sticky-cta-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 10px; }
.sticky-cta .btn { padding: 13px 14px; justify-content: center; font-size: .78rem; }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  background-image: linear-gradient(rgba(18,21,24,.85), rgba(18,21,24,.85)), url('/img/hero/drywall-texture.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 84px 0 64px;
  border-bottom: 4px solid var(--gold);
}
.page-hero .crumbs {
  font-family: var(--f-display);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-hero .crumbs a { color: var(--gold-light); }
.page-hero h1 { color: #fff; max-width: 900px; }
.page-hero .lede { color: rgba(255,255,255,.86); max-width: 700px; font-size: 1.1rem; }

/* ============ SERVICE INTRO (split hero with image) ============ */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.service-intro-text .eyebrow { padding-left: 46px; }
.service-intro-text h2 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.service-intro-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.service-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-intro-img:hover img { transform: scale(1.03); }

/* ============ FEATURE ROWS (alternating image/text) ============ */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-row-reverse .feature-row-img { order: 2; }
.feature-row-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.feature-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.feature-row-img:hover img { transform: scale(1.04); }
.feature-row-text h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--steel);
  margin-bottom: 16px;
}
.feature-row-text p { color: var(--slate); font-size: 1rem; }

/* ============ ARTICLE CONTENT ============ */
.article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.article-body h2 { margin-top: 36px; }
.article-body h2:first-child { margin-top: 0; }
.article-body ul { padding-left: 22px; color: var(--slate); }
.article-body ul li { margin-bottom: 10px; }
.article-body ul li strong { color: var(--steel); }

.side-card {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 28px;
  position: sticky;
  top: 110px;
}
.side-card h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: var(--steel);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.side-card .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.side-card .service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--charcoal);
  font-size: .94rem;
  font-weight: 500;
}
.side-card .service-list a:hover { color: var(--gold-dark); }
.side-card .service-list i { color: var(--gold-dark); font-size: .8em; opacity: 0; transition: opacity .15s; }
.side-card .service-list a:hover i { opacity: 1; }
.side-card .service-list a.active { color: var(--gold-dark); font-weight: 700; }
.side-card .service-list a.active i { opacity: 1; }

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(22px); transition: all .6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.hide-mobile { display: inline; }
.show-mobile { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .process-steps::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-badge { position: static; margin: -40px auto 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .article { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-top { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1; }
  .service-intro { grid-template-columns: 1fr; gap: 36px; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row-reverse .feature-row-img { order: 0; }
  .feature-rows { gap: 60px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .topbar { font-size: .74rem; padding: 8px 0; }
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }
  .head-inner { grid-template-columns: 1fr auto; gap: 12px; padding: 12px 0; }
  .brand img { height: 42px; }
  .head-phone { display: none; }
  .hero { padding: 56px 0; min-height: 520px; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-sub { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 22px 28px; margin-top: 28px; padding-top: 24px; }
  .hero-trust-item .v { font-size: 1.5rem; }
  .hero-eyebrow { font-size: .68rem; letter-spacing: .12em; }
  .trust-strip-inner { flex-direction: column; gap: 10px; align-items: center; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .values-grid { grid-template-columns: 1fr; gap: 18px; }
  .value { padding: 28px 22px; }
  .process-steps { grid-template-columns: 1fr; gap: 30px; }
  .process-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 4px;
    text-align: left;
    align-items: start;
    padding: 0;
  }
  .process-num {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 60px; height: 60px;
    margin: 0;
    font-size: 1.25rem;
    align-self: start;
  }
  .process-step h4 { grid-column: 2; grid-row: 1; margin: 8px 0 0; }
  .process-step p { grid-column: 2; grid-row: 2; margin: 0; }
  .section-header { margin-bottom: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .cta-band { padding: 64px 0; }
  .cta-band-btns { flex-direction: column; }
  .cta-band-btns .btn { width: 100%; justify-content: center; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .foot { padding-bottom: 40px; }
  .hide-mobile { display: none; }
  .show-mobile { display: inline; }
  .form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 46px; }
  .contact-card { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; }
  .service-intro { gap: 28px; }
  .feature-rows { gap: 48px; }
  .feature-row { gap: 22px; }
  .feature-row-text h3 { font-size: 1.3rem; }
}

/* ============ SEO: H3 downgraded visually ============ */
.foot h3.foot-h {
  color: #fff;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.value h3.card-h,
.contact-card h3.card-h {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--f-body);
  color: var(--steel);
  margin: 0 0 10px;
}
.contact-card h3.card-h { margin: 0 0 2px; font-size: 1rem; }
