* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #8b5a2b;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: #6b7280;
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav a {
  text-decoration: none;
  font-weight: 700;
  color: #374151;
}

.hero {
  padding: 92px 0;
  background:
    linear-gradient(120deg, rgba(31, 41, 51, 0.88), rgba(139, 90, 43, 0.82)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #c0843f;
  font-size: 13px;
}

.hero .eyebrow {
  color: #f3d1a6;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  max-width: 820px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

.lead {
  font-size: 21px;
  max-width: 720px;
  color: #f3f4f6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 12px;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: #8b5a2b;
  color: #ffffff;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: #70451e;
}

.btn-secondary {
  background: #ffffff;
  color: #1f2933;
}

.btn-secondary:hover {
  background: #f3f4f6;
}

.btn-small {
  padding: 10px 16px;
  color: #ffffff;
}

.trust {
  color: #f3f4f6;
  font-weight: 700;
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  color: #1f2933;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

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

.hero-card li {
  margin: 10px 0;
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(31, 41, 51, 0.06);
}

.card p {
  margin-bottom: 0;
  color: #4b5563;
}

.section-dark {
  background: #1f2933;
  color: #ffffff;
}

.section-dark p {
  color: #e5e7eb;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 42px;
  align-items: center;
}

.notice {
  border-radius: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.muted {
  color: #6b7280;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.gallery div {
  min-height: 180px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #8b5a2b, #1f2933);
}

.cta {
  background: #f7f2ec;
  text-align: center;
}

.cta p {
  font-size: 19px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-list {
  margin-top: 24px;
}

.contact-list a {
  color: #8b5a2b;
  font-weight: 800;
}

.contact-form {
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(31, 41, 51, 0.08);
}

label {
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

form small {
  display: block;
  margin-top: 14px;
  color: #6b7280;
}

footer {
  padding: 30px 0;
  background: #111827;
  color: #d1d5db;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  nav {
    display: none;
  }

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

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 0;
  }
}
