@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --ink: #1B2226;
  --steel: #3D5568;
  --steel-dark: #26333F;
  --ember: #B5541F;
  --ember-light: #D97A3F;
  --ice: #6FA8B8;
  --paper: #F3F4F2;
  --white: #FFFFFF;
  --line: #DDE1DE;
  --max-width: 1160px;
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--steel-dark);
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1em; max-width: 62ch; }

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Promo bar */
.promo-bar {
  background: var(--ember);
  color: var(--white);
}
.promo-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 9px 24px;
  font-size: 0.88rem;
  text-align: center;
}
.promo-bar-inner strong { font-weight: 700; }
.promo-bar-inner a {
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}

/* Warranty / financing strip */
.warranty-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.warranty-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.warranty-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.warranty-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(181,84,31,0.1);
  color: var(--ember);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.warranty-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--steel-dark);
}
.warranty-item span {
  display: block;
  font-size: 0.85rem;
  color: #5B6A70;
}

/* Header */
header.site {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

nav.main {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav.main a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--steel-dark);
  padding: 6px 2px;
  position: relative;
}

nav.main a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
nav.main a:hover::after { transform: scaleX(1); }

.phone-btn {
  background: var(--ember);
  color: var(--white) !important;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(181,84,31,0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.phone-btn::after { display: none; }
.phone-btn:hover {
  background: var(--ember-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(181,84,31,0.34);
}

.nav-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(150deg, var(--ink) 0%, var(--steel-dark) 46%, var(--steel) 100%);
  color: var(--white);
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(111,168,184,0.16) 0%, rgba(111,168,184,0) 70%);
  pointer-events: none;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: var(--ice);
  font-weight: 600;
  font-size: 0.96rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 3.35rem);
  max-width: 13ch;
  margin-bottom: 22px;
}

.hero p.lead {
  color: #D7DEE0;
  font-size: 1.14rem;
  max-width: 42ch;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(181,84,31,0.32);
}
.btn-primary:hover { background: var(--ember-light); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(181,84,31,0.38); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

.btn-steel {
  background: var(--steel);
  color: var(--white);
}
.btn-steel:hover { background: var(--steel-dark); transform: translateY(-2px); }

.hero-graphic { display: flex; align-items: center; justify-content: center; }

/* Sections */
section { padding: 96px 0; }

.section-label {
  color: var(--ember);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); max-width: 22ch; }

/* Trust strip */
.trust {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-item .num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--steel-dark);
}
.trust-item .label {
  font-size: 0.88rem;
  color: #5B6A70;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(27,34,38,0.08);
  border-color: transparent;
}

.card .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card .icon { width: 22px; height: 22px; }

.card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.card p { color: #4A575E; font-size: 0.97rem; margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, var(--steel-dark) 100%);
  color: var(--white);
  text-align: left;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.cta-band p { color: #B9C3C7; margin-bottom: 0; }

/* Footer */
footer.site {
  background: var(--steel-dark);
  color: #C9D2D5;
  padding: 52px 0 30px;
}
footer.site .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}
footer.site h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
footer.site a { text-decoration: none; color: #C9D2D5; transition: color 0.15s ease; }
footer.site a:hover { color: var(--white); }
footer.site .foot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.94rem;
}
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.license-line {
  font-size: 0.85rem;
  color: #8FA0A6;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #3A4A54;
}

/* Services list */
.service-block {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-block:first-child { padding-top: 0; }
.service-block:last-child { border-bottom: none; }
.service-tag {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--ember);
  font-size: 1rem;
}
.service-block h3 { font-size: 1.2rem; }
.service-block p { color: #4A575E; margin-bottom: 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--steel-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(27,34,38,0.85), rgba(27,34,38,0));
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  padding: 30px 16px 12px;
}

.brand-mark-img { height: 40px; width: auto; display: block; }
.foot-brand .brand-mark-img { height: 34px; }

.hero-photo {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 24px 50px rgba(0,0,0,0.38);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-row { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .icon-badge {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .icon { width: 18px; height: 18px; }
.contact-row h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-row p { margin-bottom: 0; color: #4A575E; font-size: 0.95rem; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); color: #4A575E; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--ink); }

/* Mobile sticky call bar */
.sticky-call { display: none; }

/* Responsive */
@media (max-width: 860px) {
  .promo-bar-inner { font-size: 0.82rem; gap: 10px; }
  .warranty-strip .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-graphic { order: -1; max-width: 320px; margin: 0 auto; }
  .hero h1 { max-width: none; }
  .grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  footer.site .wrap { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .trust-item:nth-child(3) { border-left: none; }
  section { padding: 64px 0; }
  nav.main { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--steel-dark);
  }
  nav.main.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 20px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  body { padding-bottom: 68px; }
  .sticky-call {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--ember);
    color: var(--white);
    text-decoration: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px;
    font-weight: 600;
    z-index: 60;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
  }
}
@media (min-width: 861px) {
  .nav-toggle { display: none; }
}
