/* Homepage: hero, webshop, extra sections (after site-subpage.css) */

/* Hero CTA — a középre zárt szövegblokk közepén */
.hero__cta-wrap {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  text-align: center;
  width: auto;
  max-width: 100%;
  margin-top: clamp(1.5rem, 3.5vw, 2.15rem);
  padding: 12px 8px 14px 0;
  margin-left: 0;
  margin-right: 0;
}

.hero__cta-wrap .btn-hero-cta {
  position: relative;
  z-index: 1;
}

.hero__cta-wrap::before {
  content: "";
  position: absolute;
  left: -42%;
  right: -48%;
  top: -75%;
  bottom: -90%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 52% 40% at 20% 30%, rgba(255, 218, 195, 0.7) 0%, transparent 58%),
    radial-gradient(ellipse 44% 50% at 55% 58%, rgba(235, 180, 140, 0.52) 0%, transparent 56%),
    radial-gradient(ellipse 36% 38% at 85% 32%, rgba(255, 232, 210, 0.45) 0%, transparent 52%),
    radial-gradient(ellipse 46% 44% at 38% 85%, rgba(195, 130, 88, 0.48) 0%, transparent 55%),
    radial-gradient(ellipse 32% 36% at 72% 18%, rgba(245, 200, 165, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 28% 34% at 48% 42%, rgba(255, 210, 175, 0.35) 0%, transparent 48%);
  filter: blur(28px);
  opacity: 0.94;
  transform: rotate(-4deg) scale(1.06);
}

.hero__cta-wrap::after {
  content: "";
  position: absolute;
  left: -28%;
  right: -32%;
  top: -55%;
  bottom: -55%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 65% at 48% 48%, rgba(255, 195, 160, 0.32) 0%, transparent 70%);
  filter: blur(48px);
  opacity: 0.8;
}

/* Hero: szövegblokk balra tolva (margin-left), max 500px; sorok középre igazítva a blokkon belül; személy a képen jobbra */
@keyframes hero-content-reveal {
  from {
    opacity: 0;
    transform: translate3d(-0.5rem, 0.5rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Folyam: ugyanaz a felső tér + háttér, mint a webshop oldal első szekciója (webshop--standalone) */

/* Egy képernyő: hero border-box ≥ 100vh (main padding nélkül) */
main.main-offset--home .hero {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  /* Felső tér: .hero__layout; szöveg: .hero__inner padding-top = --header-h + lélegzet (clamp) */
  padding-top: var(--header-h);
  box-sizing: border-box;
  overflow-x: clip;
  overflow-y: clip;
  background-color: transparent; /* ne engedje átütni a body hátterét */
  /* Webshop .webshop első háttérrétege: a nav alatti sáv ugyanaz a hangulat */
  background-image: linear-gradient(
    180deg,
    var(--hero-fallback-bg) 0%,
    rgba(14, 9, 7, 0.65) 38%,
    transparent 100%
  );
  background-size: 100% var(--section-blend-h);
  background-position: 0 0;
  background-repeat: no-repeat;
}

/* Egy cellás rács: háttér = kép + scrim; előtér = .hero__inner (z-index) — fejléc magasságával felhúzva + belső padding */
.hero__layout {
  position: absolute;
  top: calc(var(--header-h) * -1); /* negatív margin a header magasságával */
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: var(--header-h);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  min-height: 0;
  isolation: isolate;
}

.hero__layout > .hero__visual {
  grid-area: 1 / 1;
  position: absolute;
  top: calc(var(--header-h));
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-h));
  z-index: 0;
}

/* A .hero__visual-on belül: teteje = a vizuális cella teteje (a hero paddingje a szekción kívül marad) */
.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: var(--hero-fallback-bg);
}

.hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.85s ease, transform 1s ease;
}

.hero__media.hero__media--loaded .hero__media-img {
  opacity: 1;
  transform: scale(1);
}

/* Bal: sötét → jobbra átlátszó (olvashatóság). Ugyanez a .hero::before-on nem stackelhetne a kép/szöveg közé. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 35%,
      rgba(0, 0, 0, 0.25) 65%,
      transparent 100%
    ),
    linear-gradient(to top, rgba(4, 2, 1, 0.5) 0%, transparent 44%);
}

/* Elöl; függőlegesen középen; a szövegoszlop vízszintesen középre zárt, a sorok balra igazítottak */
.hero__layout > .hero__inner {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: stretch;
  width: 100%;
}

.hero__inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-top: calc(var(--header-h) + clamp(2.25rem, 5vw, 3.5rem));
  padding-bottom: clamp(1rem, 3vw, 2.25rem);
  padding-left: clamp(1rem, 4vw, 1.75rem);
  padding-right: clamp(1.35rem, 5.5vw, 3.25rem);
}

/* Szöveg + gomb: sorok középre igazítva; szélesség / margó reszponzív (clamp) */
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  width: 100%;
  max-width: min(500px, 100%);
  flex: 0 0 auto;
  margin-left: clamp(1rem, 5vw, 3.75rem);
  margin-right: auto;
  padding-inline: clamp(0, 1.5vw, 0.35rem);
  overflow-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  z-index: 1;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(-0.5rem, 0.5rem, 0);
  will-change: opacity, transform;
}

/* Betöltő után (body osztály a site-content.js-ből): szöveg + gomb együtt */
body.mona-home-ready .hero__text {
  animation: hero-content-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

/* Tipográfia: :root --btn-booking-label-* (nav Időpontfoglalással megegyező felirat) */
.hero__text .btn-hero-cta {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: clamp(0.35rem, 1.5vw, 0.75rem);
  padding: clamp(0.72rem, 1.8vw, 0.85rem) clamp(1.25rem, 4vw, 1.85rem);
  max-width: 100%;
  text-shadow: none;
}

.hero__text .btn-hero-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: var(--btn-booking-shadow-hover);
}

.hero__text .btn-hero-cta:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__text {
    will-change: auto;
  }

  body.mona-home-ready .hero__text {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__text .hero__cta-wrap .btn-gold,
  .hero__text .hero__cta-wrap .btn-gold:hover,
  .hero__text .hero__cta-wrap .btn-gold:active {
    transform: none;
    transition: none;
  }
}

/* Alsó sötétítés főleg balra; a .hero__visual alján */
.hero__bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(96px, 20vh, 200px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--hero-fallback-bg) 0%,
    rgba(14, 9, 7, 0.45) 38%,
    rgba(18, 11, 9, 0.14) 68%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 78%);
  mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 78%);
}

@media (max-width: 900px) {
  .hero__scrim {
    background:
      linear-gradient(
        to right,
        rgba(2, 1, 0, 0.98) 0%,
        rgba(10, 6, 4, 0.92) 35%,
        rgba(18, 11, 8, 0.55) 62%,
        rgba(28, 18, 12, 0.15) 84%,
        transparent 96%
      ),
      linear-gradient(to top, rgba(4, 2, 1, 0.48) 0%, transparent 40%);
  }

  .hero__inner {
    justify-content: flex-start;
    align-items: center;
    padding-top: calc(var(--header-h) + clamp(2rem, 4.5vw, 3.25rem));
    padding-bottom: clamp(1rem, 4vw, 2.25rem);
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1.15rem, 5vw, 2.5rem);
  }

  .hero__text {
    align-items: center;
    text-align: center;
    max-width: min(500px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-inline: clamp(0.15rem, 2vw, 0.5rem);
  }

  .hero__text .hero__sub,
  .hero-title,
  .hero__text h1,
  .hero__body {
    text-align: center;
  }

  .hero__cta-wrap {
    align-self: center;
    justify-content: center;
    text-align: center;
  }

  .hero__bottom-fade {
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 50%, transparent 85%);
    mask-image: linear-gradient(to right, #000 0%, #000 50%, transparent 85%);
  }
}

/* Mobil: kép felül, szöveg és CTA alatta, középre; desktop változat érintetlen (min-width: 769px) */
@media (max-width: 768px) {
  main.main-offset--home .hero {
    min-height: 0;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    overflow-y: visible;
  }

  .hero__layout {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    top: calc(var(--header-h) * -1);
    left: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    padding-top: var(--header-h);
    box-sizing: border-box;
  }

  .hero__layout > .hero__visual {
    position: relative;
    grid-area: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: 56vh;
    aspect-ratio: 3 / 4;
    flex: 0 0 auto;
    z-index: 0;
  }

  .hero__media {
    position: absolute;
    inset: 0;
  }

  .hero__scrim {
    background:
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.2) 45%,
        rgba(0, 0, 0, 0.55) 100%
      ),
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.22) 50%,
        rgba(0, 0, 0, 0.15) 100%
      );
  }

  .hero__bottom-fade {
    height: clamp(72px, 14vh, 140px);
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 100%);
  }

  .hero__layout > .hero__inner {
    grid-area: auto;
    position: relative;
    align-self: stretch;
    justify-self: stretch;
    flex: 1 1 auto;
    z-index: 3;
  }

  .hero__inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    padding-top: clamp(1.25rem, 4vw, 1.75rem);
    padding-bottom: clamp(1.5rem, 5vw, 2.5rem);
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    background: linear-gradient(180deg, rgba(10, 6, 5, 0.98) 0%, rgba(14, 10, 8, 1) 55%, var(--hero-fallback-bg) 100%);
  }

  .hero__text {
    max-width: 90%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 18px;
    box-sizing: border-box;
  }

  .hero__cta-wrap {
    width: 100%;
    max-width: 90%;
    margin-top: clamp(1.25rem, 4vw, 1.75rem);
    padding: 12px 8px 14px;
    align-self: center;
  }

  .hero__text .hero__cta-wrap .btn-gold {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero h1,
  .hero-title,
  .hero__text h1 {
    font-size: clamp(28px, 7.5vw, 40px);
    margin-bottom: clamp(0.65rem, 3vw, 1rem);
  }

  .hero__text .hero__body {
    font-size: clamp(0.78rem, calc(0.36rem + 1.5vmin), 1rem);
    line-height: 1.58;
  }

  .hero__text .hero__body.highlight {
    font-size: clamp(0.82rem, calc(0.38rem + 1.55vmin), 1.02rem);
    line-height: 1.55;
  }

  .hero__text .hero__sub {
    font-size: clamp(0.82rem, calc(0.35rem + 1.5vmin), 1.12rem);
  }

  .hero-divider {
    margin: clamp(0.65rem, 2.5vw, 1rem) 0;
  }
}

.hero__text .hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 2.2vw, 0.85rem);
  width: 100%;
}

.hero-divider {
  width: 80px;
  height: 1px;
  margin: clamp(0.75rem, 2.5vw, 1.25rem) 0;
  border: none;
  align-self: center;
  background: rgba(230, 194, 159, 0.4);
}

.hero__text .hero__sub {
  font-size: clamp(0.88rem, calc(0.38rem + 1.85vmin), 1.35rem);
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.65rem;
  width: 100%;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero h1,
.hero-title,
.hero__text h1 {
  font-family: var(--font-hero);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 clamp(0.85rem, calc(0.35rem + 2.5vmin), 1.35rem);
  width: 100%;
  text-align: center;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.06);
  background: linear-gradient(185deg, #faf4ea 0%, #e8d4bc 42%, #c9a86c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

@supports not (background-clip: text) {
  .hero h1,
  .hero-title,
  .hero__text h1 {
    color: #f2e8d8;
    background: none;
    -webkit-text-fill-color: #f2e8d8;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
    text-align: center;
  }
}

.hero__text .hero__body {
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(0.8rem, calc(0.4rem + 1.65vmin), 1.12rem);
  color: rgba(235, 228, 218, 0.86);
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.015em;
  margin: 0;
  max-width: 100%;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__text .hero__body.highlight {
  margin-top: 0;
  padding: 0;
  font-weight: 500;
  font-size: clamp(0.84rem, calc(0.42rem + 1.75vmin), 1.14rem);
  line-height: 1.62;
  letter-spacing: 0.02em;
  color: rgba(244, 236, 226, 0.94);
  white-space: pre-line;
  text-align: center;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(0, 0, 0, 0.2);
}

.webshop-cta {
  text-align: center;
}

/* Főoldali webshop: nagyobb kártyák, kevesebb egyszerre — olvasható előnézet */
.webshop--home .webshop-intro {
  max-width: 40rem;
  margin: -1.25rem auto 2rem;
  text-align: center;
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.65;
  color: var(--muted);
}

.webshop--home .carousel {
  scroll-padding-inline: 0.5rem;
  padding-bottom: 1.5rem;
}

.webshop--home .carousel .product-card {
  flex: 0 0 min(300px, 88vw);
  max-width: 100%;
}

@media (min-width: 560px) {
  .webshop--home .carousel .product-card {
    flex: 0 0 calc((100% - 1 * 1.25rem) / 2);
  }
}

@media (min-width: 900px) {
  .webshop--home .carousel .product-card {
    flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  }
}

@media (min-width: 1200px) {
  .webshop--home .carousel .product-card {
    flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  }
}

.webshop--home .product-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.webshop-empty {
  margin: 0;
  padding: 2rem 1.25rem;
  text-align: center;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.webshop-empty code {
  font-size: 0.85em;
  color: rgba(201, 168, 108, 0.85);
}

@media (max-width: 480px) {
  .hero__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.extra-section {
  padding: 3rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

/* Főoldal: szekcióhátterek a viewport széléig; vízszintes margó a .section-inner-en marad */
main.main-offset--home > section {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

/* Szekciók között: finom arany sáv — görgetéskor húzódik be (lásd home-section-dividers.js) */
main.main-offset--home > section:not(:first-child)::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 108, 0.12) 14%,
    rgba(201, 168, 108, 0.42) 50%,
    rgba(201, 168, 108, 0.12) 86%,
    transparent 100%
  );
  pointer-events: none;
}

main.main-offset--home > section:not(:first-child).home-section--divider-drawn::before {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  main.main-offset--home > section:not(:first-child)::before {
    transform: scaleX(1);
    transition: none;
  }
}

main.main-offset--home > .extra-section {
  padding-left: 0;
  padding-right: 0;
}

/* Kétszlopos split: lásd css/split-reveal.css (.split-reveal-layout) */

.extra-section--split .extra-section__body {
  min-width: 0;
}

.extra-section--split .extra-section__heading,
.extra-section--split .extra-section__text {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.extra-section--split .extra-section__text {
  max-width: 36rem;
}

.extra-section--split .extra-section__list {
  display: block;
  margin: 1.35rem 0 0;
  max-width: 36rem;
  margin-left: 0;
  margin-right: 0;
}

.extra-section--split .extra-section__heading {
  margin-bottom: 1rem;
}

.extra-section__visual--kiemelt {
  position: relative;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  aspect-ratio: 4 / 5;
  max-height: min(620px, 78vh);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.extra-section__visual--kiemelt.extra-section__visual--empty {
  min-height: min(240px, 35vh);
}

.extra-section__visual--kiemelt.extra-section__visual--empty::after {
  content: "Kép feltöltése az adminban (Szolgáltatások szekció képe)";
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(240, 232, 223, 0.45);
  text-align: center;
  padding: 1.25rem;
  line-height: 1.45;
}

.extra-section__visual--kiemelt .extra-section__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .extra-section--split .extra-section__visual--kiemelt {
    max-height: min(420px, 65vh);
    margin: 0 auto;
    max-width: min(24rem, 100%);
  }
}

#kiemelt {
  background:
    linear-gradient(180deg, rgba(10, 6, 5, 0.45) 0%, rgba(12, 8, 6, 0.1) 26%, transparent 52px),
    linear-gradient(180deg, #0a0705 0%, #060403 100%);
}

/* Blog + galéria: két oszlop — kép, cím, tartalom; alul közös szöveg */
#blog-galeria {
  background:
    linear-gradient(180deg, rgba(8, 5, 4, 0.35) 0%, rgba(12, 8, 6, 0.08) 28%, transparent 52px),
    linear-gradient(180deg, #060403 0%, #0a0705 100%);
}

/* Blog + galéria: 4 gyerek egyetlen griden; desktopon képek felül, szöveg alul */
#blog-galeria .dual-layer__grid {
  padding-top: clamp(3rem, 6vw, 5rem);
  align-items: stretch;
}

#blog-galeria .dual-layer__visual--blog-img {
  grid-column: 1;
  grid-row: 1;
}

#blog-galeria .dual-layer__visual--galeria-img {
  grid-column: 2;
  grid-row: 1;
}

#blog-galeria #blog {
  grid-column: 1;
  grid-row: 2;
}

#blog-galeria #galeria {
  grid-column: 2;
  grid-row: 2;
}

#blog-galeria .dual-layer__visual--dual {
  width: 100%;
  max-width: min(22rem, 100%);
  justify-self: center;
}

#blog-galeria .dual-layer__col#galeria .dual-layer__gallery {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: min(22rem, 100%);
}

#blog-galeria .dual-layer__col {
  align-items: center;
  text-align: center;
  justify-content: space-between;
  flex: 1;
}

#blog-galeria .dual-layer__cta-wrap {
  margin-top: auto;
}

#blog-galeria .dual-layer__blog-list li {
  padding-left: 0;
}

#blog-galeria .dual-layer__blog-list li::before {
  position: static;
  display: inline-block;
  margin-right: 0.45rem;
  vertical-align: 0.18em;
}

.dual-layer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.dual-layer__col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dual-layer__visual--dual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 108, 0.18);
  aspect-ratio: 4 / 5;
  max-height: min(420px, 58vh);
  background: linear-gradient(145deg, rgba(201, 168, 108, 0.08), rgba(12, 8, 6, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
}

.dual-layer__visual--dual.dual-layer__visual--empty::after {
  content: "Kép — tölts fel az adminban";
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(240, 232, 223, 0.4);
  text-align: center;
  padding: 1rem;
  line-height: 1.45;
}

.dual-layer__visual--dual .dual-layer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dual-layer__col-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.dual-layer__col-intro {
  margin: 0 0 0.85rem;
  max-width: 28rem;
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(0.88rem, 1.85vw, 0.98rem);
  line-height: 1.55;
  color: var(--muted);
}

.dual-layer__blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.9vw, 1.02rem);
  line-height: 1.55;
  color: var(--muted);
}

.dual-layer__blog-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
}

.dual-layer__blog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.85;
}

.dual-layer__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.dual-layer__gallery-figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 108, 0.15);
  aspect-ratio: 1;
  background: rgba(12, 8, 6, 0.5);
}

.dual-layer__gallery-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dual-layer__cta-wrap {
  margin-top: auto;
}

.dual-layer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

/* Közös bevezető: elkülönített sáv a két oszlop alatt (üresen elrejtve) */
.dual-layer__foot-wrap:has(.dual-layer__foot-inner:empty) {
  display: none;
}

.dual-layer__foot-wrap {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(201, 168, 108, 0.3);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.dual-layer__foot-inner {
  text-align: center;
  padding: clamp(1.35rem, 3.5vw, 1.85rem) clamp(1.25rem, 4vw, 2rem);
  border-radius: 6px;
  background: rgba(10, 6, 5, 0.72);
  border: 1px solid rgba(201, 168, 108, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dual-layer__foot-line {
  margin: 0 0 1rem;
  color: var(--muted);
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
  line-height: 1.65;
}

.dual-layer__foot-line:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .dual-layer__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .dual-layer__visual--dual {
    max-height: 320px;
    margin: 0 auto;
    max-width: 22rem;
  }
}

#velemenyek {
  border-top: none;
  background:
    linear-gradient(180deg, rgba(8, 5, 4, 0.4) 0%, rgba(10, 7, 5, 0.08) 24%, transparent 48px),
    linear-gradient(180deg, #0a0705 0%, var(--hero-fallback-bg) 100%);
  position: relative;
}

#velemenyek::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 108, 0.12) 14%,
    rgba(201, 168, 108, 0.42) 50%,
    rgba(201, 168, 108, 0.12) 86%,
    transparent 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
}

.extra-section__text {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.extra-section__list {
  list-style: none;
  margin: 1.35rem auto 0;
  padding: 0;
  max-width: 22rem;
  text-align: left;
  display: inline-block;
  font-family: "Jost", system-ui, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.55;
}

.extra-section__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.extra-section__list li:last-child {
  margin-bottom: 0;
}

.extra-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* #kiemelt: kattintható tételek — aláhúzás, nyíl, arany hover */
#kiemelt .extra-section__list li {
  padding-left: 0;
}

#kiemelt .extra-section__list li::before {
  display: none;
}

#kiemelt .extra-section__list .extra-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  color: var(--muted);
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.2s ease;
}

#kiemelt .extra-section__list .extra-section__link:focus-visible {
  outline: 2px solid rgba(201, 168, 108, 0.65);
  outline-offset: 3px;
}

#kiemelt .extra-section__list .extra-section__link-label {
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 108, 0.5);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

#kiemelt .extra-section__list .extra-section__link-arrow {
  flex-shrink: 0;
  font-size: 0.95em;
  line-height: 1;
  color: rgba(201, 168, 108, 0.72);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

#kiemelt .extra-section__list .extra-section__link:hover .extra-section__link-label,
#kiemelt .extra-section__list .extra-section__link:focus-visible .extra-section__link-label {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

#kiemelt .extra-section__list .extra-section__link:hover .extra-section__link-arrow,
#kiemelt .extra-section__list .extra-section__link:focus-visible .extra-section__link-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  #kiemelt .extra-section__list .extra-section__link:hover .extra-section__link-arrow,
  #kiemelt .extra-section__list .extra-section__link:focus-visible .extra-section__link-arrow {
    transform: none;
  }
}

@media (max-width: 768px) {
  .extra-section__list,
  .extra-section--split .extra-section__list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
    max-width: 100%;
  }

  .extra-section__list li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.65rem 0.5rem;
    border: 1px solid var(--gold);
    border-radius: 3px;
    background: transparent;
    font-family: var(--font-hero);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
    padding-left: 0.5rem;
    transition: background 0.2s, color 0.2s;
  }

  .extra-section__list li:hover {
    background: rgba(201, 168, 108, 0.12);
    color: var(--cream);
  }

  .extra-section__list li::before {
    display: none;
  }

  #kiemelt .extra-section__list .extra-section__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-hero);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  #kiemelt .extra-section__list .extra-section__link-label {
    text-decoration: none;
  }

  #kiemelt .extra-section__list .extra-section__link-arrow {
    display: none;
  }

  #kiemelt .extra-section__heading {
    text-align: center;
  }
}

#velemenyek .extra-section__quote {
  color: var(--muted);
  font-style: italic;
}

