:root {
  --gold: #b39964;
  --ink: #252d31;
  --link: #2961f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 5;
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  display: flex;
  min-height: 145px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 13px;
  background: var(--white);
}

.site-logo {
  width: 480px;
  height: 80px;
  object-fit: contain;
}

.hero {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
  justify-content: center;
  padding: 2px 24px 0;
  background-color: var(--white);
  background-image: url("/assets/slider01.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.intro-section {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 54px 20px 38px;
  text-align: center;
}

.intro-copy {
  max-width: 920px;
  margin: 0 auto 34px;
}

.middle-image {
  width: min(100%, 1191px);
  height: auto;
  margin: 0 auto 28px;
}

.contact-copy {
  margin: 0;
}

.details-section {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 10px 20px 40px;
}

.details-grid {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.detail-card {
  width: 33.3333%;
  border: 2px solid var(--gold);
  border-right-width: 0;
}

.detail-card:last-child {
  border-right-width: 2px;
}

.detail-card h2 {
  margin: 0;
  padding: 4px 12px 5px;
  color: var(--white);
  background: var(--gold);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.detail-content {
  min-height: 200px;
  padding: 22px 22px 24px;
  text-align: left;
}

.showroom-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.showroom-copy strong {
  font-weight: 700;
}

.showroom-copy a {
  margin-top: 10px;
}

.product-links {
  min-height: 200px;
  margin: 0;
  padding: 21px 24px 23px 45px;
  text-align: left;
}

.product-links li {
  padding-left: 3px;
}

.product-links li::marker {
  color: var(--ink);
  font-size: 12px;
}

.site-footer {
  color: var(--ink);
  background: var(--gold);
}

.footer-grid {
  display: flex;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 20px;
}

.footer-column {
  display: flex;
  width: 33.3333%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-align: center;
}

.footer-column:first-child {
  display: block;
  padding-top: 1px;
}

.footer-copyright {
  display: block;
}

.copyright-statement {
  margin: 0;
}

.footer-column a {
  color: inherit;
}

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 22px;
  }

  .intro-section {
    padding-top: 44px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 92px;
    padding: 12px 20px 0;
  }

  .site-logo {
    width: 100%;
    height: auto;
    max-width: 480px;
  }

  .hero,
  .desktop-copy,
  .desktop-tablet-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .intro-section {
    width: 100%;
    padding: 24px 20px 0;
  }

  .service-heading {
    margin: 0 -2px 30px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
  }

  .intro-copy {
    margin-bottom: 32px;
  }

  .mobile-service-images {
    margin-right: -20px;
    margin-left: -20px;
  }

  .mobile-service-images img {
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  .service-spacer {
    height: 5px;
    background: #000;
  }

  .contact-copy {
    margin: 28px 0 34px;
  }

  .details-section {
    width: 100%;
    padding: 0 20px 32px;
  }

  .details-grid {
    display: block;
  }

  .detail-card {
    width: 100%;
    border-right-width: 2px;
    border-bottom-width: 0;
  }

  .detail-card:last-child {
    border-bottom-width: 2px;
  }

  .detail-card h2 {
    font-size: 20px;
  }

  .detail-content,
  .product-links {
    min-height: auto;
  }

  .site-footer {
    font-size: 14px;
  }

  .footer-grid {
    display: block;
    padding: 18px 20px;
  }

  .footer-column,
  .footer-column:first-child {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 7px 0;
  }
}