/* Hill Repair — Guinco-inspired professional service aesthetic
   hillrepair.com  */

:root {
  --teal: #004a59;
  --teal-deep: #003844;
  --teal-light: #006a7d;
  --blue: #006ba1;
  --blue-deep: #005a87;
  --blue-light: #2874fc;
  --gold: #f2a900;
  --red: #c63031;
  --ink: #141414;
  --ink-soft: #2b2b2b;
  --gray: #4a4a4a;
  --gray-mid: #767676;
  --gray-soft: #b7b7b7;
  --gray-faint: #e2e2e2;
  --bg: #ffffff;
  --bg-soft: #f5f7f8;
  --bg-section: #f0f3f5;
  --display: 'Oswald', 'Roboto Condensed', sans-serif;
  --slab: 'Roboto Slab', 'Cambria', serif;
  --body: 'Roboto', 'Segoe UI', sans-serif;
  --stencil: 'Stardos Stencil', 'Oswald', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em; }

p { margin-bottom: 1em; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal); }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top utility bar */
.utility {
  background: var(--teal-deep);
  color: #cfdde2;
  padding: 0.55rem 0;
  font-size: 0.82rem;
  font-family: var(--body);
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.utility a { color: #fff; font-weight: 500; }
.utility a:hover { color: var(--gold); }
.utility .left, .utility .right { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.utility .sep { color: #5a7e88; }

/* Header */
header.site {
  background: #fff;
  border-bottom: 1px solid var(--gray-faint);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
header.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.brand .logomark {
  width: 54px;
  height: 54px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.brand .logomark::before {
  content: '';
  width: 30px; height: 30px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.brand .logomark::after {
  content: '';
  width: 12px; height: 12px;
  background: var(--gold);
  position: absolute;
  bottom: 6px; right: 6px;
  border-radius: 1px;
}
.brand .text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.18rem;
}
.brand .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--teal);
  text-transform: uppercase;
}
.brand .name span { color: var(--ink); }
.brand .tag {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 500;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
nav.primary > a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}
nav.primary > a:hover { color: var(--teal); border-color: var(--teal); }

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}
.btn-white:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* Hero */
.hero {
  background:
    linear-gradient(135deg, rgba(0, 74, 89, 0.92) 0%, rgba(0, 107, 161, 0.86) 100%),
    radial-gradient(ellipse at top right, #006a7d 0%, #004a59 60%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'><g stroke='%23ffffff' stroke-width='1.5' fill='none' opacity='0.07'><rect x='80' y='100' width='180' height='280' rx='4'/><rect x='100' y='130' width='140' height='100' rx='2'/><rect x='100' y='250' width='140' height='110' rx='2'/><circle cx='170' cy='180' r='12'/><circle cx='170' cy='305' r='12'/><rect x='300' y='150' width='220' height='200' rx='4'/><circle cx='350' cy='220' r='25'/><circle cx='410' cy='220' r='25'/><circle cx='470' cy='220' r='25'/><circle cx='350' cy='290' r='25'/><circle cx='410' cy='290' r='25'/><circle cx='470' cy='290' r='25'/><rect x='80' y='420' width='440' height='100' rx='4'/><rect x='110' y='450' width='80' height='40'/><rect x='210' y='450' width='80' height='40'/><rect x='310' y='450' width='80' height='40'/><rect x='410' y='450' width='80' height='40'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero .kicker {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.02;
}
.hero h1 .accent { color: var(--gold); }
.hero .lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.hero .actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero .trust-row {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero .trust-row .item { display: flex; align-items: center; gap: 0.55rem; }
.hero .trust-row .item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-card {
  background: #fff;
  color: var(--ink);
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}
.hero-card .card-head {
  background: var(--teal);
  color: #fff;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-card .card-head h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-card .card-head .badge {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.1em;
}
.hero-card .card-body { padding: 1.6rem; }
.hero-card .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-card .stat {
  border-left: 3px solid var(--gold);
  padding-left: 0.8rem;
}
.hero-card .stat .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
}
.hero-card .stat .k {
  font-family: var(--body);
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  font-weight: 500;
}
.hero-card .phone-block {
  background: var(--bg-soft);
  padding: 1rem 1.2rem;
  margin: 1.2rem -1.6rem -1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-faint);
}
.hero-card .phone-block .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 600;
}
.hero-card .phone-block .phone {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
}

/* Brand strip */
.brand-strip {
  background: var(--bg-soft);
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-faint);
}
.brand-strip .heading {
  text-align: center;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 2rem;
  font-weight: 500;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--gray-faint);
  border: 1px solid var(--gray-faint);
}
.brand-tile {
  background: #fff;
  padding: 1.4rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--teal);
  min-height: 80px;
  transition: background 0.2s;
}
.brand-tile:hover { background: var(--bg-soft); color: var(--blue); }

/* Section */
section.bay {
  padding: 5rem 0;
}
section.bay.bg-soft { background: var(--bg-soft); }
section.bay.bg-section { background: var(--bg-section); }
section.bay.bg-teal { background: var(--teal); color: #fff; }
section.bay.bg-teal h2, section.bay.bg-teal h3 { color: #fff; }

.section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding: 0 1.5rem;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1px;
  background: var(--blue);
}
.section-head .eyebrow::before { left: 0; }
.section-head .eyebrow::after { right: 0; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* Why Choose Us — 3 column */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-faint);
  text-align: center;
  transition: all 0.25s;
  position: relative;
}
.value-card:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 32px rgba(0, 74, 89, 0.12);
  transform: translateY(-4px);
}
.value-card .icon {
  width: 72px;
  height: 72px;
  background: var(--teal);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 4px;
}
.value-card .icon svg { width: 36px; height: 36px; fill: #fff; stroke: #fff; }
.value-card .icon::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  width: 16px; height: 16px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
}
.value-card h3 {
  color: var(--teal);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.value-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-faint);
  padding: 2rem;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid var(--teal);
  color: var(--ink);
}
.service-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.service-card .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
.service-card h3 {
  color: var(--teal);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-card .more {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border-top: 1px solid var(--gray-faint);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card .more::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .more::after { transform: translateX(4px); }

/* Stats band */
.stats-band {
  background: var(--teal);
  color: #fff;
  padding: 4rem 0;
  position: relative;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.06'><path d='M0 40 L80 40 M40 0 L40 80'/></g></svg>");
  background-size: 80px;
  pointer-events: none;
}
.stats-band .wrap { position: relative; }
.stats-band .stats-head {
  text-align: center;
  margin-bottom: 3rem;
}
.stats-band .stats-head .eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.stats-band h2 { color: #fff; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-block {
  text-align: center;
  padding: 1.5rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.stat-block:first-child { border-left: none; }
.stat-block .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
}
.stat-block .k {
  font-family: var(--display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 0.6rem;
  font-weight: 500;
}
.stat-block .note {
  font-family: var(--body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}

/* Locations grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.location-card {
  background: #fff;
  border: 1px solid var(--gray-faint);
  border-top: 4px solid var(--blue);
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
}
.location-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.location-card .badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--teal);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.location-card h3 {
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.location-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.location-card .more {
  margin-top: 1.2rem;
  display: inline-block;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 600;
}

/* CTA strip */
.cta-strip {
  background: var(--ink);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
}
.cta-strip .wrap {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.cta-strip h2 .accent { color: var(--gold); }
.cta-strip p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; margin: 0; }
.cta-strip .phone {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.6rem;
}
.cta-strip .phone:hover { color: #fff; }

/* Service intro split */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-split .image-side {
  background: var(--teal);
  height: 100%;
  min-height: 400px;
  position: relative;
  border: 4px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-split .image-side::after {
  content: '';
  position: absolute;
  top: 1.5rem; right: -1.5rem;
  bottom: -1.5rem; left: 1.5rem;
  border: 4px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}
.intro-split .icon-art {
  width: 60%; max-width: 280px;
  color: #fff;
  opacity: 0.95;
}
.intro-split .body h2 { margin-bottom: 1.5rem; }
.intro-split .body p { color: var(--gray); font-size: 1.05rem; line-height: 1.75; }
.intro-split .body .eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

/* Page hero (interior) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(0, 74, 89, 0.94) 0%, rgba(0, 56, 68, 0.96) 100%),
    radial-gradient(circle at top right, #006a7d 0%, #003844 70%);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 35%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.08'><circle cx='100' cy='100' r='80'/><circle cx='100' cy='100' r='60'/><circle cx='100' cy='100' r='40'/><circle cx='100' cy='100' r='20'/><line x1='10' y1='100' x2='190' y2='100'/><line x1='100' y1='10' x2='100' y2='190'/></g></svg>");
  background-size: 240px;
  background-position: center right;
  background-repeat: no-repeat;
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero .crumb {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}
.page-hero .crumb a { color: var(--gold); }
.page-hero h1 { color: #fff; max-width: 50rem; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero .sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.2rem;
  max-width: 56rem;
  line-height: 1.7;
}

/* Detail row */
.detail-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-faint);
}
.detail-row:last-child { border-bottom: none; }
.detail-row .meta {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  line-height: 1.7;
  font-weight: 600;
}
.detail-row h3 {
  color: var(--teal);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.detail-row h3 .accent { color: var(--blue); }
.detail-row p { color: var(--ink); font-size: 1.02rem; line-height: 1.7; margin: 0 0 1rem 0; }
.detail-row ul { padding-left: 1.2rem; margin: 1rem 0; }
.detail-row li { color: var(--ink); font-size: 0.98rem; line-height: 1.7; margin-bottom: 0.45rem; }

/* Contact panel */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-cell {
  background: #fff;
  border: 1px solid var(--gray-faint);
  border-top: 4px solid var(--teal);
  padding: 2rem;
  text-align: center;
}
.contact-cell .icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-family: var(--display);
  font-size: 1.4rem;
}
.contact-cell .label {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.contact-cell .v {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 600;
  line-height: 1.2;
}
.contact-cell .v a { color: inherit; }
.contact-cell .v a:hover { color: var(--blue); }
.contact-cell .lines {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Form */
.form {
  background: var(--bg-soft);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  border-left: 4px solid var(--teal);
}
.form .full { grid-column: 1 / -1; }
.form label {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--gray-soft);
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--blue); }
.form textarea { min-height: 9rem; resize: vertical; }
.form button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 1rem 2.4rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
  justify-self: start;
}
.form button:hover { background: var(--teal); }

/* Footer */
footer.site {
  background: var(--ink);
  color: var(--gray-soft);
  padding: 4.5rem 0 0;
}
footer.site .wrap-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #2b2b2b;
}
footer.site .col-brand .brand .name { color: #fff; }
footer.site .col-brand .brand .name span { color: var(--gold); }
footer.site .col-brand .brand .tag { color: var(--gray-soft); }
footer.site .col-brand p {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--gray-soft);
  line-height: 1.7;
  max-width: 22rem;
}
footer.site .col-brand .footer-phone {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}
footer.site h4 {
  font-family: var(--display);
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 0.7rem; }
footer.site a {
  color: var(--gray-soft);
  font-size: 0.92rem;
  font-family: var(--body);
}
footer.site a:hover { color: var(--gold); }
footer.site .footer-bottom {
  padding: 1.5rem 0 1.8rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #6e6e6e;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .brand-grid { grid-template-columns: repeat(5, 1fr); }
  .three-col, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 1.5rem; }
  .stat-block:first-child, .stat-block:nth-child(2) { border-top: none; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  footer.site .wrap-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 820px) {
  .hero { padding: 3.5rem 0; }
  .hero .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero::before { display: none; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .three-col, .services-grid, .locations-grid { grid-template-columns: 1fr; }
  .intro-split { grid-template-columns: 1fr; gap: 2rem; }
  .intro-split .image-side { min-height: 240px; }
  .cta-strip .wrap { grid-template-columns: 1fr; text-align: center; }
  .cta-strip .phone-side { text-align: center; }
  .detail-row { grid-template-columns: 1fr; gap: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; padding: 1.5rem; }
  header.site { position: static; }
  header.site .wrap { flex-direction: column; align-items: flex-start; gap: 1rem; }
  nav.primary { flex-wrap: wrap; gap: 1rem; }
  .utility .wrap { flex-direction: column; gap: 0.4rem; align-items: flex-start; }
}
@media (max-width: 540px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}
