:root {
  --bg: #f5f0ec;
  --ink: #201b19;
  --muted: #6d625d;
  --accent: #d95f74;
  --card: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}
.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 42px;
  gap: 42px;
  align-items: center;
}
.copy { padding: 20px 2vw 20px 0; }
.brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 90px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 16px;
}
h1 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
}
.lead {
  max-width: 620px;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 32px;
}
.cta {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}
.photo {
  height: min(720px, 72vh);
  border-radius: 36px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 24px 70px rgba(52, 40, 33, .12);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  display: block;
}
.about {
  text-align: center;
  padding: 80px 24px 100px;
  background: var(--card);
}
.about h2 {
  max-width: 840px;
  margin: 0 auto 18px;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.04em;
}
.about p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 24px;
  }
  .brand { margin-bottom: 54px; }
  .copy { padding: 8px 0; }
  .photo { height: 62vh; min-height: 470px; border-radius: 28px; }
  .trust { margin-bottom: 8px; }
}
