:root {
  --bg: #ffffff;
  --text: #222222;
  --muted: #666666;
  --border: #e7e7e7;
  --soft: #f7f7f7;
  --accent: #151515;
  --accent-hover: #333333;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 32px)); }

.hero { text-align: center; background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%); }
.hero-image {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: #e9e9e9;
  overflow: hidden;
}
.hero-image img { width: 100%; max-height: 520px; object-fit: cover; }
.hero-image.missing-image::before {
  content: "Ide jön a nagy slide kép: assets/head3.png";
  color: #777;
  font-size: 20px;
  padding: 80px 20px;
}
.hero-image.missing-image img { display: none; }
.hero-text { padding: 54px 0 62px; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; color: var(--muted); }
h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.08; margin: 0 auto 22px; max-width: 950px; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 760px; margin: 0 auto 32px; }
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button:hover, button:hover { background: var(--accent-hover); }

.section { padding: 70px 0; }
.intro { text-align: center; }
h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; margin: 0 0 20px; }
h3 { font-size: 22px; margin: 0 0 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.card p { margin: 0; color: var(--muted); }
.gallery { padding-top: 20px; }
.image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.image-grid img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eee;
}
.image-grid img.missing { min-height: 220px; }
.specs { background: var(--soft); text-align: center; }
.spec-list { list-style: none; padding: 0; margin: 28px 0 0; text-align: left; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.spec-list li { padding: 16px 22px; border-bottom: 1px solid var(--border); }
.spec-list li:last-child { border-bottom: 0; }
.contact { text-align: center; }
.contact-lead { color: var(--muted); margin-bottom: 28px; }
.contact-form { text-align: left; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.form-row { margin-bottom: 18px; }
label { display: block; font-weight: 700; margin-bottom: 7px; }
label span { color: #b00020; }
input, textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
input:focus, textarea:focus { outline: 2px solid #222; outline-offset: 2px; }
textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.footer { padding: 30px 0; background: #111; color: #fff; text-align: center; font-size: 15px; }
.footer p { margin: 6px 0; }
.footer a { color: #fff; }

@media (max-width: 800px) {
  .grid-3, .image-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .hero-text { padding: 42px 0 50px; }
  .contact-form { padding: 20px; }
}
