:root {
  --ink: #161616;
  --paper: #f5f1e9;
  --white: #fff;
  --gold: #b58a4a;
  --muted: #6b675f;
  --line: #d8d1c5;
  --focus: #0969da;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-size: 1.125rem; line-height: 1.6; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
img { display: block; max-width: 100%; height: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 99; background: white; padding: .75rem; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(22,22,22,.97); color: white; }
.nav { max-width: 1200px; margin: auto; min-height: 76px; padding: 0 1.5rem; display: flex; align-items: center; gap: 2rem; }
.brand { font-family: Georgia, serif; font-size: 1.35rem; letter-spacing: .08em; text-decoration: none; margin-right: auto; }
.nav-links { display: flex; gap: 1.3rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav a { text-decoration: none; }
.phone { white-space: nowrap; }
.hero { min-height: 72vh; padding: 7rem 1.5rem; display: grid; align-items: end; color: white; background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.28)), url("https://fusiontables.hu/wp-content/uploads/2026/07/no-decor-24.webp") center/cover; }
.hero-inner, .section, .footer-inner { width: min(1200px, 100%); margin: auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; color: #ead3ad; }
h1, h2, h3 { font-family: Georgia, serif; line-height: 1.12; font-weight: 500; }
h1 { max-width: 16ch; font-size: clamp(2.6rem, 6vw, 5.4rem); margin: .4rem 0 1.2rem; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.lead { font-size: clamp(1.15rem, 2vw, 1.5rem); max-width: 62ch; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .75rem 1.15rem; border: 1px solid var(--gold); background: var(--gold); color: #111; text-decoration: none; font-weight: 700; }
.button.secondary { background: transparent; color: inherit; }
.section { padding: 5rem 1.5rem; }
.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
[data-category-list] { list-style: none; padding-left: 0; }
.card { background: var(--white); border: 1px solid var(--line); min-width: 0; }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 1.2rem; }
.card h3 { margin-top: 0; }
.inquiry { background: var(--ink); color: white; }
.site-footer { background: #0d0d0d; color: white; }
.footer-inner { padding: 3rem 1.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: .5rem; }
.breadcrumbs { font-size: .95rem; color: var(--muted); }
.notice { padding: 1rem; border-left: 4px solid var(--gold); background: #fff9e9; }
@media (max-width: 820px) {
  .nav { flex-wrap: wrap; gap: .75rem; padding-block: .8rem; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: .3rem; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  body { font-size: 1rem; }
  .hero { min-height: 68vh; padding-top: 5rem; }
  .grid, .footer-inner { grid-template-columns: 1fr; }
  .nav-links { gap: 1rem; }
}
