:root {
  --bg: #ffffff;
  --ink: #20221f;
  --muted: #6f746b;
  --line: #d9d2c4;
  --sage: #667564;
  --clay: #b77a52;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

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

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

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 92px);
  background:
    radial-gradient(circle at 50% 48%, rgba(217, 210, 196, 0.22), transparent 34%),
    #ffffff;
}

.brand {
  width: min(980px, 100%);
  text-align: center;
}

.logo-wrap {
  position: relative;
  width: min(76vw, 760px);
  margin: 0 auto;
  padding-bottom: 22px;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  filter: drop-shadow(0 18px 28px rgba(32, 34, 31, 0.1));
  animation: logo-in 900ms cubic-bezier(.2,.8,.2,1) both, logo-breathe 7s ease-in-out 1.2s infinite;
}

.line {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage), var(--clay), var(--sage), transparent);
  transform-origin: center;
  animation: line-in 1.1s ease-out 0.35s both;
}

h1 {
  margin: 34px 0 0;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 700;
}

.lead {
  margin: 13px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
}

.contact {
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  font-style: normal;
}

.contact a,
.contact span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1;
}

.contact a {
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact a:hover {
  border-color: var(--sage);
  background: #ffffff;
  transform: translateY(-2px);
}

.person {
  color: var(--sage);
  font-weight: 700;
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logo-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.005);
  }
}

@keyframes line-in {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 28px 20px;
  }

  .logo-wrap {
    width: min(92vw, 520px);
    padding-bottom: 16px;
  }

  h1 {
    margin-top: 28px;
  }

  .contact {
    display: grid;
    width: 100%;
  }

  .contact a,
  .contact span {
    width: 100%;
  }
}
