
:root {
  --bg: #f7f3ec;
  --card: #ffffff;
  --text: #24201d;
  --muted: #6e6259;
  --accent: #9a6338;
  --accent-dark: #6f4528;
  --border: #e0d6ca;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-small {
  width: 90px;
  height: auto;
  border-radius: 10px;
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
  flex: 1;
}

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

nav a, .lang-btn {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.lang-switch {
  border-left: 1px solid var(--border);
  padding-left: 12px;
  display: flex;
  gap: 6px;
}

.lang-btn.active {
  color: var(--accent);
  text-decoration: underline;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 35px 20px 60px;
}

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

.hero-logo {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  background: white;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: 0;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.checks li {
  margin: 8px 0;
  font-weight: 700;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  max-width: 520px;
}

.project-list li {
  border-bottom: 1px solid var(--border);
}

.project-list a {
  display: block;
  padding: 16px 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.project-list a:hover { color: var(--accent); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 25px;
}

.photo-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
}

.photo-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card p {
  margin: 10px 0 0;
  font-weight: 800;
}

form {
  display: grid;
  gap: 14px;
  max-width: 650px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 150px;
}

button, .button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
}

button:hover, .button:hover {
  background: var(--accent-dark);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 25px 20px;
  color: var(--muted);
}

@media (max-width: 800px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
  }

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

  .hero-logo {
    max-width: 320px;
  }

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