/* ============================================================
   Bringázol¿ — Abda
   ============================================================ */

:root {
  --bg:        #0b0b0c;
  --bg-2:      #121214;
  --ink:       #f2efe9;
  --ink-dim:   #8d8a85;
  --accent:    #ff5c1a;
  --line:      rgba(242,239,233,.14);
  --line-soft: rgba(242,239,233,.07);

  --display: 'Anton', Impact, sans-serif;
  --body:    'Archivo', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --pad: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.locked { overflow: hidden; }

/* Csak képernyőolvasónak és keresőnek — vizuálisan nem látszik,
   de a tartalom ott van a DOM-ban (nem display:none, azt a Google
   leértékelheti). */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: grid; place-items: center;
}
.preloader.done { pointer-events: none; }
.preloader.done .pre-inner { opacity: 0; transform: translateY(-16px); }
.preloader.done .pre-curtain { transform: scaleY(0); }

.pre-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  transition: opacity .45s var(--ease), transform .6s var(--ease);
}
.pre-mark svg { width: 68px; height: 68px; }
.pre-mark circle, .pre-mark path {
  fill: none; stroke: var(--accent); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
.pre-wheel {
  stroke-dasharray: 63; stroke-dashoffset: 63;
  animation: draw .9s var(--ease-out) forwards;
}
.pre-mark circle:nth-of-type(2) { animation-delay: .12s; }
.pre-frame {
  stroke-dasharray: 160; stroke-dashoffset: 160;
  animation: draw 1s var(--ease-out) .2s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.pre-count {
  font-family: var(--mono); font-size: .8rem;
  color: var(--ink-dim); letter-spacing: .1em;
}
.pre-count i { font-style: normal; opacity: .5; }

.pre-curtain {
  position: absolute; inset: 0;
  background: var(--bg);
  transform-origin: top;
  transition: transform .8s var(--ease-out) .15s;
}

/* ============ CURSOR ============ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 900;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
  display: none;
  mix-blend-mode: normal;
}
.cursor.on { display: block; }
.cursor.big {
  width: 76px; height: 76px;
  background: var(--accent);
}
.cursor-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .06em; color: #fff;
  opacity: 0; transition: opacity .25s;
  white-space: nowrap;
}
.cursor.big .cursor-label { opacity: 1; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: center; gap: clamp(16px, 4vw, 48px);
  padding: 18px var(--pad);
  transition: transform .45s var(--ease), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(11,11,12,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav.hide { transform: translateY(-110%); }

.nav-mark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 1.15rem;
  letter-spacing: .04em; margin-right: auto;
}
.nav-mark img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.nav-mark i { color: var(--accent); font-style: normal; }

.nav-links { display: flex; gap: clamp(18px, 2.6vw, 36px); }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .01em;
  position: relative; padding-bottom: 2px;
  display: flex; align-items: baseline; gap: 7px;
}
.nav-links em {
  font-family: var(--mono); font-size: .62rem;
  font-style: normal; color: var(--accent); opacity: .8;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font-family: var(--mono); font-size: .74rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px;
  transition: background .35s var(--ease), color .35s, border-color .35s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav-burger span {
  display: block; width: 24px; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav-burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

/* ---- mobile overlay ---- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 550;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px; padding: 0 var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-out);
  pointer-events: none;
}
.menu-overlay.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.menu-overlay a {
  font-family: var(--display); font-size: clamp(2.4rem, 11vw, 4.2rem);
  line-height: 1.06; letter-spacing: .01em;
  display: flex; align-items: baseline; gap: 14px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .5s var(--ease), transform .6s var(--ease-out);
}
.menu-overlay.open a { opacity: 1; transform: none; }
.menu-overlay.open a:nth-child(1) { transition-delay: .16s; }
.menu-overlay.open a:nth-child(2) { transition-delay: .22s; }
.menu-overlay.open a:nth-child(3) { transition-delay: .28s; }
.menu-overlay.open a:nth-child(4) { transition-delay: .34s; }
.menu-overlay em {
  font-family: var(--mono); font-size: .8rem;
  font-style: normal; color: var(--accent);
}
.menu-foot {
  margin-top: 44px; display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono); font-size: .82rem; color: var(--ink-dim);
  opacity: 0; transition: opacity .5s .42s;
}
.menu-overlay.open .menu-foot { opacity: 1; }
.menu-foot a {
  font-family: var(--mono); font-size: .82rem;
  transform: none; opacity: 1;
}

/* ============ HERO ============ */
/* A hero magasabb a képernyőnél: a belső .hero-stage sticky, így amíg a
   plusz magasságot végiggörgeted, a bringa átgurul a képernyőn. */
.hero { position: relative; height: 190svh; }
.hero-stage {
  position: sticky; top: 0;
  height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(24px, 4vh, 48px);
  overflow: hidden;
}

/* ---- görgetésre guruló bringa ---- */
.ride {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ride-road {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 2px; background: var(--line-soft);
}
.road-ink {
  position: absolute; left: 0; top: 0; height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(255,92,26,0) 0%, rgba(255,92,26,.55) 45%, var(--accent) 100%);
  box-shadow: 0 0 22px rgba(255, 92, 26, .55);
}
.ride-bike {
  position: absolute;
  /* A kerekek az út vonalán (50%) állnak, a kép teteje ehhez képest
     a szélesség 0.5909-szeresével van feljebb (0.625 képarány *
     0.9454 talajvonal). Alacsony, széles ablakon ez felkúszna a
     fejléc mögé, ezért a harmadik tag korlátozza a szélességet:
     a bringa teteje sosem megy a felső 96 px-be. */
  --rb-w: min(48vw, 640px, calc((50svh - 96px) * 1.692));
  width: var(--rb-w);
  aspect-ratio: 1400 / 875;
  top: 50%;
  margin-top: calc(var(--rb-w) * -0.5909);
  left: 0;
  will-change: transform;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .55));
}
.rb { position: absolute; inset: 0; width: 100%; height: 100%; }
.rb-wf { transform-origin: 77.027% 65.568%; }
.rb-wr { transform-origin: 22.973% 65.568%; }
.rb-cr { transform-origin: 45.135% 71.189%; }
.ride-bike, .rb { backface-visibility: hidden; }

@media (prefers-reduced-motion: reduce) {
  .hero { height: 100svh; }
  .ride-bike { transform: translate3d(22vw, 0, 0); }
  .road-ink { width: 38%; }
}
.hero-media {
  position: absolute; inset: -12% 0 -12%; z-index: -2;
  will-change: transform;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(.62);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,.72) 0%, rgba(11,11,12,.28) 34%, rgba(11,11,12,.94) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(255,92,26,.18), transparent 62%);
}

.hero-type { margin-bottom: clamp(28px, 6vh, 60px); }

.giant {
  font-family: var(--display);
  font-size: clamp(3.6rem, 17.5vw, 15rem);
  line-height: .84;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.giant .q { color: var(--accent); font-style: normal; }

.line { display: block; overflow: hidden; }
.line-in {
  display: block;
  transform: translateY(105%);
  transition: transform 1.05s var(--ease-out);
}
.ready .line-in { transform: none; }
.ready .line:nth-child(2) .line-in { transition-delay: .1s; }
.hero-sub .line-in  { transition-delay: .3s; }
.hero-desc .line-in { transition-delay: .38s; }

.hero-meta {
  margin-top: clamp(18px, 3vh, 32px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 56px); align-items: end;
  max-width: 1100px;
}
.hero-sub {
  font-family: var(--mono); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  overflow: hidden;
}
.hero-desc {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--ink-dim); max-width: 46ch;
  overflow: hidden;
}

.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-top: clamp(18px, 3vh, 30px);
  border-top: 1px solid var(--line-soft);
}

.scroll-hint {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim);
}
.hint-line {
  display: block; width: 46px; height: 1px; background: var(--line);
  position: relative; overflow: hidden;
}
.hint-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  animation: sweep 2.1s var(--ease) infinite;
}
@keyframes sweep {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.hero-stats { display: flex; gap: clamp(22px, 4vw, 52px); }
.hero-stats div { display: flex; flex-direction: column; gap: 1px; }
.hero-stats b {
  font-family: var(--display); font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1; font-weight: 400;
}
.hero-stats em {
  font-family: var(--mono); font-size: .6rem; font-style: normal;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim);
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden; padding: 16px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; align-items: center; gap: 28px;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee-track span {
  font-family: var(--display); font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  text-transform: uppercase; letter-spacing: .01em; white-space: nowrap;
}
.marquee-track i { color: var(--accent); font-size: .6rem; font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============ SECTION HEAD ============ */
.sec-num {
  display: block;
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.sec-title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 6.6vw, 5.6rem);
  line-height: .92; letter-spacing: -.01em;
  text-transform: uppercase; font-weight: 400;
}
.sec-lead {
  margin-top: 20px; max-width: 44ch;
  color: var(--ink-dim); font-size: clamp(.94rem, 1.2vw, 1.05rem);
}

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .95s var(--ease-out);
}

/* ============ SERVICES ============ */
.services {
  position: relative;
  padding: clamp(72px, 12vh, 150px) var(--pad);
}
.sec-head { margin-bottom: clamp(40px, 7vh, 76px); }

.svc-list { border-top: 1px solid var(--line-soft); }
.svc {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1.15fr) minmax(0, 1.5fr) auto;
  gap: clamp(12px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(20px, 3.2vh, 34px) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left .5s var(--ease-out), border-color .4s;
  cursor: default;
}
.svc::before {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.svc:hover::before { transform: scaleX(1); }
.svc:hover { padding-left: clamp(8px, 1.6vw, 22px); }

.svc em {
  font-family: var(--mono); font-size: .68rem; font-style: normal;
  color: var(--accent); letter-spacing: .08em;
}
.svc h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1; text-transform: uppercase; letter-spacing: .005em;
}
.svc p { color: var(--ink-dim); font-size: .9rem; }
.svc b {
  font-family: var(--mono); font-size: .82rem; font-weight: 500;
  white-space: nowrap; color: var(--ink);
}

/* hover image reveal (desktop only) */
.svc-hover {
  position: fixed; top: 0; left: 0; z-index: 400;
  width: 300px; height: 380px;
  pointer-events: none; overflow: hidden; border-radius: 4px;
  opacity: 0; transform: translate(-50%, -50%) scale(.9);
  transition: opacity .4s var(--ease), transform .55s var(--ease-out);
  display: none;
}
.svc-hover.on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.svc-hover img { width: 100%; height: 100%; object-fit: cover; }

/* ============ ABOUT ============ */
.about {
  padding: clamp(60px, 10vh, 130px) var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 90px); align-items: center;
}
.about-media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-media img {
  width: 100%; height: 112%; object-fit: cover;
  filter: grayscale(.85) contrast(1.08);
  transition: filter .7s var(--ease);
  will-change: transform;
}
.about-media:hover img { filter: grayscale(0) contrast(1); }
.media-tag {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--mono); font-size: .64rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 6px 11px;
}

.about-text p {
  margin-top: 20px; color: var(--ink-dim);
  font-size: clamp(.95rem, 1.25vw, 1.06rem); max-width: 46ch;
}
.about-points { margin-top: 30px; display: flex; flex-direction: column; gap: 11px; }
.about-points li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: .94rem; padding-bottom: 11px;
  border-bottom: 1px solid var(--line-soft);
}
.about-points span { color: var(--accent); font-family: var(--mono); font-size: .8rem; }

.btn-line {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 34px; padding-bottom: 7px;
  font-family: var(--mono); font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition: gap .4s var(--ease), border-color .4s, color .3s;
}
.btn-line svg { width: 17px; height: 17px; }
.btn-line:hover { gap: 20px; border-color: var(--accent); color: var(--accent); }

/* ============ KÉSZLET ============ */
.gallery { padding: clamp(72px, 12vh, 150px) var(--pad) clamp(56px, 9vh, 110px); }

.stock-call { margin-top: 26px; }
.stock-call svg { width: 17px; height: 17px; }

.stock {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}
.stock-state {
  grid-column: 1 / -1;
  font-family: var(--mono); font-size: .78rem;
  color: var(--ink-dim); padding: 30px 0;
}
.stock-item {
  overflow: hidden;
  background: var(--bg-2);
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .6s var(--ease-out);
}
.stock-item.in { opacity: 1; transform: none; }
.stock-item img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  cursor: zoom-in;
  filter: grayscale(.55) brightness(.94);
  transition: transform .8s var(--ease-out), filter .6s var(--ease);
  user-select: none; -webkit-user-drag: none;
}
.stock-item:hover img { transform: scale(1.04); filter: none; }

.stock-cta {
  margin-top: clamp(34px, 6vh, 64px);
  padding-top: clamp(26px, 4vh, 44px);
  border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.stock-cta p { color: var(--ink-dim); font-size: .95rem; }
.stock-cta .btn-solid { margin-top: 0; }

/* ============ KÉPNAGYÍTÓ ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(11, 11, 12, .94);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0; transition: opacity .26s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.on { opacity: 1; }
.lightbox img {
  max-width: min(100%, 760px); max-height: 74vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: clamp(12px, 3vw, 28px); right: clamp(12px, 3vw, 28px);
  width: 44px; height: 44px; line-height: 1;
  font-size: 1.9rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 50%;
}
.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }
.lightbox .btn-solid { margin-top: 0; align-self: center; }

/* ============ QUOTE ============ */
.quote {
  padding: clamp(60px, 11vh, 140px) var(--pad);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
/* A valódi értékelés hosszabb a korábbi helykitöltőnél: szélesebb
   sáv + kisebb betű, hogy ne egy magas, keskeny oszlop legyen.
   A text-wrap: balance egyenletes hosszúságúra osztja a sorokat. */
.quote blockquote { max-width: min(92vw, 40ch); margin: 0 auto; }
.quote blockquote p {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.15rem, 3vw, 2.2rem);
  line-height: 1.16; text-transform: uppercase; letter-spacing: -.005em;
  text-wrap: balance;
}
.quote cite {
  display: block; margin-top: 22px;
  font-family: var(--mono); font-size: .7rem; font-style: normal;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.quote-note {
  margin-top: 34px;
  font-family: var(--mono); font-size: .64rem;
  color: var(--ink-dim); opacity: .55;
}
.quote-note a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity .25s;
}
.quote-note a:hover { opacity: .7; }

/* ============ CONTACT ============ */
.contact {
  padding: clamp(60px, 10vh, 130px) var(--pad) clamp(50px, 8vh, 100px);
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.contact-head { margin-bottom: clamp(36px, 6vh, 70px); }
.giant-sm { font-size: clamp(3rem, 13vw, 10rem); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 84px); align-items: start;
}

.big-link {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 16px; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left .45s var(--ease-out), border-color .4s;
}
.big-link:hover { padding-left: 12px; border-bottom-color: var(--accent); }
.big-link em {
  font-family: var(--mono); font-size: .64rem; font-style: normal;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.big-link span {
  font-size: clamp(1rem, 1.9vw, 1.35rem); font-weight: 500;
  word-break: break-word;
}

/* ---- form ---- */
.form { display: flex; flex-direction: column; gap: 4px; }
.hp { position: absolute; left: -9999px; }

.field { position: relative; padding-top: 22px; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  color: var(--ink); background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 9px 0; resize: vertical;
  transition: border-color .4s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--accent);
}
.field label {
  position: absolute; left: 0; top: 30px;
  font-size: 1rem; color: var(--ink-dim);
  pointer-events: none;
  transition: transform .35s var(--ease-out), font-size .35s var(--ease-out), color .3s;
  transform-origin: left;
}
.field label i { font-style: normal; opacity: .55; font-size: .84em; }
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-28px) scale(.72);
  color: var(--accent);
}

.btn-solid {
  align-self: flex-start; margin-top: 26px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase;
  transition: gap .4s var(--ease), transform .35s var(--ease), background .3s;
}
.btn-solid svg { width: 17px; height: 17px; }
.btn-solid:hover { gap: 20px; transform: translateY(-2px); background: #ff7038; }
.btn-solid:disabled { opacity: .55; pointer-events: none; }

.form-status {
  margin-top: 16px; min-height: 1.4em;
  font-family: var(--mono); font-size: .78rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .5s var(--ease-out);
}
.form-status.ok, .form-status.err { opacity: 1; transform: none; }
.form-status.ok  { color: #6fd08c; }
.form-status.err { color: #ff7a5c; }

.map {
  margin-top: clamp(38px, 6vh, 76px);
  aspect-ratio: 21 / 8; min-height: 260px;
  overflow: hidden; border: 1px solid var(--line-soft);
}
.map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(1) invert(.92) contrast(.88);
}

/* A térkép helye hozzájárulás előtt. A doboz mérete ugyanaz, mint a
   beágyazásé, így az elfogadás nem mozdítja el az oldal tartalmát. */
.consent-slot-ask {
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 26px var(--pad); text-align: center;
  background: var(--bg-2);
}
.consent-slot-ask p {
  max-width: 46ch; color: var(--ink-dim);
  font-size: .92rem; line-height: 1.55;
}
.consent-slot-ask strong { color: var(--ink); font-weight: 600; }
/* a .btn-solid align-self: flex-start-ot állít — itt középre kell */
.consent-slot-btn { margin-top: 0; align-self: center; }
.consent-slot-alt {
  font-family: var(--mono); font-size: .66rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-dim);
  border-bottom: 1px solid currentColor;
  transition: color .3s;
}
.consent-slot-alt:hover { color: var(--accent); }

/* ============ HOZZÁJÁRULÁSI SÁV ============ */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 940;
  padding: clamp(12px, 2vw, 22px);
  transform: translateY(110%);
  transition: transform .5s var(--ease-out);
}
.consent.on { transform: none; }

.consent-box {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center;
  gap: clamp(18px, 3vw, 40px); flex-wrap: wrap;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.8vw, 32px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}
.consent-text { flex: 1 1 340px; }
.consent-text h2 {
  font-family: var(--display); font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: .01em;
  margin-bottom: 8px;
}
.consent-text p {
  color: var(--ink-dim); font-size: .88rem; line-height: 1.55;
}
.consent-text strong { color: var(--ink); font-weight: 600; }

.consent-links { display: flex; gap: 18px; margin-top: 10px; flex-wrap: wrap; }
.consent-links a {
  font-family: var(--mono); font-size: .66rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 92, 26, .4);
  transition: border-color .3s;
}
.consent-links a:hover { border-bottom-color: var(--accent); }

/* A két gomb szándékosan azonos méretű és súlyú: az elutasításnak
   ugyanolyan könnyűnek kell lennie, mint az elfogadásnak, különben
   a hozzájárulás nem önkéntes, tehát érvénytelen. */
.consent-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  flex: 0 1 auto;
}
.consent-btn {
  font: inherit; font-size: .84rem; font-weight: 600;
  padding: 13px 22px; border-radius: 999px;
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: background .3s, color .3s, border-color .3s;
}
.consent-yes { background: var(--accent); border-color: var(--accent); color: #fff; }
.consent-yes:hover { background: #ff7038; border-color: #ff7038; }
.consent-no { background: transparent; color: var(--ink); }
.consent-no:hover { border-color: var(--ink); background: rgba(242,239,233,.06); }

@media (max-width: 640px) {
  .consent-actions { width: 100%; }
  .consent-btn { flex: 1 1 0; padding: 14px 12px; }
}

/* ============ FOOTER ============ */
.foot { padding: clamp(40px, 6vh, 72px) var(--pad) 26px; }
.foot-top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-bottom: 26px; border-bottom: 1px solid var(--line-soft);
}
.foot-mark {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 3.4rem);
  text-transform: uppercase; letter-spacing: .01em;
}
.foot-mark i { color: var(--accent); font-style: normal; }
.foot-top p { font-family: var(--mono); font-size: .72rem; color: var(--ink-dim); }
.foot-bot {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 22px;
  font-family: var(--mono); font-size: .68rem; color: var(--ink-dim);
}
.foot-bot a:hover { color: var(--accent); }
.foot-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.foot-links > a, .foot-consent {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .06em; color: var(--ink-dim);
  transition: color .3s;
}
.foot-links > a:hover, .foot-consent:hover { color: var(--accent); }
/* Készítő hivatkozás — aláhúzva, hogy linknek látszódjon a lábléc
   többi, aláhúzás nélküli hivatkozása mellett is. */
.foot-credit { text-decoration: underline; text-underline-offset: 3px; }

/* A készletkezelő bejárata. Csak a tulajdonosnak szól, ezért halkabb
   a többi láblécelemnél — de nem rejtett, hogy telefonon is meglegyen. */
.foot-links > a.foot-admin { opacity: .45; transition: opacity .3s, color .3s; }
.foot-links > a.foot-admin:hover { opacity: 1; color: var(--accent); }

/* Kötelező jelölőnégyzet a kapcsolati űrlapon */
.form-consent {
  display: grid; grid-template-columns: auto 1fr;
  gap: 11px; align-items: start;
  margin: 20px 0 6px;
  font-size: .82rem; line-height: 1.5; color: var(--ink-dim);
  cursor: pointer;
}
.form-consent input {
  width: 17px; height: 17px; margin-top: 2px;
  accent-color: var(--accent); cursor: pointer;
}
.form-consent a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s, color .3s;
}
.form-consent a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.form-consent input:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 3 / 2; max-height: 460px; }
  .hero-meta { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .svc {
    grid-template-columns: 40px 1fr auto;
    grid-template-areas: "num title price" ". desc desc";
    row-gap: 6px;
  }
  .svc em  { grid-area: num; }
  .svc h3  { grid-area: title; }
  .svc b   { grid-area: price; }
  .svc p   { grid-area: desc; }

  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 22px; }
  .hero-stats { width: 100%; justify-content: space-between; gap: 12px; }
  .big-link { grid-template-columns: 1fr; gap: 5px; }
  .map { aspect-ratio: 4 / 3; }

  .hero { height: 165svh; }
  .ride-road, .ride-bike { top: 36%; }
  /* Csak a szélességet hangoljuk — a width és a margin-top az
     alapszabályban ebből a változóból számol, így a kettő nem
     tud elcsúszni egymástól. Az út itt 36%-nál van, a korlát
     ehhez igazodik. */
  .ride-bike { --rb-w: min(78vw, 420px, calc((36svh - 88px) * 1.692)); }
}

@media (max-width: 640px) {
  .stock { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Nagyon alacsony ablak (fekvő telefon). A fenti 860-as blokk után
   kell állnia, különben az felülírja. 36%-nál az út annyira közel
   kerülne a fejléchez, hogy a korlát bélyeg méretűre zsugorítaná a
   bringát — inkább az utat visszük lejjebb. */
@media (max-height: 520px) and (orientation: landscape) {
  .ride-road, .ride-bike { top: 60%; }
  .ride-bike { --rb-w: min(46vw, 420px, calc((60svh - 88px) * 1.692)); }
  /* A címsor 17.5vw-je fekvőben magasabb, mint az ablak — a három
     sor kilógott a képernyő tetején. Itt a magassághoz kötjük. */
  .giant { font-size: clamp(2rem, 10.5svh, 5rem); }
  .hero-type { margin-bottom: 14px; }
  /* A "Görgess" nyíl díszítés — fekvőben ez a hely a címsoré. */
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-stats b { font-size: 1.35rem; }
  .quote blockquote { max-width: none; }
  .stock-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* pointer-coarse: no custom cursor / hover image */
@media (hover: hover) and (pointer: fine) {
  .svc-hover { display: block; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .line-in { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .cursor { display: none !important; }
}
