@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #242426;
  --muted: #66676a;
  --line: #dedede;
  --paper: #f7f7f6;
  --white: #ffffff;
  --red: #b43b3e;
  --brown: #663331;
  --green: #4c934d;
  --blue: #315782;
  --gold: #bd8053;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.page {
  width: min(1440px, 100%);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--white);
}

.header {
  height: 105px;
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 148px;
  height: auto;
}

.email-top {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
}

.hero {
  min-height: 620px;
  padding: 78px 6vw 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 7vw;
  align-items: center;
  overflow: hidden;
}

.hero-content { max-width: 760px; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
  color: var(--red);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

.lead {
  margin: 27px 0 13px;
  font-size: 20px;
  font-weight: 600;
}

.intro {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.status {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 36px;
  padding: 18px 20px;
  max-width: 650px;
  background: #f2f2f1;
  border-left: 4px solid var(--red);
}

.status-dot {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--red);
}

.status strong {
  display: block;
  font-size: 14px;
}

.status p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.button {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 21px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--red);
}

.visual {
  position: relative;
  min-height: 420px;
  background: #eeeeed;
  border: 1px solid var(--line);
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(to right, #d4d4d3 1px, transparent 1px),
    linear-gradient(to bottom, #d4d4d3 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(600px) rotateX(55deg) scale(1.5);
  transform-origin: center bottom;
}

.visual-card {
  position: absolute;
  width: 145px;
  height: 145px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.13);
}

.visual-card span {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  opacity: .7;
}

.visual-card b { font-size: 12px; letter-spacing: .12em; }
.visual-card small { margin-top: 5px; font-size: 9px; letter-spacing: .2em; opacity: .8; }

.card-one { left: 12%; top: 16%; background: var(--red); }
.card-two { right: 10%; top: 33%; background: var(--blue); }
.card-three { left: 30%; bottom: 10%; background: var(--brown); }

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services article {
  min-height: 250px;
  padding: 31px 28px;
  border-right: 1px solid var(--line);
}

.services article:last-child { border-right: 0; }

.number {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.services h2 {
  margin: 34px 0 12px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.services p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer {
  padding: 26px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 12px;
}

.footer div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer strong { letter-spacing: .08em; }
.footer span { color: var(--muted); }
.footer a { text-decoration: none; font-weight: 600; }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 55px;
  }

  .visual { min-height: 340px; }

  .services { grid-template-columns: repeat(2, 1fr); }
  .services article:nth-child(2) { border-right: 0; }
  .services article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .header { height: 86px; padding: 18px 24px; }
  .brand img { width: 115px; }
  .email-top { display: none; }

  .hero { padding: 48px 24px 55px; }
  h1 { font-size: 43px; }
  .lead { font-size: 17px; }

  .visual { min-height: 300px; }
  .visual-card { width: 115px; height: 115px; }
  .card-one { left: 7%; }
  .card-two { right: 5%; }
  .card-three { left: 25%; }

  .services { grid-template-columns: 1fr; }
  .services article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .services article:last-child { border-bottom: 0; }

  .footer {
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
  }
}
