:root {
  --lime: #cfdf00;
  --lime-soft: #eef3b5;
  --brown: #4e2d1e;
  --text: #3b3027;
  --line: rgba(78, 45, 30, 0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f7f5 0 170px, var(--lime) 170px 100%);
}

.page {
  width: min(1000px, calc(100% - 28px));
  margin: 18px auto;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(58,45,25,0.13);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
}
.logo { width: 260px; max-width: 58%; height: auto; display: block; }
.status {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--brown);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 360px;
  border-top: 4px solid var(--lime);
}
.hero-copy {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}
.lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.primary { background: var(--brown); color: #fff; }
.secondary { background: #f1f5f6; color: var(--brown); border: 1px solid var(--line); }

.hero-image { min-height: 360px; background: #ececea; }
.hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; }

.contact {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  padding: 20px 28px;
  background: #eef6f8;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}
.contact-right { display: grid; gap: 3px; }
.contact a { color: var(--brown); }

.footer {
  padding: 16px 28px 20px;
  text-align: center;
  color: var(--brown);
  font-weight: 700;
  font-size: .95rem;
}

@media (max-width: 760px) {
  body { background: #f7f7f5; }
  .page { width: 100%; margin: 0; border-radius: 0; box-shadow: none; }
  .header { padding: 16px 18px; align-items: flex-start; }
  .logo { max-width: 64%; }
  .status { font-size: .78rem; padding: 7px 10px; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 26px 20px 24px; }
  .hero-image { min-height: 230px; max-height: 300px; }
  .contact { grid-template-columns: 1fr; gap: 10px; padding: 18px 20px; }
  .footer { padding: 14px 20px 18px; }
}

@media (max-width: 460px) {
  .header { flex-direction: column; }
  .logo { width: 250px; max-width: 100%; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
}
