:root {
  --asphalt-black: #16140F;
  --striping-yellow: #F2C31E;
  --yellow-ink: #705700;
  --concrete: #F0EFEA;
  --card: #FFFFFF;
  --steel: #5C5B57;
  --line: #C9C6BE;
}

@font-face {
  font-family: 'Khand';
  src: url('../fonts/khand-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Khand';
  src: url('../fonts/khand-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/work-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/work-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--asphalt-black);
  background-color: var(--concrete);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.khand {
  font-family: 'Khand', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}

h1, h2, h3, h4 {
  font-family: 'Khand', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 0.98;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--striping-yellow);
  color: var(--asphalt-black);
  font-family: 'Khand', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  border: 2px solid var(--striping-yellow);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.btn:hover {
  background-color: var(--asphalt-black);
  color: var(--striping-yellow);
}

.btn-ghost {
  background-color: transparent;
  color: var(--striping-yellow);
  border-color: var(--striping-yellow);
}
.btn-ghost:hover {
  background-color: var(--striping-yellow);
  color: var(--asphalt-black);
}

/* Header */
.site-header {
  background-color: var(--asphalt-black);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-name {
  font-family: 'Khand', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--striping-yellow);
  line-height: 1;
}
.logo-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #A09F9B;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 0.25rem;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.desktop-nav a:not(.btn):hover {
  color: var(--striping-yellow);
}
.desktop-nav .btn {
  padding: 0.5rem 1.25rem;
  font-size: 1.1rem;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  display: flex;
  min-height: calc(100vh - 80px);
  background-color: var(--asphalt-black);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 8px;
  background-color: var(--striping-yellow);
  z-index: 10;
  transform: translateX(-50%);
}
.hero-left {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 4rem;
}
.hero-content {
  max-width: 540px;
  margin-left: auto;
  color: #fff;
}
.hero-kicker {
  color: var(--striping-yellow);
  font-family: 'Khand', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-content p {
  font-size: 1.125rem;
  color: #C9C6BE;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
.micro-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #A09F9B;
  font-weight: 600;
}
.micro-trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-right {
  width: 50%;
  position: relative;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-caption {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--asphalt-black);
  color: var(--striping-yellow);
  font-family: 'Khand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  letter-spacing: 0.05em;
}

/* Trust Strip */
.trust-strip {
  background-color: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--asphalt-black);
}

/* What We Do */
.what-we-do {
  padding: 5rem 0;
  background-color: var(--concrete);
}
.section-kicker-stripes {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.section-kicker-stripes .stripe {
  width: 32px;
  height: 8px;
  background-color: var(--striping-yellow);
}
.what-we-do h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.service-card {
  background-color: var(--asphalt-black);
  padding: 3rem;
  color: #fff;
}
.card-kicker {
  width: 48px;
  height: 6px;
  background-color: var(--striping-yellow);
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.service-card ul {
  list-style: none;
}
.service-card li {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}
.service-card li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 4px;
  background-color: var(--striping-yellow);
}
.service-note {
  font-size: 0.9rem;
  color: var(--steel);
}

/* Recent Work */
.bg-white {
  background-color: #fff;
}
.recent-work {
  padding: 5rem 0;
}
.recent-work h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.work-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 1rem;
}
.work-caption {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--steel);
}

/* Why Miller's */
.why-millers {
  background-color: var(--asphalt-black);
  color: #fff;
  padding: 5rem 0;
}
.why-millers h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
}
.why-list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 6px;
  background-color: var(--striping-yellow);
}
.service-area-text {
  font-size: 1.125rem;
  color: #C9C6BE;
  max-width: 800px;
}

/* Contact */
.contact-section {
  padding: 5rem 0;
  background-color: var(--concrete);
}
.offer-banner {
  background-color: var(--striping-yellow);
  color: var(--asphalt-black);
  font-family: 'Khand', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-form-col h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background-color: #fff;
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
  outline: 2px solid var(--striping-yellow);
  border-color: transparent;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-col h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-info-col p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--steel);
}

/* Footer */
.site-footer {
  background-color: var(--asphalt-black);
  color: #C9C6BE;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Khand', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--striping-yellow);
  margin-bottom: 1rem;
  line-height: 1;
}
.footer-details {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Mobile Call Bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--striping-yellow);
  z-index: 100;
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-family: 'Khand', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--asphalt-black);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
  }
  .hero::after {
    display: none;
  }
  .hero-left, .hero-right {
    width: 100%;
  }
  .hero-left {
    padding: 3rem 1.5rem;
  }
  .hero-content {
    margin: 0;
    max-width: 100%;
  }
  .hero-right {
    height: 400px;
  }
  .trust-items {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .services-grid, .work-grid, .why-list, .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
    position: relative;
  }
  .mobile-nav summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--asphalt-black);
    min-width: 200px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 50;
  }
  .nav-links a {
    font-weight: 600;
    color: #fff;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  .micro-trust {
    flex-wrap: wrap;
  }
  
  .mobile-call-bar {
    display: block;
  }
  body {
    padding-bottom: 60px; /* space for call bar */
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Services Page Specifics */
.page-header {
  background-color: var(--asphalt-black);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.page-header p {
  font-size: 1.25rem;
  color: #C9C6BE;
  max-width: 800px;
  margin: 0 auto;
}
.services-detail {
  padding: 5rem 0;
  background-color: var(--concrete);
}
.services-detail h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.detail-list li {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}
.detail-item-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: 'Khand', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.detail-item-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 4px;
  background-color: var(--striping-yellow);
}
.detail-list p {
  color: #C9C6BE;
  padding-left: 1.75rem;
}
.flat-roof-desc {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border-left: 4px solid var(--striping-yellow);
  padding-left: 1rem;
}
.service-area-card {
  text-align: center;
  background-color: #fff;
  color: var(--asphalt-black);
  border: 2px solid var(--asphalt-black);
  padding: 3rem;
}
.service-area-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-area-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--steel);
}
