:root {
  --gold: #f4b937;
  --flame: #e8590c;
  --dark: #1a1a1a;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --bg-alt: #faf6ec;
  --border: #ece3cc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
a { color: var(--flame); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; height: auto; }

/* Header */
.site-header {
  background: var(--gold);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo img { height: 46px; width: auto; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--dark);
  border-radius: 6px;
  font-size: 1.3rem;
  padding: 4px 10px;
  cursor: pointer;
  color: var(--dark);
}
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--dark);
  font-weight: 700;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.main-nav a:hover { text-decoration: none; color: var(--flame); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--dark) 0%, #33220f 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 10px;
  color: var(--gold);
}
.hero-lead { font-size: 1.3rem; margin: 0 0 6px; }
.hero-sub { color: #d8cdb8; margin: 0 0 18px; }
.hero-city { color: #d8cdb8; margin: 0 0 28px; font-size: .95rem; }
.btn {
  display: inline-block;
  background: var(--flame);
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: .88rem;
  letter-spacing: .03em;
  transition: background .2s;
}
.btn:hover { background: #c94a09; text-decoration: none; color: #fff; }

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: var(--bg-alt); }
.section-title {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 36px;
  color: var(--dark);
}

/* Oven grid */
.oven-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.oven-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 14px 22px;
}
.oven-img { position: relative; margin-bottom: 12px; }
.oven-img img { margin: 0 auto; max-height: 190px; width: auto; }
.badge {
  position: absolute;
  top: 0; right: 8px;
  background: var(--flame);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .05em;
  border-radius: 100px;
  padding: .3em 1em;
}
.oven-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.oven-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* Gazebo grid */
.besedka-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.besedka-card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.besedka-card img { width: 100%; height: 190px; object-fit: cover; }
.besedka-card h3 { margin: 16px 0 6px; font-size: 1.05rem; }
.besedka-card p { font-size: .85rem; color: var(--muted); margin: 0 16px 18px; }

/* Teaser grid */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.teaser-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.teaser-card img { width: 100%; height: 160px; object-fit: cover; }
.teaser-body { padding: 14px 16px 18px; }
.teaser-body h3 { font-size: 1rem; margin: 0 0 8px; }
.teaser-body p { font-size: .85rem; color: var(--muted); margin: 0; }

/* Contacts */
.contacts-inner { text-align: center; }
.contacts-inner p { max-width: 560px; margin: 0 auto 24px; color: var(--muted); }

.social-icons {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.social-icons a {
  border: 1px solid var(--dark);
  border-radius: 100px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--dark);
}
.social-icons a:hover { background: var(--flame); border-color: var(--flame); color: #fff; text-decoration: none; }
.social-icons.large a { padding: 11px 26px; font-size: .95rem; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #bdbdbd;
  padding: 40px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-text { max-width: 480px; margin: 0; font-size: .88rem; }
.footer-bottom { margin: 8px 0 0; font-size: .78rem; color: #7c7c7c; }

/* Responsive */
@media (max-width: 900px) {
  .oven-grid { grid-template-columns: repeat(2, 1fr); }
  .besedka-grid, .teaser-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; width: 100%; order: 3; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 10px; padding: 14px 0 4px; }
  .header-inner { flex-wrap: wrap; }
  .oven-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
}
