/* ============================================================
   KlímaFlex — Editorial Luxury design system
   Fraunces (display) · Plus Jakarta Sans (UI)
   ============================================================ */

:root {
  --cream: #F6F1E8;
  --cream-2: #EFE8DB;
  --cream-3: #E9E0CF;
  --ink: #1A1F1C;
  --ink-soft: rgba(26, 31, 28, .62);
  --ink-faint: rgba(26, 31, 28, .38);
  --pine: #0E6F74;
  --pine-deep: #0B484C;
  --pine-bright: #1A9499;
  --amber: #C2702E;
  --amber-soft: #D9924F;
  --dark: #0B1A1B;
  --dark-2: #102221;
  --dark-3: #16292A;
  --line: rgba(26, 31, 28, .10);
  --line-strong: rgba(26, 31, 28, .18);
  --line-light: rgba(246, 241, 232, .12);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.32, .72, 0, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --r-shell: 2rem;
  --shell-pad: .5rem;
  --r-core: calc(var(--r-shell) - var(--shell-pad));
  --shadow-soft: 0 24px 64px -24px rgba(26, 31, 28, .18), 0 8px 24px -12px rgba(26, 31, 28, .08);
  --shadow-float: 0 40px 90px -30px rgba(26, 31, 28, .28);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--pine); color: var(--cream); }

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

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

h1, h2, h3 { font-weight: 400; }

/* ── Grain overlay ───────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Preloader ───────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease), visibility 0s linear 1s;
}
.loader.done { transform: translateY(-100%); visibility: hidden; }
.loader__inner { text-align: center; }
.loader__temp {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--pine);
  display: block;
  font-variant-numeric: tabular-nums;
}
.loader__temp sup { font-size: .4em; vertical-align: super; }
.loader__brand {
  display: block; margin-top: 1rem;
  font-family: var(--sans);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
}
.loader__brand em { font-style: normal; color: var(--amber); }

/* ── Shared primitives ───────────────────────────────────── */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: 880px; }

.section { padding-block: clamp(6rem, 11vw, 10.5rem); }
.section--tight { padding-top: clamp(4rem, 7vw, 6.5rem); }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--dark); color: var(--cream); }

.section__head { max-width: 46rem; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.section__title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-top: 1.4rem;
}
.section__title em { font-style: italic; color: var(--pine); }
.section--dark .section__title em { color: var(--amber-soft); }

.section__lead {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 38rem;
}
.section__lead--light { color: rgba(246, 241, 232, .66); }

/* Eyebrow tag */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .42em 1em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .625rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber);
  flex: none;
}
.eyebrow--light { border-color: var(--line-light); color: rgba(246, 241, 232, .6); }
.eyebrow--center { margin-inline: auto; }

/* Double-bezel shell */
.shell {
  background: rgba(26, 31, 28, .045);
  border: 1px solid rgba(26, 31, 28, .08);
  border-radius: var(--r-shell);
  padding: var(--shell-pad);
}
:where(.shell) > .core {
  border-radius: var(--r-core);
  background: var(--cream);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6);
  height: 100%;
}
.shell--dark {
  background: rgba(246, 241, 232, .05);
  border-color: rgba(246, 241, 232, .1);
}
.shell--dark > .core {
  background: var(--dark-2);
  box-shadow: inset 0 1px 1px rgba(246, 241, 232, .07);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .55rem .55rem .55rem 1.5rem;
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  letter-spacing: .01em;
  background: rgba(26, 31, 28, .05);
  border: 1px solid var(--line);
  transition: transform .6s var(--ease), background .4s var(--ease), border-color .4s var(--ease), box-shadow .6s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn__ic {
  width: 2.1rem; height: 2.1rem; flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26, 31, 28, .07);
  transition: transform .6s var(--ease), background .4s var(--ease);
}
.btn__ic svg { width: .85rem; height: .85rem; transition: transform .6s var(--ease); }
.btn:hover .btn__ic svg { transform: translate(2px, -2px); }
.btn--primary {
  background: var(--pine);
  border-color: var(--pine);
  color: var(--cream);
  box-shadow: 0 18px 40px -18px rgba(14, 111, 116, .55);
}
.btn--primary:hover { background: var(--pine-deep); box-shadow: 0 22px 48px -16px rgba(14, 111, 116, .6); }
.btn--primary .btn__ic { background: rgba(246, 241, 232, .14); }
.btn--ghost { padding: .8rem 1.6rem; }
.btn--ghost:hover { background: rgba(26, 31, 28, .09); }
.btn--ghost-light {
  color: var(--cream);
  background: rgba(246, 241, 232, .07);
  border-color: rgba(246, 241, 232, .28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.btn--ghost-light:hover { background: rgba(246, 241, 232, .16); border-color: rgba(246, 241, 232, .5); }
.btn--small { padding: .4rem .4rem .4rem 1.1rem; font-size: .8rem; }
.btn--small .btn__ic { width: 1.7rem; height: 1.7rem; }
.btn--full { width: 100%; justify-content: space-between; margin-top: auto; }
.btn--full.btn--ghost { justify-content: center; }

/* Inline text link */
.textlink {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .85rem; font-weight: 600;
  color: var(--pine);
  border-bottom: 1px solid transparent;
  transition: gap .45s var(--ease), border-color .3s;
}
.textlink svg { width: .8em; height: .8em; }
.textlink:hover { gap: .75em; border-color: currentColor; }
.textlink--light { color: var(--cream-3); }

/* Stars */
.stars { display: inline-flex; gap: .15em; }
.stars svg { width: .85rem; height: .85rem; fill: var(--amber); }
.stars--amber svg { fill: var(--amber-soft); }

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(44px);
  filter: blur(10px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out),
    filter 1s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 110ms);
}
.js .reveal.in { opacity: 1; transform: none; filter: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  padding-top: max(1.1rem, calc(env(safe-area-inset-top) + .4rem));
  padding-inline: max(clamp(1rem, 3vw, 2rem), env(safe-area-inset-left), env(safe-area-inset-right));
  padding-bottom: 0;
  pointer-events: none;
}
.nav__pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  width: min(1120px, 100%);
  padding: .55rem .55rem .55rem 1.5rem;
  border-radius: 999px;
  background: rgba(15, 27, 23, .42);
  border: 1px solid rgba(246, 241, 232, .13);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: box-shadow .6s var(--ease), background .6s var(--ease), border-color .6s var(--ease), transform .6s var(--ease);
}
.nav.scrolled .nav__pill {
  background: rgba(246, 241, 232, .90);
  border-color: rgba(26, 31, 28, .08);
  box-shadow: 0 18px 50px -20px rgba(26, 31, 28, .25);
}
.nav__logo {
  flex: none;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 26px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .22));
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
.nav__logo:hover .nav__logo-img {
  filter: drop-shadow(0 4px 18px rgba(0, 100, 200, .35));
  transform: scale(1.03);
}
.nav__links {
  display: flex; gap: clamp(.9rem, 2vw, 1.7rem);
  margin-inline: auto;
}
.nav__links a {
  font-size: .82rem; font-weight: 500;
  color: #fff;
  position: relative;
  padding: .3rem 0;
  transition: color .5s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--pine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav.scrolled .nav__links a { color: #000; }
.nav.scrolled .nav__links a:hover { color: #000; }
.nav__actions { display: flex; align-items: center; gap: 1rem; flex: none; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .82rem; font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
  transition: color .6s var(--ease), opacity .3s;
}
.nav__phone svg { width: .85rem; height: .85rem; }
.nav__phone:hover { opacity: .7; }
.nav.scrolled .nav__phone { color: #000; }

/* CTA button adapts to dark/light pill */
.nav__actions .btn {
  color: #fff;
  background: rgba(246, 241, 232, .1);
  border-color: rgba(246, 241, 232, .22);
  transition: transform .6s var(--ease), background .6s var(--ease), border-color .6s var(--ease), color .6s var(--ease), box-shadow .6s var(--ease);
}
.nav__actions .btn .btn__ic {
  background: rgba(246, 241, 232, .14);
  transition: transform .6s var(--ease), background .6s var(--ease);
}
.nav__actions .btn:hover {
  background: rgba(246, 241, 232, .18);
  border-color: rgba(246, 241, 232, .38);
}
.nav.scrolled .nav__actions .btn {
  color: #000;
  background: rgba(26, 31, 28, .05);
  border-color: var(--line);
}
.nav.scrolled .nav__actions .btn .btn__ic { background: rgba(26, 31, 28, .07); }
.nav.scrolled .nav__actions .btn:hover { background: rgba(26, 31, 28, .09); }

/* Hamburger */
.nav__burger {
  display: none;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: rgba(246, 241, 232, .12);
  border: 1px solid rgba(246, 241, 232, .2);
  position: relative;
  transition: background .6s var(--ease), border-color .6s var(--ease);
}
.nav__burger span {
  position: absolute; left: 50%; top: 50%;
  width: 1.05rem; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .55s var(--ease), background .6s var(--ease);
}
.nav__burger span:first-child { transform: translate(-50%, calc(-50% - 3px)); }
.nav__burger span:last-child { transform: translate(-50%, calc(-50% + 3px)); }
.nav__burger.open span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.nav__burger.open span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.nav.scrolled .nav__burger { background: rgba(26, 31, 28, .06); border-color: var(--line); }
.nav.scrolled .nav__burger span { background: var(--ink); }

/* Mobile menu overlay */
.mmenu {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(15, 27, 23, .9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 8vw, 4rem);
  opacity: 0; visibility: hidden;
  transition: opacity .6s var(--ease), visibility 0s linear .6s;
}
.mmenu.open { opacity: 1; visibility: visible; transition-delay: 0s; }
.mmenu__links { display: flex; flex-direction: column; gap: .4rem; }
.mmenu__links a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 2.8rem);
  color: var(--cream);
  line-height: 1.3;
  width: max-content;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), color .3s;
  transition-delay: 0s;
}
.mmenu.open .mmenu__links a,
.mmenu.open .mmenu__foot {
  opacity: 1; transform: none;
  transition-delay: calc(.08s + var(--i) * .055s);
}
.mmenu__links a:hover { color: var(--amber-soft); }
.mmenu__foot {
  margin-top: 2.5rem;
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.mmenu__tel {
  font-family: var(--serif); font-style: italic;
  font-size: 1.4rem; color: var(--amber-soft);
}
.mmenu__foot p { margin-top: .4rem; font-size: .8rem; color: rgba(246, 241, 232, .55); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -28px;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}
.hero__bg picture { display: contents; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
  transform: scale(1.06);
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.2%, -1.4%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(7, 26, 27, .92) 0%, rgba(7, 26, 27, .55) 24%, rgba(7, 26, 27, .12) 48%, rgba(7, 26, 27, 0) 66%),
    linear-gradient(to right, rgba(7, 26, 27, .66) 0%, rgba(7, 26, 27, .12) 42%, rgba(7, 26, 27, 0) 64%),
    linear-gradient(to bottom, rgba(7, 26, 27, .55) 0%, rgba(7, 26, 27, 0) 22%);
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 70% 32%, transparent 52%, rgba(7, 26, 27, .42) 100%);
}

.hero__grid {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(7rem, 13vh, 9.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.2rem, 5vh, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__eyebrow {
  align-self: flex-start;
  margin-bottom: 1.4rem;
  color: rgba(246, 241, 232, .82);
  border-color: rgba(246, 241, 232, .22);
  background: rgba(246, 241, 232, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero__content { max-width: 44rem; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.04rem, 8.74vw, 7.03rem);
  font-weight: 340;
  line-height: .94;
  letter-spacing: -.025em;
  text-shadow: 0 2px 40px rgba(7, 26, 27, .35);
}
.hline { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hline > span { display: block; transform: translateY(115%); transition: transform 1.15s var(--ease); }
.hline--accent em { font-style: italic; color: var(--amber-soft); }
body.loaded .hline > span { transform: translateY(0); }
body.loaded .hline--accent > span { transition-delay: .12s; }

.hero__lead {
  margin-top: 1.9rem;
  max-width: 32rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(246, 241, 232, .82);
}
.hero__cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__meta {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem;
  font-size: .78rem; font-weight: 500;
  color: rgba(246, 241, 232, .68);
}
.hero__meta-sep { width: 1px; height: 1rem; background: rgba(246, 241, 232, .25); }

/* Floating glass temp chip */
.hero__chip--temp {
  position: absolute;
  top: clamp(7rem, 16vh, 11rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  display: flex; flex-direction: column; gap: .15rem;
  padding: .85rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(7, 26, 27, .42);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(246, 241, 232, .18);
  box-shadow: 0 24px 60px -24px rgba(7, 26, 27, .6), inset 0 1px 1px rgba(246, 241, 232, .12);
  font-size: .72rem; font-weight: 600;
  color: rgba(246, 241, 232, .8);
  opacity: 0;
  transform: translateY(-14px) scale(.96);
  transition: opacity 1s var(--ease) .6s, transform 1s var(--ease) .6s;
}
body.loaded .hero__chip--temp { opacity: 1; transform: none; }
.hero__chip-num {
  font-family: var(--serif);
  font-size: 1.85rem; font-weight: 400;
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.hero__chip-label { color: rgba(246, 241, 232, .62); font-weight: 500; }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2.5rem);
  bottom: clamp(2.2rem, 5vh, 3.4rem);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .58rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(246, 241, 232, .6);
  transition: color .4s;
}
.hero__scroll:hover { color: var(--cream); }
.hero__scroll-line {
  position: relative;
  width: 1px; height: 3.4rem;
  background: rgba(246, 241, 232, .22);
  overflow: hidden;
}
.hero__scroll-line > span {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 40%;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(340%); }
}
.hero__scroll-label { writing-mode: vertical-rl; }

/* Stats band */
.statsband { padding-block: clamp(2.8rem, 5vw, 4.2rem); background: var(--cream); }
.statsband .shell { box-shadow: var(--shadow-soft); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem, 2.5vw, 2rem);
}
.stat { padding-inline: clamp(1rem, 2.5vw, 2rem); }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block; margin-top: .45rem;
  font-size: .78rem; font-weight: 500;
  color: var(--ink-soft);
}

/* ============================================================
   BRAND MARQUEE
   ============================================================ */
.brands {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: clip;
}
.brands__label {
  text-align: center;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  width: max-content;
  animation: marquee var(--dur, 40s) linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.brands__logo {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.42) contrast(1.15);
  transition: filter .5s;
}
.brands__logo:hover {
  filter: grayscale(1) opacity(0.65) contrast(1.15);
}
.brands__logo[alt="Gree"],
.brands__logo[alt="Panasonic"] {
  height: 72px;
  max-width: 200px;
}
.brands__dot {
  width: 6px; height: 6px; flex: none;
  border-radius: 50%;
  background: var(--amber);
  opacity: .45;
}

/* ============================================================
   SZOLGÁLTATÁSOK — bento
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento__cell { grid-column: span 5; display: flex; min-width: 0; }
.bento__cell--wide, .bento__cell--accent { grid-column: span 7; }
.bento__core { display: flex; flex-direction: column; overflow: hidden; width: 100%; }
.bento__cell--wide .bento__core { flex-direction: row; align-items: stretch; }
.bento__media {
  flex: 0 0 42%;
  min-height: 14rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: calc(var(--r-core) - .4rem);
  margin: .9rem 0 .9rem .9rem;
  overflow: hidden;
}
.bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento__body {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column;
  flex: 1;
}
.bento__index {
  font-family: var(--serif); font-style: italic;
  font-size: .95rem;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.bento__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.bento__body p {
  margin-top: .9rem;
  font-size: .94rem;
  color: var(--ink-soft);
  flex: 1;
}
.bento__body .textlink { margin-top: 1.4rem; }
.bento__core--accent { background: var(--pine-deep); color: var(--cream); }
.bento__core--accent h3 { color: var(--cream); }
.bento__core--accent p { color: rgba(246, 241, 232, .68); }
.bento__core--accent .bento__index { color: var(--amber-soft); }
.shell:has(.bento__core--accent) { background: rgba(14, 111, 116, .12); border-color: rgba(14, 111, 116, .22); }

/* Gradient placeholders */
.ph { position: relative; overflow: hidden; }
.ph__ac {
  width: 68%; max-width: 15rem;
  color: rgba(26, 31, 28, .4);
  transition: transform .9s var(--ease);
}
.ph--survey { background: linear-gradient(135deg, #DEE5D8, #F2ECDD 55%, #E7DFC9), radial-gradient(20rem 14rem at 20% 15%, rgba(14,111,116,.2), transparent); }
.ph--emura { background: linear-gradient(140deg, #E6E4DE, #F4F0E8 50%, #DCD6C8); }
.ph--perfera { background: linear-gradient(140deg, #DCE3E2, #F0EFE7 55%, #CFDAD4); }
.ph--etherea { background: linear-gradient(140deg, #E3E0DA, #F3EEE4 50%, #D5D9CE); }
.ph--tz { background: linear-gradient(140deg, #E0DFD7, #F2EEE5 55%, #D4D5C9); }
.ph--gree { background: linear-gradient(140deg, #E4E2D8, #F4F0E6 50%, #DBD2BE); }
.ph--midea { background: linear-gradient(140deg, #DFE3DF, #F1EEE6 55%, #D0D6CC); }
.ph--bosch { background: linear-gradient(140deg, #E3E1DB, #F3EFE7 50%, #D7D0C0); }
.ph--fisher { background: linear-gradient(140deg, #DEE2E4, #F1EFE8 55%, #CFD6D8); }
.ph--hp {
  background:
    radial-gradient(18rem 14rem at 80% 20%, rgba(217, 146, 79, .16), transparent 65%),
    linear-gradient(140deg, var(--pine-deep), #0F2A24);
}
.ph--hp .ph__ac { color: rgba(246, 241, 232, .5); }
.ph--map {
  background:
    radial-gradient(16rem 12rem at 70% 25%, rgba(26, 148, 153, .35), transparent 65%),
    linear-gradient(150deg, var(--dark-3), var(--dark));
}

/* ============================================================
   FOLYAMAT — steps
   ============================================================ */
.steps { list-style: none; border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.8rem, 3.5vw, 2.6rem) clamp(.5rem, 1.5vw, 1.5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .5s var(--ease);
}
.step:hover { background: rgba(26, 31, 28, .03); }
.step__num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 300;
  color: var(--ink-faint);
  line-height: 1;
  transition: color .5s var(--ease), transform .6s var(--ease);
}
.step:hover .step__num { color: var(--amber); transform: translateX(.4rem); }
.step__main h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  letter-spacing: -.01em;
}
.step__main p {
  margin-top: .6rem;
  max-width: 36rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.step__tag {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--pine);
  border: 1px solid rgba(14, 111, 116, .3);
  border-radius: 999px;
  padding: .45em 1.1em;
  white-space: nowrap;
  margin-top: .4rem;
}

/* ============================================================
   TERMOSZTÁT
   ============================================================ */
.thermo {
  position: relative;
  overflow: clip;
  isolation: isolate;
  min-height: clamp(30rem, 64vh, 42rem);
  display: flex; align-items: center;
}
/* Háttérkép — futes.png, finom lassú nagyítással */
.thermo__bg {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.thermo__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease);
}
.thermo.in-view .thermo__img { transform: scale(1); }
/* Sötét fátyol a szöveg olvashatóságáért — balról erősebb */
.thermo__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg,
      rgba(7, 26, 27, .92) 0%,
      rgba(7, 26, 27, .80) 32%,
      rgba(7, 26, 27, .5) 60%,
      rgba(7, 26, 27, .26) 100%),
    radial-gradient(60rem 40rem at 12% 110%, rgba(26, 148, 153, .22), transparent 60%);
}
.thermo__wrap { position: relative; width: 100%; }
.thermo__copy { max-width: 38rem; }
.thermo .section__title { margin-top: .9rem; }
.thermo .section__lead { margin-top: 1.3rem; }

.thermo__facts {
  list-style: none;
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1.9rem;
  max-width: 34rem;
}
.thermo__facts strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.6rem); font-weight: 400;
  color: var(--cream);
}
.thermo__facts span {
  display: block; margin-top: .35rem;
  font-size: .76rem; line-height: 1.4;
  color: rgba(246, 241, 232, .62);
}

/* ============================================================
   RÓLUNK
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.about__media { position: sticky; top: 7rem; }
.about__shell { box-shadow: var(--shadow-soft); }
.about__imgwrap { overflow: hidden; aspect-ratio: 3 / 3.8; }
.about__imgwrap img { width: 100%; height: 100%; object-fit: cover; object-position: 35% 20%; transition: transform 1.4s var(--ease); }
.about__shell:hover .about__imgwrap img { transform: scale(1.035); }
.about__caption {
  margin-top: 1rem;
  font-size: .78rem; font-weight: 500;
  color: var(--ink-soft);
  text-align: center;
}
.about__quote { margin-top: 1.5rem; }
.about__quote-core { background: var(--pine-deep); padding: 1.8rem 2rem; }
.about__quote-core p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; line-height: 1.4;
  color: var(--cream);
}

.timeline {
  list-style: none;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-left: 1px solid var(--line-strong);
  display: flex; flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}
.timeline__item {
  position: relative;
  padding-left: clamp(1.8rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: .2rem;
}
.timeline__item::before {
  content: '';
  position: absolute; left: -5px; top: .5rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px var(--cream);
}
.section--alt .timeline__item::before { box-shadow: 0 0 0 5px var(--cream-2); }
.timeline__year {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem;
  color: var(--amber);
}
.timeline__item h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-top: .2rem;
}
.timeline__item p {
  margin-top: .55rem;
  max-width: 33rem;
  font-size: .96rem;
  color: var(--ink-soft);
}

/* ============================================================
   KATALÓGUS
   ============================================================ */
.filters {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2.2rem;
}
.filter {
  padding: .55em 1.3em;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: .8rem; font-weight: 600;
  color: var(--ink-soft);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.filter:hover { border-color: var(--pine); color: var(--pine); }
.filter:active { transform: scale(.96); }
.filter.is-active { background: var(--pine); border-color: var(--pine); color: var(--cream); }
.filters--brands { margin-top: -1.4rem; }

/* ── Oldalsávos szűrő-elrendezés (katalógus oldal) ─────────── */
.cat-layout {
  display: grid;
  grid-template-columns: 17rem minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.cat-main { min-width: 0; min-height: 65vh; }
/* A katalógus rács az oldalsáv mellett kétoszlopos */
.cat-main .catalog { grid-template-columns: repeat(2, 1fr); }

/* Mobil szűrősáv — desktopon rejtve */
.catbar { display: none; }

/* Oldalsáv — saját görgetés a viewporton belül, a találatok
   számától függetlenül (különben kevés találatnál a panel alja
   levághat, és a lap-összerövidülés miatt a görgetés is ugrik). */
.cat-side { position: sticky; top: 5.5rem; max-height: calc(100dvh - 7rem); }
.cat-side__panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-shell);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex; flex-direction: column;
  /* Önálló magasság, hogy a belső .cat-side__scroll görgethető legyen.
     (A sticky .cat-side-nek nincs definit magassága, így a 100%-os
     max-height nem oldódna fel — a szűrőpanelt ezért közvetlenül a
     viewporthoz kötjük.) */
  max-height: calc(100dvh - 7rem);
  overflow: hidden;
}
.cat-side__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.cat-side__title {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
}
.cat-side__close { display: none; }
.cat-side__scroll {
  display: flex; flex-direction: column;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  flex: 1; min-height: 0;
  margin: 0 -.3rem; padding: 0 .3rem;
}

.fgroup { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.fgroup:first-child { border-top: 0; padding-top: .6rem; }
.fgroup__label {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 500;
  margin-bottom: .85rem;
}
.fgroup__chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.fchip {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .5em 1em;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: .8rem; font-weight: 600;
  color: var(--ink-soft);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .2s var(--ease);
}
.fchip small { font-size: .68rem; font-weight: 500; opacity: .7; }
.fchip:hover { border-color: var(--pine); color: var(--pine); }
.fchip:active { transform: scale(.96); }
.fchip.is-active { background: var(--pine); border-color: var(--pine); color: var(--cream); }
.fchip.is-active small { opacity: .85; }

/* Tulajdonság-kapcsolók */
.ftog {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .55rem 0;
  cursor: pointer;
}
.ftog input { position: absolute; opacity: 0; width: 0; height: 0; }
.ftog__box {
  flex: none; margin-top: .1rem;
  width: 2.5rem; height: 1.4rem;
  border-radius: 999px;
  background: var(--line-strong);
  position: relative;
  transition: background .3s var(--ease);
}
.ftog__box::after {
  content: ''; position: absolute;
  top: .15rem; left: .15rem;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  transition: transform .3s var(--ease);
}
.ftog input:checked + .ftog__box { background: var(--pine); }
.ftog input:checked + .ftog__box::after { transform: translateX(1.1rem); }
.ftog input:focus-visible + .ftog__box { outline: 2px solid var(--pine); outline-offset: 2px; }
.ftog__txt { font-size: .9rem; font-weight: 600; line-height: 1.25; }
.ftog__txt small { display: block; font-size: .74rem; font-weight: 500; color: var(--ink-soft); margin-top: .1rem; }

.cat-side__foot { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .8rem; }
.fclear {
  font-size: .8rem; font-weight: 600; color: var(--ink-soft);
  align-self: flex-start;
  transition: color .3s var(--ease);
}
.fclear:hover { color: var(--pine); }
.cat-side__apply { display: none; justify-content: center; width: 100%; }

.catalog__empty {
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  font-size: 1rem; color: var(--ink-soft);
  text-align: center;
}

/* ── Szűrők mobil fiókként ──────────────────────────────────
   ~900px alatt az oldalsáv kicsúszó panellé alakul; a „Szűrők"
   gomb és a találatszám a catbar sávban jelenik meg. */
@media (max-width: 900px) {
  .cat-layout { grid-template-columns: 1fr; gap: 1.4rem; }
  .cat-main .catalog { grid-template-columns: repeat(2, 1fr); }

  .catbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.6rem;
  }
  .catbar__toggle {
    display: inline-flex; align-items: center; gap: .55em;
    padding: .7em 1.2em;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: var(--cream);
    font-size: .85rem; font-weight: 600; color: var(--ink);
    transition: border-color .3s var(--ease), background .3s var(--ease);
  }
  .catbar__toggle:hover { border-color: var(--pine); }
  .catbar__toggle svg { width: 1rem; height: 1rem; }
  .catbar__count {
    display: inline-grid; place-items: center;
    min-width: 1.3rem; height: 1.3rem; padding: 0 .35em;
    border-radius: 999px;
    background: var(--pine); color: var(--cream);
    font-size: .7rem; font-weight: 700;
  }
  .catbar__result { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }

  /* Fiók */
  .cat-side {
    position: fixed; inset: 0; z-index: 200;
    top: 0; left: 0;
    display: block;
    background: rgba(7, 26, 27, .45);
    opacity: 0; visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
    /* Fiókként a teljes képernyőt fedje — a desktop sticky max-height
       (100dvh − 7rem) itt nem érvényes, különben alul ~7rem rés marad,
       ahol a háttér és a hívás-gomb átlátszik. */
    max-height: none;
  }
  .cat-side.is-open { opacity: 1; visibility: visible; }
  .cat-side__panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(22rem, 86vw);
    border-radius: var(--r-shell) 0 0 var(--r-shell);
    box-shadow: -20px 0 60px -20px rgba(7, 26, 27, .4);
    padding: 1.4rem 1.4rem max(1.5rem, env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow: hidden;
    /* Fiókként a panel a teljes magasságot kitölti (top/bottom: 0),
       így itt nem korlátozzuk a viewport-alapú max-height-tel. */
    max-height: none;
  }
  .cat-side.is-open .cat-side__panel { transform: translateX(0); }
  .cat-side__head { margin-bottom: .8rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
  .cat-side__title { font-size: .8rem; }
  .cat-side__close {
    display: inline-grid; place-items: center;
    width: 2.2rem; height: 2.2rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink);
    transition: background .3s var(--ease);
  }
  .cat-side__close:hover { background: rgba(26, 31, 28, .05); }
  .cat-side__close svg { width: .9rem; height: .9rem; }
  .cat-side__scroll { overflow-y: auto; -webkit-overflow-scrolling: touch; flex: 1; margin: 0 -.3rem; padding: 0 .3rem; }
  .cat-side__apply { display: inline-flex; }
  body.filters-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .cat-main .catalog { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
}

.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.unit {
  min-width: 0;
  transition: transform .7s var(--ease), box-shadow .7s var(--ease);
}
.unit:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.unit.is-hidden { display: none; }
.unit__core { overflow: hidden; display: flex; flex-direction: column; }
.unit__media {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9.5;
  display: flex; align-items: center; justify-content: center;
  border-radius: calc(var(--r-core) - .35rem);
  margin: .65rem .65rem 0;
  background: linear-gradient(140deg, #E6E4DE, #F4F0E8 50%, #DCD6C8);
  color: var(--pine);
}
.unit:hover .ph__ac { transform: scale(1.06) translateY(-2px); }
.unit__badge {
  position: absolute; top: .8rem; left: .8rem;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream);
  background: var(--pine);
  border-radius: 999px;
  padding: .5em 1em;
}
.unit__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.unit__brand {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber);
}
.unit__name {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -.01em;
  margin-top: .3rem;
}
.unit__tag {
  margin-top: .5rem;
  font-size: .86rem;
  color: var(--ink-soft);
  flex: 1;
}
.unit__specs {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: 1.1rem;
}
.unit__specs li {
  font-size: .68rem; font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: rgba(26, 31, 28, .03);
  border-radius: 999px;
  padding: .35em .9em;
  white-space: nowrap;
}
.catalog__note {
  margin-top: 2.2rem;
  font-size: .88rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* Cards are clickable (open the product window) */
.unit { cursor: pointer; }
.unit__media img,
.pmodal__media img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: inherit;
}
.unit__price {
  margin-top: 1rem;
  display: flex; align-items: baseline; gap: .35em;
}
.unit__price span {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 500;
  color: var(--pine);
}
.unit__price em {
  font-style: normal;
  font-size: .72rem; font-weight: 600;
  color: var(--ink-soft);
}
.unit__more {
  display: inline-flex; align-items: center; gap: .55em;
  margin-top: 1.2rem; align-self: flex-start;
  font-size: .8rem; font-weight: 600; color: var(--pine);
  transition: gap .45s var(--ease);
}
.unit__more .btn__ic {
  width: 1.6rem; height: 1.6rem;
  background: rgba(14, 111, 116, .1);
}
.unit:hover .unit__more { gap: .85em; }
.unit:hover .unit__more .btn__ic svg { transform: translate(2px, -2px); }

/* Featured (highlighted) sneak-peek card — spans the full row */
.unit--featured { grid-column: 1 / -1; }
.unit--featured .unit__core { flex-direction: row; }
.unit--featured .unit__media {
  aspect-ratio: auto;
  flex: 1 1 46%;
  margin: .65rem 0 .65rem .65rem;
  min-height: 18rem;
}
.unit--featured .unit__media .ph__ac { width: 56%; max-width: 22rem; }
.unit--featured .unit__body { flex: 1 1 54%; justify-content: center; padding: 2.4rem 2.6rem; }
.unit--featured .unit__name { font-size: clamp(1.8rem, 3vw, 2.2rem); }
.unit__lead {
  margin-top: .6rem;
  font-size: .95rem; line-height: 1.6;
  color: var(--ink-soft);
}

/* CTA below the sneak peek */
.catalog__cta {
  margin-top: 2.6rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.3rem;
  text-align: center;
}
.catalog__cta .catalog__note { margin-top: 0; max-width: 44rem; }

/* ── Product window (modal) ──────────────────────────────── */
.pmodal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.pmodal.open { opacity: 1; }
.pmodal[hidden] { display: none; }
.pmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 72, 76, .42);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pmodal__dialog {
  position: relative; z-index: 1;
  width: min(60rem, 100%);
  max-height: calc(100dvh - 2rem);
  transform: translateY(26px) scale(.985);
  transition: transform .55s var(--ease-out);
  box-shadow: 0 40px 90px -30px rgba(11, 72, 76, .5);
}
.pmodal.open .pmodal__dialog { transform: none; }
.pmodal__core {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  max-height: calc(100dvh - 2rem);
}
.pmodal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: background .3s var(--ease), transform .4s var(--ease);
}
.pmodal__close:hover { background: var(--cream-3); transform: rotate(90deg); }
.pmodal__close svg { width: 1rem; height: 1rem; }
.pmodal__media {
  position: relative; overflow: hidden; align-self: start;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: calc(var(--r-core) - .35rem);
  margin: .65rem 0 .65rem .65rem;
  background: linear-gradient(140deg, #E6E4DE, #F4F0E8 50%, #DCD6C8);
  color: var(--pine);
}
.pmodal__media .ph__ac { width: 60%; max-width: 18rem; }
.pmodal__body {
  padding: 2.2rem 2.4rem 2.4rem;
  overflow-y: auto;
  min-height: 0;
}
.pmodal__name {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  letter-spacing: -.01em;
  margin-top: .3rem;
}
.pmodal__perf { margin-top: .8rem; font-size: .9rem; color: var(--ink-soft); }
.pmodal__perf strong {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.55rem; color: var(--pine);
  margin-right: .4em;
}
.pmodal__price {
  margin-top: .9rem;
  font-family: var(--serif);
  font-size: 1.9rem; font-weight: 500;
  color: var(--pine);
}
.pmodal__price em {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: .75rem; font-weight: 600;
  color: var(--ink-soft);
  margin-top: .15em;
}
.pmodal__desc { margin-top: 1.1rem; font-size: .94rem; line-height: 1.65; color: var(--ink-soft); }
.pmodal__features {
  list-style: none; margin-top: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.3rem;
}
.pmodal__features li { display: flex; align-items: flex-start; gap: .55em; font-size: .85rem; }
.pmodal__features svg { width: 1rem; height: 1rem; flex: none; margin-top: .12em; color: var(--amber); }
.pmodal__specs { margin-top: 1.7rem; border-top: 1px solid var(--line); }
.pmodal__spec {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .72rem 0; border-bottom: 1px solid var(--line);
  font-size: .86rem;
}
.pmodal__spec dt { color: var(--ink-soft); }
.pmodal__spec dd { font-weight: 600; text-align: right; }
.pmodal__cta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .8rem; }

/* ── Catalog page (katalogus.html) ───────────────────────── */
.subhero {
  padding-top: clamp(8.5rem, 16vh, 12rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.subhero__meta {
  margin-top: 1.6rem;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .03em;
  color: rgba(246, 241, 232, .58);
}
.catalog__pitch {
  max-width: 38rem;
  font-size: .95rem; line-height: 1.6;
  color: var(--ink-soft);
}

/* Hőszivattyú band */
.hp { margin-top: clamp(3rem, 6vw, 4.5rem); }
.hp__core {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: stretch;
  overflow: hidden;
}
.hp__media {
  min-height: 16rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: calc(var(--r-core) - .4rem);
  margin: .9rem;
}
.hp__body { padding: clamp(1.8rem, 4vw, 3rem); }
.hp__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: -.012em;
  margin-top: 1.2rem;
  max-width: 24ch;
}
.hp__body p {
  margin-top: 1rem;
  font-size: .96rem;
  color: var(--ink-soft);
  max-width: 36rem;
}
.hp__body .btn { margin-top: 1.8rem; }

/* ============================================================
   ÁRAK
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.price { display: flex; }
.price__core {
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex; flex-direction: column;
  width: 100%;
}
.price__name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.12;
  letter-spacing: -.01em;
}
.price__desc {
  margin-top: .8rem;
  font-size: .85rem;
  color: var(--ink-soft);
  min-height: 3.2em;
}
.price__num {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
}
.price__cur { font-size: .45em; font-style: italic; }
.price__unit {
  margin-top: .5rem;
  font-size: .72rem; font-weight: 500;
  color: var(--ink-faint);
}
.price__list {
  list-style: none;
  margin: 1.6rem 0 2rem;
  display: flex; flex-direction: column; gap: .65rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  flex: 1;
}
.price__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.price__list li::before {
  content: '';
  position: absolute; left: 0; top: .42em;
  width: .85em; height: .55em;
  border-left: 1.5px solid var(--pine);
  border-bottom: 1.5px solid var(--pine);
  transform: rotate(-45deg);
}
.price--featured { transform: translateY(-.75rem); }
.price--featured.shell { background: rgba(14, 111, 116, .14); border-color: rgba(14, 111, 116, .25); box-shadow: var(--shadow-float); }
.price--featured .price__core { background: var(--pine-deep); position: relative; }
.price--featured .price__name,
.price--featured .price__num { color: var(--cream); }
.price--featured .price__desc { color: rgba(246, 241, 232, .65); }
.price--featured .price__unit { color: rgba(246, 241, 232, .45); }
.price--featured .price__list { border-color: var(--line-light); }
.price--featured .price__list li { color: rgba(246, 241, 232, .75); }
.price--featured .price__list li::before { border-color: var(--amber-soft); }
.price--featured .btn--primary { background: var(--amber); border-color: var(--amber); box-shadow: 0 18px 40px -16px rgba(194, 112, 46, .5); }
.price--featured .btn--primary:hover { background: #A85D24; }
.price__flag {
  position: absolute; top: -2.55rem; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream);
  background: var(--amber);
  border-radius: 999px;
  padding: .6em 1.4em;
  box-shadow: 0 10px 24px -10px rgba(194, 112, 46, .6);
}
.price--featured .price__core { margin-top: 0; }
.price--featured { margin-top: 1.4rem; }

.extras { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.extras__core { padding: clamp(1.8rem, 3.5vw, 2.6rem); }
.extras__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
}
.extras__list { display: flex; flex-direction: column; }
.extras__list > div {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1.5rem;
  padding-block: .95rem;
  border-top: 1px solid var(--line);
}
.extras__list dt { font-size: .92rem; color: var(--ink-soft); }
.extras__list dd {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--pine);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.extras__note {
  margin-top: 1.4rem;
  font-size: .82rem;
  color: var(--ink-faint);
  max-width: 42rem;
}
.pricing__urgency {
  margin-top: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  gap: .6rem;
  text-align: center;
  font-size: .88rem; font-weight: 500;
  color: var(--amber);
}
.pricing__urgency svg { width: 1rem; height: 1rem; flex: none; }

/* ============================================================
   VÉLEMÉNYEK
   ============================================================ */
.reviews { overflow: clip; position: relative; }
.reviews::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40rem 26rem at 12% 8%, rgba(26, 148, 153, .14), transparent 60%),
    radial-gradient(36rem 26rem at 90% 90%, rgba(217, 146, 79, .07), transparent 60%);
  pointer-events: none;
}
.reviews__badge {
  margin-top: 1.6rem;
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .78rem; font-weight: 500;
  color: rgba(246, 241, 232, .6);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: .6em 1.4em;
}
.featured-review {
  max-width: 52rem;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
}
.featured-review blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(246, 241, 232, .88);
}
.featured-review em { font-style: italic; color: var(--amber-soft); }
.featured-review__caption {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.featured-review__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 1.5px solid rgba(246, 241, 232, .18);
  flex-shrink: 0;
}
.featured-review__name {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(246, 241, 232, .55);
}
.featured-review__sep {
  color: rgba(246, 241, 232, .25);
  font-size: .78rem;
}
.featured-review__brand {
  height: 26px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.38);
}

.reviews__rows { display: flex; flex-direction: column; gap: 1.25rem; position: relative; }
.marquee--reviews { padding-block: .25rem; }
.marquee--reviews .marquee__track { gap: 1.25rem; align-items: stretch; }
.rcard {
  width: clamp(17rem, 28vw, 21rem);
  flex: none;
  background: var(--dark-2);
  border: 1px solid rgba(246, 241, 232, .09);
  border-radius: 1.4rem;
  padding: 1.5rem 1.6rem;
  box-shadow: inset 0 1px 1px rgba(246, 241, 232, .06);
  display: flex; flex-direction: column;
  transition: border-color .4s, transform .6s var(--ease);
}
.rcard:hover { border-color: rgba(217, 146, 79, .35); transform: translateY(-3px); }
.rcard__stars {
  color: var(--amber-soft);
  letter-spacing: .2em;
  font-size: .8rem;
  margin-bottom: .9rem;
}
.rcard p {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(246, 241, 232, .78);
  flex: 1;
}
.rcard footer {
  margin-top: 1.1rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(246, 241, 232, .45);
}

/* ============================================================
   GYIK
   ============================================================ */
.faq { border-top: 1px solid var(--line-strong); }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem .25rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  letter-spacing: -.005em;
  transition: color .35s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--pine); }
.faq__ic {
  position: relative;
  width: 2.2rem; height: 2.2rem; flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .6s var(--ease);
}
.faq__ic::before, .faq__ic::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  width: .8rem; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .6s var(--ease);
}
.faq__ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__ic { background: var(--pine); border-color: var(--pine); color: var(--cream); transform: rotate(180deg); }
.faq__item[open] .faq__ic::after { transform: translate(-50%, -50%) rotate(0deg); }
/* Smooth expand where ::details-content is supported (Chromium 131+) */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq__item::details-content {
    opacity: 0;
    block-size: 0;
    overflow-y: clip;
    transition: content-visibility .55s allow-discrete, opacity .55s var(--ease), block-size .55s var(--ease);
  }
  .faq__item[open]::details-content { opacity: 1; block-size: auto; }
}
.faq__body { padding: 0 .25rem 1.7rem; }
.faq__body p {
  max-width: 44rem;
  font-size: .96rem;
  color: var(--ink-soft);
}
.faq__body a { color: var(--pine); border-bottom: 1px solid currentColor; }

/* ============================================================
   KAPCSOLAT — mad-libs form
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 1.25rem;
  align-items: start;
}
.quote { display: block; }
.quote__core { padding: clamp(1.8rem, 4vw, 3rem); }
.quote__sentence {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: -.005em;
}
.fld { display: inline-block; position: relative; vertical-align: baseline; }
.fld input {
  font-family: var(--serif); font-style: italic;
  font-size: inherit; font-weight: 400;
  color: var(--pine);
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--line-strong);
  padding: 0 .2em .05em;
  width: 11ch;
  min-width: 6ch;
  transition: border-color .35s, width .2s ease-out;
}
.fld input:focus { outline: none; border-color: var(--pine); }
.fld input::placeholder { color: var(--ink-faint); font-style: italic; }
.fld input.invalid { border-color: var(--amber); }
.fld--select select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--serif); font-style: italic;
  font-size: inherit;
  color: var(--pine);
  background: rgba(14, 111, 116, .08);
  border: 1px solid rgba(14, 111, 116, .18);
  border-radius: 999px;
  padding: .02em 1.9em .08em .8em;
  cursor: pointer;
  transition: background .35s, border-color .35s;
}
.fld--select select:hover { background: rgba(14, 111, 116, .14); }
.fld--select select:focus { outline: none; border-color: var(--pine); }
.fld--select svg {
  position: absolute; right: .7em; top: 50%;
  width: .8em; height: .8em;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--pine);
}
.quote__msg-label {
  display: block;
  margin-top: 2rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.quote__msg-label small { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-faint); }
.quote__core textarea {
  width: 100%;
  margin-top: .7rem;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: rgba(26, 31, 28, .035);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: .9rem 1.1rem;
  resize: vertical;
  min-height: 4.5rem;
  transition: border-color .35s, background .35s;
}
.quote__core textarea:focus { outline: none; border-color: var(--pine); background: var(--cream); }
.quote__actions {
  margin-top: 1.8rem;
  display: flex; align-items: center; gap: 1.4rem;
  flex-wrap: wrap;
}
.quote__note { font-size: .78rem; color: var(--ink-faint); max-width: 18rem; }
.quote__success {
  margin-top: 1.4rem;
  font-size: .9rem;
  color: var(--pine);
  background: rgba(14, 111, 116, .08);
  border: 1px solid rgba(14, 111, 116, .2);
  border-radius: 1rem;
  padding: 1rem 1.3rem;
}
.quote__success a { border-bottom: 1px solid currentColor; }

.contact__info { display: flex; flex-direction: column; gap: 1.25rem; }
.cinfo { padding: clamp(1.6rem, 3vw, 2.2rem); }
.cinfo__label {
  font-size: .64rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-faint);
}
.cinfo__phone {
  display: inline-block;
  margin-top: .5rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 1.95rem);
  color: var(--pine);
  font-variant-numeric: tabular-nums;
  transition: opacity .3s;
}
.cinfo__phone:hover { opacity: .7; }
.cinfo__hours { margin-top: .3rem; font-size: .82rem; color: var(--ink-soft); }
.cinfo__rule { border: 0; border-top: 1px solid var(--line); margin-block: 1.4rem; }
.cinfo__mail {
  display: inline-block;
  margin-top: .5rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem;
  color: var(--pine);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.cinfo__mail:hover { border-color: currentColor; }
.cinfo__area { margin-top: .5rem; font-size: .95rem; }
.cinfo__area small { color: var(--ink-faint); }

.cmap {
  min-height: 13rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: var(--cream);
}
.cmap__pin { display: flex; color: var(--amber-soft); margin-bottom: .8rem; }
.cmap__pin svg { width: 1.6rem; height: 1.6rem; }
.cmap__city { font-family: var(--serif); font-size: 1.5rem; }
.cmap__coords {
  margin-top: .3rem;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .2em;
  color: rgba(246, 241, 232, .5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(246, 241, 232, .7);
  padding: clamp(4rem, 8vw, 6rem) 0 2.5rem;
  overflow: clip;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
  font-size: .9rem;
}
.footer__heading {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: var(--amber-soft); }
.footer__nav { display: flex; flex-direction: column; gap: .45rem; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  padding-top: 2rem;
  font-size: .74rem;
  color: rgba(246, 241, 232, .4);
}
.footer__admin {
  color: rgba(246, 241, 232, .4);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 241, 232, .18);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.footer__admin:hover { color: var(--amber-soft); border-color: var(--amber-soft); }

/* ============================================================
   REFERENCIÁK — portfolio
   ============================================================ */
.portfolio {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.portcard {
  display: flex;
  min-width: 0;
  transition: transform .7s var(--ease), box-shadow .7s var(--ease);
}
.portcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }

.portcard__core {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.portcard:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.portcard:nth-child(2) { grid-column: span 5; }
.portcard:nth-child(3) { grid-column: span 5; }
.portcard:nth-child(4) { grid-column: span 6; }
.portcard:nth-child(5) { grid-column: span 6; }

.portcard__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--r-core) - .35rem) calc(var(--r-core) - .35rem) 0 0;
  margin: .65rem .65rem 0;
  overflow: hidden;
}
.portcard__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--ease);
}
.portcard:hover .portcard__media img { transform: scale(1.04); }
.portcard__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top right, rgba(7,26,27,.18), transparent 55%),
    linear-gradient(to bottom, rgba(7,26,27,.25) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}
.portcard__media .ph__ac {
  width: 54%;
  max-width: 13rem;
  color: rgba(246,241,232,.22);
  transition: transform .9s var(--ease);
  z-index: 1;
  position: relative;
}
.portcard:hover .portcard__media .ph__ac { transform: scale(1.07) translateY(-4px); }

.portcard:nth-child(1) .portcard__media {
  aspect-ratio: auto;
  flex: 1;
  min-height: 22rem;
  margin-bottom: 0;
}
.portcard:nth-child(1) .portcard__media .ph__ac {
  width: 62%;
  max-width: 18rem;
}

.portcard__badge {
  position: absolute;
  top: .9rem; left: .9rem;
  z-index: 2;
  font-size: .55rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(7,26,27,.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(246,241,232,.16);
  border-radius: 999px;
  padding: .5em 1.1em;
}

.portcard__body {
  padding: 1.3rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .32rem;
}
.portcard:nth-child(1) .portcard__body { padding: 1.5rem 1.8rem 1.8rem; }

.portcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .15rem;
}

.portcard__loc {
  display: inline-flex;
  align-items: center;
  gap: .32em;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint);
}
.portcard__loc svg { width: .75em; height: .75em; flex: none; }

.portcard__year {
  font-family: var(--serif); font-style: italic;
  font-size: .8rem;
  color: var(--amber);
}

.portcard__title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.42rem);
  line-height: 1.14;
  letter-spacing: -.01em;
}
.portcard:nth-child(1) .portcard__title {
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
}

.portcard__sub {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-top: .1rem;
}

.portcard__specs {
  display: flex;
  flex-wrap: wrap;
  gap: .36rem;
  margin-top: .65rem;
}
.portcard__specs span {
  font-size: .63rem; font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: rgba(26,31,28,.03);
  border-radius: 999px;
  padding: .3em .82em;
  white-space: nowrap;
}

.portfolio__note {
  margin-top: 2.4rem;
  font-size: .9rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Portfolio gradient placeholders */
.ph--port1 {
  background:
    radial-gradient(ellipse 78% 58% at 22% 80%, rgba(26,148,153,.58), transparent 56%),
    radial-gradient(ellipse 44% 30% at 82% 16%, rgba(246,241,232,.08), transparent 50%),
    linear-gradient(162deg, #041820 0%, #073038 22%, #0A5060 42%, #0E6F74 60%, #1A9499 78%, #68C4C8 93%, #C0EAEB 100%);
}
.ph--port2 {
  background:
    radial-gradient(ellipse 60% 46% at 78% 20%, rgba(217,146,79,.42), transparent 54%),
    radial-gradient(ellipse 36% 26% at 12% 84%, rgba(7,26,27,.55), transparent 48%),
    linear-gradient(148deg, #0C0806 0%, #2C1606 26%, #682E14 50%, #C05C28 70%, #E88040 90%);
}
.ph--port3 {
  background:
    radial-gradient(ellipse 50% 40% at 24% 70%, rgba(194,112,46,.22), transparent 52%),
    radial-gradient(ellipse 36% 28% at 84% 22%, rgba(255,255,255,.24), transparent 50%),
    linear-gradient(132deg, #C0A040 0%, #DEC870 30%, #F5E8B0 55%, #E4CC70 78%, #B89830 100%);
}
.ph--port4 {
  background:
    radial-gradient(ellipse 66% 52% at 34% 38%, rgba(255,255,255,.42), transparent 56%),
    radial-gradient(ellipse 40% 30% at 82% 74%, rgba(14,111,116,.16), transparent 50%),
    linear-gradient(138deg, #9ABEC8 0%, #C0D8E4 28%, #DDEEF4 55%, #CCEAF0 75%, #A8CCD8 100%);
}
.ph--port5 {
  background:
    radial-gradient(ellipse 54% 40% at 72% 26%, rgba(26,148,153,.22), transparent 52%),
    radial-gradient(ellipse 36% 30% at 12% 76%, rgba(246,241,232,.04), transparent 48%),
    linear-gradient(148deg, #050C14 0%, #0C1E2E 28%, #142C42 52%, #1C3E5C 70%, #286080 92%);
}
.ph--port6 {
  background:
    radial-gradient(ellipse 54% 44% at 28% 72%, rgba(240,180,60,.34), transparent 56%),
    radial-gradient(ellipse 34% 24% at 84% 18%, rgba(255,240,160,.22), transparent 50%),
    linear-gradient(143deg, #180E04 0%, #452408 28%, #8C5018 52%, #C48828 72%, #E4B848 88%, #F8E070 100%);
}

/* ── Mobile call FAB ─────────────────────────────────────── */
.callfab {
  display: none;
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, calc(env(safe-area-inset-bottom) + .4rem));
  z-index: 85;
  align-items: center; gap: .55rem;
  background: var(--pine);
  color: var(--cream);
  font-size: .82rem; font-weight: 700;
  border-radius: 999px;
  padding: .85rem 1.4rem;
  box-shadow: 0 18px 40px -12px rgba(8, 58, 61, .55);
}
.callfab svg { width: 1rem; height: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento__cell, .bento__cell--wide, .bento__cell--accent { grid-column: span 6; }
  .catalog { grid-template-columns: repeat(2, 1fr); }
  .portcard:nth-child(1) { grid-column: span 12; grid-row: span 1; }
  .portcard:nth-child(2) { grid-column: span 6; }
  .portcard:nth-child(3) { grid-column: span 6; }
  .portcard:nth-child(4),
  .portcard:nth-child(5) { grid-column: span 6; }
  .portcard:nth-child(1) .portcard__media { aspect-ratio: 16 / 6; flex: none; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: block; }
  .nav__pill { padding-left: 1.15rem; gap: 1rem; }
  .nav__actions { margin-left: auto; gap: .6rem; }
  .hero__chip--temp { top: clamp(6rem, 13vh, 8rem); padding: .7rem 1rem; }
  .hero__chip-num { font-size: 1.55rem; }
  .hero__scroll { display: none; }
  .thermo { min-height: clamp(28rem, 80vh, 36rem); }
  .about { grid-template-columns: 1fr; }
  .about__media { position: static; max-width: 26rem; }
  .hp__core { grid-template-columns: 1fr; }
  .hp__media { min-height: 11rem; margin: .65rem .65rem 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price--featured { transform: none; margin-top: 1.6rem; }
}

@media (max-width: 768px) {
  .section { padding-block: 4.5rem; }
  .hero__chip--temp { display: none; }

  /* Hero: stronger overlay so text stays legible on the bright image */
  .hero__scrim {
    background:
      linear-gradient(to top,
        rgba(7, 26, 27, .96) 0%,
        rgba(7, 26, 27, .88) 24%,
        rgba(7, 26, 27, .66) 48%,
        rgba(7, 26, 27, .36) 72%,
        rgba(7, 26, 27, .14) 100%);
  }
  .hero__vignette { background: radial-gradient(150% 100% at 50% 64%, transparent 38%, rgba(7, 26, 27, .5) 100%); }
  /* Hero: tighter, calmer mobile layout */
  .hero__grid { padding-bottom: clamp(2.4rem, 7vh, 3.4rem); }
  .hero__eyebrow { margin-bottom: 1rem; }
  .hero__title { font-size: clamp(2.35rem, 10.4vw, 3.35rem); line-height: .99; }
  .hero__lead { margin-top: 1.15rem; font-size: 1rem; max-width: 100%; }
  .hero__cta { margin-top: 1.7rem; flex-direction: column; align-items: stretch; gap: .7rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__meta { margin-top: 1.7rem; gap: .5rem .7rem; font-size: .74rem; }
  .hero__meta-sep, .hero__meta-sep + span { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; }
  .stat:nth-child(3) { border-left: 0; }
  .bento { grid-template-columns: 1fr; gap: 1rem; }
  .bento__cell, .bento__cell--wide, .bento__cell--accent { grid-column: 1 / -1; }
  .bento__cell--wide .bento__core { flex-direction: column; }
  .bento__media { flex: none; margin: .65rem .65rem 0; min-height: 11rem; }
  .bento__cell--wide .bento__media { min-height: 0; aspect-ratio: 3 / 4; }
  .step { grid-template-columns: 3.4rem 1fr; }
  .step__tag { display: none; }
  .catalog { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .unit__body { padding: .9rem 1rem 1.1rem; }
  .unit__name { font-size: 1.1rem; }
  .unit__tag {
    font-size: .78rem; line-height: 1.4; margin-top: .35em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .unit__specs { margin-top: .55rem; gap: .3rem; }
  .unit__specs li { font-size: .6rem; padding: .3em .65em; }
  .unit__price { margin-top: .55rem; flex-direction: column; align-items: flex-start; gap: .1rem; }
  .unit__price span { font-size: 1.05rem; }
  .unit--featured .unit__price { flex-direction: row; align-items: baseline; gap: .35em; }
  .unit__more { margin-top: .65rem; font-size: .74rem; }
  /* Featured card stays a short, wide row (image + text side by side) like on desktop,
     instead of stacking — the long lead text is clamped so it can't blow out the row height. */
  .unit--featured .unit__media {
    flex: 0 0 36%;
    aspect-ratio: auto;
    min-height: 0;
    margin: .65rem 0 .65rem .65rem;
  }
  .unit--featured .unit__media .ph__ac { width: 72%; max-width: 9rem; }
  .unit--featured .unit__body { flex: 1 1 64%; padding: 1rem 1.1rem; }
  .unit--featured .unit__name { font-size: 1.2rem; }
  .unit--featured .unit__tag,
  .unit--featured .unit__lead {
    font-size: .78rem; line-height: 1.45; margin-top: .3em;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .unit--featured .unit__specs { margin-top: .55rem; }
  .unit--featured .unit__specs li { font-size: .6rem; padding: .3em .65em; }
  .unit--featured .unit__price { margin-top: .55rem; }
  .unit--featured .unit__price span { font-size: 1.05rem; }
  .unit--featured .unit__more { margin-top: .6rem; font-size: .74rem; }
  .pmodal__core { grid-template-columns: 1fr; grid-template-rows: none; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
  .pmodal__media { aspect-ratio: 16 / 10; margin: .65rem .65rem 0; flex: none; }
  .pmodal__features { grid-template-columns: 1fr; }
  .pmodal__body { padding: 1.7rem 1.5rem 1.8rem; overflow-y: visible; }
  .portcard, .portcard:nth-child(n) { grid-column: span 12; grid-row: span 1; }
  .portcard:nth-child(1) .portcard__media { aspect-ratio: 4 / 3; flex: none; }
  .thermo__facts { grid-template-columns: 1fr 1fr; }
  .quote__sentence { line-height: 2.3; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .callfab { display: inline-flex; }
  .extras__list > div { flex-direction: column; gap: .15rem; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .hline > span { transform: none; }
  .hero__img { animation: none; transform: scale(1.04); }
  .thermo__img { transform: none; }
  .hero__chip--temp { opacity: 1; transform: none; }
  .loader { display: none; }
}

/* ============================================================
   SZOLGÁLTATÁS-OLDAL — blueprint a /szolgaltatasok aloldalakhoz
   (klima-es-hoszivattyu-szereles.html és a többi szervizoldal)
   ============================================================ */

/* ── Service hero (dark) + morzsamenü ──────────────────────── */
.svchero { padding-top: clamp(7.5rem, 13vh, 10.5rem); padding-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.crumbs__list {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .55rem;
  list-style: none;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(246, 241, 232, .4);
}
.crumbs__list a { color: rgba(246, 241, 232, .72); transition: color .3s var(--ease); }
.crumbs__list a:hover { color: var(--cream); }
.crumbs__sep { color: rgba(246, 241, 232, .3); }
.crumbs__list [aria-current="page"] { color: var(--amber-soft); }

.svchero__grid {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
}
.svchero__grid--single { grid-template-columns: 1fr; max-width: 60rem; }
.svchero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }
.svchero__meta {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1.2rem;
  font-size: .8rem; color: rgba(246, 241, 232, .62);
}
.svchero__meta .stars { width: auto; }
.svchero__meta .stars svg { width: .95rem; height: .95rem; fill: var(--amber-soft); }
.svchero__meta-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(246, 241, 232, .3); }

.factcard__list { list-style: none; }
.factcard__list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: .9rem;
}
.factcard__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.factcard__list li:first-child { padding-top: 0; }
.factcard__list b { font-weight: 600; color: var(--cream); }
.factcard__list span { color: rgba(246, 241, 232, .6); text-align: right; }

/* ── Bevezető (cél: kulcsszógazdag, olvasható törzsszöveg) ──── */
.svc-lede {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.svc-lede__body > p { color: var(--ink-soft); }
.svc-lede__body > p + p { margin-top: 1.15rem; }
.svc-lede__body strong { color: var(--ink); font-weight: 600; }
.checks {
  list-style: none;
  margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.6rem;
}
.checks li { position: relative; padding-left: 1.9rem; font-size: .95rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--pine);
}
.checks li::after {
  content: ""; position: absolute; left: .36rem; top: .62em;
  width: .34rem; height: .18rem;
  border-left: 2px solid var(--cream); border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg);
}

/* Bemutató videó a bevezetőben */
.svcvideo { margin-top: 2.4rem; max-width: 26rem; }
.svcvideo__frame {
  position: relative;
  margin: .65rem .65rem 0;
  aspect-ratio: 16 / 9.5;
  border-radius: calc(var(--r-core) - .35rem);
  overflow: hidden;
  background: var(--dark);
}
.svcvideo__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.svcvideo__cap {
  display: flex; align-items: center; gap: .5em;
  padding: .9rem 1.1rem 1.05rem;
  font-size: .8rem; font-weight: 600;
  color: var(--ink-soft);
}
.svcvideo__cap svg { width: 1rem; height: 1rem; color: var(--pine); flex: none; }

/* ── Duó: klímaszerelés / hőszivattyú-szerelés ─────────────── */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.duo__core { padding: clamp(1.9rem, 3.5vw, 2.8rem); display: flex; flex-direction: column; height: 100%; }
.duo__ic {
  width: 3rem; height: 3rem; flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14, 111, 116, .1);
  color: var(--pine);
}
.duo__ic svg { width: 1.5rem; height: 1.5rem; }
.duo__core h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -.012em;
  margin-top: 1.2rem;
}
.duo__core > p { margin-top: .95rem; color: var(--ink-soft); font-size: .97rem; }
.duo__list { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: .65rem; }
.duo__list li { position: relative; padding-left: 1.4rem; font-size: .93rem; color: var(--ink-soft); }
.duo__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .42rem; height: .42rem; border-radius: 50%; background: var(--amber);
}
.duo .textlink { margin-top: auto; padding-top: 1.6rem; }

/* ── Miért a KlímaFlex (USP rács) ──────────────────────────── */
.usp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.usp__core { padding: clamp(1.7rem, 3vw, 2.3rem); height: 100%; }
.usp__n { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--amber); line-height: 1; }
.usp h3 { font-family: var(--serif); font-size: 1.3rem; letter-spacing: -.01em; margin-top: .7rem; }
.usp p { margin-top: .65rem; font-size: .93rem; color: var(--ink-soft); }

/* ── Szervizterület (helyi SEO) ────────────────────────────── */
.areas { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.areas li {
  padding: .5rem 1.05rem;
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: .85rem; font-weight: 500; color: var(--ink-soft);
  background: var(--cream);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.areas li:hover { border-color: var(--pine); color: var(--pine); }
.areas__note { margin-top: 1.6rem; font-size: .92rem; color: var(--ink-soft); max-width: 44rem; }

/* ── Záró CTA-sáv ──────────────────────────────────────────── */
.ctaband { text-align: center; }
.ctaband .section__head { margin-inline: auto; }
.ctaband__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.2rem; }

/* ── Márkaoldal (04) — ugrónavigáció + márkablokkok ────────── */
.brandnav { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .5rem; }
.brandnav a {
  display: inline-block;
  padding: .5rem 1.05rem;
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  background: var(--cream);
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.brandnav a:hover { border-color: var(--pine); color: var(--pine); }

.brandhead { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.6rem; }
.brandhead__logo {
  height: clamp(2rem, 4vw, 2.7rem); width: auto; max-width: 12rem;
  object-fit: contain; object-position: left center;
}
.brandhead h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -.015em; line-height: 1.05; }
.brandhead .eyebrow { margin-bottom: .7rem; }

.brandbody {
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
  align-items: start;
}
.brandbody__lede > p { color: var(--ink-soft); }
.brandbody__lede > p + p { margin-top: 1rem; }
.brandbody__lede strong { color: var(--ink); font-weight: 600; }

.brandwho__label {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber);
}
.brandwho__core { padding: clamp(1.5rem, 3vw, 2rem); }
.brandwho__core > p { margin-top: .9rem; font-size: .95rem; color: var(--ink-soft); }
.brandwho__tags { list-style: none; margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.brandwho__tags li {
  padding: .35rem .85rem;
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: .8rem; color: var(--ink-soft); background: var(--cream);
}
.section--alt .brandwho__tags li { background: var(--cream-2); }

.brandcat { margin-top: clamp(2rem, 4vw, 3rem); }

@media (max-width: 880px) {
  .svchero__grid { grid-template-columns: 1fr; align-items: start; gap: 2.4rem; }
  .svc-lede { grid-template-columns: 1fr; gap: 1.6rem; }
  .checks { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .usp { grid-template-columns: 1fr; }
  .svchero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .brandbody { grid-template-columns: 1fr; }
}

/* ============================================================
   JOGI OLDALAK — adatvédelmi tájékoztató, ászf
   ============================================================ */
.legal { font-size: .96rem; line-height: 1.75; color: var(--ink-soft); }
.legal h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: var(--ink);
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.1rem; color: var(--ink);
  margin-top: 1.8rem;
}
.legal p { margin-top: 1rem; }
.legal ul, .legal ol { margin-top: 1rem; padding-left: 1.3rem; }
.legal li { margin-top: .45rem; }
.legal li::marker { color: var(--pine); }
.legal a { color: var(--pine); text-decoration: underline; text-decoration-color: var(--line-strong); text-underline-offset: .15em; }
.legal a:hover { color: var(--pine-deep); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal__table-wrap { margin-top: 1rem; overflow-x: auto; }
.legal table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.legal th, .legal td { padding: .65rem .9rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal th { background: var(--cream-2); font-weight: 600; color: var(--ink); white-space: nowrap; }
