/* =========================================================
   Lámpa villamossági üzlet — design system
   Koncepció: "Lámpagyújtás a sötétben" — meleg fény sötét alapon
   ========================================================= */

:root {
  /* Paletta */
  --ink: #14110D;
  --ink-2: #100D0A;
  --panel: #1C1813;
  --panel-2: #241F18;
  --parchment: #F4ECDD;
  --tej: #FBF7EF;
  --filament: #F4B23E;
  --amber: #E08A2B;
  --brass: #B8975C;
  --brass-deep: #8A6D3A;
  --open: #4E7C59;
  --closed: #B5563F;
  --text-on-dark: #EFE6D6;
  --text-on-light: #2A231A;
  --muted-on-dark: rgba(239, 230, 214, 0.66);
  --muted-on-light: rgba(42, 35, 26, 0.66);
  --line-dark: rgba(184, 151, 92, 0.26);
  --line-light: rgba(138, 109, 58, 0.22);

  /* Tipográfia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Térköz / rács */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius-card: 16px;
  --radius-btn: 10px;
  --header-h: 72px;

  /* Mozgás */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px -24px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 14px 40px -22px rgba(20, 17, 13, 0.45);
}

/* ----------------------------- Alap ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-on-light);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.overline {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0 0.9rem;
}
.overline.brass { color: var(--brass-deep); }

.skip-link {
  position: absolute;
  left: 1rem; top: -120%;
  z-index: 200;
  background: var(--filament);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--filament);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Ikonok */
.ico { width: 22px; height: 22px; flex: none; }
.ico-sm { width: 17px; height: 17px; }
.ico-star { width: 22px; height: 22px; color: var(--filament); }

/* ----------------------------- Gombok ----------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text-on-light);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn .ico { width: 19px; height: 19px; }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1.05rem; }

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--filament), var(--amber));
  --btn-fg: #2A1B05;
  box-shadow: 0 10px 26px -10px rgba(244, 178, 62, 0.65);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(244, 178, 62, 0.8);
}

.btn-ghost {
  --btn-fg: var(--text-on-dark);
  border-color: var(--line-dark);
  background: rgba(244, 236, 221, 0.04);
}
.btn-ghost:hover {
  border-color: var(--brass);
  background: rgba(244, 178, 62, 0.10);
  transform: translateY(-2px);
}

.btn-outline {
  --btn-fg: var(--text-on-light);
  border-color: var(--brass);
}
.btn-outline:hover {
  background: rgba(184, 151, 92, 0.12);
  transform: translateY(-2px);
}

/* ----------------------------- Állapotjelző ----------------------------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted-on-dark);
}
.status-pill-lg { font-size: 0.95rem; }
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--muted-on-dark);
  flex: none;
}
.status-pill.is-open .status-dot {
  background: var(--open);
  box-shadow: 0 0 0 0 rgba(78, 124, 89, 0.6);
  animation: pulse 2.6s var(--ease) infinite;
}
.status-pill.is-open .status-text { color: var(--open); font-weight: 600; }
.status-pill.is-closed .status-dot { background: var(--closed); }
.status-pill.is-closed .status-text { color: var(--closed); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(78, 124, 89, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(78, 124, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 124, 89, 0); }
}

/* ----------------------------- Fejléc ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 17, 13, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  display: grid; place-items: center;
  filter: drop-shadow(0 0 10px rgba(244, 178, 62, 0.28));
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--parchment);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.nav a {
  color: var(--text-on-dark);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--filament);
  transition: width 0.25s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--filament); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.85rem; margin-left: 1rem; }
#status-pill-header { display: none; }
.btn-call .ico { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  background: rgba(244, 236, 221, 0.05);
  color: var(--text-on-dark);
  cursor: pointer;
  place-items: center;
}

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  color: var(--text-on-dark);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 84vh, 800px);
  display: flex;
  align-items: center;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 38%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16,13,10,0.96) 0%, rgba(16,13,10,0.9) 26%, rgba(16,13,10,0.6) 52%, rgba(16,13,10,0.28) 100%),
    linear-gradient(180deg, rgba(16,13,10,0.55) 0%, transparent 24%, transparent 60%, var(--ink) 100%);
}
.hero-glow {
  position: absolute;
  z-index: 1;
  top: -12%; right: 4%;
  width: min(720px, 78vw);
  height: min(720px, 78vw);
  background: radial-gradient(circle, rgba(244, 178, 62, 0.34), rgba(244, 178, 62, 0.07) 42%, transparent 66%);
  filter: blur(8px);
  pointer-events: none;
  animation: glowIn 1.4s var(--ease) both;
}
.hero-glow-soft { opacity: 0.5; top: -30%; right: -10%; }

@keyframes glowIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.hero-bulb {
  position: absolute;
  z-index: 0;
  top: -6px; right: 7%;
  pointer-events: none;
  opacity: 0;
  animation: bulbIn 1.2s var(--ease) 0.25s forwards;
}
.hero-bulb .filament {
  filter: drop-shadow(0 0 6px rgba(244, 178, 62, 0.9));
  animation: flicker 5s ease-in-out infinite;
}
@keyframes bulbIn { to { opacity: 1; } }
@keyframes flicker {
  0%, 100% { opacity: 1; }
  48% { opacity: 0.9; }
  50% { opacity: 0.72; }
  52% { opacity: 0.95; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}
.hero-copy { max-width: 41rem; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  font-weight: 500;
  color: #FBF3E4;
  margin-bottom: 1.3rem;
}
.lead {
  font-size: clamp(1.12rem, 2vw, 1.3rem);
  color: var(--text-on-dark);
  max-width: 38rem;
  margin-bottom: 1rem;
}
.hero-note { color: var(--muted-on-dark); max-width: 36rem; margin-bottom: 2rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero-status { margin-top: 0.2rem; }

/* ----------------------------- Bizalmi sáv ----------------------------- */
.trust {
  background: linear-gradient(180deg, var(--ink), var(--panel));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: clamp(2.2rem, 5vw, 3.2rem);
}
.trust-awards { text-align: center; }
.trust-awards .overline { margin-bottom: 0.7rem; }
.medals { display: flex; gap: clamp(0.6rem, 2vw, 1.4rem); justify-content: center; }
.medal { display: flex; flex-direction: column; align-items: center; }
.medal-svg {
  width: clamp(54px, 9vw, 70px);
  height: clamp(54px, 9vw, 70px);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}
.medal-year {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brass);
  font-size: 0.96rem;
  margin-top: -6px;
}
.trust-award-label {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--parchment);
}
.trust-divider { width: 1px; align-self: stretch; background: var(--line-dark); }

.trust-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s var(--ease);
}
.trust-rating:hover { transform: translateY(-2px); }
.rating-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4rem);
  font-weight: 600;
  color: var(--filament);
  line-height: 1;
}
.rating-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.stars { display: inline-flex; gap: 2px; }
.rating-meta { color: var(--muted-on-dark); font-size: 0.92rem; }
.rating-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--brass); font-weight: 600; font-size: 0.9rem;
}
.trust-rating:hover .rating-link { color: var(--filament); }

/* ----------------------------- Szekciók ----------------------------- */
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); position: relative; }
.section-light { background: var(--parchment); color: var(--text-on-light); }
.section-dark { background: var(--ink); color: var(--text-on-dark); overflow: hidden; isolation: isolate; }
.section-region {
  background:
    radial-gradient(90% 120% at 15% 0%, rgba(244, 178, 62, 0.08), transparent 55%),
    linear-gradient(180deg, var(--panel), var(--ink));
  color: var(--text-on-dark);
  border-top: 1px solid var(--line-dark);
}

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-lead { font-size: 1.12rem; color: var(--muted-on-light); }
.section-dark .section-lead, .section-region .section-lead { color: var(--muted-on-dark); }
.section-dark h2, .section-region h2 { color: var(--parchment); }

/* Pillérek + kártyák */
.pillar { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.pillar-head {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  padding-bottom: 1.1rem; margin-bottom: 1.7rem;
  border-bottom: 1px solid var(--line-light);
}
.pillar-head h3 { font-size: 1.6rem; color: var(--text-on-light); }
.pillar-head p { color: var(--muted-on-light); font-size: 0.98rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
}
@media (min-width: 1040px) {
  .card-grid { grid-template-columns: repeat(5, 1fr); }
}
.cat-card {
  background: var(--tej);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--brass);
  box-shadow: 0 26px 54px -26px rgba(138, 109, 58, 0.55);
}
.cat-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--panel);
}
.cat-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.cat-card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0) 42%, rgba(20,17,13,0.5) 100%);
}
.cat-card:hover .cat-card-media img { transform: scale(1.06); filter: saturate(1.12) brightness(1.04); }
.cat-ico {
  position: absolute;
  left: 1.1rem; bottom: -22px;
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 13px;
  border: 1px solid var(--line-light);
  color: var(--brass-deep);
  background: linear-gradient(180deg, var(--tej), var(--parchment));
  box-shadow: 0 8px 20px -8px rgba(20,17,13,0.5);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  z-index: 2;
}
.cat-card:hover .cat-ico {
  color: var(--amber);
  border-color: var(--filament);
  box-shadow: 0 0 20px -2px rgba(244, 178, 62, 0.6);
}
.cat-ico .ico { width: 25px; height: 25px; }
.cat-card-body { padding: 1.9rem 1.4rem 1.5rem; }
.cat-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; margin-bottom: 0.45rem; }
.cat-card p { color: var(--muted-on-light); font-size: 0.95rem; line-height: 1.55; }

/* Beszerzés-doboz */
.restock {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  background: linear-gradient(135deg, var(--ink), var(--panel-2));
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  margin-top: 0.6rem;
}
.restock h3 { color: var(--filament); font-size: 1.5rem; margin-bottom: 0.5rem; }
.restock p { color: var(--muted-on-dark); max-width: 42rem; }
.restock .btn { flex: none; }

/* Rólunk */
.about-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  right: -14px; bottom: 22px;
  display: flex; align-items: center; gap: 0.7rem;
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--brass);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  box-shadow: 0 16px 36px -16px rgba(0,0,0,0.6);
  color: var(--text-on-dark);
}
.about-badge .ico { width: 30px; height: 30px; color: var(--filament); flex: none; }
.about-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.about-badge-text strong { font-family: var(--font-display); color: var(--parchment); font-size: 1rem; }
.about-badge-text span { color: var(--brass); font-size: 0.82rem; letter-spacing: 0.04em; }
.about-content { display: flex; flex-direction: column; gap: 1.8rem; }
.about-copy .btn { margin-top: 1.6rem; }
.benefits { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.benefit {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.benefit:hover { transform: translateX(4px); border-color: var(--brass); }
.benefit-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex: none;
  border-radius: 11px;
  color: var(--filament);
  border: 1px solid var(--line-dark);
  background: rgba(244, 178, 62, 0.06);
}
.benefit h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--parchment); margin-bottom: 0.2rem; }
.benefit p { color: var(--muted-on-dark); font-size: 0.95rem; }

/* Vélemények */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.review {
  position: relative;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  color: var(--text-on-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  padding: 2.2rem 1.6rem 1.5rem;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review-quote { position: absolute; top: 1rem; left: 1.2rem; width: 34px; height: 34px; color: var(--brass-deep); opacity: 0.7; }
.review blockquote { margin: 0 0 1.2rem; font-size: 1.05rem; line-height: 1.6; color: #F6EEDF; font-style: italic; }
.review figcaption { display: flex; flex-direction: column; gap: 0.4rem; }
.stars-sm .ico-star { width: 17px; height: 17px; }
.review-src { color: var(--brass); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.reviews-cta { margin-top: 2rem; display: flex; justify-content: center; }

/* A térség */
.region-inner { max-width: 52rem; text-align: center; margin-inline: auto; position: relative; z-index: 1; }
.region-inner .overline { display: block; }
.region-tags {
  list-style: none; margin: 1.8rem 0 2rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
}
.region-tags li {
  border: 1px solid var(--line-dark);
  background: rgba(244, 236, 221, 0.04);
  color: var(--text-on-dark);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}

/* Elérhetőség */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: stretch;
}
.contact-card {
  background: var(--tej);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-block { }
.contact-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.74rem; font-weight: 600;
  color: var(--brass-deep); margin-bottom: 0.4rem;
}
.contact-value { font-size: 1.2rem; font-family: var(--font-display); }
.contact-phone {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600;
  color: var(--amber);
  transition: color 0.2s var(--ease);
}
.contact-phone:hover { color: var(--filament); }

.hours { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours th, .hours td { text-align: left; padding: 0.42rem 0; border-bottom: 1px solid var(--line-light); }
.hours th { font-weight: 500; color: var(--text-on-light); }
.hours td { text-align: right; color: var(--muted-on-light); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--amber); font-weight: 700; }
.hours tr.is-today { background: rgba(244, 178, 62, 0.10); }
#status-pill-contact { margin-top: 0.9rem; }
#status-pill-contact .status-text { color: var(--text-on-light); }
#status-pill-contact.is-open .status-text { color: var(--open); }
#status-pill-contact.is-closed .status-text { color: var(--closed); }

.contact-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: auto; }

.map-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-card);
  min-height: 380px;
  background: var(--panel);
}
.map-card iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(0.92) contrast(1.02); }

/* ----------------------------- Lábléc ----------------------------- */
.site-footer {
  background: var(--ink-2);
  color: var(--text-on-dark);
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(2.6rem, 5vw, 4rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}
.footer-brand .brand { margin-bottom: 0.9rem; }
.footer-tag { color: var(--muted-on-dark); margin-bottom: 0.6rem; }
.footer-awards { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--brass); font-size: 0.9rem; }
.footer-col h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--parchment); margin-bottom: 0.8rem; }
.footer-col p { color: var(--muted-on-dark); font-size: 0.95rem; margin-bottom: 0.4rem; }
.footer-col a { transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--filament); }
.footer-cta { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding-block: 1.3rem;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-on-dark);
  font-size: 0.85rem;
}

/* ----------------------------- Mobil sticky sáv ----------------------------- */
.mobile-bar {
  position: fixed;
  z-index: 120;
  left: 0; right: 0; bottom: 0;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(20, 17, 13, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
}
.mobile-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--filament), var(--amber));
  color: #2A1B05;
}
.mobile-btn-alt {
  background: rgba(244, 236, 221, 0.06);
  color: var(--text-on-dark);
  border: 1.5px solid var(--brass);
}

/* ----------------------------- Reveal animáció ----------------------------- */
/* Csak akkor rejtjük el, ha van JS — így JS nélkül (és keresőknek) is látszik minden */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.card-grid .cat-card, .benefits .benefit, .reviews .review { transition-delay: var(--d, 0ms); }

/* ----------------------------- Reszponzív ----------------------------- */
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { flex-direction: row; grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(16, 13, 10, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.6rem var(--gutter) 1.2rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line-dark); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: grid; }
  .btn-call .btn-call-label { display: none; }
  .btn-call { padding: 0.7rem; }
  .header-actions { margin-left: auto; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
  .trust-divider { display: none; }
  .trust-inner { flex-direction: column; }
  .hero { min-height: auto; }
  .hero-scrim { background: linear-gradient(180deg, rgba(16,13,10,0.74) 0%, rgba(16,13,10,0.84) 55%, var(--ink) 100%); }
  .hero-media img { object-position: 62% 30%; }
  .about-badge { right: 10px; bottom: 10px; padding: 0.6rem 0.8rem; }
  .restock { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: row; }
}

@media (max-width: 420px) {
  .medals { gap: 0.3rem; }
  .rating-num { font-size: 2.6rem; }
}

/* ----------------------------- Mozgáscsökkentés ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero-glow, .hero-bulb { opacity: 1; }
}
