:root {
  --bg: #1a130d;
  --paper: #fff4dd;
  --ink: #21160d;
  --muted: #73563b;
  --line: rgba(56, 31, 12, .16);
  --orange: #f06c13;
  --red: #b52613;
  --yellow: #ffd33d;
  --green: #53a318;
  --black: #11100d;
  --sand: #e9b15e;
  --cream: #fff8ea;
  --shadow: 0 26px 70px rgba(22, 12, 4, .26);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 4%, rgba(255, 211, 61, .34), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(240, 108, 19, .28), transparent 24%),
    linear-gradient(180deg, #fff0c9 0%, #f2c16f 46%, #9f4b22 100%);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(115deg, transparent 0 38%, rgba(0,0,0,.04) 38% 39%, transparent 39% 100%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.14) 0 1px, transparent 1px);
  background-size: 260px 160px, 18px 18px, 24px 24px;
  mix-blend-mode: multiply;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .42;
  background: linear-gradient(90deg, rgba(0,0,0,.07), transparent 24%, transparent 76%, rgba(0,0,0,.08));
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(20,12,5,.96), rgba(82,35,11,.78) 45%, rgba(231,132,35,.18)),
    url("assets/hero-kulcsfigurak.jpg") center/cover no-repeat;
  filter: saturate(1.08) contrast(1.08);
}
.site-header::after {
  content: "";
  position: absolute;
  left: -12vw;
  right: -12vw;
  bottom: -88px;
  height: 230px;
  background: linear-gradient(180deg, #d48637, #8e3f1a);
  clip-path: polygon(0 48%, 9% 40%, 18% 51%, 31% 31%, 46% 57%, 62% 35%, 80% 55%, 100% 39%, 100% 100%, 0 100%);
  z-index: -1;
  box-shadow: 0 -20px 45px rgba(70,32,8,.28);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 1000; letter-spacing: .02em; color: #fff; text-shadow: 0 3px 14px rgba(0,0,0,.4); }
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--orange) 54%, var(--green));
  color: #15100a; font-weight: 1000;
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
  transform: rotate(-4deg);
}
.brand-mark.small { width: 38px; height: 38px; border-radius: 12px; font-size: 13px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  border: 1px solid transparent;
}
.nav-links a:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18); color: #fff; }
.nav-toggle { display: none; border: 0; background: var(--yellow); color: #15100a; border-radius: 14px; width: 44px; height: 44px; font-size: 22px; font-weight: 1000; }

.hero {
  width: min(1160px, calc(100% - 40px));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 44px;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 1000;
  color: var(--yellow);
}
h1, h2, h3 { line-height: 1.04; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 92px); letter-spacing: -.065em; max-width: 860px; text-shadow: 0 18px 50px rgba(0,0,0,.55); }
h2 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -.047em; }
h3 { font-size: 25px; letter-spacing: -.02em; }
.lead { font-size: clamp(18px, 2vw, 23px); color: rgba(255,255,255,.82); max-width: 690px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 54px; padding: 0 24px; border-radius: 999px;
  font-weight: 1000; box-shadow: 0 14px 36px rgba(0,0,0,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.btn.primary { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: #15100a; }
.btn.secondary { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 680px; }
.hero-stats div { background: rgba(15,10,5,.52); border: 1px solid rgba(255,255,255,.18); border-radius: 20px; padding: 16px; backdrop-filter: blur(8px); }
.hero-stats strong { display: block; font-size: 29px; line-height: 1; color: var(--yellow); }
.hero-stats span { display: block; color: rgba(255,255,255,.76); font-weight: 800; font-size: 13px; margin-top: 6px; }
.hero-photo { position: relative; }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 38px;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--green));
  transform: rotate(-2deg);
  box-shadow: 0 36px 80px rgba(0,0,0,.42);
}
.hero-photo img {
  position: relative;
  border-radius: 30px;
  border: 6px solid rgba(255,248,234,.95);
  transform: rotate(1.2deg);
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
}

.section { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 96px 0; }
.section-heading { max-width: 840px; margin-bottom: 34px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section:not(.dark-strip) .eyebrow { color: var(--red); }
.grid { display: grid; gap: 24px; }
.grid.two { grid-template-columns: 1.1fr .9fr; }
.align-center { align-items: center; }
.card, .person-card, .spec-card, .follow-card {
  background: rgba(255,248,234,.86); border: 1px solid rgba(255,255,255,.42); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.card.big { padding: 38px; }
.card p, .person-card p, .spec-card p, .feature-copy p { color: var(--muted); }
.stamp-card { position: relative; overflow: hidden; }
.stamp-card::after {
  content: "SAHARA 2028";
  position: absolute;
  right: -18px;
  bottom: 26px;
  transform: rotate(-11deg);
  border: 4px solid rgba(181,38,19,.18);
  color: rgba(181,38,19,.18);
  font-size: 36px;
  font-weight: 1000;
  letter-spacing: .06em;
  padding: 6px 16px;
  border-radius: 14px;
}
.card.accent { background: linear-gradient(145deg, #1d140e, #3b1b0d 58%, #7a2d11); color: #fff; }
.card.accent p { color: rgba(255,255,255,.78); }
.map-card { position: relative; overflow: hidden; }
.map-card::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 170px; height: 170px;
  border: 18px solid rgba(255,211,61,.18);
  border-radius: 50%;
}
.dark-strip { width: 100%; max-width: none; padding: 22px 0; background: #11100d; color: #fff; overflow: hidden; border-top: 5px solid var(--orange); border-bottom: 5px solid var(--green); }
.marquee { width: min(1160px, calc(100% - 40px)); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.marquee span { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 9px 14px; font-weight: 1000; color: var(--yellow); background: rgba(255,255,255,.05); }
.photo-feature { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 38px; }
.feature-photo img { border-radius: 34px; border: 7px solid var(--cream); box-shadow: var(--shadow); transform: rotate(-1.1deg); }
.feature-copy { background: rgba(255,248,234,.82); border-radius: 34px; padding: clamp(28px, 5vw, 48px); box-shadow: var(--shadow); }
.team-grid { grid-template-columns: repeat(2, 1fr); }
.person-card { position: relative; overflow: hidden; }
.person-card::after { content: ""; position: absolute; right: -30px; top: -30px; width: 150px; height: 150px; border-radius: 50%; background: rgba(240,108,19,.16); }
.avatar { width: 76px; height: 76px; border-radius: 24px; background: linear-gradient(135deg, var(--yellow), var(--orange) 58%, var(--green)); display: grid; place-items: center; color: #15100a; font-weight: 1000; font-size: 38px; margin-bottom: 22px; border: 3px solid rgba(255,255,255,.75); transform: rotate(-4deg); }
.role { font-weight: 1000; color: #35700c !important; }
.car-section { background: transparent; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 800; color: #5c4028; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 14px; }
.car-card { display: grid; gap: 18px; }
.car-card > img { border-radius: 30px; border: 7px solid var(--cream); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.spec-card { background: rgba(255,248,234,.94); }
.spec-card dl { margin: 24px 0 0; display: grid; gap: 12px; }
.spec-card dl div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px dashed rgba(56,31,12,.22); padding-bottom: 12px; }
dt { color: var(--muted); font-weight: 900; }
dd { margin: 0; font-weight: 1000; text-align: right; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps article { background: rgba(255,248,234,.88); border: 1px solid rgba(255,255,255,.45); border-radius: 24px; padding: 24px; box-shadow: 0 16px 42px rgba(80,38,12,.13); }
.steps span { display: inline-block; font-weight: 1000; color: var(--red); margin-bottom: 16px; }
.steps p { color: var(--muted); }
.quote-section { padding: 54px 0; }
blockquote { margin: 0; background: linear-gradient(135deg, #16110d, #44220f 55%, #933913); color: #fff; border-radius: 34px; padding: clamp(34px, 6vw, 70px); font-size: clamp(28px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; font-weight: 1000; box-shadow: var(--shadow); border: 3px solid rgba(255,211,61,.22); }
.gallery { padding-top: 82px; }
.gallery-grid { display: grid; grid-template-columns: 1.05fr .8fr .8fr; gap: 18px; align-items: stretch; }
.gallery-grid img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; border-radius: 26px; border: 6px solid var(--cream); box-shadow: var(--shadow); }
.gallery-grid img:first-child { grid-row: span 2; }
.follow-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; background: linear-gradient(135deg, rgba(20,16,12,.92), rgba(95,39,12,.88)), url("assets/qr-plakat.jpg") center/cover no-repeat; color: #fff; border: 3px solid rgba(255,211,61,.24); }
.follow-card p { color: rgba(255,255,255,.78); }
.footer { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 54px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: rgba(255,255,255,.76); border-top: 1px solid rgba(255,255,255,.2); }
.footer div { display: flex; align-items: center; gap: 12px; font-weight: 900; color: #fff; }

@media (max-width: 900px) {
  .nav { position: relative; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; background: rgba(20,12,5,.96); border: 1px solid rgba(255,255,255,.18); border-radius: 22px; padding: 10px; box-shadow: var(--shadow); z-index: 10; }
  .nav-links.open { display: grid; }
  .hero, .grid.two, .team-grid, .follow-card, .photo-feature { grid-template-columns: 1fr; }
  .hero { margin-top: 24px; }
  .hero-photo { order: -1; }
  .hero-stats, .steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img:first-child { grid-row: auto; }
}
@media (max-width: 560px) {
  .section { padding: 66px 0; }
  .hero-stats, .steps { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
  .card, .person-card, .spec-card, .follow-card { padding: 24px; }
  .hero-photo::before { inset: -10px; border-radius: 28px; }
  .hero-photo img { border-width: 4px; border-radius: 22px; }
}
