:root {
  --black: #111315;
  --steel: #24282d;
  --ash: #6e7379;
  --orange: #f26a21;
  --amber: #ffb13b;
  --paper: #f4f1ea;
  --white: #ffffff;
  --line: rgba(17, 19, 21, .14);
  --shadow: 0 26px 70px rgba(17, 19, 21, .28);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
}
a { color: inherit; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(244, 241, 234, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--orange);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--ash);
  font-size: 14px;
  font-weight: 900;
}

nav a:hover { color: var(--orange); }

.lang {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--ash);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 900;
  cursor: pointer;
}

.lang .active {
  background: var(--black);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,9,10,.92), rgba(8,9,10,.72) 42%, rgba(8,9,10,.18));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: clamp(60px, 9vw, 120px) clamp(20px, 6vw, 86px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

h1, h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  line-height: .88;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  font-size: clamp(66px, 10vw, 150px);
}

h2 {
  font-size: clamp(44px, 6vw, 86px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.hero-copy p:not(.kicker) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.btn.primary {
  background: var(--orange);
  color: #fff;
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.hours {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 2;
  width: min(360px, calc(100vw - 36px));
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--black);
  box-shadow: var(--shadow);
}

.hours span, .hours strong, .hours small { display: block; }
.hours span { color: var(--orange); font-weight: 900; }
.hours strong { margin: 6px 0; font-family: "Barlow Condensed", Impact, sans-serif; font-size: 34px; text-transform: uppercase; }
.hours small { color: var(--ash); line-height: 1.45; }

.proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof div {
  padding: 26px clamp(18px, 4vw, 42px);
  background: #fff;
}

.proof strong, .proof span { display: block; }
.proof strong { font-family: "Barlow Condensed", Impact, sans-serif; font-size: 42px; color: var(--orange); }
.proof span { color: var(--ash); font-weight: 800; }

.story, .guarantee, .contact, .section {
  padding: clamp(60px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.story, .guarantee, .contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, .88fr);
  gap: clamp(28px, 6vw, 80px);
}

.story p:last-child, .guarantee p, .contact p {
  margin: 0;
  color: var(--ash);
  font-size: 20px;
  line-height: 1.7;
}

.section-head {
  max-width: 900px;
  margin-bottom: 36px;
}

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

.service-grid article {
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17,19,21,.08);
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--black);
  color: var(--orange);
  font-weight: 900;
}

article p {
  color: var(--ash);
  line-height: 1.62;
}

.guarantee {
  background: var(--steel);
  color: #fff;
}

.guarantee p { color: rgba(255,255,255,.78); }

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

blockquote {
  margin: 0;
  min-height: 150px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border-left: 5px solid var(--orange);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card a:first-child {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 42px;
  color: var(--orange);
}

.contact-card a {
  color: var(--black);
  font-weight: 900;
}

.contact-card span { color: var(--ash); }

footer {
  padding: 28px clamp(20px, 6vw, 86px);
  color: var(--ash);
  border-top: 1px solid var(--line);
}

footer p { margin: 0; }

@media (max-width: 980px) {
  .header { grid-template-columns: auto auto; }
  nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; }
  .hero { min-height: auto; padding-bottom: 210px; }
  .hero-copy { padding-top: 70px; }
  .proof, .service-grid, .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story, .guarantee, .contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header { padding: 12px 14px; gap: 12px; }
  .brand strong { font-size: 14px; }
  nav { gap: 16px; font-size: 13px; }
  .hero { padding-bottom: 235px; }
  .hero-copy { padding: 54px 18px; }
  h1 { font-size: 72px; }
  h2 { font-size: 48px; }
  .hours { left: 18px; right: 18px; bottom: 22px; }
  .proof, .service-grid, .quote-grid { grid-template-columns: 1fr; }
}
