:root {
  --dark-green: #1a3a2e;
  --rust: #a64b2a;
  --cream: #e8e4d0;
  --logo-color: var(--cream);
  --white: #ffffff;
  --text-dark: #2d2d2d;
  --text-light: #6b6b6b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--white);
  background-color: var(--dark-green);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e8e4d0' fill-opacity='0.07' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.page {
  width: min(1100px, 100%);
  padding: 72px clamp(24px, 4vw, 60px) 48px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 60px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  width: clamp(280px, 30vw, 300px);
  height: auto;
  color: var(--logo-color);
}

main {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  flex: 1;
}

h1 {
  margin: 0 0 20px 0;
  font-size: clamp(34px, 4.5vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
}

p.lead {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px);
  max-width: 540px;
  color: var(--white);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--cream);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--cream);
  font-size: 14px;
}

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

.social a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cream);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
}

@media (max-width: 860px) {
  main {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page {
    padding: 48px clamp(20px, 5vw, 40px) 36px;
    gap: 44px;
  }
}
