:root {
  --dark: #1f1d1a;
  --ink: #2b2926;
  --gray-header: #eeeeea;
  --white: #ffffff;
  --muted: #66615c;
  --line: rgba(31, 29, 26, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 238, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.brand {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 8px;
}

main {
  padding-top: 88px;
}

.contact-section {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 70px 7vw;
  background: var(--white);
}

.contact-copy {
  max-width: 680px;
}

.section-kicker {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--muted);
}

.contact-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark);
}

.contact-text {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.contact-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.contact-button {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.whatsapp {
  background: #000000;
  color: #25d366;
  border: 1px solid #25d366;
}

.instagram {
  background: linear-gradient(135deg, #000000 0%, #e1306c 40%, #f77737 70%, #ffdc80 100%);
  color: #ffffff;
}

.small-text {
  font-size: 13px;
  color: var(--muted);
}

.contact-image {
  width: 100%;
}

.contact-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.site-footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 7vw 40px;
  background: #000000;
  color: var(--white);
}

.site-footer p {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 5px;
}

.site-footer span {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
  }

  .brand {
    font-size: 34px;
    letter-spacing: 6px;
  }

  main {
    padding-top: 76px;
  }

  .contact-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 55px 24px;
  }

  .contact-image {
    order: -1;
  }

  .contact-image img {
    height: 340px;
  }

  .contact-copy h1 {
    font-size: 44px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 40px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 28px;
    letter-spacing: 5px;
  }

  .contact-copy h1 {
    font-size: 38px;
  }

  .contact-image img {
    height: 280px;
  }

  .site-footer p {
    font-size: 22px;
  }
}