:root {
  --ink: #3c3b3a;
  --muted: #66615e;
  --teal: #1b9d98;
  --footer: #1f1f1f;
  --footer-top: #323232;
  --serif: "Adobe Garamond Pro", "Garamond", "Times New Roman", serif;
  --sans: "Proxima Nova", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: var(--serif); font-size: 18px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.site-header {
  position: absolute; z-index: 10; top: 0; left: 0; width: 100%; padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { width: 136px; }
.logo img { width: 100%; height: auto; }
.menu-toggle { display: none; width: 34px; height: 28px; padding: 0; border: 0; background: none; color: #fff; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; height: 2px; margin: 7px 0; background: currentColor; }
.site-nav { display: flex; align-items: center; gap: 37px; font-family: var(--sans); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: #fff; }
.site-nav a { text-decoration: none; }
.site-nav a:last-child { padding: 10px 22px; border: 2px solid currentColor; border-radius: 999px; }

.hero { position: relative; min-height: 640px; background: #222 center / cover no-repeat; color: #fff; display: grid; place-items: center; text-align: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.25); }
.hero-content { position: relative; z-index: 1; padding: 120px 24px 60px; }
.hero h1 { margin: 18px 0 0; font-family: var(--sans); font-size: clamp(48px, 5vw, 70px); line-height: .98; letter-spacing: .035em; text-transform: uppercase; }
.hero-kicker { margin: 0; font-style: italic; font-size: 27px; letter-spacing: .02em; }
.hero-home { background-image: url("../images/home-hero.webp"); }
.hero-showroom { background-image: url("../images/showroom-hero.webp"); min-height: 525px; }
.hero-about { background-image: url("../images/about-hero.webp"); min-height: 515px; }
.hero-contact { background-image: url("../images/contact-hero.webp"); min-height: 515px; }

.intro { padding: 100px 24px 80px; text-align: center; }
.intro-inner { max-width: 770px; margin: 0 auto; }
.intro h2, .page-title { margin: 0 0 24px; font-size: 34px; line-height: 1.2; font-weight: 400; }
.intro p { margin: 0 auto 20px; color: var(--muted); }
.intro .email { font-style: italic; }
.teal { color: var(--teal); text-decoration: none; }

.home-gallery, .home-cards { max-width: 1040px; margin: 0 auto; padding-right: 30px; padding-left: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.home-gallery { padding-bottom: 55px; }
.home-gallery a { display: block; overflow: hidden; }
.home-gallery img { width: 100%; aspect-ratio: 1.38; object-fit: cover; }
.home-cards { padding-bottom: 125px; text-align: center; }
.home-card h2 { margin: 0 0 12px; font-family: var(--sans); font-size: 22px; font-weight: 400; letter-spacing: .07em; text-transform: uppercase; }
.home-card p { min-height: 58px; margin: 0 0 16px; color: var(--muted); }
.home-card a { text-decoration: none; }

.page-main { max-width: 1060px; margin: 0 auto; padding: 85px 30px 130px; }
.page-title { text-align: center; }
.section-label { margin: 28px 0 22px; font-family: var(--sans); font-size: 19px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.carousel { position: relative; overflow: hidden; background: #eee; aspect-ratio: 1.535; }
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s ease; }
.carousel-slide.is-active { opacity: 1; }
.carousel-button { position: absolute; z-index: 2; top: 50%; width: 50px; height: 80px; padding: 0; border: 0; transform: translateY(-50%); color: #fff; background: rgba(30,30,30,.28); font-family: var(--sans); font-size: 38px; font-weight: 200; cursor: pointer; }
.carousel-button:hover { background: rgba(30,30,30,.5); }
.carousel-button.prev { left: 0; }
.carousel-button.next { right: 0; }

.about-main { max-width: 1050px; padding-top: 95px; text-align: center; }
.about-main p { margin: 0 auto 42px; max-width: 980px; color: var(--muted); }
.about-photo { width: 100%; }

.contact-main { max-width: 980px; padding-top: 115px; }
.contact-title { margin-bottom: 80px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-details { text-align: center; }
.contact-details h2 { margin: 0 0 14px; font-family: var(--sans); font-size: 23px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.contact-details p { margin: 0; }
.contact-form label { display: block; margin: 0 0 15px; }
.contact-form small { font-size: 12px; color: #8b8783; }
.contact-form .hint { display: block; margin: 0 0 7px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 11px 12px; border: 1px solid #aaa; background: #fafafa; color: var(--ink); }
.contact-form textarea { min-height: 106px; resize: vertical; }
.contact-form button { padding: 18px 45px; border: 0; background: #1f1f1f; color: #fff; font-family: var(--sans); font-size: 17px; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }
.contact-form .website-field { position: absolute; left: -100vw; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 1.5em; margin: 12px 0 0; color: var(--teal); }

.social-band { min-height: 100px; background: var(--footer-top); display: flex; align-items: center; justify-content: center; gap: 14px; }
.social-link { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #c6c6c6; color: #333; font-family: var(--sans); font-size: 16px; font-weight: 700; text-decoration: none; }
.site-footer { min-height: 210px; padding: 65px 20px 40px; color: #ddd; background: var(--footer); text-align: center; }
.back-to-top { display: none; margin-bottom: 28px; font-family: var(--sans); font-size: 12px; letter-spacing: .17em; text-transform: uppercase; text-decoration: none; }
.footer-contact { margin-bottom: 30px; font-family: var(--sans); font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact a { text-decoration: none; }
.footer-credit { margin: 0; color: #777; }

@media (max-width: 700px) {
  body { font-size: 17px; }
  .site-header { padding: 20px 22px; }
  .logo { width: 106px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 78px; right: 18px; left: 18px; display: none; padding: 22px; gap: 18px; flex-direction: column; background: rgba(25,25,25,.96); }
  .site-nav.is-open { display: flex; }
  .site-nav a:last-child { padding: 0; border: 0; }
  .hero { min-height: 473px; }
  .hero h1 { font-size: 29px; line-height: 1.02; }
  .hero-kicker { font-size: 18px; }
  .hero-home { background-position: 46% center; }
  .hero-showroom, .hero-about, .hero-contact { min-height: 450px; }
  .hero-showroom { background-position: 40% center; }
  .hero-about { background-position: 48% center; }
  .hero-contact { background-position: 47% center; }
  .intro { min-height: 0; padding: 52px 21px 40px; }
  .intro br { display: none; }
  .intro h2, .page-title { font-size: 29px; }
  .intro p { margin-bottom: 19px; }
  .home-gallery, .home-cards { display: block; padding-right: 18px; padding-left: 18px; }
  .home-gallery { padding-bottom: 0; }
  .home-gallery a { margin-bottom: 30px; }
  .home-gallery img { aspect-ratio: 1.38; }
  .home-cards { padding-bottom: 65px; }
  .home-card { margin-bottom: 45px; }
  .home-card h2 { font-size: 21px; }
  .home-card p { min-height: 0; }
  .page-main { padding: 54px 20px 105px; }
  .page-title { margin-bottom: 23px; }
  .section-label { margin: 24px 0 27px; font-size: 21px; }
  .carousel { aspect-ratio: 1.53; margin-bottom: 38px; }
  .carousel-button { width: 34px; height: 57px; font-size: 29px; }
  .about-main { padding-top: 55px; padding-bottom: 57px; }
  .about-main p { margin-bottom: 33px; }
  .about-photo { min-height: 235px; object-fit: cover; }
  .contact-main { padding: 109px 20px 75px; }
  .contact-title { margin-bottom: 72px; }
  .contact-grid { display: block; }
  .contact-details { margin-bottom: 590px; }
  .contact-details h2 { font-size: 22px; }
  .contact-form label { margin-bottom: 17px; }
  .social-band { min-height: 112px; }
  .social-link { display: none; }
  .site-footer { min-height: 300px; padding-top: 50px; }
  .back-to-top { display: block; }
  .footer-contact span { display: block; margin-bottom: 13px; }
  .footer-contact a { font-size: 0; }
  .footer-contact a::after { content: "Email"; font-size: 13px; }
  .footer-credit { margin-top: 48px; }
}
