:root {
  --ink: #17191b;
  --steel: #2b2e31;
  --muted: #6d7277;
  --paper: #f5f5f3;
  --white: #fff;
  --accent: #ef6c24;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
a { color: inherit; }
.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: url("assets/workshop.jpg") center 48% / cover no-repeat;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,12,14,.82) 0%, rgba(10,12,14,.55) 48%, rgba(10,12,14,.28) 100%);
}
.brand {
  position: absolute;
  z-index: 2;
  top: 2rem;
  left: clamp(1.5rem, 5vw, 5rem);
  width: 190px;
}
.brand img { display: block; width: 100%; height: auto; filter: brightness(0) invert(1); }
.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 3rem));
  padding-top: 4rem;
  text-align: center;
}
.hero__box {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4.4rem) clamp(1.2rem, 5vw, 4rem);
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 28px;
  background: rgba(17,19,21,.18);
  box-shadow: 0 22px 70px rgba(0,0,0,.2);
}
.section-label {
  margin: 0 0 .75rem;
  color: var(--accent);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2 { margin: 0; line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); }
.tagline { margin: 1.6rem 0 2.1rem; font-size: clamp(1.1rem, 2vw, 1.45rem); }
.hero__cta {
  display: inline-block;
  padding: .9rem 1.25rem;
  border: 2px solid var(--white);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.hero__cta:hover, .hero__cta:focus-visible { background: var(--white); color: var(--ink); }
.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.about h2, .contact h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.about__copy p { margin: 0 0 1.15rem; }
.about__copy p:first-child { font-size: 1.25rem; font-weight: 700; line-height: 1.45; }
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(4rem, 8vw, 7rem) max(1.5rem, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: var(--steel);
}
.contact h2 { margin-bottom: 1.5rem; }
.contact p { max-width: 32rem; color: #d5d7d8; }
.section-label--light { color: #ff8b4c; }
.contact__details { border-top: 1px solid #53575b; }
.contact__item {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid #53575b;
  text-decoration: none;
}
.contact__item span { color: #bfc2c4; }
.contact__item strong { text-align: right; }
.contact__item:hover strong, .contact__item:focus-visible strong { color: #ff8b4c; }
footer {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.5rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  font-size: .9rem;
}
.footer__main img { display: block; width: 160px; height: auto; margin-bottom: 1rem; }
.footer__main a { font-weight: 700; }
.group { text-align: right; }
.group p { margin: 0 0 .45rem; color: var(--muted); }
.group nav { display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; }
.group a:hover, .group a:focus-visible { color: var(--accent); }

@media (max-width: 760px) {
  .hero { min-height: 600px; background-position: 58% center; }
  .brand { top: 1.4rem; width: 145px; }
  .hero__content { width: min(100% - 2rem, 1120px); padding-top: 2rem; }
  .hero__box { border-radius: 20px; padding: 2.2rem 1rem; }
  h1 { font-size: clamp(2.35rem, 11.5vw, 4.5rem); }
  .about, .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .about { width: min(100% - 2rem, 1120px); }
  .contact { padding-left: 1rem; padding-right: 1rem; }
  .contact__item { display: block; }
  .contact__item strong { display: block; text-align: left; }
  footer { width: min(100% - 2rem, 1120px); align-items: flex-start; flex-direction: column; }
  .group { text-align: left; }
  .group nav { align-items: flex-start; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
