.hero-image {
  background-image:
    linear-gradient(180deg, rgba(17, 30, 29, 0.08), rgba(17, 30, 29, 0.5)),
    url(./images/front.jpg);
}
:root {
  --ink: #17201e;
  --muted: #6c7772;
  --paper: #f3f1ec;
  --cream: #e7e1d6;
  --copper: #c45e36;
  --copper-dark: #9d4025;
  --line: #d2d5cd;
  --white: #fbfaf7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 64px));
  margin: auto;
}
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 34px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  font:
    700 12px/1.1 "Space Grotesk",
    sans-serif;
  letter-spacing: 1.4px;
}
.brand-copy small {
  color: var(--copper);
  font-size: 8px;
  letter-spacing: 2.3px;
  margin-top: 4px;
}
.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}
.main-nav a,
.language-toggle {
  font-size: 13px;
  color: #49544f;
}
.main-nav a:hover,
.language-toggle:hover,
.text-link:hover {
  color: var(--copper);
}
.main-nav a[href="shop.html"] {
  background: var(--copper);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.main-nav a[href="shop.html"]:hover,
.main-nav a[href="shop.html"].active {
  background: var(--copper-dark);
  color: white;
  transform: translateY(-2px);
}
.main-nav a[href="shop.html"]::after {
  display: none;
}
.main-nav a.active {
  position: relative;
  color: var(--copper);
  font-weight: 700;
}
.main-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  background: var(--copper);
}
.main-nav .mobile-quote {
  display: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.language-toggle {
  background: none;
  border: 0;
  cursor: pointer;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 18px;
  font-weight: 400;
}
.button-small {
  padding: 12px 16px;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: var(--copper);
}
.button-quote {
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 0 rgba(23, 32, 30, 0.16);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.button-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-105%);
  transition: transform 0.35s ease;
}
.button-quote:hover {
  background: var(--copper);
  box-shadow: 0 7px 0 rgba(157, 64, 37, 0.25);
}
.button-quote:hover::before {
  transform: translateX(105%);
}
.button-quote span {
  position: relative;
  transition: transform 0.2s ease;
}
.button-quote:hover span {
  transform: translate(3px, -3px);
}
.button-copper {
  background: var(--copper);
  color: white;
}
.button-copper:hover {
  background: var(--copper-dark);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
}
.menu-toggle span {
  display: block;
  border-top: 2px solid var(--ink);
  margin: 6px 0;
}
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}
.hero-content {
  grid-column: 1;
  padding-top: clamp(70px, 10vw, 140px);
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  padding-right: 60px;
  width: 100%;
}
.hero-visual {
  grid-column: 2;
  position: relative;
  min-height: 650px;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 30, 29, 0.08), rgba(17, 30, 29, 0.5)),
    url("./images/front.jpg") center/cover;
  filter: saturate(0.7);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--copper);
}
.eyebrow-line {
  height: 1px;
  width: 30px;
  background: var(--copper);
  display: inline-block;
}
.hero h1,
h2 {
  font:
    600 clamp(46px, 5.6vw, 78px)/0.99 "Space Grotesk",
    sans-serif;
  letter-spacing: -3px;
  margin: 25px 0;
}
.hero h1 em,
h2 em {
  color: var(--copper);
  font-style: normal;
}
.hero-intro {
  max-width: 390px;
  color: #53605a;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.text-link {
  font-weight: 700;
  font-size: 13px;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 5px;
  transition: color 0.2s;
}
.text-link span {
  margin-left: 13px;
  font-size: 18px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #69746e;
  font-size: 11px;
  margin-top: 75px;
  max-width: 330px;
}
.proof-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  flex: none;
}
.visual-label {
  position: absolute;
  bottom: 38px;
  left: 40px;
  color: white;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.3px;
}
.visual-label span {
  color: #d8a387;
}
.visual-label strong {
  font-size: 14px;
}
.established-stamp {
  position: absolute;
  right: 40px;
  top: 42px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transform: rotate(10deg);
}
.established-stamp strong {
  font:
    600 44px/0.8 "Space Grotesk",
    sans-serif;
}
.established-stamp span {
  font-size: 8px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
}
.ticker {
  overflow: hidden;
  background: var(--copper);
  color: white;
}
.ticker-track {
  height: 53px;
  display: flex;
  align-items: center;
  width: max-content;
  font:
    600 11px "Space Grotesk",
    sans-serif;
  letter-spacing: 1.6px;
  white-space: nowrap;
  animation: ticker-scroll 26s linear infinite;
  will-change: transform;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}
@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}
.ticker i {
  font-style: normal;
  font-size: 18px;
  color: #efb397;
}
.section-pad {
  padding: 120px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
}
.section-heading h2,
.about h2,
.quote h2 {
  font-size: clamp(40px, 4.5vw, 62px);
  margin: 19px 0 0;
}
.section-heading > p {
  max-width: 310px;
  color: var(--muted);
  margin-bottom: 4px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 340px;
  padding: 25px 24px;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s,
    transform 0.25s;
}
.service-card:hover {
  background: white;
  transform: translateY(-5px);
}
.service-featured {
  background: var(--ink);
  color: white;
}
.card-number {
  position: absolute;
  right: 20px;
  top: 24px;
  color: var(--copper);
  font:
    500 12px "Space Grotesk",
    sans-serif;
}
.service-icon {
  font: 38px/1;
  color: var(--copper);
  height: 93px;
  padding-top: 4px;
}
.service-card h3 {
  font:
    600 21px/1.1 "Space Grotesk",
    sans-serif;
  margin: 0 0 15px;
  letter-spacing: -0.7px;
}
.service-card p {
  color: #78817a;
  font-size: 13px;
  max-width: 200px;
}
.service-featured p {
  color: #aab3ae;
}
.card-link {
  position: absolute;
  bottom: 25px;
  font-size: 12px;
  font-weight: 700;
}
.card-link span {
  color: var(--copper);
  font-size: 18px;
  margin-left: 10px;
}
.about {
  background: var(--ink);
  color: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-image {
  min-height: 510px;
  background:
    linear-gradient(0deg, rgba(19, 29, 27, 0.7), transparent 55%),
    url("/images/fleet.jpg") center/cover;
  position: relative;
}
.image-caption {
  position: absolute;
  left: 28px;
  bottom: 27px;
  font:
    500 15px/1.2 "Space Grotesk",
    sans-serif;
}
.image-caption strong {
  color: #e2916d;
}
.about-content .eyebrow {
  margin-bottom: 20px;
}
.about-content h2 {
  margin-bottom: 30px;
}
.large-copy {
  font-size: 19px;
  line-height: 1.45;
  color: #000000;
  max-width: 460px;
}
.about-content p:not(.large-copy) {
  color: #ffffff;
  max-width: 460px;
  font-size: 14px;
}
.text-link-dark {
  display: inline-block;
  color: white;
  margin-top: 24px;
}
.stats {
  background: var(--copper);
  color: white;
  padding: 55px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.3fr;
  align-items: center;
}
.stats-grid > div {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 20px;
}
.stats-grid > div:first-child {
  padding-left: 0;
}
.stats-grid strong {
  font:
    600 58px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: -3px;
}
.stats-grid strong span {
  font-size: 28px;
  color: #efb397;
}
.stats-grid small {
  display: block;
  font-size: 11px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f4cab8;
}
.stats-note {
  border: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}
.stats-note .proof-dot {
  background: white;
}
.stats-note p {
  font:
    500 16px/1.2 "Space Grotesk",
    sans-serif;
  margin: 0;
}
.stats-note em {
  font-style: normal;
  color: #ffd1bb;
}
.quote {
  background: var(--paper);
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.quote-intro h2 {
  margin-bottom: 25px;
}
.quote-intro > p {
  color: var(--muted);
  max-width: 360px;
}
.direct-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 40px;
}
.direct-contact small {
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10px;
  font-weight: 700;
}
.direct-contact a {
  font:
    600 16px "Space Grotesk",
    sans-serif;
}
.direct-contact a:last-child {
  color: var(--copper);
  font:
    600 13px "DM Sans",
    sans-serif;
  margin-top: 5px;
}
.quote-form {
  border-top: 1px solid var(--ink);
  padding-top: 27px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.quote-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}
.quote-form input,
.quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 9px;
  border: 0;
  border-bottom: 1px solid #bcc3bc;
  background: transparent;
  padding: 10px 0;
  color: var(--ink);
  outline: 0;
  resize: vertical;
}
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--copper);
}
.quote-form ::placeholder {
  color: #9aa29c;
}
.quote-form .button {
  margin-top: 8px;
}
.form-status {
  display: inline-block;
  margin: 0 0 0 15px;
  color: var(--copper);
  font-size: 12px;
}
.site-footer {
  background: var(--cream);
  padding: 45px 0 23px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 45px;
  align-items: start;
  gap: 30px;
}
.footer-address small {
  font-size: 9px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: var(--copper);
}
.footer-address p {
  font-size: 13px;
  line-height: 1.55;
  margin: 9px 0;
}
.footer-address a:hover {
  color: var(--copper);
}
.back-top {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 21px;
  transition: background 0.2s;
}
.back-top:hover {
  background: var(--ink);
  color: white;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #7b847d;
  font-size: 10px;
  letter-spacing: 0.5px;
}
@media (max-width: 800px) {
  .container {
    width: min(100% - 40px, 600px);
  }
  .site-header {
    height: 70px;
  }
  .main-nav,
  .nav-actions,
  .nav-wrap > .button {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav.is-open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open a {
    padding: 12px 0;
  }
  .main-nav.is-open .mobile-quote {
    display: flex;
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
  }
  .hero {
    display: block;
  }
  .hero-content {
    padding: 70px 20px 55px;
    width: min(100% - 40px, 600px);
    margin: auto;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-proof {
    margin-top: 50px;
  }
  .hero-visual {
    min-height: 430px;
  }
  .visual-label {
    left: 20px;
  }
  .established-stamp {
    right: 20px;
    top: 25px;
  }
  .section-pad {
    padding: 78px 0;
  }
  .section-heading,
  .quote-grid {
    display: block;
  }
  .section-heading > p {
    margin-top: 28px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card {
    min-height: 300px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-image {
    min-height: 390px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .stats-grid > div {
    border-right: 0;
    padding: 0 !important;
  }
  .stats-note {
    grid-column: span 2;
    justify-content: flex-start;
  }
  .quote-intro {
    margin-bottom: 55px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid .brand {
    grid-column: span 2;
  }
  .back-top {
    justify-self: end;
  }
  .footer-bottom {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 275px;
  }
  .section-heading h2,
  .about h2,
  .quote h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .stats-grid strong {
    font-size: 48px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid .brand,
  .stats-note {
    grid-column: auto;
  }
  .footer-bottom {
    gap: 18px;
    flex-direction: column;
  }
}
