* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #2a211c;
  background: #fff8ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 92vh;
  padding: 28px 7vw 80px;
  background:
    linear-gradient(110deg, rgba(46, 34, 25, 0.86), rgba(73, 53, 34, 0.48)),
    url("https://images.unsplash.com/photo-1612536057832-2ff7ead58194?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 15px;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.hero-content {
  max-width: 760px;
  margin-top: auto;
  padding-top: 120px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d89b55;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 86px);
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 34px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
}

.primary {
  background: #d89b55;
  color: #231913;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
}

.section {
  padding: 90px 7vw;
}

.intro,
.split,
.contacts {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.section h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.section p {
  margin-top: 0;
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 0;
}

.card,
.achievement-grid > div,
.contact-box,
.location-card {
  background: #fff;
  border: 1px solid rgba(72, 49, 31, 0.1);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(72, 49, 31, 0.08);
}

.card {
  padding: 32px;
}

.card span {
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 800;
  color: #d89b55;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.card p {
  margin: 0;
  font-size: 16px;
  color: #604d40;
}

.split {
  background: #2f241d;
  color: #fff8ef;
}

.text-block p {
  color: rgba(255, 248, 239, 0.86);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.achievements {
  text-align: center;
}

.achievements h2 {
  max-width: 860px;
  margin: 0 auto 42px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.achievement-grid > div {
  padding: 28px;
}

.achievement-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.achievement-grid p {
  margin: 0;
  font-size: 16px;
  color: #604d40;
}

.location {
  background:
    linear-gradient(rgba(255, 248, 239, 0.82), rgba(255, 248, 239, 0.82)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.location-card {
  max-width: 720px;
  padding: 44px;
}

.contacts {
  align-items: center;
}

.contact-box {
  padding: 34px;
  display: grid;
  gap: 14px;
  font-size: 20px;
  font-weight: 700;
}

.contact-box span {
  color: #604d40;
  font-size: 17px;
  font-weight: 500;
}

footer {
  padding: 28px 7vw;
  background: #2f241d;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .intro,
  .split,
  .contacts,
  .cards,
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 6vw;
  }

  .cards {
    padding-top: 0;
  }

  .hero {
    min-height: 84vh;
  }
}