:root {
  --ink: #211b19;
  --red: #e23e32;
  --paper: #f4f1ec;
}

* { box-sizing: border-box; }

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

a { color: inherit; }

.page {
  min-height: 100vh;
  max-width: 1500px;
  margin: auto;
  padding: 42px clamp(28px, 6vw, 92px) 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: block;
  width: min(430px, 54vw);
  height: auto;
  mix-blend-mode: multiply;
}

.header-phone {
  border-bottom: 2px solid var(--red);
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
  align-items: center;
  gap: clamp(35px, 7vw, 110px);
  padding: clamp(55px, 8vh, 100px) 0 55px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(50px, 7.1vw, 108px);
  line-height: .92;
  letter-spacing: -.065em;
}

h1 span { color: var(--red); }

.intro {
  max-width: 580px;
  margin: 34px 0 0;
  color: #625b57;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

.contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 17px 22px;
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button:hover { background: #c83228; }
.button strong { font-size: 22px; }
.phone { display: grid; gap: 4px; }
.phone small { color: #8c837e; text-transform: uppercase; letter-spacing: .1em; }
.phone a { font-weight: 800; text-decoration: none; }

.art {
  position: relative;
  justify-self: end;
  width: min(390px, 100%);
  padding: 32px 25px 24px 0;
}

.red-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 88%;
  background: var(--red);
}

.art img {
  position: relative;
  display: block;
  width: 77%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(31, 23, 20, .25);
  transform: rotate(-2.5deg);
}

.art p {
  position: absolute;
  right: -50px;
  bottom: 60px;
  margin: 0;
  transform: rotate(90deg);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

footer {
  display: flex;
  gap: 34px;
  padding-top: 24px;
  border-top: 1px solid #d8d1cb;
  color: #7d746f;
  font-size: 11px;
}

footer a { color: var(--ink); font-weight: 700; text-decoration: none; }
.copyright { margin-left: auto; }

@media (max-width: 760px) {
  .page { padding: 26px 22px 22px; }
  .logo { width: 255px; max-width: 67vw; }
  .header-phone { font-size: 11px; }
  .hero { grid-template-columns: 1fr; padding: 70px 0 50px; gap: 60px; }
  h1 { font-size: clamp(52px, 15vw, 78px); }
  .art { width: min(330px, 91vw); justify-self: center; }
  footer { flex-wrap: wrap; gap: 8px 22px; }
  .copyright { width: 100%; margin-left: 0; }
}
