:root {
  --black: #060606;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-line: #e7e7e7;
  --text: #171717;
  --muted: #5e5e5e;
  --yellow: #912b21;
  --yellow-dark: #7f241b;
  --container: 1566px;
  --narrow: 840px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
}

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

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

button,
input,
select,
textarea,
iframe {
  font: inherit;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 64px), var(--narrow));
}

.topbar {
  background: var(--black);
  color: var(--white);
  width: 100%;
}

.topbar-inner {
  text-align: center;
  padding: 6px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 10px 0;
}

.brand-badge {
  display: flex;
  align-items: center;
  min-height: 60px;
  background: var(--black);
  color: var(--white);
}

.brand-logo {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  padding: 8px 14px 8px 12px;
}

.brand-text strong,
.footer-brand-text {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  line-height: 0.94;
  text-transform: uppercase;
}

.brand-text span {
  display: inline-block;
  margin-top: 5px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  position: relative;
}

.site-nav a,
.site-nav button {
  border: 0;
  background: transparent;
  padding: 10px 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav button i {
  margin-left: 4px;
  font-size: 11px;
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 236px;
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 6px;
}

.submenu a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}

.submenu a:hover,
.site-nav a:hover,
.site-nav button:hover {
  background: #f8f8f8;
}

.has-menu:hover .submenu,
.has-menu:focus-within .submenu {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.02;
}

.header-phone span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button.small {
  padding: 10px 15px;
}

.button-yellow {
  background: var(--yellow);
  color: var(--white);
}

.button-yellow:hover {
  background: var(--yellow-dark);
}

.button-black {
  background: var(--black);
  color: var(--white);
}

.button-dark-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button-light-outline {
  background: var(--white);
  border-color: #d4d4d4;
  color: var(--black);
}

.button-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.full-bleed {
  width: 100%;
}

.hero {
  position: relative;
  color: var(--white);
  background: var(--black);
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background {
  background-image: url("../assets/hero-garage-door.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.68) 46%, rgba(0, 0, 0, 0.56) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: center;
  min-height: 540px;
  padding: 58px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--yellow);
}

.hero h1,
.section-heading h2,
.content-panel h2,
.quote-card h2,
.cta-inner h2,
.service-card h3,
.feature-list h3,
.promise-card h3,
.gallery-card figcaption,
.testimonial-card strong,
.site-footer h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 14px;
  max-width: 11ch;
  font-size: clamp(52px, 5.4vw, 76px);
}

.hero-copy p {
  max-width: 600px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
}

.hero-list i,
.service-icon,
.stars {
  color: var(--yellow);
}

.quote-card {
  background: var(--white);
  color: var(--black);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.quote-card h2 {
  font-size: 30px;
}

.quote-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  padding: 11px 12px;
}

.quote-form textarea {
  min-height: 96px;
  resize: vertical;
}

.quote-call {
  display: inline-block;
  margin-top: 12px;
  color: var(--black);
  font-weight: 700;
}

.section {
  padding: 56px 0;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray);
}

.section-black,
.cta-section,
.site-footer {
  background: var(--black);
  color: var(--white);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading-left {
  text-align: left;
}

.section-heading-center {
  text-align: center;
}

.section-heading h2,
.content-panel h2,
.cta-inner h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.section-heading p,
.content-panel p,
.feature-list p,
.testimonial-card p,
.faq-list p {
  color: var(--muted);
  font-size: 14px;
}

.section-heading-left p {
  max-width: 680px;
  margin: 10px 0 0;
}

.section-heading-center p {
  max-width: 700px;
  margin: 10px auto 0;
}

.light p,
.promise-card p,
.cta-inner p,
.site-footer p,
.site-footer a,
.footer-address {
  color: rgba(255, 255, 255, 0.74);
}

.services-grid,
.promise-grid,
.testimonials-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.gallery-card,
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.service-icon {
  font-size: 18px;
}

.service-card h3,
.feature-list h3 {
  margin-top: 12px;
  font-size: 28px;
}

.service-card p {
  margin: 8px 0 0;
}

.service-card strong {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 700;
}


.company-section .split-section {
  width: min(calc(100% - 64px), 1400px);
  margin: 0 auto;
  grid-template-columns: minmax(320px, 530px) minmax(0, 1fr);
  align-items: stretch;
}

.company-section .split-section > * {
  min-width: 0;
}


.company-section .image-panel {
  min-height: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-panel p {
  margin: 10px 0 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.feature-list article {
  border-top: 1px solid #dfdfdf;
  padding-top: 14px;
}

.promise-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promise-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.promise-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(145, 43, 33, 0.55);
  border-radius: var(--radius-sm);
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 26px;
}

.promise-card h3 {
  margin-top: 12px;
  font-size: 24px;
}

.center-cta {
  text-align: center;
  margin-top: 22px;
}

.narrow-gallery {
  width: min(100%, 760px);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  padding: 14px;
}

.gallery-image {
  aspect-ratio: 4 / 5.55;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ddd;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  margin-top: 10px;
  font-size: 22px;
  text-align: center;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-grid a {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}

.map-block {
  width: min(100%, 980px);
  margin: 28px auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-line);
}

.map-block iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
  font-size: 17px;
  letter-spacing: 0.14em;
}

.testimonial-card strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
}

.testimonial-card strong span {
  color: #797979;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 16px;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner p {
  max-width: 620px;
  margin: 10px auto 0;
}

.center-actions {
  justify-content: center;
}

.site-footer {
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-logo {
  width: 54px;
  height: 54px;
  overflow: hidden;
}

.site-footer h3 {
  font-size: 20px;
  color: var(--yellow);
}

.site-footer p,
.site-footer a,
.footer-address {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 28px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.mobile-callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  grid-template-columns: 1.15fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--gray-line);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-md);
  }

  .submenu {
    position: static;
    transform: none;
    display: block;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 12px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .services-grid,
  .promise-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding: 44px 0;
  }

  .company-section .split-section {
    width: min(calc(100% - 64px), 1400px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 40px), var(--container));
  }

  .company-section .split-section {
    width: min(calc(100% - 40px), 1400px);
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text span,
  .header-actions .small {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 42px 0;
  }

  .map-block iframe {
    min-height: 320px;
  }

  .mobile-callbar {
    display: grid;
  }
}