:root {
  --bg: #fffaf4;
  --surface: #ffffff;
  --surface-alt: #fff1de;
  --text: #1f2937;
  --muted: #5b6472;
  --accent: #ea7a18;
  --accent-dark: #b95500;
  --border: #f1d1ae;
  --shadow: 0 14px 40px rgba(88, 54, 21, 0.08);
}

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

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1.2rem 0 3rem;
  background: linear-gradient(135deg, #fff6ea 0%, #ffe1ba 100%);
}

.topbar,
.nav,
.two-col,
.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.topbar {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 1rem;
}

.nav,
.two-col {
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin: 0;
}

.lang-switcher {
  display: flex;
  gap: .5rem;
}

.lang-link {
  text-decoration: none;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.7);
  font-weight: 700;
}

.lang-link.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.05; margin-bottom: 1rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.1; }
h3 { font-size: 1.15rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 44rem; }

.hero-layout { align-items: center; }
.hero-visual img,
.image-card img {
  width: 100%;
  display: block;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-actions {
  justify-content: center;
}

.button {
  display: inline-block;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}

button.button {
  border: 0;
  cursor: pointer;
}

.button-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--border);
  box-shadow: none;
}

.section { padding: 4rem 0; }
.section-alt,
.image-band { background: var(--surface-alt); }
.cta { text-align: center; }

.card,
.product-card,
.hero-visual,
.image-card,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.cardless {
  padding: 0;
  overflow: hidden;
}

.hero-card ul,
.check-list,
.plain-list {
  margin: 0;
  padding-left: 1.2rem;
}

.lead-form {
  max-width: 860px;
  margin: 2rem auto 0;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 700;
  color: var(--accent-dark);
}

input,
textarea {
  width: 100%;
  margin-top: .4rem;
  padding: .9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: #fffdf9;
}

textarea {
  resize: vertical;
  margin-bottom: 1rem;
}

strong {
  color: var(--accent-dark);
}

@media (max-width: 860px) {
  .topbar,
  .nav,
  .two-col,
  .grid-3,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar { justify-items: start; }
  .site-header { padding-top: 1rem; }
}
