/* ============================================================
   parkerboat.hu — design rendszer
   Forrás: gyarto/design-elvek.md (parkerpoland.com DNS)
   Font: Manrope (TT Norms Pro helyettesítő — geometric sans 300/400/500/700)
   ============================================================ */

:root {
  /* márka-színek */
  --primary:    #91bbcc;
  --primary-h:  rgb(116, 150, 163);
  --secondary:  #16509d;
  --black:      #101922;
  --dark:       #000;
  --white:      #fff;
  --body:       #212529;
  --gray-100:   #fbfaf7;
  --gray-200:   #dad8d8;
  --gray-300:   #c8c8c8;
  --gray:       #6c757d;
  --border:     #dee2e6;
  --danger:     #db151b;

  /* radius */
  --r-btn:    50px;
  --r-card:   20px;

  /* szekció-térköz */
  --section-y: 90px;

  /* shadows */
  --shadow-sm: 0 .125rem .25rem rgba(16,25,34,.075);
  --shadow:    0 .5rem 1rem rgba(16,25,34,.15);
  --shadow-lg: 0 1rem 3rem rgba(16,25,34,.175);
  --shadow-header: 0 4px 6px #0000001a;

  /* container max-width */
  --container-xl: 1140px;
  --container-xxl: 1260px;
}

.page-home { --section-y: 120px; }

@media (max-width: 991px) { :root { --section-y: 50px; } }
@media (max-width: 575px) { :root { --section-y: 20px; } }

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary-h); }
button { font-family: inherit; }

/* ---------- headings — light 400, NEM bold ---------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0 0 .5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: inherit;
  text-wrap: balance;
}
h1, .h1 { font-size: 6rem; }                /* 96px */
h2, .h2 { font-size: 3.375rem; }            /* 54px */
h3, .h3 { font-size: 2.25rem; }             /* 36px */
h4, .h4 { font-size: 1.5rem; }              /* 24px */
h5, .h5 { font-size: 1.25rem; }             /* 20px */
h6, .h6 { font-size: .9375rem; }            /* 15px */

@media (max-width: 991px) {
  h1, .h1 { font-size: 54px; }
  h2, .h2 { font-size: 40px; }
  h3, .h3 { font-size: 28px; }
}
@media (max-width: 575px) {
  h1, .h1 { font-size: 44px; }
  h2, .h2 { font-size: 32px; }
  h3, .h3 { font-size: 24px; }
}

p { margin: 0 0 1rem; text-wrap: pretty; }
.lead { font-size: 1.125rem; line-height: 1.55; color: #4a525a; }

/* ---------- container ---------- */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
  max-width: var(--container-xxl);
}
.container-narrow { max-width: 960px; }
.container-text   { max-width: 760px; }
.container-fluid  { width: 100%; padding-inline: 1.5rem; }

@media (max-width: 575px) {
  .container, .container-fluid { padding-inline: 1.25rem; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  min-width: 146px;
  min-height: 44px;
  border-radius: var(--r-btn);
  border: 1px solid currentColor;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover {
  background: transparent;
  color: var(--black);
}
.btn-outline-black {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-black:hover {
  background: var(--black);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-h);
  border-color: var(--primary-h);
  color: var(--white);
}

.btn .arrow { display: inline-block; transition: transform .35s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: var(--white);
  box-shadow: var(--shadow-header);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 991px) {
  .site-header { padding: 14px 20px; }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
}
.site-logo .logo-mark {
  height: 24px;
  width: auto;
  display: block;
}
@media (max-width: 575px) { .site-logo .logo-mark { height: 21px; } }
.site-logo .sub {
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--gray);
  text-transform: uppercase;
  border-left: 1px solid var(--gray-200);
  padding-left: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .site-nav { gap: 22px; }
}
.site-nav a {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--black);
  transition: right .35s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after { right: 0; }

.site-nav .has-sub { position: relative; }
.site-nav .submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #f9f9f9;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  box-shadow: var(--shadow);
}
.site-nav .has-sub:hover .submenu,
.site-nav .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-nav .submenu a { white-space: nowrap; font-size: 14px; }
.site-nav .submenu a::after { display: none; }

.header-right {
  display: flex; align-items: center; gap: 18px;
}

/* mobile menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 30px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: var(--black);
  transition: transform .35s, top .35s, opacity .25s;
}
.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 22px; }
.menu-toggle.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

@media (max-width: 1099px) {
  .menu-toggle { display: block; }
  .site-nav,
  .header-right .btn { display: none; }
  .site-nav.open {
    display: flex;
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px;
    overflow-y: auto;
  }
  .site-nav.open a {
    font-size: 22px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }
  .site-nav.open .has-sub { width: 100%; }
  .site-nav.open .submenu {
    position: static;
    transform: none;
    opacity: 1; visibility: visible;
    background: transparent;
    box-shadow: none;
    padding: 6px 0 6px 16px;
    border-radius: 0;
  }
}

/* push body content below fixed header */
.page-body { padding-top: 0; }
.page-without-hero .page-body { padding-top: 130px; }
@media (max-width: 991px) {
  .page-without-hero .page-body { padding-top: 100px; }
}

/* ---------- hero (homepage) ---------- */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--dark);
  overflow: hidden;
  color: var(--white);
}
.section-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .65;
  filter: saturate(.92) contrast(1.05);
  animation: heroPan 24s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -2%); }
}
.section-hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.55) 100%);
}
.section-hero .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* alsó padding: a .hero-stats sáv (~90px desktop / ~74px tablet) fölött
     kell maradnia a lead szövegnek, ezért bőven a sáv-magasság fölött */
  padding: 0 40px 130px;
}
@media (max-width: 991px) { .section-hero .content { padding: 0 20px 110px; } }
@media (max-width: 575px) { .section-hero .content { padding: 0 20px 56px; } } /* itt a .hero-stats el van rejtve */

.section-display {
  font-size: clamp(40px, 11vw, 180px);
  line-height: .88;
  overflow-wrap: anywhere;
  word-break: keep-all;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0 0 28px;
  color: var(--white);
}
.section-display .em {
  font-style: italic;
  font-weight: 300;
  opacity: .95;
  /* dőlt glyph-ek (pl. "j", "f") túllóghatnak a karakterdobozon Safari-ban.
     A span-en levő padding-right szélesíti az inline elem teljes
     területét, így a layout engine korábbi sortörést választ — a dőlt
     szó nem marad sorvégen, ahol a túlhajtást levághatná az overflow. */
  padding-right: .15em;
}
.section-display .pipe { opacity: .35; margin: 0 .15em; font-weight: 200; }

.section-hero .hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.section-hero .hero-lead {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.86);
  margin: 0;
}
.section-hero .scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.section-hero .scroll-link .arrow-down {
  width: 1px; height: 60px;
  background: rgba(255,255,255,.5);
  position: relative;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(.4); transform-origin: top; }
  50% { transform: scaleY(1); }
}

/* ---------- section spacing ---------- */
.section {
  margin: var(--section-y) 0;
}
.section-tight { margin: calc(var(--section-y) / 2) 0; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
  display: inline-block;
}
.section-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.section-text { max-width: 640px; font-size: 17px; line-height: 1.55; color: #4a525a; }

/* ---------- vision intro ---------- */
.section-vision {
  text-align: center;
  padding: 40px 0;
}
.section-vision .container { max-width: 880px; }
.section-vision .section-display-mid {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.section-vision .lead {
  font-size: 19px;
  line-height: 1.55;
  color: #4a525a;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- models grid ---------- */
.section-models .section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.section-models .section-top .right {
  max-width: 360px;
  font-size: 15px;
  color: var(--gray);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1099px) { .models-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 575px)  { .models-grid { grid-template-columns: 1fr; } }

.model-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--black);
  transition: transform .4s ease;
}
.model-card:hover { transform: translateY(-4px); }
.model-card .image {
  position: relative;
  aspect-ratio: 400 / 480;
  border-radius: var(--r-card);
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-card .image img {
  width: 92%;
  height: auto;
  object-fit: contain;
  transition: transform .6s ease;
}
.model-card:hover .image img { transform: scale(1.04); }
.model-card .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16,25,34,.18));
  opacity: 0; transition: opacity .4s;
}
.model-card:hover .image::after { opacity: 1; }
.model-card .category {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
}
.model-card .body {
  padding: 22px 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.model-card .name {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}
.model-card .specs {
  font-size: 13px;
  color: var(--gray);
  margin: 4px 0 0;
}
.model-card .cta-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: grid; place-items: center;
  font-size: 18px;
  transition: background .35s, color .35s, border-color .35s;
  flex-shrink: 0;
}
.model-card:hover .cta-arrow {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ---------- image-with-text ---------- */
.section-iwt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .section-iwt { grid-template-columns: 1fr; gap: 40px; }
}
.section-iwt[data-variant="image-from-right"] .image { order: 2; }
@media (max-width: 991px) {
  .section-iwt[data-variant="image-from-right"] .image { order: 0; }
}
.section-iwt .image {
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 505 / 438;
  display: flex; align-items: center; justify-content: center;
}
.section-iwt .image img { width: 100%; height: 100%; object-fit: cover; }
.section-iwt .copy h3 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 18px;
}
.section-iwt .copy .eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px; display: block;
}
.section-iwt .copy p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a525a;
  margin: 0 0 14px;
}
.section-iwt .copy .actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- dark band — electric pitch ---------- */
.section-dark {
  background: var(--black);
  color: var(--white);
  margin: 0;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) { .section-dark { padding: 70px 0; } }
.section-dark .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) { .section-dark .grid { grid-template-columns: 1fr; gap: 50px; } }
.section-dark h2 {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--white);
}
.section-dark .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.section-dark .eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--primary);
}
.section-dark p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.6; }
.section-dark .stats-line {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.section-dark .stat .num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.section-dark .stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  letter-spacing: .04em;
}
.section-dark .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.section-dark .visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-card);
  overflow: hidden;
  background: linear-gradient(135deg, #1d2a3a, #0a1118);
  display: grid; place-items: center;
}
.section-dark .visual::before {
  content: "";
  position: absolute;
  width: 140%; height: 140%;
  background: radial-gradient(circle at 30% 30%, rgba(145,187,204,.35), transparent 50%);
  animation: rotateGlow 18s linear infinite;
}
@keyframes rotateGlow { to { transform: rotate(360deg); } }
.section-dark .visual .boat {
  position: relative; z-index: 1;
  width: 80%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
}

/* ---------- balaton band (image-with-text-large) ---------- */
.section-balaton {
  background: var(--gray-100);
  padding: 80px 0;
  margin: var(--section-y) 0 0;
}
@media (max-width: 991px) { .section-balaton { padding: 50px 0; } }
.section-balaton .grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) { .section-balaton .grid { grid-template-columns: 1fr; } }
.section-balaton .copy h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  margin: 0 0 20px;
  line-height: 1.05;
}
.section-balaton .icons {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 32px;
}
@media (max-width: 575px) { .section-balaton .icons { grid-template-columns: 1fr; } }
.section-balaton .ico {
  border-top: 1px solid var(--gray-300);
  padding-top: 18px;
}
.section-balaton .ico h5 { font-size: 16px; font-weight: 500; margin: 0 0 6px; }
.section-balaton .ico p  { font-size: 14px; color: var(--gray); margin: 0; }

.balaton-map {
  position: relative;
  aspect-ratio: 1.3 / 1;
  border-radius: var(--r-card);
  overflow: hidden;
  background: linear-gradient(135deg, #2a4a5c, #1a2a3a);
}
.balaton-map svg { width: 100%; height: 100%; display: block; }

/* ---------- card slider (ExploMar) ---------- */
.section-cards-slider .section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 24px;
}
.section-cards-slider .nav-buttons { display: flex; gap: 10px; }
.section-cards-slider .nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 20px;
  transition: background .3s, color .3s, border-color .3s;
}
.section-cards-slider .nav-btn:hover {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.section-cards-slider .nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.cards-track-wrap {
  overflow: hidden;
}
.cards-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
.motor-card {
  flex: 0 0 380px;
  background: var(--gray-100);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 460px;
}
@media (max-width: 575px) { .motor-card { flex-basis: 80%; } }
.motor-card .ico {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--primary);
}
.motor-card h4 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 8px;
}
.motor-card .sub {
  font-size: 13px; color: var(--gray);
  letter-spacing: .04em; margin-bottom: 18px;
}
.motor-card p {
  font-size: 15px;
  color: #4a525a;
  line-height: 1.55;
  margin: 0 0 18px;
}
.motor-card .specs {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  display: flex; gap: 24px;
}
.motor-card .specs .v { font-size: 20px; font-weight: 400; }
.motor-card .specs .l { font-size: 11px; color: var(--gray); letter-spacing: .08em; text-transform: uppercase; }

/* ---------- trailer band ---------- */
.section-trailer {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
  text-align: left;
  margin: 0;
}
@media (max-width: 991px) { .section-trailer { padding: 60px 0; } }
.section-trailer .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) { .section-trailer .grid { grid-template-columns: 1fr; } }
.section-trailer h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  margin: 0 0 20px;
  color: var(--white);
}
.section-trailer p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.55; margin: 0 0 24px; }
.trailer-list { display: flex; flex-direction: column; gap: 0; }
.trailer-list .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  gap: 16px;
}
.trailer-list .row:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.trailer-list .row .name { font-size: 18px; font-weight: 400; }
.trailer-list .row .meta { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }
.trailer-list .row .cap {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}

/* ---------- newsletter / contact band ---------- */
.section-newsletter {
  background: var(--gray-100);
  padding: 100px 0;
}
@media (max-width: 991px) { .section-newsletter { padding: 50px 0; } }
.section-newsletter .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) { .section-newsletter .grid { grid-template-columns: 1fr; gap: 32px; } }
.section-newsletter h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  margin: 0;
}
.section-newsletter form { position: relative; }
.section-newsletter input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-300);
  height: 60px;
  padding: 0 60px 0 0;
  font-size: 18px;
  font-family: inherit;
  outline: none;
  transition: border-color .25s;
}
.section-newsletter input:focus { border-bottom-color: var(--black); }
.section-newsletter button {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  padding: 8px 4px;
  transition: transform .25s;
}
.section-newsletter button:hover { transform: translate(4px, -50%); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray-100);
  padding: 0 0 50px;
  /* a top padding-ot a .footer-headline saját padding-top: 60px-je adja */
}
@media (max-width: 991px) { .site-footer { padding: 0 0 40px; } }
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;  /* távolság a .footer-headline elválasztó vonala alatt */
  margin-bottom: 60px;
}
@media (max-width: 991px) { .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 50px; } }
@media (max-width: 575px) { .site-footer .grid { grid-template-columns: 1fr; gap: 26px; margin-top: 40px; } }
.site-footer .brand .logo-mark {
  height: 26px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.site-footer .brand p { color: rgba(255,255,255,.65); font-size: 14px; max-width: 280px; }
.site-footer h6 {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a:not(.btn) { color: var(--gray-100); font-size: 14px; transition: color .25s; }
.site-footer a:not(.btn):hover { color: var(--primary); }
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .footer-bottom .copy { font-size: 13px; color: rgba(255,255,255,.55); }
.site-footer .lang { display: flex; gap: 12px; }
.site-footer .lang a { font-size: 13px; color: rgba(255,255,255,.55); }
.site-footer .lang a.active { color: var(--white); }

/* ---------- model page specifics ---------- */
.model-hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 120px 40px 60px;
  overflow: hidden;
}
@media (max-width: 991px) { .model-hero { padding: 100px 20px 40px; min-height: 80vh; } }
.model-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, #1d2a3a 0%, #000 75%);
}
.model-hero .stage {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  padding: 80px;
}
.model-hero .stage img {
  max-width: 90%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.7));
}
.model-hero .meta {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}
.model-hero .name {
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.model-hero .category {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.model-hero .tagline {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin: 14px 0 0;
}
.model-hero .quick-stats {
  display: flex; gap: 32px;
  font-size: 14px;
}
.model-hero .quick-stats .v { font-size: 22px; font-weight: 300; color: #fff; }
.model-hero .quick-stats .l { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 4px; }

.section-stats .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .section-stats .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .section-stats .grid { grid-template-columns: repeat(2, 1fr); } }
.section-stats .item {
  padding: 32px 0 0;
  border-top: 1px solid var(--gray-200);
}
.section-stats .item .title { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); margin: 0 0 12px; font-weight: 500; }
.section-stats .item .value { font-size: 30px; font-weight: 300; line-height: 1.1; }
.section-stats .item .value small { font-size: 16px; color: var(--gray); margin-left: 4px; }

/* model compare table */
.section-compare table { width: 100%; border-collapse: collapse; }
.section-compare th, .section-compare td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  vertical-align: middle;
}
.section-compare thead th {
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  border-bottom: 1px solid var(--black);
}
.section-compare thead th.current { background: var(--gray-100); }
.section-compare tbody th {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--gray);
}
.section-compare td.current { background: var(--gray-100); font-weight: 500; }

/* ---------- contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-info h3 { font-size: 32px; font-weight: 300; margin: 0 0 14px; }
.contact-info .block { margin-bottom: 28px; }
.contact-info .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.contact-info .value { font-size: 18px; font-weight: 400; }
.contact-info .value a { color: var(--black); border-bottom: 1px solid var(--gray-200); }
.contact-info .value a:hover { border-color: var(--black); }

.contact-form {
  background: var(--gray-100);
  border-radius: var(--r-card);
  padding: 40px;
}
@media (max-width: 575px) { .contact-form { padding: 28px; } }
.contact-form .field { margin-bottom: 22px; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--white);
  border: 0;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 16px;
  border-radius: 12px;
  outline: none;
  transition: box-shadow .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px var(--primary);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---------- generic page hero (non-home) ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gray-100);
}
@media (max-width: 991px) { .page-hero { padding: 110px 0 50px; } }
.page-hero .eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 14px; display: inline-block;
}
.page-hero h1 {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}
.page-hero .lead { font-size: 19px; color: #4a525a; max-width: 640px; }

/* ---------- video grid ---------- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--gray-100);
  display: grid; place-items: center;
  cursor: pointer;
}
.video-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.video-card:hover .bg { transform: scale(1.04); }
.video-card .play {
  position: relative; z-index: 1;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  font-size: 24px;
  color: var(--black);
}
.video-card .title {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* ---------- breadcrumb ---------- */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 18px;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb .sep { opacity: .5; }

/* ---------- utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.divider { height: 1px; background: var(--gray-200); margin: 60px 0; border: 0; }
.eyebrow-line { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--primary); }
.eyebrow-line::before { content: ""; width: 28px; height: 1px; background: currentColor; }


/* ============================================================
   PROMO BAR — fent, marquee, görgetésre eltűnik
   ============================================================ */
.promo-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 36px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: transform .45s ease, opacity .35s ease;
}
.promo-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.promo-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: promoMarquee 48s linear infinite;
  will-change: transform;
}
@keyframes promoMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.promo-item {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--black);
  padding: 0 22px;
  font-weight: 400;
}
.promo-item em {
  font-style: normal;
  opacity: .35;
  margin: 0 4px;
}
.promo-item a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(22,80,157,.25);
}
.promo-item a:hover { border-bottom-color: var(--secondary); }
.promo-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .55;
  flex: 0 0 auto;
}

/* promo láthatóság — toljuk lejjebb a fix headert */
body { padding-top: 0; }
.promo-bar:not(.hidden) ~ #site-header-slot .site-header,
.promo-bar:not(.hidden) + #site-header-slot .site-header {
  top: 36px;
}
.site-header { top: 0; transition: top .45s ease; }

@media (max-width: 575px) {
  .promo-bar { height: 32px; }
  .promo-item { font-size: 11px; padding: 0 16px; }
}


/* ============================================================
   HEADER CTA — "Beszéljünk a vízen" gomb
   ============================================================ */
.btn-cta-talk {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  padding: 12px 22px 12px 18px;
  gap: 10px;
}
.btn-cta-talk:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.btn-cta-talk .cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(145,187,204,.7);
  animation: ctaPulse 2.2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(145,187,204,.55); }
  50%     { box-shadow: 0 0 0 6px rgba(145,187,204,0); }
}


/* ============================================================
   HERO STATS OVERLAY — lebegő spec-ticker a hero alján
   ============================================================ */
.hero-stats {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(0deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-stats .stat {
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}
.hero-stats .stat:first-child { border-left: 0; }
.hero-stats .stat b {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.005em;
  color: var(--white);
}
.hero-stats .stat span {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
@media (max-width: 991px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat:nth-child(3) { border-left: 0; }
  .hero-stats .stat { padding: 16px 22px; }
  .hero-stats .stat b { font-size: 18px; }
}
@media (max-width: 575px) {
  .hero-stats { display: none; }
}


/* ============================================================
   KPI STRIP — főoldali számcsík, gray-100 háttér
   ============================================================ */
.section-kpi-strip {
  background: var(--gray-100);
  border-top: 1px solid rgba(16,25,34,.06);
  border-bottom: 1px solid rgba(16,25,34,.06);
  padding: 0;
}
.kpi-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--container-xxl);
  margin: 0 auto;
}
.kpi-strip-inner .kpi {
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid rgba(16,25,34,.07);
  position: relative;
}
.kpi-strip-inner .kpi:first-child { border-left: 0; }
.kpi-strip-inner .kpi .num {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: .95;
  color: var(--black);
  font-feature-settings: "ss01";
}
.kpi-strip-inner .kpi .num .sup {
  font-size: .5em;
  vertical-align: super;
  opacity: .55;
  margin-left: 4px;
  letter-spacing: .04em;
  font-weight: 400;
}
.kpi-strip-inner .kpi .lbl {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
@media (max-width: 991px) {
  .kpi-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .kpi-strip-inner .kpi:nth-child(3) { border-left: 0; }
  .kpi-strip-inner .kpi { padding: 30px 24px; }
}
@media (max-width: 575px) {
  .kpi-strip-inner { grid-template-columns: 1fr 1fr; }
  .kpi-strip-inner .kpi:nth-child(5) { grid-column: 1 / -1; border-left: 0; border-top: 1px solid rgba(16,25,34,.07); }
}


/* ============================================================
   REFERENCIÁK — számozott Balaton-sztorik
   ============================================================ */
.section-references {
  background: var(--white);
  padding: var(--section-y) 0;
  position: relative;
}
.section-references::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gray-200);
}
.references-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.references-head h2 {
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: .96;
  letter-spacing: -.02em;
  margin: 18px 0 0;
}
.references-head h2 em {
  font-style: italic;
  color: var(--primary-h);
}
.references-head .right {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.55;
  max-width: 480px;
  justify-self: end;
}
@media (max-width: 991px) {
  .references-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .references-head .right { justify-self: start; }
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) { .references-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .references-grid { grid-template-columns: 1fr; } }

.reference-card {
  background: var(--gray-100);
  border-radius: var(--r-card);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid transparent;
  transition: border-color .35s, transform .35s, background .35s;
  position: relative;
  overflow: hidden;
}
.reference-card:hover {
  border-color: var(--gray-200);
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16,25,34,.06);
}
.reference-card .ref-num {
  font-size: 11px;
  letter-spacing: .26em;
  color: var(--primary);
  font-weight: 500;
}
.reference-card h3 {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0;
}
.reference-card .ref-quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray);
  margin: 0;
  font-style: italic;
}
.reference-card .ref-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(16,25,34,.08);
}
.reference-card .ref-meta li {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 5px 10px;
  border-radius: 50px;
  list-style: none;
}
.reference-card .ref-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.reference-card .ref-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-h));
  color: var(--white);
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}
.reference-card .ref-name {
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
}
.reference-card .ref-name small {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
  margin-top: 2px;
}


/* ============================================================
   FOOTER HEADLINE BLOCK — "Beszéljünk a vízen"
   ============================================================ */
.footer-headline {
  padding: 60px 0 80px;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.footer-headline::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(145,187,204,.12), transparent 60%);
  pointer-events: none;
}
.footer-display {
  font-size: clamp(60px, 11vw, 180px);
  line-height: .88;
  letter-spacing: -.025em;
  font-weight: 300;
  margin: 0 0 40px;
  color: var(--white);
  text-wrap: balance;
}
.footer-display .em {
  font-style: italic;
  color: var(--primary);
  opacity: .92;
}
.footer-lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 0 40px;
}
.footer-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer-headline { padding: 40px 0 50px; }
  .footer-display { margin-bottom: 28px; }
  .footer-lead { font-size: 16px; margin-bottom: 28px; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   COOKIE CONSENT SÁV
   ============================================================ */
.cookie-bar {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 1100;
  background: var(--black);
  color: var(--gray-100);
  border-radius: var(--r-card);
  padding: 22px 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-bar.show { opacity: 1; transform: translateY(0); }
.cookie-bar[hidden] { display: none; }
.cookie-text {
  display: flex; flex-direction: column; gap: 5px;
  flex: 1 1 380px; min-width: 0;
}
.cookie-text strong {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
.cookie-text span { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.55; }
.cookie-text a { color: var(--gray-100); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { min-width: auto; min-height: 44px; padding: 12px 22px; font-size: 13px; }
@media (max-width: 575px) {
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
