:root{
  --red:#ec0016;
  --dark:#111;
  --cream:#f5efe7;
  --line:#e7ddd2;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--dark);
  background:var(--cream);
  font-family:Arial,Helvetica,sans-serif;
}

a{
  color:inherit;
  text-decoration:none;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  min-height:86px;
  padding:14px clamp(20px,5vw,72px);
  border-bottom:1px solid rgba(17,17,17,.08);
  background:rgba(245,239,231,.92);
  backdrop-filter:blur(12px);
}

.brand img{
  display:block;
  width:138px;
  height:58px;
  object-fit:cover;
  border-radius:12px;
}

nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:13px;
  font-weight:800;
}

nav a:not(.system-link):hover{
  color:var(--red);
}

.system-link{
  padding:12px 16px;
  border-radius:999px;
  color:#fff;
  background:var(--dark);
}

main{
  padding:0 clamp(20px,5vw,72px);
}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
  gap:48px;
  align-items:center;
  min-height:calc(100vh - 86px);
  padding:70px 0;
}

.eyebrow{
  color:var(--red);
  font-size:11px;
  font-weight:900;
  letter-spacing:1.8px;
}

.hero h1{
  max-width:850px;
  margin:16px 0 22px;
  font-size:clamp(52px,7vw,104px);
  line-height:.92;
  letter-spacing:-4px;
}

.hero-copy>p{
  max-width:720px;
  margin:0;
  color:#5f5a55;
  font-size:clamp(17px,2vw,22px);
  line-height:1.55;
}

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

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 21px;
  border-radius:12px;
  font-weight:900;
}

.button.primary{
  color:#fff;
  background:var(--red);
}

.button.secondary{
  border:1px solid var(--line);
  background:#fff;
}

.button.light{
  color:var(--red);
  background:#fff;
}

.hero-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:520px;
  padding:28px;
  border-radius:30px;
  color:#fff;
  background:var(--red);
  box-shadow:0 30px 80px rgba(103,0,10,.25);
  transform:rotate(2deg);
}

.hero-card-top,
.hero-card-footer{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  font-weight:900;
  letter-spacing:1.4px;
}

.hero-card-copy{
  display:grid;
  gap:5px;
  font-size:clamp(42px,5vw,72px);
  line-height:.95;
}

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  padding:100px 0;
  border-top:1px solid var(--line);
}

.about h2,
.contact h2{
  margin:12px 0 0;
  font-size:clamp(38px,5vw,68px);
  line-height:1;
  letter-spacing:-2px;
}

.about>p{
  margin:0;
  color:#5f5a55;
  font-size:20px;
  line-height:1.65;
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  padding-bottom:100px;
}

.services article{
  min-height:280px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
}

.services article>span{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  color:#fff;
  background:var(--red);
  font-size:12px;
  font-weight:900;
}

.services h3{
  margin:54px 0 10px;
  font-size:26px;
}

.services p{
  margin:0;
  color:#67615b;
  line-height:1.6;
}

.contact{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  margin-bottom:70px;
  padding:44px;
  border-radius:28px;
  color:#fff;
  background:var(--dark);
}

.contact p{
  margin:12px 0 0;
  color:#bbb;
}

footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:24px clamp(20px,5vw,72px);
  border-top:1px solid var(--line);
  color:#777;
  font-size:13px;
}

footer a{
  color:var(--red);
  font-weight:900;
}

@media(max-width:900px){
  nav>a:not(.system-link){display:none}

  .hero{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero h1{
    letter-spacing:-2px;
  }

  .hero-card{
    min-height:380px;
    transform:none;
  }

  .about{
    grid-template-columns:1fr;
    gap:24px;
  }

  .services{
    grid-template-columns:1fr;
  }

  .contact{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media(max-width:560px){
  .site-header{
    min-height:76px;
  }

  .brand img{
    width:116px;
    height:50px;
  }

  .system-link{
    padding:10px 13px;
    font-size:11px;
  }

  .hero{
    padding-top:45px;
  }

  .hero h1{
    font-size:48px;
  }

  footer{
    flex-direction:column;
  }
}
