/* Huszár Falat — modern, decorated, sans-serif */

:root {
  --ink: #14110F;
  --text: #2A2723;
  --muted: #6F6A62;
  --line: #E2DDD3;
  --line-strong: #C8C2B5;
  --bg: #FBFAF7;
  --bg-2: #F4F1EA;
  --card: #FFFFFF;
  --accent: #7A1F2A;       /* deep wine */
  --accent-soft: #9C3340;
  --accent-2: #1F3A38;     /* dark teal */
  --gold: #B89968;
  --hu-green: #2E7B47;
  --hu-red: #CE2939;
  --radius: 0px;
  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }

/* Type */
h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h2 { font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* Központozott szakaszcímek: vonal mindkét oldalon, hogy a szöveg ne tolódjon el */
.section-head .eyebrow::after,
.about-textonly .eyebrow::after,
.jobs .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.script, .script-name, .script-accent { font-family: 'Inter', sans-serif; }

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand-mark {
  width: 42px; height: 66px;
  display: flex; align-items: center; justify-content: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name .script-name {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-name .tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}
.nav { display: flex; align-items: center; gap: 30px; }

/* Fejléc jobb oldal: menü + nyelvváltó */
.header-right { display: flex; align-items: center; gap: 24px; }

/* Nyelvváltó (HU / EN) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-switch button {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 4px 2px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { color: var(--accent); }
.lang-div {
  width: 1px;
  height: 13px;
  background: var(--line);
}
.nav a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { transform: scaleX(1); }

/* Wolt rendelés gomb a menüben */
.nav a.nav-wolt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #00C2E8;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  transition: background 0.2s, transform 0.2s;
}
.nav a.nav-wolt::after { display: none; }
.nav a.nav-wolt:hover {
  background: #00a9cc;
  color: #fff;
  transform: translateY(-1px);
}

/* === HERO — eredeti elrendezés, új háttérkép === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/photos/hero-lany.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.78);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0.35) 0%, rgba(20,17,15,0.15) 35%, rgba(20,17,15,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px 100px;
  color: white;
  max-width: 1100px;
}
.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: white;
  text-transform: uppercase;
}
.hero-content h1 .alt {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 28px;
}

/* Hero szöveges logó (eredeti script wordmark, fehér változat) */
.hero-logo {
  width: clamp(300px, 46vw, 600px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
}
.hero-tagline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-top: 30px;
}

/* vékony fehér belső keret a hero-n belül */
.hero-frame {
  position: absolute;
  inset: 28px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.7);
  pointer-events: none;
}

/* === Sections === */
.section {
  padding: 130px 40px;
  position: relative;
}
.section-narrow { max-width: 1000px; margin: 0 auto; }
.section-wide { max-width: var(--max); margin: 0 auto; }

.cream-bg { background: var(--bg); }
.teal-bg { background: var(--bg-2); }
.ink-bg { background: var(--ink); color: #ECE7DC; }
.kraft-bg { background: var(--bg); }

.section-head-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.section-head {
  text-align: center;
  position: relative;
}
.section-head .eyebrow { display: inline-flex; }
.section-head h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 16px;
  text-transform: uppercase;
}
.section-head .lead {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  max-width: 640px;
  margin: 18px auto 0;
  line-height: 1.65;
}

/* === RÓLUNK — csak szöveg, kép és videó nélkül === */
.about-textonly {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.about-textonly .eyebrow { display: inline-flex; }
.about-textonly h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 16px 0 48px;
  line-height: 1.05;
}
.about-textonly h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 24px auto 0;
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 56px;
  text-align: left;
}
.about-cols p {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--text);
}
.about-cols p:first-child {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.7;
}

.about-single {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.about-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 500;
  text-align: center;
}
.about-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-divider span {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.about-body {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
  width: 100%;
}

/* === SHOPS === */
.shops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 60px;
}
.shop-card {
  background: var(--card);
  border: 1px solid var(--line);
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.shop-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(122,31,42,0.25);
}
.shop-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.shop-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 32px 36px 0;
  line-height: 1.1;
}
.shop-card .addr {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  padding: 14px 36px 24px;
  line-height: 1.65;
}
.shop-map {
  height: 240px;
  border-top: 1px solid var(--line);
  background: #fafafa;
}
.shop-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(1) contrast(0.95);
}

/* === HOURS — Vasárnap szintén fehér === */
.hours {
  background: var(--ink);
  color: #ECE7DC;
  padding: 60px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hours::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}
.hours-title h3 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: white;
  margin: 10px 0 0;
}
.hours-title .eyebrow { color: var(--gold); }
.hours-title .eyebrow::before { background: var(--gold); }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 50px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}
.hours-row .day {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.hours-row .time {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}
/* Vasárnap Zárva is fehér (override) */
.hours-row .time.closed { color: white; font-weight: 600; }

/* === V-BLEED — Frissen, naponta === */
.v-bleed {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
  background: var(--ink);
}
.v-bleed-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(0.92) contrast(1.04);
}
.v-bleed-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0.32) 0%, rgba(20,17,15,0.12) 50%, rgba(20,17,15,0.5) 100%);
}
.v-bleed-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: white;
  text-align: center;
  padding: 0 24px;
}
.v-bleed-quote .script-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  text-transform: uppercase;
  line-height: 1;
}
.v-bleed-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.v-bleed-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  font-weight: 500;
}

/* === CATEGORIES (Termékek) === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(20,17,15,0.25);
  border-color: var(--accent);
}
.cat-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f0ece4;
}
.cat-img > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.cat-card:hover .cat-img > img {
  transform: scale(1.06);
  filter: brightness(0.7);
}
.cat-img .cat-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(20,17,15,0) 0%, rgba(20,17,15,0.55) 55%, rgba(20,17,15,0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.cat-img .cat-label .name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: white;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* === V-DUO (Huszár Falat katonák) === */
.v-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.v-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
}
.v-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* === V-SPLIT (Vákuumcsomagolás) === */
.v-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--ink);
  color: white;
  min-height: 480px;
}
.v-split-media { position: relative; overflow: hidden; }
.v-split-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(0.85);
}
.v-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--ink);
  position: relative;
}
.v-split-text::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 60px;
  background: var(--accent);
  transform: translateY(-50%);
}
.v-split-text .eyebrow { color: var(--gold); margin-bottom: 18px; }
.v-split-text .eyebrow::before { background: var(--gold); }
.v-split-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 22px;
  line-height: 1.05;
}
.v-split-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
}
.v-split-text p strong { color: white; font-weight: 600; }

/* === V-WOLT (Házhozszállítás) === */
.v-wolt {
  background: var(--bg-2);
  padding: 110px 32px;
  position: relative;
}
.v-wolt-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.v-wolt-text { padding-left: 28px; position: relative; }
.v-wolt-text::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 2px; height: calc(100% - 12px);
  background: var(--accent);
}
.v-wolt-text .eyebrow { margin-bottom: 18px; display: inline-flex; }
.v-wolt-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.05;
}
.v-wolt-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}
.v-wolt-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 40px 70px -30px rgba(20,17,15,0.3);
}
.v-wolt-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* === JOBS === */
.jobs {
  background: var(--bg-2);
  padding: 130px 40px;
  position: relative;
}
.jobs-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.jobs .eyebrow { display: inline-flex; }
.jobs h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
  margin: 16px 0 18px;
}
.jobs h2 .script-accent {
  font-family: 'Inter', sans-serif;
  color: var(--accent);
  font-weight: 700;
}
.jobs p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.jobs-list {
  display: grid;
  gap: 0;
  text-align: left;
  margin: 40px 0 32px;
  border-top: 1px solid var(--line);
}
.job-row {
  background: transparent;
  color: var(--ink);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  cursor: pointer;
  transition: padding 0.25s, background 0.25s;
  border-bottom: 1px solid var(--line);
}
.job-row > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.job-row:hover {
  padding-left: 24px;
  padding-right: 12px;
  background: var(--card);
}
.job-row .pos {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.job-row .where {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.job-row .arrow {
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.25s;
}
.job-row:hover .arrow { transform: translateX(6px); }

.job-form {
  margin-top: 36px;
  padding: 44px 44px 36px;
  background: var(--card);
  border: 1px solid var(--line);
  text-align: left;
  position: relative;
}
.job-form::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 60px; height: 3px;
  background: var(--accent);
}
.form-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field-full { grid-column: 1 / -1; }
.job-form .field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.job-form .field input,
.job-form .field select,
.job-form .field textarea {
  width: 100%;
  height: 46px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
  line-height: 1.2;
  transition: border-color 0.2s, background 0.2s;
}
.job-form .field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%237A1F2A' stroke-width='1.6' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.job-form .field textarea {
  height: auto;
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}
.job-form .field input:focus,
.job-form .field select:focus,
.job-form .field textarea:focus {
  border-color: var(--accent);
  background: white;
}
.form-foot {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.form-hint {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.form-hint a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.form-success {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--accent-2);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* === FOOTER / Kapcsolat — fehér inverz huszár karakter + eredeti logó === */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 90px 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'Inter', sans-serif;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,30,58,0.5) 50%, transparent 100%);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 24px;
}
.footer-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-mark-large {
  width: 108px;
  height: 168px;
  background: transparent;
  border: 0;
  flex-shrink: 0;
}
.footer-mark-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.05);
}
.footer-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}
.footer-script {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  text-transform: uppercase;
  line-height: 1;
}
.footer-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.footer-tag-alt {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
  max-width: 380px;
}
.footer-socials { display: flex; gap: 8px; }
.foot-social {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.foot-social:hover {
  border-color: var(--accent);
  color: white;
  background: var(--accent);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.foot-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.foot-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: var(--accent);
}
.foot-line { display: flex; flex-direction: column; gap: 3px; }
.foot-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.foot-line a {
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.foot-line a:hover { border-bottom-color: var(--accent); color: var(--accent-soft); }
.foot-line .foot-mail {
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.foot-shop {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.foot-shop strong {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
}
.foot-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}
.foot-hours > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
.foot-hours > div span:last-child {
  color: white;
  font-weight: 500;
}
/* Vasárnap Zárva is fehér a footerben is */
.foot-hours .closed-row span:last-child { color: white; font-weight: 500; }

.footer-meta {
  max-width: 1320px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-meta .sep { color: rgba(255,255,255,0.25); }


.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cta:hover { background: white; color: var(--accent); }
.cta.dark { background: var(--ink); border-color: var(--ink); color: white; }
.cta.dark:hover { background: var(--accent); border-color: var(--accent); color: white; }
.cta.wolt {
  background: #00C2E8;
  border-color: #00C2E8;
  color: var(--ink);
  margin-top: 28px;
}
.cta.wolt:hover { background: var(--ink); border-color: var(--ink); color: #00C2E8; }

/* === Karrier — átmeneti verzió: középre igazított fekete e-mail gomb === */
.jobs-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.jobs-cta-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 48px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.jobs-cta-mail:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 560px) {
  .jobs-cta-mail { font-size: 15px; padding: 18px 26px; }
}

/* === Huszár Falat katonák — lépések === */
.katonak-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.katonak-steps > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.katonak-steps .step-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 4px 8px;
  border: 1px solid var(--accent);
}

/* === Job position tag (Diákmunka) === */
.pos-tag {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 9px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* === Responsive === */
@media (max-width: 1100px) {
  .nav { display: none; }
  .shops { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hours { grid-template-columns: 1fr; padding: 50px 36px; }
  .hours-grid { grid-template-columns: 1fr 1fr; gap: 18px 32px; }
  .v-split { grid-template-columns: 1fr; }
  .v-split-text { padding: 60px 36px; }
  .v-wolt-inner { grid-template-columns: 1fr; gap: 40px; }
  .v-wolt { padding: 80px 24px; }
  .v-duo { grid-template-columns: 1fr; gap: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .section { padding: 90px 32px; }
  .jobs { padding: 90px 32px; }
  .about-single { gap: 20px; }
  .about-lead { font-size: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 700px) {
  .header { padding: 14px 18px; }
  .nav { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hours-grid { grid-template-columns: 1fr; }
  .job-form { padding: 28px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { gap: 16px; }
  .footer-mark-large { width: 80px; height: 124px; }
  .footer { padding: 64px 24px 24px; }
}
