* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #1f1a17;
  background: #fbfaf7;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e7e1d8;
}

.logo {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2f241d;
  color: white;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo small {
  display: block;
  color: #7a6d63;
  font-size: 12px;
  margin-top: -2px;
}

nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.nav-button,
.button,
button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: #2f241d;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 70px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(rgba(31,26,23,.58), rgba(31,26,23,.50)),
    url("https://images.unsplash.com/photo-1603354350317-6f7aaa5911c5?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
  color: #b88a52;
  margin: 0 0 12px;
}

.hero .eyebrow {
  color: #e7c08b;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 950px;
  font-size: clamp(46px, 8vw, 92px);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero-text {
  max-width: 720px;
  font-size: 21px;
  color: #f0ece6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button.secondary {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
}

.hero-card {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.94);
  color: #1f1a17;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.hero-card h2 {
  font-size: 30px;
}

.hero-card ul {
  margin: 22px 0 0;
  padding-left: 22px;
}

.section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.muted {
  background: #f0ebe4;
}

.grid {
  display: grid;
  gap: 22px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 30px;
  border-radius: 24px;
  background: white;
  border: 1px solid #e8e0d6;
  box-shadow: 0 12px 40px rgba(62, 45, 31, 0.06);
}

.card p,
.split p,
.contact p {
  color: #6d6259;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact {
  background: #2f241d;
}

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 30px;
  background: #fbfaf7;
}

.email-link {
  display: inline-block;
  margin: 14px 0 28px;
  font-size: 24px;
  font-weight: 800;
  color: #2f241d;
  border-bottom: 2px solid #b88a52;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8d0c6;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: white;
}

textarea {
  min-height: 140px;
  grid-column: 1 / -1;
  resize: vertical;
}

form button {
  width: fit-content;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid #e7e1d8;
  color: #6d6259;
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    display: none;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .three,
  .four,
  form {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
