:root {
  --taconi: #35d0ca;
  --ink: #111827;
  --muted: #5f6673;
  --paper: #fffaf7;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, var(--paper) 100%);
  color: var(--ink);
}

.site {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(1120px, 100%);
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(17, 24, 39, 0.14);
  animation: fadeIn 900ms ease both;
}

.photo {
  min-height: 720px;
  background-image: linear-gradient(rgba(0,0,0,.06), rgba(0,0,0,.14)), url("images/hero.jpg");
  background-size: cover;
  background-position: center top;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--taconi);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
}

.lead {
  font-size: 22px;
  color: var(--ink);
  font-weight: 700;
}

.signature {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 700;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 850px) {
  .site { padding: 16px; }

  .hero {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .photo {
    min-height: 420px;
    background-position: center top;
  }

  .content {
    padding: 42px 28px 48px;
  }

  .logo { width: 92px; }

  p { font-size: 16px; }
  .lead { font-size: 19px; }
}
