:root {
  --color-ink: #231f20;
  --color-muted: #6f6561;
  --color-soft: #f8f3ef;
  --color-cream: #fffaf6;
  --color-line: #e8dcd4;
  --color-wine: #7a2e3d;
  --color-wine-dark: #57202c;
  --color-blush: #ead0c7;
  --color-success: #2f7d58;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --shadow-soft: 0 18px 48px rgba(35, 31, 32, 0.12);
  --radius-sm: 6px;
  --radius-md: 8px;
  --container-tight: 960px;
  --header-height: 72px;
}

@property --nav-cta-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

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

html {
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

html.is-nav-open,
body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open {
  width: 100%;
  inset-inline: 0;
  touch-action: none;
  overscroll-behavior: contain;
}

html.is-nav-open .site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-wine-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(122, 46, 61, 0.42);
  outline-offset: 3px;
}

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

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .site-header,
  .btn,
  .nav-link {
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
  }
}

/* LAYOUT + BOOTSTRAP FALLBACK - alap / mobil */
.container {
  width: min(100% - 2rem, 1160px);
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.col-12,
.col-md-6 {
  width: 100%;
}

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

.w-100 {
  width: 100%;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.p-4 {
  padding: 1.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1100;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-ink);
  color: #fff;
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* LAYOUT + BOOTSTRAP FALLBACK - kis képernyős mobil */
@media (max-width: 380px) {
  .container {
    width: min(100% - 1.25rem, 1160px);
  }
}

/* LAYOUT + BOOTSTRAP FALLBACK - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .container {
    width: min(100% - 2rem, 1160px);
  }
}

/* LAYOUT + BOOTSTRAP FALLBACK - tablet */
@media (min-width: 768px) {
  .col-md-6 {
    width: calc(50% - 0.5rem);
  }

  .p-md-5 {
    padding: 3rem;
  }
}

/* GLOBALIS SZÖVEG + KOMPONENS - alap / mobil */
.section-band {
  background: var(--color-soft);
}

.section-header {
  max-width: var(--container-tight);
  margin-bottom: 2rem;
}

.section-header.text-center {
  margin-inline: auto;
}

.section-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 820;
  letter-spacing: 0;
}

.section-copy {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--color-wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 750;
  text-decoration: none;
}

.btn-primary-custom {
  border: 1px solid var(--color-wine);
  background: var(--color-wine);
  color: #fff;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  border-color: var(--color-wine-dark);
  background: var(--color-wine-dark);
  color: #fff;
}

.btn-primary {
  border-color: var(--color-wine);
  background-color: var(--color-wine);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--color-wine-dark);
  background-color: var(--color-wine-dark);
  color: #fff;
}

.btn-outline-dark {
  border-color: rgba(35, 31, 32, 0.28);
  color: var(--color-ink);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  border-color: var(--color-wine);
  background-color: var(--color-wine);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* GLOBALIS SZÖVEG + KOMPONENS - kis képernyős mobil */
@media (max-width: 380px) {
  .section-title {
    font-size: 1.75rem;
  }
}

/* GLOBALIS SZÖVEG + KOMPONENS - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .section-title {
    font-size: 1.9rem;
  }
}

/* GLOBALIS SZÖVEG + KOMPONENS - tablet */
@media (min-width: 768px) {
  .section-title {
    font-size: 2.55rem;
  }
}

/* GLOBALIS SZÖVEG + KOMPONENS - asztali */
@media (min-width: 1200px) {
  .section-title {
    font-size: 2.85rem;
  }
}

/* HEADER - alap / mobil */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: var(--header-height);
  padding: 0.5rem 0;
}

.navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-collapse.collapse:not(.show) {
  display: none;
}

.navbar-toggler {
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(122, 46, 61, 0.22);
}

.navbar-toggler-icon {
  display: block;
  width: 1.45rem;
  height: 1rem;
  margin-inline: auto;
  background:
    linear-gradient(var(--color-ink), var(--color-ink)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--color-ink), var(--color-ink)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--color-ink), var(--color-ink)) 0 100% / 100% 2px no-repeat;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.7rem;
  color: var(--color-ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(122, 46, 61, 0.32);
  border-radius: 50%;
  background: #fff;
  color: var(--color-wine);
  font-size: 0.86rem;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.brand-name {
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-place {
  max-width: 190px;
  color: var(--color-muted);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  font-weight: 650;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-wine);
}

.nav-link[aria-current="page"] {
  color: var(--color-wine);
}

.nav-cta {
  position: relative;
  --nav-cta-angle: 0deg;
  --nav-cta-fill: var(--color-wine);
  width: 100%;
  margin-top: 0.75rem;
  border: 3px solid transparent;
  background:
    linear-gradient(var(--nav-cta-fill), var(--nav-cta-fill)),
    conic-gradient(
      from var(--nav-cta-angle),
      rgba(255, 255, 255, 0.52) 0deg,
      rgba(255, 255, 255, 0.52) 218deg,
      rgba(255, 231, 185, 0.58) 250deg,
      rgba(122, 46, 61) 286deg,
      rgba(255, 240, 205, 0.86) 316deg,
      rgba(255, 255, 255, 0.52) 352deg,
      rgba(255, 255, 255, 0.52) 360deg
    );
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

.nav-cta > * {
  position: relative;
  z-index: 1;
}

.nav-cta:hover,
.nav-cta:focus {
  --nav-cta-fill: var(--color-wine-dark);
}

@media (prefers-reduced-motion: no-preference) {
  .nav-cta {
    animation: navCtaBorderLight 6.2s linear infinite;
  }
}

@keyframes navCtaBorderLight {
  to {
    --nav-cta-angle: 360deg;
  }
}

/* HEADER - kis képernyős mobil */
@media (max-width: 380px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 0.78rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-place {
    max-width: 150px;
    font-size: 0.72rem;
  }
}

/* HEADER - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .site-header {
    min-height: var(--header-height);
  }
}

/* HEADER - tablet */
@media (min-width: 768px) {
  .brand-place {
    max-width: 260px;
  }
}

/* HEADER - asztali */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse,
  .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: flex;
    align-items: center;
  }

  .navbar-expand-lg .navbar-nav {
    display: flex;
    gap: 0.35rem;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .ms-lg-auto {
    margin-left: auto;
  }

  .brand-place {
    max-width: none;
  }

  .nav-cta {
    width: auto;
    margin-top: 0;
    margin-left: 1rem;
    padding-inline: 1.2rem;
    border: 1px solid var(--color-wine);
    background: var(--color-wine);
    animation: none;
  }

  .nav-cta:hover,
  .nav-cta:focus {
    border-color: var(--color-wine-dark);
    background: var(--color-wine-dark);
  }
}

/* FŐOLDAL HERO - alap / mobil */
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 2rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-ink);
  color: #fff;
}

.home-hero__media,
.home-hero__media img,
.home-hero__shade {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.home-hero__shade {
  background:
    linear-gradient(90deg, rgba(35, 31, 32, 0.88) 0%, rgba(35, 31, 32, 0.58) 44%, rgba(35, 31, 32, 0.22) 100%),
    linear-gradient(0deg, rgba(35, 31, 32, 0.5), rgba(35, 31, 32, 0.05));
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home-hero__eyebrow {
  color: #f4d7cc;
}

.home-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 3.35rem;
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
}

.home-hero__lead {
  max-width: 36rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.home-hero__actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.home-hero__actions .btn {
  width: 100%;
}

.home-hero__facts {
  display: none;
  gap: 0.8rem;
  margin: 1.35rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-hero__facts div {
  min-width: 0;
}

.home-hero__facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 750;
}

.home-hero__facts dd {
  margin: 0.2rem 0 0;
  color: #fff;
  font-weight: 700;
}

.home-hero__facts a {
  color: #fff;
}

.home-hero__fact-text {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.home-hero__facts .home-contact__detail-char {
  display: inline-block;
  color: inherit;
  font: inherit;
}

@media (prefers-reduced-motion: no-preference) and (max-width: 575.98px) {
  .home-hero__actions .reveal {
    opacity: 0;
    transition: opacity 1.18s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.18s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--home-hero-button-reveal-delay, 0.12s);
    will-change: opacity, transform;
  }

  .home-hero__actions .reveal.in-left {
    --home-hero-button-reveal-delay: 0.12s;
    transform: translate3d(-0.85rem, 0, 0);
  }

  .home-hero__actions .reveal.in-right {
    --home-hero-button-reveal-delay: 0.22s;
    transform: translate3d(0.85rem, 0, 0);
  }

  .home-hero__actions .reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) and (min-width: 576px) {
  .home-hero__fact-text.is-contact-reveal-ready .home-contact__detail-char {
    opacity: 0;
    filter: blur(0.12rem);
    transform: translate3d(0, 0.55em, 0);
  }

  .home-hero__fact-text.is-contact-reveal-ready.is-visible .home-contact__detail-char {
    animation: homeContactDetailCharIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: calc(var(--char-index, 0) * 34ms);
  }
}

/* FŐOLDAL HERO - kis képernyős mobil */
@media (max-width: 380px) {
  .home-hero__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 380px) and (max-height: 620px) {
  .home-hero {
    min-height: calc(100svh - var(--header-height) - 1.25rem);
  }

  .home-hero__content {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .home-hero__title {
    font-size: 2.45rem;
  }

  .home-hero__lead {
    margin-top: 0.75rem;
    font-size: 0.98rem;
  }

  .home-hero__actions {
    gap: 0.6rem;
    margin-top: 0.8rem;
  }
}

/* FŐOLDAL HERO - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .home-hero {
    min-height: calc(100svh - var(--header-height) - 2.5rem);
    align-items: center;
  }

  .home-hero__content {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .home-hero__eyebrow,
  .home-hero__lead,
  .home-hero .home-hero__facts {
    display: none;
  }

  .home-hero__title {
    font-size: 2.3rem;
  }

  .home-hero__actions {
    display: flex;
    margin-top: 0.85rem;
  }

  .home-hero__actions .btn {
    width: auto;
  }
}

/* FŐOLDAL HERO - tablet */
@media (min-width: 576px) {
  .home-hero__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .home-hero__actions .btn {
    width: auto;
  }

  .home-hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .home-hero {
    min-height: calc(100svh - var(--header-height) - 2.5rem);
  }

  .home-hero__title {
    font-size: 5rem;
  }

  .home-hero__lead {
    font-size: 1.18rem;
  }
}

/* FŐOLDAL HERO - asztali */
@media (min-width: 992px) {
  .home-hero {
    min-height: calc(100svh - var(--header-height) - 2rem);
  }

  .home-hero__content {
    padding-bottom: 4.4rem;
  }

  .home-hero__title {
    font-size: 5.8rem;
  }
}

@media (min-width: 1200px) {
  .home-hero__title {
    font-size: 6.35rem;
  }
}

/* FŐOLDAL INTRO - alap / mobil */
.home-intro {
  padding: 4rem 0;
}

.home-intro__grid {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.5rem;
  padding-top: 1rem;
  overflow: clip;
}

.home-intro__grid::before {
  content: "M&L";
  position: absolute;
  top: 10%;
  left: 5%;
  z-index: 0;
  color: rgba(122, 46, 61, 0.06);
  font-family: var(--font-display);
  font-size: clamp(3.45rem, 17vw, 4.9rem);
  font-weight: 700;
  line-height: 0.78;
  pointer-events: none;
  white-space: nowrap;
  transform: translate3d(0, 0, 0) scale(0.9) rotate(0deg);
}

.home-intro__grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.home-intro__heading,
.home-intro__body,
.home-intro__portrait {
  position: relative;
  z-index: 1;
}

.home-intro__copy {
  position: relative;
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.home-intro__owner {
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(122, 46, 61, 0.16);
}

.home-intro__story-item {
  display: grid;
  gap: 0.38rem;
}

.home-intro__story-item + .home-intro__story-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(122, 46, 61, 0.1);
}

.home-intro__story-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.82rem;
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-intro__owner-copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.home-intro__portrait {
  display: grid;
  gap: 0.55rem;
  width: min(100%, 24rem);
  margin: 0.35rem auto 0;
}

.home-intro__portrait picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(122, 46, 61, 0.14);
  border-radius: var(--radius-md);
  background: var(--color-soft);
  box-shadow: 0 18px 46px rgba(35, 31, 32, 0.13);
}

.home-intro__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.home-intro__portrait figcaption {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-intro__quality-list {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--color-line);
}

.home-intro__quality-item {
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--color-line);
}

.home-intro__quality-number {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(122, 46, 61, 0.07);
  color: var(--color-wine);
  font-size: 1.08rem;
  line-height: 1;
}

.home-intro__quality-number .bi {
  line-height: 1;
}

.home-intro__quality-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.14rem;
  font-weight: 800;
}

.home-intro__quality-text {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
}

.home-intro__quality-text[data-intro-quality-reveal] {
  overflow-wrap: normal;
  word-break: normal;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 992px) {
  .home-intro__quality-text.is-contact-reveal-ready .home-contact__detail-char {
    opacity: 0;
    filter: blur(0.12rem);
    transform: translate3d(0, 0.55em, 0);
  }

  .home-intro__quality-text.is-contact-reveal-ready.is-visible .home-contact__detail-char {
    animation: homeContactDetailCharIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: calc(var(--char-index, 0) * 34ms);
  }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 767.98px) {
  .home-intro__grid::before {
    animation: homeIntroWatermarkDrift 16s ease-in-out infinite;
  }
}

@keyframes homeIntroWatermarkDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9) rotate(0deg);
  }

  25% {
    transform: translate3d(0vw, 55vh, 0) scale(1.1) rotate(4deg);
  }

  50% {
    transform: translate3d(40vw, 45vh, 0) scale(0.9) rotate(-2deg);
  }

  75% {
    transform: translate3d(40vw, 0vh, 0) scale(1.1) rotate(4deg);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(0.9) rotate(0deg);
  }
}

/* FŐOLDAL INTRO - kis képernyős mobil */
@media (max-width: 380px) {
  .home-intro {
    padding: 3.5rem 0;
  }

  .home-intro__owner-copy {
    font-size: 0.9rem;
  }

  .home-intro__portrait {
    width: min(100%, 20rem);
  }
}

/* FŐOLDAL INTRO - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .home-intro {
    padding: 3.25rem 0;
  }
}

/* FŐOLDAL INTRO - tablet */
@media (min-width: 768px) {
  .home-intro {
    padding: 5rem 0;
  }

  .home-intro__grid {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
    grid-template-areas:
      "heading body"
      "portrait body";
    align-items: start;
    gap: 1.8rem 2.4rem;
    padding-top: 1rem;
  }

  .home-intro__grid::before {
    content: none;
  }

  .home-intro__heading {
    grid-area: heading;
  }

  .home-intro__body {
    grid-area: body;
  }

  .home-intro__portrait {
    grid-area: portrait;
    width: min(100%, 18rem);
    margin: 0;
  }

  .home-intro__copy {
    margin-top: 0;
    padding-top: 0;
  }

  .home-intro__quality-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--color-line);
  }

  .home-intro__quality-item {
    padding: 1.6rem 1.2rem;
    border-right: 1px solid var(--color-line);
    border-bottom: 0;
  }

  .home-intro__quality-item:first-child {
    padding-left: 0;
  }

  .home-intro__quality-item:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

/* FŐOLDAL INTRO - asztali */
@media (min-width: 992px) {
  .home-intro__grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr) minmax(13rem, 0.58fr);
    grid-template-areas: "heading body portrait";
    align-items: start;
    gap: 3.4rem;
  }

  .home-intro__portrait {
    width: 100%;
    margin-top: 0.1rem;
  }

  .home-intro__owner-copy {
    max-width: 42rem;
  }
}

/* FŐOLDAL SZOLGÁLTATÁSOK - alap / mobil */
.home-services {
  position: relative;
  overflow: clip;
  padding: 4rem 0;
}

.home-services__header {
  position: relative;
  padding-top: 1rem;
}

.home-services__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.home-services__subtitle {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.home-services__lines {
  position: relative;
  display: grid;
  border-top: 1px solid var(--color-line);
}

.home-services__lines::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 1.2rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(122, 46, 61, 0), rgba(122, 46, 61, 0.32), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.home-services__line {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.55rem 0.95rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-line);
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  grid-row: 1 / span 3;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-wine);
  font-size: 1.05rem;
  line-height: 1;
  pointer-events: none;
}

.service-icon .bi {
  line-height: 1;
}

.home-services__line-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.14rem;
  font-weight: 800;
}

.home-services__line-text {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
}

.home-services__line-price {
  display: grid;
  grid-column: 2;
  gap: 0.1rem;
  color: var(--color-wine);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
}

.home-services__line-duration {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.home-services__price-value {
  display: inline-flex;
  align-items: baseline;
  min-height: 1.35em;
  color: var(--color-wine);
  font: inherit;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.home-services__price-char {
  display: inline-block;
  color: inherit;
  font: inherit;
}

.service-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  grid-column: 2;
  justify-self: start;
  color: var(--color-wine);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.service-link::before {
  content: "";
  width: 0.85rem;
  height: 1px;
  background: currentColor;
}

.service-link.stretched-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-services__line:hover .service-link,
.home-services__line:focus-within .service-link {
  color: var(--color-wine-dark);
}

@media (prefers-reduced-motion: no-preference) {
  .home-services__price-value.is-price-reveal-ready .home-services__price-char,
  .prices-hero__fact-value.is-price-reveal-ready .home-services__price-char,
  .contact-reveal-value.is-price-reveal-ready .home-services__price-char {
    opacity: 0;
    filter: blur(0.16rem);
    transform: translate3d(0, 0.5em, 0);
  }

  .home-services__price-value.is-visible .home-services__price-char,
  .prices-hero__fact-value.is-visible .home-services__price-char,
  .contact-reveal-value.is-visible .home-services__price-char {
    animation: homeServicesPriceCharIn 560ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: calc(var(--char-index, 0) * 42ms);
  }
}

@keyframes homeServicesPriceCharIn {
  0% {
    opacity: 0;
    filter: blur(0.16rem);
    transform: translate3d(0, 0.5em, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

/* FŐOLDAL SZOLGÁLTATÁSOK - kis képernyős mobil */
@media (max-width: 380px) {
  .home-services {
    padding: 3.5rem 0;
  }

  .home-services__line {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    column-gap: 0.8rem;
  }

  .home-services__lines::before {
    left: 1.12rem;
  }

  .service-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.98rem;
  }
}

/* FŐOLDAL SZOLGÁLTATÁSOK - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .home-services {
    padding: 3.25rem 0;
  }
}

/* FŐOLDAL SZOLGÁLTATÁSOK - tablet */
@media (min-width: 768px) {
  .home-services {
    padding: 5rem 0;
  }

  .home-services__line {
    grid-template-columns: 2.55rem minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 1.1rem;
    padding: 1.45rem 0;
  }

  .home-services__lines::before {
    left: 1.27rem;
  }

  .service-icon {
    width: 2.55rem;
    height: 2.55rem;
    grid-row: 1 / span 2;
  }

  .home-services__line-price {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    min-width: 8.5rem;
    text-align: right;
  }

  .service-link {
    grid-column: 2;
  }
}

/* FŐOLDAL SZOLGÁLTATÁSOK - asztali */
@media (min-width: 992px) {
  .home-services__subtitle {
    max-width: 36rem;
  }
}

@media (min-width: 1200px) {
  .home-services__lines {
    max-width: 980px;
  }
}

/* FŐOLDAL LOOKBOOK - alap / mobil */
.home-lookbook {
  position: relative;
  overflow: clip;
  padding: 4rem 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(255, 255, 255, 0.96));
}

.home-lookbook__layout {
  display: grid;
  gap: 1.35rem;
}

.home-lookbook__copy-block {
  position: relative;
  padding-top: 0.35rem;
}

.home-lookbook__copy-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 44vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
}

.home-lookbook__copy {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.home-lookbook__gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  color: var(--color-wine);
  font-weight: 800;
  text-decoration: none;
}

.home-lookbook__gallery-link i {
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.home-lookbook__gallery-link:hover i {
  transform: translateX(0.2rem);
}

.home-lookbook__showcase {
  display: grid;
  min-width: 0;
  gap: 0.8rem;
}

.home-lookbook__rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
  padding-top: 0.15rem;
}

.lookbook-card {
  display: grid;
  min-width: 0;
  gap: 0.75rem;
}

.lookbook-card__swatch {
  position: relative;
  min-height: 7.15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  overflow: hidden;
  padding: 0.9rem;
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: var(--radius-md);
  background: var(--swatch-bg, #f3d7ce);
  color: var(--swatch-text, var(--color-ink));
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 26px rgba(35, 31, 32, 0.055);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  appearance: none;
}

.lookbook-card__swatch::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 44%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 26%);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.lookbook-card__swatch::after {
  content: "+";
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  z-index: 2;
  width: 1.9rem;
  aspect-ratio: 1;
  display: none;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-wine);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(35, 31, 32, 0.09);
  pointer-events: none;
}

.lookbook-card__swatch span,
.lookbook-card__swatch small {
  position: relative;
  z-index: 1;
}

.lookbook-card__swatch span {
  font-weight: 800;
  line-height: 1.1;
}

.lookbook-card__swatch small {
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.lookbook-card__swatch:hover,
.lookbook-card__swatch:focus-visible {
  border-color: rgba(122, 46, 61, 0.28);
  box-shadow: 0 15px 30px rgba(35, 31, 32, 0.09);
}

.lookbook-card__swatch:active {
  transform: translateY(1px) scale(0.99);
}

.lookbook-card__media {
  display: none;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-soft);
}

.lookbook-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-lookbook__controls {
  display: none;
  justify-content: flex-end;
  gap: 0.5rem;
}

.home-lookbook__control {
  width: 2.65rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-wine);
  box-shadow: 0 8px 24px rgba(35, 31, 32, 0.08);
}

.home-lookbook__control i {
  font-size: 1rem;
  line-height: 1;
}

.home-lookbook__control:disabled {
  opacity: 0.36;
  pointer-events: none;
}

.swatch-nude {
  --swatch-bg: #ead0c7;
}

.swatch-milky {
  --swatch-bg: #fff8f2;
}

.swatch-french {
  --swatch-bg:
    linear-gradient(135deg, #ffe9df 0 58%, #fffaf6 58% 70%, #f9e6df 70% 100%);
}

.swatch-wine {
  --swatch-bg: #6e2633;
  --swatch-text: #fff;
}

.swatch-baby-boomer {
  --swatch-bg: linear-gradient(135deg, #f1cfc6 0%, #fffaf6 78%);
}

.swatch-pearl {
  --swatch-bg:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #f4cbd4, #fff7fb 54%, #ead0c7);
}

.lookbook-preview[hidden] {
  display: none;
}

.lookbook-preview {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: grid;
  place-items: center;
  padding: 1.1rem;
}

.lookbook-preview__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(35, 31, 32, 0.52);
  cursor: pointer;
}

.lookbook-preview__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  box-shadow: 0 28px 78px rgba(35, 31, 32, 0.32);
}

.lookbook-preview__image {
  width: 100%;
  height: min(62dvh, 31rem);
  max-height: calc(100dvh - 7rem);
  object-fit: cover;
  background: var(--color-soft);
}

.gallery-preview .lookbook-preview__image {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 250, 246, 0.12), transparent 34%),
    #1c1515;
}

.lookbook-preview__caption {
  margin: 0;
  padding: 0.8rem 1rem 1rem;
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.lookbook-preview__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.35rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-ink);
  box-shadow: 0 10px 22px rgba(35, 31, 32, 0.16);
}

.lookbook-preview__close span {
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-0.05rem);
}

html.is-lookbook-preview-open,
body.is-lookbook-preview-open {
  overflow: hidden;
}

body.is-lookbook-preview-open {
  touch-action: none;
  overscroll-behavior: contain;
}

@media (prefers-reduced-motion: no-preference) and (max-width: 767.98px) {
  .lookbook-card__swatch {
    animation: lookbookSwatchBreathe 7.4s ease-in-out infinite;
    will-change: transform, box-shadow;
  }

  .lookbook-card__swatch::after {
    animation: lookbookTapCue 7.4s ease-in-out infinite;
  }

  .lookbook-card__swatch::before {
    animation: lookbookSwatchLight 7.4s ease-in-out infinite;
    will-change: transform, opacity;
  }

  .lookbook-card:nth-child(2) .lookbook-card__swatch,
  .lookbook-card:nth-child(2) .lookbook-card__swatch::after,
  .lookbook-card:nth-child(2) .lookbook-card__swatch::before {
    animation-delay: 0.6s;
  }

  .lookbook-card:nth-child(3) .lookbook-card__swatch,
  .lookbook-card:nth-child(3) .lookbook-card__swatch::after,
  .lookbook-card:nth-child(3) .lookbook-card__swatch::before {
    animation-delay: 1.2s;
  }

  .lookbook-card:nth-child(4) .lookbook-card__swatch,
  .lookbook-card:nth-child(4) .lookbook-card__swatch::after,
  .lookbook-card:nth-child(4) .lookbook-card__swatch::before {
    animation-delay: 1.8s;
  }

  .lookbook-card:nth-child(5) .lookbook-card__swatch,
  .lookbook-card:nth-child(5) .lookbook-card__swatch::after,
  .lookbook-card:nth-child(5) .lookbook-card__swatch::before {
    animation-delay: 2.4s;
  }

  .lookbook-card:nth-child(6) .lookbook-card__swatch,
  .lookbook-card:nth-child(6) .lookbook-card__swatch::after,
  .lookbook-card:nth-child(6) .lookbook-card__swatch::before {
    animation-delay: 3s;
  }

  .lookbook-card__swatch:active {
    animation: none;
    transform: translateY(1px) scale(0.99);
  }

  .lookbook-preview:not([hidden]) .lookbook-preview__dialog {
    animation: lookbookPreviewIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
}

@media (max-width: 767.98px) {
  .lookbook-card__swatch::after {
    display: grid;
  }
}

@keyframes lookbookSwatchBreathe {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(35, 31, 32, 0.055);
    transform: translate3d(0, 0, 0);
  }

  45% {
    box-shadow: 0 14px 31px rgba(35, 31, 32, 0.078);
    transform: translate3d(0, -1.5px, 0);
  }

  70% {
    box-shadow: 0 11px 27px rgba(35, 31, 32, 0.062);
    transform: translate3d(0, -0.5px, 0);
  }
}

@keyframes lookbookTapCue {
  0%,
  100% {
    opacity: 0.76;
    transform: scale(1);
  }

  42% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes lookbookSwatchLight {
  0%,
  100% {
    opacity: 0.82;
    transform: translate3d(-0.1rem, 0.1rem, 0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate3d(0.22rem, -0.28rem, 0) scale(1.045);
  }
}

@keyframes lookbookPreviewIn {
  from {
    opacity: 0;
    transform: translate3d(0, 0.8rem, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* FŐOLDAL LOOKBOOK - kis képernyős mobil */
@media (max-width: 380px) {
  .home-lookbook {
    padding: 3.5rem 0;
  }

  .home-lookbook__copy {
    font-size: 0.95rem;
  }

  .home-lookbook__rail {
    gap: 0.6rem;
  }

  .lookbook-card__swatch {
    min-height: 6.25rem;
    padding: 0.72rem;
  }

  .lookbook-card__swatch span {
    font-size: 0.95rem;
  }

  .lookbook-card__swatch small {
    font-size: 0.72rem;
  }
}

/* FŐOLDAL LOOKBOOK - fekvő mobil */
@media (min-width: 560px) and (max-width: 767.98px) and (max-height: 560px) {
  .home-lookbook {
    padding: 3.25rem 0;
  }

  .home-lookbook__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: end;
    gap: 1.4rem;
  }

  .home-lookbook__rail {
    gap: 0.6rem;
  }

  .lookbook-card__swatch {
    min-height: 5.8rem;
  }

  .lookbook-preview {
    padding: 0.7rem;
  }

  .lookbook-preview__dialog {
    width: min(100%, 38rem);
    max-height: calc(100dvh - 1.4rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(7rem, 9rem);
  }

  .lookbook-preview__image {
    height: 100%;
    max-height: calc(100dvh - 1.4rem);
    aspect-ratio: auto;
  }

  .lookbook-preview__caption {
    display: flex;
    align-items: end;
    padding: 3.4rem 0.85rem 0.9rem;
  }
}

/* FŐOLDAL LOOKBOOK - tablet */
@media (min-width: 768px) {
  .home-lookbook {
    padding: 5rem 0;
  }

  .home-lookbook__layout {
    gap: 2rem;
  }

  .home-lookbook__copy-block {
    max-width: 42rem;
  }

  .home-lookbook__rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(15rem, 36%);
    grid-template-columns: none;
    gap: 1rem;
    margin-inline: -0.05rem;
    padding: 0.1rem 0.05rem 0.9rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0.05rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-lookbook__rail::-webkit-scrollbar {
    display: none;
  }

  .lookbook-card {
    scroll-snap-align: start;
  }

  .lookbook-card__swatch {
    min-height: 7rem;
  }

  .lookbook-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    box-shadow: 0 18px 42px rgba(35, 31, 32, 0.1);
  }

  .home-lookbook__controls {
    display: flex;
  }
}

/* FŐOLDAL LOOKBOOK - asztali */
@media (min-width: 992px) {
  .home-lookbook__layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 3.5rem;
  }

  .home-lookbook__copy {
    font-size: 1.06rem;
  }

  .home-lookbook__rail {
    grid-auto-columns: minmax(15.5rem, 34%);
  }
}

/* FŐOLDAL LOOKBOOK - nagy asztali */
@media (min-width: 1200px) {
  .home-lookbook {
    padding: 5.6rem 0;
  }

  .home-lookbook__rail {
    grid-auto-columns: minmax(16rem, 30%);
  }
}

/* FŐOLDAL PARAFFINOS EXTRA - alap / mobil */
.home-paraffin {
  position: relative;
  overflow: clip;
  padding: 4rem 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(255, 255, 255, 0.96));
}

.home-paraffin__layout {
  display: grid;
  gap: 1.6rem;
}

.home-paraffin__content {
  position: relative;
  padding-top: 1rem;
}

.home-paraffin__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 44vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
}

.home-paraffin__copy {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.home-paraffin__features {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(122, 46, 61, 0.16);
}

.home-paraffin__features span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.home-paraffin__features i {
  width: 1.85rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  color: var(--color-wine);
  font-size: 0.95rem;
  line-height: 1;
}

.home-paraffin__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1.4rem;
}

.home-paraffin__link {
  color: var(--color-wine);
  font-weight: 850;
  text-decoration: none;
}

.home-paraffin__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.12rem;
  background: currentColor;
  transform-origin: left;
  transition: transform 160ms ease;
}

.home-paraffin__link:hover::after {
  transform: scaleX(0.72);
}

.home-paraffin__visual {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  box-shadow: 0 18px 42px rgba(35, 31, 32, 0.1);
}

.home-paraffin__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* FŐOLDAL PARAFFINOS EXTRA - kis képernyős mobil */
@media (max-width: 380px) {
  .home-paraffin {
    padding: 3.5rem 0;
  }

  .home-paraffin__copy,
  .home-paraffin__features span {
    font-size: 0.95rem;
  }
}

/* FŐOLDAL PARAFFINOS EXTRA - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .home-paraffin {
    padding: 3.25rem 0;
  }

  .home-paraffin__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(15rem, 1.05fr);
    align-items: center;
    gap: 1.4rem;
  }

  .home-paraffin__features {
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.95rem;
  }

  .home-paraffin__visual img {
    aspect-ratio: 3 / 2;
  }
}

/* FŐOLDAL PARAFFINOS EXTRA - tablet */
@media (min-width: 768px) {
  .home-paraffin {
    padding: 5rem 0;
  }

  .home-paraffin__layout {
    gap: 2.25rem;
  }

  .home-paraffin__copy {
    font-size: 1.03rem;
  }

  .home-paraffin__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-paraffin__features span {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .home-paraffin__visual {
    width: 100%;
    max-width: 640px;
    justify-self: center;
  }
}

/* FŐOLDAL PARAFFINOS EXTRA - asztali */
@media (min-width: 992px) {
  .home-paraffin__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 3.5rem;
  }

  .home-paraffin__copy {
    font-size: 1.06rem;
  }

  .home-paraffin__visual {
    max-width: none;
    box-shadow: 0 24px 58px rgba(35, 31, 32, 0.12);
  }
}

/* FŐOLDAL PARAFFINOS EXTRA - nagy asztali */
@media (min-width: 1200px) {
  .home-paraffin {
    padding: 5.6rem 0;
  }
}

/* FŐOLDAL FOGLALÁS - alap / mobil */
.home-booking {
  padding: 4rem 0;
  background:
    linear-gradient(180deg, rgba(248, 243, 239, 0.94), rgba(255, 250, 246, 0.98));
}

.home-booking__shell {
  max-width: 980px;
  margin-inline: auto;
  padding: 1.25rem 0 0;
}

.home-booking__subtitle {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.booking-form {
  margin-top: 1.7rem;
}

.booking-form__submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.form-control,
.form-select {
  min-height: 58px;
  border-color: #d9c8bf;
  border-radius: var(--radius-sm);
  background-color: #fff;
  color: var(--color-ink);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--color-wine);
  box-shadow: 0 0 0 0.22rem rgba(122, 46, 61, 0.18);
}

.form-floating > label {
  color: var(--color-muted);
}

.booking-form__textarea {
  min-height: 130px;
  resize: vertical;
}

.booking-form__alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-wine);
}

.booking-form__alert p {
  margin: 0;
  color: var(--color-ink);
}

.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.form-check-input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  border-color: #bda79d;
}

.form-check-input:checked {
  border-color: var(--color-wine);
  background-color: var(--color-wine);
}

.booking-form__success {
  margin-top: 1.5rem;
  border: 1px solid rgba(47, 125, 88, 0.18);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-ink);
}

.booking-form__success-icon {
  margin-inline: auto;
  color: var(--color-success);
}

@media (prefers-reduced-motion: no-preference) {
  .booking-form__submit::before {
    content: "";
    position: absolute;
    inset: -42% -72%;
    z-index: 0;
    background:
      linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 35%,
        rgba(255, 242, 205, 0.18) 43%,
        rgba(255, 255, 255, 0.78) 49%,
        rgba(255, 237, 188, 0.38) 54%,
        rgba(255, 255, 255, 0) 64%
      );
    transform: translate3d(-44%, 0, 0);
    animation: bookingSubmitGlow 7.4s cubic-bezier(0.33, 0, 0.18, 1) infinite;
    pointer-events: none;
  }

  .booking-form__submit:disabled::before {
    opacity: 0;
    animation-play-state: paused;
  }
}

@keyframes bookingSubmitGlow {
  0%,
  54% {
    transform: translate3d(-48%, 0, 0);
    opacity: 0;
  }

  64% {
    opacity: 1;
  }

  82% {
    transform: translate3d(48%, 0, 0);
    opacity: 1;
  }

  100% {
    transform: translate3d(48%, 0, 0);
    opacity: 0;
  }
}

.custom-alert {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 520px;
  margin-inline: auto;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(122, 46, 61, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(35, 31, 32, 0.94);
  color: #fff;
  box-shadow: 0 18px 44px rgba(35, 31, 32, 0.22);
  transform: translate3d(0, 0, 0);
}

.custom-alert.is-hiding {
  opacity: 0;
  transform: translate3d(0, 0.75rem, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

/* FŐOLDAL FOGLALÁS - kis képernyős mobil */
@media (max-width: 380px) {
  .home-booking {
    padding: 3.5rem 0;
  }
}

/* FŐOLDAL FOGLALÁS - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .home-booking {
    padding: 3.25rem 0;
  }
}

/* FŐOLDAL FOGLALÁS - tablet */
@media (min-width: 768px) {
  .home-booking {
    padding: 5rem 0;
  }
}

/* FŐOLDAL FOGLALÁS - asztali */
@media (min-width: 992px) {
  .home-booking__shell {
    padding-top: 0;
  }
}

/* FŐOLDAL GYIK - alap / mobil */
.home-faq {
  padding: 4rem 0;
}

.home-faq__header {
  position: relative;
  padding-top: 1rem;
}

.home-faq__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.home-faq__accordion {
  max-width: var(--container-tight);
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
}

.accordion-item:first-child {
  border-top: 1px solid var(--color-line);
}

.accordion-button {
  width: 100%;
  min-height: 58px;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-weight: 800;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--color-wine);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 0 0 1.25rem;
  color: var(--color-muted);
}

.accordion-collapse.collapse:not(.show) {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .home-faq .accordion-item.is-faq-reveal-ready {
    opacity: 0;
    filter: blur(0.08rem);
    transform: translate3d(-1.15rem, 0.7rem, 0);
    transition:
      opacity 1.15s cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 1.15s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 1.15s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: calc(var(--faq-reveal-index, 0) * 90ms);
    will-change: transform, opacity, filter;
  }

  .home-faq .accordion-item.is-faq-reveal-ready.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

/* FŐOLDAL GYIK - kis képernyős mobil */
@media (max-width: 380px) {
  .home-faq {
    padding: 3.5rem 0;
  }
}

/* FŐOLDAL GYIK - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .home-faq {
    padding: 3.25rem 0;
  }
}

/* FŐOLDAL GYIK - tablet */
@media (min-width: 768px) {
  .home-faq {
    padding: 5rem 0;
  }

  .home-faq__header {
    padding-top: 0;
  }

  .home-faq__header::before {
    content: none;
  }
}

/* FŐOLDAL GYIK - asztali */
@media (min-width: 992px) {
  .home-faq__accordion {
    max-width: var(--container-tight);
  }
}

/* FŐOLDAL KAPCSOLAT - alap / mobil */
.home-contact {
  padding: 4rem 0;
}

.home-contact__layout {
  display: grid;
  gap: 1.5rem;
}

.home-contact__content {
  position: relative;
  padding-top: 1rem;
}

.home-contact__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.home-contact__copy {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.home-contact__list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--color-line);
  font-style: normal;
}

.home-contact__item {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
  text-decoration: none;
}

.home-contact__item i {
  width: 2.4rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  color: var(--color-wine);
  font-size: 1rem;
  line-height: 1;
}

.home-contact__item-body {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.home-contact__item-label {
  color: var(--color-wine);
  font-size: 0.82rem;
  font-weight: 850;
}

.home-contact__item-text {
  color: var(--color-ink);
}

.home-contact__item-text[data-contact-detail-reveal] {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.home-contact__detail-word {
  display: inline-block;
  white-space: nowrap;
}

.home-contact__detail-char {
  display: inline-block;
  color: inherit;
  font: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  .home-contact__item-text.is-contact-reveal-ready .home-contact__detail-char {
    opacity: 0;
    filter: blur(0.12rem);
    transform: translate3d(0, 0.55em, 0);
  }

  .home-contact__item-text.is-contact-reveal-ready.is-visible .home-contact__detail-char {
    animation: homeContactDetailCharIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: calc(var(--char-index, 0) * 34ms);
  }
}

@keyframes homeContactDetailCharIn {
  0% {
    opacity: 0;
    filter: blur(0.12rem);
    transform: translate3d(0, 0.55em, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.home-contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.home-contact__social-link {
  width: 2.85rem;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  align-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: var(--color-wine);
  font-size: 1.08rem;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.home-contact__social-link:hover,
.home-contact__social-link:focus {
  border-color: var(--color-wine);
  background: var(--color-wine);
  color: #fff;
  transform: translateY(-2px);
}

.home-contact__social-link.is-disabled {
  color: rgba(111, 101, 97, 0.48);
  cursor: default;
}

.home-contact__social-link.is-disabled:hover {
  border-color: rgba(122, 46, 61, 0.18);
  background: rgba(255, 255, 255, 0.48);
  color: rgba(111, 101, 97, 0.48);
  transform: none;
}

/* FŐOLDAL KAPCSOLAT - kis képernyős mobil */
@media (max-width: 380px) {
  .home-contact {
    padding: 3.5rem 0;
  }

  .home-contact__item {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .home-contact__item i {
    width: 2.25rem;
  }
}

/* FŐOLDAL KAPCSOLAT - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .home-contact {
    padding: 3.25rem 0;
  }

  .home-contact__social {
    margin-top: 1.4rem;
  }
}

/* FŐOLDAL KAPCSOLAT - tablet */
@media (min-width: 768px) {
  .home-contact {
    padding: 5rem 0;
  }

  .home-contact__content {
    padding-top: 0;
  }

  .home-contact__content::before {
    content: none;
  }
}

/* FŐOLDAL KAPCSOLAT - asztali */
@media (min-width: 992px) {
  .home-contact__layout {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
    gap: 4rem;
  }

  .home-contact__social {
    justify-content: flex-end;
  }
}

/* SZOLGÁLTATÁSOK OLDAL HERO - alap / mobil */
.services-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--color-ink);
  color: #fff;
}

.services-hero__media,
.services-hero__shade {
  position: absolute;
  inset: 0;
}

.services-hero__media {
  z-index: 0;
}

.services-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(35, 31, 32, 0.24), rgba(35, 31, 32, 0.72)),
    linear-gradient(90deg, rgba(35, 31, 32, 0.82), rgba(35, 31, 32, 0.2));
}

.services-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 2.4rem;
}

.services-hero__title {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.services-hero__lead {
  max-width: 39rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.services-hero__actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.services-hero__facts {
  display: none;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.services-hero__facts div {
  display: grid;
  gap: 0.15rem;
}

.services-hero__facts dt {
  color: rgba(234, 208, 199, 0.92);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.services-hero__facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) and (max-width: 767.98px) {
  .services-hero__actions .reveal {
    opacity: 0;
    transition: opacity 1.18s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.18s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--services-hero-button-reveal-delay, 0.12s);
    will-change: opacity, transform;
  }

  .services-hero__actions .reveal.in-left {
    --services-hero-button-reveal-delay: 0.12s;
    transform: translate3d(-0.85rem, 0, 0);
  }

  .services-hero__actions .reveal.in-right {
    --services-hero-button-reveal-delay: 0.22s;
    transform: translate3d(0.85rem, 0, 0);
  }

  .services-hero__actions .reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* SZOLGÁLTATÁSOK OLDAL HERO - kis képernyős mobil */
@media (max-width: 380px) {
  .services-hero__content {
    padding-bottom: 2rem;
  }

  .services-hero__title {
    font-size: 2.25rem;
  }

  .services-hero__lead {
    font-size: 0.95rem;
  }
}

/* SZOLGÁLTATÁSOK OLDAL HERO - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .services-hero {
    min-height: auto;
  }

  .services-hero__content {
    padding: 3.1rem 0 2rem;
  }

  .services-hero__title {
    max-width: 18ch;
    font-size: 2.35rem;
  }

  .services-hero__actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }
}

/* SZOLGÁLTATÁSOK OLDAL HERO - tablet */
@media (min-width: 768px) {
  .services-hero__content {
    padding: 6rem 0 3rem;
  }

  .services-hero__title {
    max-width: 13ch;
    font-size: 4.05rem;
  }

  .services-hero__lead {
    font-size: 1.08rem;
  }

  .services-hero__actions {
    grid-template-columns: repeat(2, max-content);
    align-items: center;
  }

  .services-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 46rem;
    gap: 1.35rem;
  }
}

/* SZOLGÁLTATÁSOK OLDAL HERO - asztali */
@media (min-width: 992px) {
  .services-hero__content {
    padding: 7rem 0 4rem;
  }

  .services-hero__title {
    font-size: 4.75rem;
  }
}

@media (min-width: 1200px) {
  .services-hero__title {
    font-size: 5.25rem;
  }
}

/* SZOLGÁLTATÁSOK OLDAL LISTA - alap / mobil */
.services-overview {
  position: relative;
  overflow: clip;
  padding: 4rem 0;
}

.services-overview__header {
  position: relative;
  padding-top: 1rem;
}

.services-overview__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.services-overview__subtitle {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.services-menu {
  display: grid;
  gap: 2.6rem;
}

.services-menu__group {
  display: grid;
  gap: 1rem;
}

.services-menu__category {
  display: grid;
  grid-template-columns: 2.55rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.services-menu__icon {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(122, 46, 61, 0.07);
  color: var(--color-wine);
  font-size: 1.05rem;
  line-height: 1;
}

.services-menu__category h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.services-menu__category p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
}

.services-menu__items {
  display: grid;
  border-top: 1px solid var(--color-line);
}

.services-menu__item {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-line);
}

.services-menu__title-row {
  display: grid;
  gap: 0.35rem;
}

.services-menu__title-row h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
}

.services-menu__price {
  min-height: 1.35em;
  color: var(--color-wine);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

.services-menu__item p {
  margin: 0;
  color: var(--color-muted);
}

.services-menu__note {
  padding-left: 0.9rem;
  border-left: 2px solid rgba(122, 46, 61, 0.24);
}

.services-menu__note strong {
  color: var(--color-ink);
  font-weight: 850;
}

/* SZOLGÁLTATÁSOK OLDAL LISTA - kis képernyős mobil */
@media (max-width: 380px) {
  .services-overview {
    padding: 3.5rem 0;
  }

  .services-menu {
    gap: 2.25rem;
  }

  .services-menu__category {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .services-menu__icon {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.98rem;
  }
}

/* SZOLGÁLTATÁSOK OLDAL LISTA - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .services-overview {
    padding: 3.25rem 0;
  }
}

/* SZOLGÁLTATÁSOK OLDAL LISTA - tablet */
@media (min-width: 768px) {
  .services-overview {
    padding: 5rem 0;
  }

  .services-menu {
    gap: 3rem;
  }

  .services-menu__title-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    column-gap: 1.5rem;
  }

  .services-menu__price {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }
}

/* SZOLGÁLTATÁSOK OLDAL LISTA - asztali */
@media (min-width: 992px) {
  .services-menu__group {
    grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: start;
    padding-top: 1.65rem;
    border-top: 1px solid rgba(122, 46, 61, 0.18);
  }

  .services-menu__items {
    border-top: 0;
  }

  .services-menu__item:first-child {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .services-menu__group {
    grid-template-columns: minmax(14rem, 0.32fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

/* SZOLGÁLTATÁSOK OLDAL FOLYAMAT - alap / mobil */
.services-process {
  position: relative;
  overflow: clip;
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(122, 46, 61, 0.18), transparent 38%),
    linear-gradient(180deg, #251d1d 0%, #191414 100%);
  color: #fff;
}

.services-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(234, 208, 199, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(234, 208, 199, 0.045) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  opacity: 0.22;
  pointer-events: none;
}

.services-process::after {
  content: "M&L";
  position: absolute;
  right: -0.32em;
  bottom: -0.34em;
  color: rgba(255, 250, 246, 0.038);
  font-family: var(--font-display);
  font-size: clamp(8rem, 34vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.services-process .container {
  position: relative;
  z-index: 1;
}

.services-process__header {
  position: relative;
  padding-top: 1rem;
}

.services-process__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(234, 208, 199, 0.58), rgba(234, 208, 199, 0));
  pointer-events: none;
}

.services-process__title {
  color: #fff;
}

.services-process__subtitle {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(255, 250, 246, 0.72);
}

.services-process__steps {
  display: grid;
  border-top: 1px solid rgba(234, 208, 199, 0.18);
}

.services-process__step {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 0 1.25rem 3.2rem;
  border-bottom: 1px solid rgba(234, 208, 199, 0.16);
}

.services-process__icon {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 208, 199, 0.26);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.07);
  color: var(--color-blush);
  font-size: 1rem;
  line-height: 1;
}

.services-process__icon .bi {
  line-height: 1;
}

.services-process__step h3 {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
}

.services-process__step p {
  margin: 0;
  color: rgba(255, 250, 246, 0.7);
}

/* SZOLGÁLTATÁSOK OLDAL FOLYAMAT - kis képernyős mobil */
@media (max-width: 380px) {
  .services-process {
    padding: 3.5rem 0;
  }

  .services-process__step {
    padding-left: 2.9rem;
  }

  .services-process__icon {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.92rem;
  }
}

/* SZOLGÁLTATÁSOK OLDAL FOLYAMAT - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .services-process {
    padding: 3.25rem 0;
  }
}

/* SZOLGÁLTATÁSOK OLDAL FOLYAMAT - tablet */
@media (min-width: 768px) {
  .services-process {
    padding: 5rem 0;
  }

  .services-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid rgba(234, 208, 199, 0.16);
  }

  .services-process__step {
    min-height: 12rem;
    padding: 1.45rem 1.25rem 1.45rem 4rem;
    border-right: 1px solid rgba(234, 208, 199, 0.16);
  }

  .services-process__step:nth-child(2n) {
    border-right: 0;
  }

  .services-process__icon {
    top: 1.45rem;
    left: 1.25rem;
  }
}

/* SZOLGÁLTATÁSOK OLDAL FOLYAMAT - asztali */
@media (min-width: 992px) {
  .services-process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-process__step,
  .services-process__step:nth-child(2n) {
    border-right: 1px solid rgba(234, 208, 199, 0.16);
  }

  .services-process__step:last-child {
    border-right: 0;
  }
}

/* SZOLGÁLTATÁSOK OLDAL FOGLALÁS - alap / mobil */
.services-booking {
  position: relative;
  overflow: clip;
  padding: 4rem 0;
  background:
    linear-gradient(180deg, rgba(248, 243, 239, 0.94), rgba(255, 250, 246, 0.98)),
    var(--color-cream);
}

.services-booking::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0), rgba(122, 46, 61, 0.28), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.services-booking__shell {
  max-width: 980px;
  margin-inline: auto;
  padding: 1.25rem 0 0;
}

.services-booking__title {
  max-width: 16ch;
  margin-inline: auto;
}

.services-booking__subtitle {
  max-width: 40rem;
  margin: 1rem auto;
  color: var(--color-muted);
  font-size: 1rem;
}

/* SZOLGÁLTATÁSOK OLDAL FOGLALÁS - kis képernyős mobil */
@media (max-width: 380px) {
  .services-booking {
    padding: 3.5rem 0;
  }
}

/* SZOLGÁLTATÁSOK OLDAL FOGLALÁS - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .services-booking {
    padding: 3.25rem 0;
  }
}

/* SZOLGÁLTATÁSOK OLDAL FOGLALÁS - tablet */
@media (min-width: 768px) {
  .services-booking {
    padding: 5rem 0;
  }

  .services-booking__title {
    max-width: 32ch;
  }
}


/* ÁRAK OLDAL HERO - alap / mobil */
.prices-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--color-soft);
  color: var(--color-ink);
}

.prices-hero__media,
.prices-hero__shade {
  position: absolute;
  inset: 0;
}

.prices-hero__media {
  z-index: 0;
}

.prices-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.95) contrast(0.96);
}

.prices-hero__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.1), rgba(248, 243, 239, 0.62)),
    linear-gradient(90deg, rgba(255, 250, 246, 0.1) 0%, rgba(255, 250, 246, 0.7) 58%, rgba(255, 250, 246, 0.38) 100%);
}

.prices-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0), rgba(122, 46, 61, 0.25), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.prices-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  padding: 4.5rem 0 3rem;
}

.prices-hero__eyebrow {
  color: var(--color-wine);
}

.prices-hero__title {
  max-width: 10ch;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.prices-hero__lead {
  max-width: 39rem;
  margin: 1.15rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.prices-hero__actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.prices-hero__facts {
  display: grid;
  margin: 0;
}

.prices-hero__facts div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-line);
}

.prices-hero__facts dt {
  color: var(--color-wine);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.prices-hero__facts dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 700;
}

.prices-hero__fact-value {
  display: inline;
  color: inherit;
  font: inherit;
  font-variant-numeric: tabular-nums;
}

.prices-hero__summary {
  align-self: end;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(122, 46, 61, 0.18);
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.28), rgba(255, 250, 246, 0));
}

.prices-hero__summary-label {
  margin: 0 0 0.2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 850;
}

/* ÁRAK OLDAL HERO - kis képernyős mobil */
@media (max-width: 380px) {
  .prices-hero__content {
    padding: 4rem 0 2.5rem;
  }

  .prices-hero__title {
    font-size: 2.25rem;
  }

  .prices-hero__lead {
    font-size: 0.95rem;
  }
}

/* ÁRAK OLDAL HERO - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .prices-hero__content {
    padding: 3.25rem 0 2.4rem;
  }

  .prices-hero__title {
    max-width: 18ch;
    font-size: 2.35rem;
  }

  .prices-hero__actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }
}

/* ÁRAK OLDAL HERO - tablet */
@media (min-width: 768px) {
  .prices-hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
    align-items: end;
    gap: 3rem;
    padding: 5.5rem 0 4rem;
  }

  .prices-hero__title {
    max-width: 13ch;
    font-size: 4.05rem;
  }

  .prices-hero__lead {
    font-size: 1.08rem;
  }

  .prices-hero__facts {
    max-width: 26rem;
  }

  .prices-hero__shade {
    background:
      linear-gradient(180deg, rgba(255, 250, 246, 0.7), rgba(248, 243, 239, 0.48)),
      linear-gradient(90deg, rgba(255, 250, 246, 0.1) 0%, rgba(255, 250, 246, 0.66) 44%, rgba(255, 250, 246, 0.14) 100%);
  }

  .prices-hero__summary {
    padding: 1.15rem 1.15rem 1.05rem;
    border: 1px solid rgba(122, 46, 61, 0.16);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 246, 0.64);
    backdrop-filter: blur(8px);
  }
}

/* ÁRAK OLDAL HERO - asztali */
@media (min-width: 992px) {
  .prices-hero__content {
    padding: 6.5rem 0 4.8rem;
  }

  .prices-hero__title {
    font-size: 4.75rem;
  }
}

@media (min-width: 1200px) {
  .prices-hero__title {
    font-size: 5.25rem;
  }
}

/* ÁRAK OLDAL LISTA - alap / mobil */
.prices-list {
  position: relative;
  overflow: clip;
  padding: 4rem 0;
}

.prices-list__header {
  position: relative;
  padding-top: 1rem;
}

.prices-list__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.prices-list__subtitle {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.prices-list__groups {
  display: grid;
  gap: 2.6rem;
}

.prices-list__group {
  display: grid;
  gap: 1rem;
}

.prices-list__category {
  display: grid;
  grid-template-columns: 2.55rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.prices-list__icon {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(122, 46, 61, 0.07);
  color: var(--color-wine);
  font-size: 1.05rem;
  line-height: 1;
}

.prices-list__category h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.prices-list__category p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
}

.prices-list__rows {
  display: grid;
  border-top: 1px solid var(--color-line);
}

.prices-list__row {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-line);
}

.prices-list__service h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
}

.prices-list__service p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
}

.prices-list__time {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.prices-list__amount {
  color: var(--color-wine);
  font-size: 1.06rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

/* ÁRAK OLDAL LISTA - kis képernyős mobil */
@media (max-width: 380px) {
  .prices-list {
    padding: 3.5rem 0;
  }

  .prices-list__groups {
    gap: 2.25rem;
  }

  .prices-list__category {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .prices-list__icon {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.98rem;
  }
}

/* ÁRAK OLDAL LISTA - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .prices-list {
    padding: 3.25rem 0;
  }
}

/* ÁRAK OLDAL LISTA - tablet */
@media (min-width: 768px) {
  .prices-list {
    padding: 5rem 0;
  }

  .prices-list__groups {
    gap: 3rem;
  }

  .prices-list__row {
    grid-template-columns: minmax(0, 1fr) minmax(7.5rem, auto) minmax(8rem, auto);
    align-items: center;
    gap: 1rem 1.5rem;
  }

  .prices-list__time,
  .prices-list__amount {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }
}

/* ÁRAK OLDAL LISTA - asztali */
@media (min-width: 992px) {
  .prices-list__group {
    grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 1fr);
    gap: 2.4rem;
    align-items: start;
    padding-top: 1.65rem;
    border-top: 1px solid rgba(122, 46, 61, 0.18);
  }

  .prices-list__rows {
    border-top: 0;
  }

  .prices-list__row:first-child {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .prices-list__group {
    grid-template-columns: minmax(14rem, 0.32fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

/* ÁRAK OLDAL FOGLALÓ ÉS INFÓK - alap / mobil */
.prices-policy {
  padding: 4rem 0;
  background: var(--color-cream);
}

.prices-policy__header {
  position: relative;
  padding-top: 1rem;
}

.prices-policy__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.prices-policy__subtitle {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.prices-policy__grid {
  display: grid;
  border-top: 1px solid var(--color-line);
}

.prices-policy__item {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-line);
}

.prices-policy__icon {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(122, 46, 61, 0.07);
  color: var(--color-wine);
  font-size: 1.02rem;
  line-height: 1;
}

.prices-policy__item h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.12rem;
  font-weight: 850;
}

.prices-policy__item p {
  margin: 0;
  color: var(--color-muted);
}

.prices-policy__item--highlight h3 {
  color: var(--color-wine);
}

/* ÁRAK OLDAL FOGLALÓ ÉS INFÓK - kis képernyős mobil */
@media (max-width: 380px) {
  .prices-policy {
    padding: 3.5rem 0;
  }

  .prices-policy__icon {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 0.96rem;
  }
}

/* ÁRAK OLDAL FOGLALÓ ÉS INFÓK - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .prices-policy {
    padding: 3.25rem 0;
  }
}

/* ÁRAK OLDAL FOGLALÓ ÉS INFÓK - tablet */
@media (min-width: 768px) {
  .prices-policy {
    padding: 5rem 0;
  }

  .prices-policy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--color-line);
  }

  .prices-policy__item {
    min-height: 13.5rem;
    padding: 1.6rem 1.25rem;
    border-right: 1px solid var(--color-line);
  }

  .prices-policy__item:nth-child(2n) {
    border-right: 0;
  }
}

/* ÁRAK OLDAL FOGLALÓ ÉS INFÓK - asztali */
@media (min-width: 992px) {
  .prices-policy__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .prices-policy__item,
  .prices-policy__item:nth-child(2n) {
    border-right: 1px solid var(--color-line);
  }

  .prices-policy__item:last-child {
    border-right: 0;
  }
}

/* ÁRAK OLDAL CTA - alap / mobil */
.prices-cta {
  position: relative;
  overflow: clip;
  padding: 3.6rem 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(248, 243, 239, 0.98)),
    var(--color-soft);
  color: var(--color-ink);
}

.prices-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0), rgba(122, 46, 61, 0.28), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.prices-cta__layout {
  display: grid;
  gap: 1.6rem;
}

.prices-cta__eyebrow {
  color: var(--color-wine);
}

.prices-cta__title {
  max-width: 12ch;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.prices-cta__copy {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.prices-cta__actions {
  display: grid;
  gap: 0.8rem;
}

.prices-cta .btn-ghost {
  border-color: rgba(122, 46, 61, 0.3);
  background: rgba(255, 255, 255, 0.45);
  color: var(--color-wine);
}

.prices-cta .btn-ghost:hover,
.prices-cta .btn-ghost:focus {
  border-color: var(--color-wine);
  background: rgba(122, 46, 61, 0.08);
  color: var(--color-wine-dark);
}

/* ÁRAK OLDAL CTA - kis képernyős mobil */
@media (max-width: 380px) {
  .prices-cta {
    padding: 3.2rem 0;
  }

  .prices-cta__title {
    font-size: 2rem;
  }
}

/* ÁRAK OLDAL CTA - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .prices-cta {
    padding: 3rem 0;
  }
}

/* ÁRAK OLDAL CTA - tablet */
@media (min-width: 768px) {
  .prices-cta {
    padding: 4.6rem 0;
  }

  .prices-cta__layout {
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: end;
    gap: 2.5rem;
  }

  .prices-cta__title {
    max-width: 15ch;
    font-size: 3rem;
  }

  .prices-cta__actions {
    min-width: 14rem;
  }
}

/* ÁRAK OLDAL CTA - asztali */
@media (min-width: 992px) {
  .prices-cta__title {
    font-size: 3.4rem;
  }
}

/* KAPCSOLAT OLDAL HERO - alap / mobil */
.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--color-soft);
  color: var(--color-ink);
}

.contact-hero__media,
.contact-hero__shade {
  position: absolute;
  inset: 0;
}

.contact-hero__media {
  z-index: 0;
}

.contact-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.96) contrast(0.96);
}

.contact-hero__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.82), rgba(248, 243, 239, 0.68)),
    linear-gradient(90deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 250, 246, 0.76) 52%, rgba(255, 250, 246, 0.28) 100%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0), rgba(122, 46, 61, 0.25), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.contact-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  padding: 4.5rem 0 3rem;
}

.contact-hero__eyebrow {
  color: var(--color-wine);
}

.contact-hero__title {
  max-width: 10ch;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.contact-hero__lead {
  max-width: 41rem;
  margin: 1.15rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.contact-hero__actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.contact-hero__summary {
  align-self: end;
}

.contact-hero__summary-label {
  margin: 0 0 0.2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-hero__list {
  display: grid;
  margin: 0;
}

.contact-hero__list a {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-weight: 780;
  text-decoration: none;
}

.contact-hero__list i {
  width: 2.25rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(122, 46, 61, 0.07);
  color: var(--color-wine);
  line-height: 1;
}

.contact-reveal-value {
  display: inline;
  color: inherit;
  font: inherit;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: no-preference) and (max-width: 767.98px) {
  .contact-hero__actions .reveal {
    opacity: 0;
    transition: opacity 1.18s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.18s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--contact-hero-button-reveal-delay, 0.12s);
    will-change: opacity, transform;
  }

  .contact-hero__actions .reveal.in-left {
    --contact-hero-button-reveal-delay: 0.12s;
    transform: translate3d(-0.85rem, 0, 0);
  }

  .contact-hero__actions .reveal.in-right {
    --contact-hero-button-reveal-delay: 0.22s;
    transform: translate3d(0.85rem, 0, 0);
  }

  .contact-hero__actions .reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* KAPCSOLAT OLDAL HERO - kis képernyős mobil */
@media (max-width: 380px) {
  .contact-hero__layout {
    padding: 4rem 0 2.5rem;
  }

  .contact-hero__title {
    font-size: 2.25rem;
  }

  .contact-hero__lead {
    font-size: 0.95rem;
  }
}

/* KAPCSOLAT OLDAL HERO - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .contact-hero__layout {
    padding: 3.25rem 0 2.4rem;
  }

  .contact-hero__title {
    max-width: 18ch;
    font-size: 2.35rem;
  }

  .contact-hero__actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }
}

/* KAPCSOLAT OLDAL HERO - tablet */
@media (min-width: 768px) {
  .contact-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
    align-items: end;
    gap: 3rem;
    padding: 5.5rem 0 4rem;
  }

  .contact-hero__title {
    max-width: 12ch;
    font-size: 4.05rem;
  }

  .contact-hero__lead {
    font-size: 1.08rem;
  }

  .contact-hero__shade {
    background:
      linear-gradient(180deg, rgba(255, 250, 246, 0.74), rgba(248, 243, 239, 0.52)),
      linear-gradient(90deg, rgba(255, 250, 246, 0.95) 0%, rgba(255, 250, 246, 0.64) 45%, rgba(255, 250, 246, 0.12) 100%);
  }

  .contact-hero__actions {
    grid-template-columns: repeat(2, max-content);
  }
}

/* KAPCSOLAT OLDAL HERO - asztali */
@media (min-width: 992px) {
  .contact-hero__layout {
    padding: 6.5rem 0 4.8rem;
  }

  .contact-hero__title {
    font-size: 4.75rem;
  }
}

@media (min-width: 1200px) {
  .contact-hero__title {
    font-size: 5.25rem;
  }
}

/* KAPCSOLAT OLDAL ELÉRHETŐSÉGEK - alap / mobil */
.contact-details {
  padding: 4rem 0;
}

.contact-details__header {
  position: relative;
  padding-top: 1rem;
}

.contact-details__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.contact-details__subtitle {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.contact-details__grid {
  display: grid;
  border-top: 1px solid var(--color-line);
}

.contact-details__item {
  display: grid;
  grid-template-columns: 2.55rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-line);
  color: inherit;
  text-decoration: none;
}

.contact-details__icon {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(122, 46, 61, 0.07);
  color: var(--color-wine);
  line-height: 1;
}

.contact-details__body {
  display: grid;
  gap: 0.18rem;
}

.contact-details__label {
  color: var(--color-wine);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details__body strong {
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.contact-details__body span:last-child {
  color: var(--color-muted);
}

.contact-details__item:hover .contact-details__body strong,
.contact-details__item:focus .contact-details__body strong {
  color: var(--color-wine);
}

/* KAPCSOLAT OLDAL ELÉRHETŐSÉGEK - kis képernyős mobil */
@media (max-width: 380px) {
  .contact-details {
    padding: 3.5rem 0;
  }

  .contact-details__item {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .contact-details__icon {
    width: 2.35rem;
    height: 2.35rem;
  }
}

/* KAPCSOLAT OLDAL ELÉRHETŐSÉGEK - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .contact-details {
    padding: 3.25rem 0;
  }
}

/* KAPCSOLAT OLDAL ELÉRHETŐSÉGEK - tablet */
@media (min-width: 768px) {
  .contact-details {
    padding: 5rem 0;
  }

  .contact-details__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--color-line);
  }

  .contact-details__item {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 13rem;
    padding: 1.55rem 1.25rem;
    border-right: 1px solid var(--color-line);
    border-bottom: 0;
  }

  .contact-details__item:last-child {
    border-right: 0;
  }
}

/* KAPCSOLAT OLDAL ELÉRHETŐSÉGEK - asztali */
@media (min-width: 992px) {
  .contact-details__item {
    min-height: 12.5rem;
  }
}

/* KAPCSOLAT OLDAL KÖZÖSSÉGI - alap / mobil */
.contact-social {
  padding: 4rem 0;
  background: var(--color-cream);
}

.contact-social__layout {
  display: grid;
  gap: 1.6rem;
}

.contact-social__content {
  position: relative;
  padding-top: 1rem;
}

.contact-social__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.contact-social__eyebrow {
  color: var(--color-wine);
}

.contact-social__title {
  max-width: 13ch;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-social__copy {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.contact-social__links {
  display: grid;
  border-top: 1px solid var(--color-line);
}

.contact-social__link {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
  font-weight: 850;
  text-decoration: none;
}

.contact-social__link i {
  width: 2.45rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(122, 46, 61, 0.07);
  color: var(--color-wine);
  line-height: 1;
}

.contact-social__link:hover,
.contact-social__link:focus {
  color: var(--color-wine);
}

.contact-social__link.is-disabled {
  color: rgba(111, 101, 97, 0.55);
}

.contact-social__link.is-disabled i {
  color: rgba(122, 46, 61, 0.45);
}

/* KAPCSOLAT OLDAL KÖZÖSSÉGI - kis képernyős mobil */
@media (max-width: 380px) {
  .contact-social {
    padding: 3.5rem 0;
  }

  .contact-social__title {
    font-size: 2rem;
  }
}

/* KAPCSOLAT OLDAL KÖZÖSSÉGI - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .contact-social {
    padding: 3.25rem 0;
  }
}

/* KAPCSOLAT OLDAL KÖZÖSSÉGI - tablet */
@media (min-width: 768px) {
  .contact-social {
    padding: 5rem 0;
  }

  .contact-social__layout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.44fr);
    align-items: end;
    gap: 3rem;
  }

  .contact-social__title {
    max-width: 15ch;
    font-size: 3rem;
  }
}

/* KAPCSOLAT OLDAL KÖZÖSSÉGI - asztali */
@media (min-width: 992px) {
  .contact-social__title {
    font-size: 3.4rem;
  }
}

/* KAPCSOLAT OLDAL IDŐPONT EGYEZTETÉS - alap / mobil */
.contact-visit {
  padding: 4rem 0;
}

.contact-visit__header {
  position: relative;
  padding-top: 1rem;
}

.contact-visit__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(8rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0.42), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.contact-visit__subtitle {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.contact-visit__steps {
  display: grid;
  border-top: 1px solid var(--color-line);
}

.contact-visit__step {
  display: grid;
  gap: 0.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-line);
}

.contact-visit__icon {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.18);
  border-radius: 50%;
  background: rgba(122, 46, 61, 0.07);
  color: var(--color-wine);
  line-height: 1;
}

.contact-visit__step h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.08rem;
  font-weight: 850;
}

.contact-visit__step p {
  margin: 0;
  color: var(--color-muted);
}

/* KAPCSOLAT OLDAL IDŐPONT EGYEZTETÉS - kis képernyős mobil */
@media (max-width: 380px) {
  .contact-visit {
    padding: 3.5rem 0;
  }
}

/* KAPCSOLAT OLDAL IDŐPONT EGYEZTETÉS - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .contact-visit {
    padding: 3.25rem 0;
  }
}

/* KAPCSOLAT OLDAL IDŐPONT EGYEZTETÉS - tablet */
@media (min-width: 768px) {
  .contact-visit {
    padding: 5rem 0;
  }

  .contact-visit__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--color-line);
  }

  .contact-visit__step {
    min-height: 13rem;
    padding: 1.55rem 1.25rem;
    border-right: 1px solid var(--color-line);
    border-bottom: 0;
  }

  .contact-visit__step:last-child {
    border-right: 0;
  }
}

/* KAPCSOLAT OLDAL IDŐPONT EGYEZTETÉS - asztali */
@media (min-width: 992px) {
  .contact-visit__step {
    min-height: 12.5rem;
  }
}

/* KAPCSOLAT OLDAL FOGLALÁS - alap / mobil */
.contact-booking {
  position: relative;
  overflow: clip;
  padding: 4rem 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(248, 243, 239, 0.98)),
    var(--color-soft);
  color: var(--color-ink);
}

.contact-booking::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0), rgba(122, 46, 61, 0.28), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.contact-booking__shell {
  max-width: 980px;
  margin-inline: auto;
}

.contact-booking__subtitle {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

/* KAPCSOLAT OLDAL FOGLALÁS - kis képernyős mobil */
@media (max-width: 380px) {
  .contact-booking {
    padding: 3.5rem 0;
  }
}

/* KAPCSOLAT OLDAL FOGLALÁS - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .contact-booking {
    padding: 3.25rem 0;
  }
}

/* KAPCSOLAT OLDAL FOGLALÁS - tablet */
@media (min-width: 768px) {
  .contact-booking {
    padding: 5rem 0;
  }
}

/* GALÉRIA OLDAL HERO - alap / mobil */
.gallery-hero {
  position: relative;
  overflow: clip;
  padding: calc(var(--header-height) + 1.95rem) 0 3rem;
  background:
    linear-gradient(135deg, rgba(122, 46, 61, 0.2), transparent 38%),
    linear-gradient(180deg, #251d1d 0%, #191414 100%);
  color: #fff;
}

.gallery-hero::before {
  content: "M&L";
  position: absolute;
  right: -0.35em;
  bottom: -0.28em;
  color: rgba(255, 250, 246, 0.045);
  font-family: var(--font-display);
  font-size: clamp(8rem, 38vw, 19rem);
  line-height: 1;
  pointer-events: none;
}

.gallery-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.7rem;
  min-width: 0;
}

.gallery-hero__content {
  max-width: 48rem;
  min-width: 0;
}

.gallery-hero__eyebrow {
  color: var(--color-blush);
}

.gallery-hero__title {
  max-width: min(100%, 10.5ch);
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11.6vw, 4.35rem);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.gallery-hero__lead {
  max-width: 40rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 250, 246, 0.74);
  font-size: 1rem;
}

.gallery-hero__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.gallery-hero__actions .btn-outline-light {
  border-color: rgba(255, 250, 246, 0.42);
  color: #fff;
}

.gallery-hero__facts {
  display: none;
  gap: 0.85rem;
  margin: 1.8rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(234, 208, 199, 0.18);
}

.gallery-hero__facts div {
  display: grid;
  gap: 0.12rem;
}

.gallery-hero__facts dt {
  color: #fff;
  font-weight: 850;
  line-height: 1.1;
}

.gallery-hero__facts dd {
  margin: 0;
  color: rgba(255, 250, 246, 0.66);
  font-size: 0.9rem;
}

.gallery-hero__fact-value {
  display: inline;
  color: inherit;
  font: inherit;
  font-variant-numeric: tabular-nums;
}

/* GALÉRIA OLDAL HERO - kis képernyős mobil */
@media (max-width: 380px) {
  .gallery-hero {
    padding: calc(var(--header-height) + 1.45rem) 0 2.55rem;
  }

  .gallery-hero__title {
    font-size: clamp(2.35rem, 11.2vw, 3rem);
  }

  .gallery-hero__lead,
  .gallery-hero__facts dd {
    font-size: 0.9rem;
  }
}

/* GALÉRIA OLDAL HERO - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .gallery-hero {
    padding: calc(var(--header-height) + 1.8rem) 0 2.2rem;
  }

  .gallery-hero__layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
  }
}

/* GALÉRIA OLDAL HERO - tablet */
@media (min-width: 768px) {
  .gallery-hero {
    padding: calc(var(--header-height) + 3rem) 0 4rem;
  }

  .gallery-hero__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .gallery-hero__title {
    max-width: 11ch;
    font-size: clamp(4rem, 7.5vw, 4.85rem);
    line-height: 0.96;
  }

  .gallery-hero__actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

}

/* GALÉRIA OLDAL HERO - 768px feletti információs sor */
@media (min-width: 768.02px) {
  .gallery-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* GALÉRIA OLDAL HERO - asztali */
@media (min-width: 992px) {
  .gallery-hero {
    padding: calc(var(--header-height) + 5rem) 0 5rem;
  }

  .gallery-hero__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .gallery-hero__title {
    max-width: 11.5ch;
    font-size: clamp(4.8rem, 6.5vw, 5.6rem);
  }

  .gallery-hero__lead {
    font-size: 1.07rem;
  }
}

/* GALÉRIA OLDAL INSPIRÁCIÓK - alap / mobil */
.gallery-inspiration {
  position: relative;
  overflow: clip;
  padding: 3.35rem 0;
  background:
    linear-gradient(180deg, #191414 0%, #231b1b 100%),
    var(--color-ink);
  color: #fff;
}

.gallery-inspiration::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(234, 208, 199, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(234, 208, 199, 0.045) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  opacity: 0.28;
  pointer-events: none;
}

.gallery-inspiration .container {
  position: relative;
  z-index: 1;
}

.gallery-inspiration__header {
  max-width: 49rem;
}

.gallery-inspiration__eyebrow,
.gallery-category__kicker {
  color: var(--color-blush);
}

.gallery-inspiration__title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 760;
}

.gallery-inspiration__subtitle {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: rgba(255, 250, 246, 0.7);
}

.gallery-category-list {
  display: grid;
  gap: 1.4rem;
}

.gallery-category {
  display: grid;
  gap: 1rem;
  padding: 0 0 1.45rem;
  border-bottom: 1px solid rgba(234, 208, 199, 0.16);
}

.gallery-category__showcase {
  display: grid;
  min-width: 0;
  gap: 0.85rem;
}

.gallery-category__rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
}

.gallery-lookbook-card {
  min-width: 0;
}

.gallery-lookbook-card__swatch {
  min-height: 7rem;
  border-color: rgba(255, 250, 246, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.gallery-lookbook-card__swatch::after {
  display: grid;
}

.gallery-lookbook-card__media {
  border: 1px solid rgba(255, 250, 246, 0.13);
  background: rgba(255, 250, 246, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.gallery-category__content {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.gallery-category__kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-category__title {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.12;
  font-weight: 850;
}

.gallery-category__copy {
  margin: 0;
  color: rgba(255, 250, 246, 0.7);
}

.gallery-category__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-category__tags li {
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(234, 208, 199, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.06);
  color: rgba(255, 250, 246, 0.78);
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1;
}

/* GALÉRIA OLDAL INSPIRÁCIÓK - kis képernyős mobil */
@media (max-width: 380px) {
  .gallery-inspiration {
    padding: 2.85rem 0;
  }

  .gallery-category__title {
    font-size: 1.34rem;
  }

  .gallery-category__copy {
    font-size: 0.92rem;
  }
}

/* GALÉRIA OLDAL INSPIRÁCIÓK - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .gallery-inspiration {
    padding: 2.5rem 0;
  }

  .gallery-category {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    align-items: center;
  }

  .gallery-category__rail {
    gap: 0.6rem;
  }
}

/* GALÉRIA OLDAL INSPIRÁCIÓK - tablet */
@media (min-width: 768px) {
  .gallery-inspiration {
    padding: 4.4rem 0;
  }

  .gallery-category-list {
    gap: 1.8rem;
  }

  .gallery-category {
    grid-template-columns: minmax(0, 0.56fr) minmax(0, 1.44fr);
    align-items: center;
    gap: 1.6rem;
    padding-bottom: 1.8rem;
  }

  .gallery-category__rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(12rem, 35%);
    grid-template-columns: none;
    gap: 0.95rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 0.15rem 0 0.85rem;
  }

  .gallery-category__rail::-webkit-scrollbar {
    display: none;
  }

  .gallery-lookbook-card {
    scroll-snap-align: start;
  }

  .gallery-lookbook-card__swatch {
    min-height: 4.85rem;
    padding: 0.8rem;
  }

  .gallery-lookbook-card__media {
    display: block;
    aspect-ratio: 3 / 4;
  }

  .gallery-category__title {
    font-size: 1.72rem;
  }

  .gallery-category__copy {
    font-size: 0.98rem;
  }
}

/* GALÉRIA OLDAL INSPIRÁCIÓK - asztali */
@media (min-width: 992px) {
  .gallery-inspiration {
    padding: 5.5rem 0;
  }

  .gallery-category {
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 1.52fr);
    gap: 2.4rem;
  }

  .gallery-category__rail {
    grid-auto-columns: minmax(13rem, 26%);
    gap: 1rem;
  }

  .gallery-lookbook-card__swatch {
    min-height: 4.65rem;
  }

  .gallery-category__title {
    font-size: 1.9rem;
  }

  .gallery-category__copy {
    font-size: 1.02rem;
  }
}

/* GALÉRIA OLDAL CTA - alap / mobil */
.gallery-cta {
  padding: 3.1rem 0;
  background: var(--color-cream);
  border-top: 1px solid var(--color-line);
}

.gallery-cta__layout {
  display: grid;
  gap: 1.35rem;
}

.gallery-cta__title {
  max-width: 14ch;
  margin: 0;
  color: var(--color-ink);
  font-size: 2.25rem;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.gallery-cta__copy {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.gallery-cta__actions {
  display: grid;
  gap: 0.75rem;
}

/* GALÉRIA OLDAL CTA - kis képernyős mobil */
@media (max-width: 380px) {
  .gallery-cta {
    padding: 2.6rem 0;
  }

  .gallery-cta__title {
    font-size: 2rem;
  }
}

/* GALÉRIA OLDAL CTA - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .gallery-cta {
    padding: 2.35rem 0;
  }
}

/* GALÉRIA OLDAL CTA - tablet */
@media (min-width: 768px) {
  .gallery-cta {
    padding: 4rem 0;
  }

  .gallery-cta__layout {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, auto);
    align-items: center;
    gap: 2rem;
  }

  .gallery-cta__title {
    max-width: 19ch;
  }
}

/* GALÉRIA OLDAL CTA - asztali */
@media (min-width: 992px) {
  .gallery-cta {
    padding: 4.6rem 0;
  }

  .gallery-cta__actions {
    grid-template-columns: auto auto;
  }

  .gallery-cta__title {
    max-width: 23ch;
  }
}

/* FOOTER - alap / mobil */
.site-footer {
  position: relative;
  overflow: clip;
  padding: 2.35rem 0 2rem;
  border-top: 1px solid rgba(122, 46, 61, 0.18);
  background:
    linear-gradient(180deg, rgba(51, 43, 43, 0.98), var(--color-ink) 58%),
    var(--color-ink);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(234, 208, 199, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.footer-layout {
  display: grid;
  gap: 1.35rem;
}

.footer-brand-block {
  display: grid;
  gap: 0.95rem;
}

.footer-brand .brand-mark {
  border-color: rgba(234, 208, 199, 0.42);
  background: rgba(255, 250, 246, 0.08);
  color: #fff;
}

.footer-brand .brand-name,
.footer-brand .brand-place {
  color: #fff;
}

.footer-text {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}

.footer-actions {
  display: grid;
  gap: 0.95rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cookie-button {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-weight: 750;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus {
  color: #fff;
}

.footer-credit {
  width: fit-content;
  display: inline-grid;
  gap: 0.08rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.2;
  text-decoration: none;
}

.footer-credit span {
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-credit strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}

.footer-credit:hover strong,
.footer-credit:focus strong {
  color: var(--color-blush);
}

.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

/* FOOTER - kis képernyős mobil */
@media (max-width: 380px) {
  .site-footer {
    padding: 2rem 0 1.75rem;
  }

  .footer-text,
  .footer-note {
    font-size: 0.88rem;
  }
}

/* FOOTER - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .site-footer {
    padding: 2rem 0 1.75rem;
  }

  .footer-layout {
    gap: 1rem;
  }
}

/* FOOTER - tablet */
@media (min-width: 768px) {
  .footer-layout {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, auto);
    grid-template-areas:
      "brand links"
      "actions actions"
      "note note";
    align-items: start;
    gap: 1.45rem 2.5rem;
  }

  .footer-brand-block {
    grid-area: brand;
  }

  .footer-links {
    grid-area: links;
    grid-template-columns: 1fr;
    justify-content: end;
    justify-items: end;
    gap: 0.65rem;
    text-align: right;
  }

  .footer-actions {
    grid-area: actions;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-note {
    grid-area: note;
  }
}

/* FOOTER - asztali */
@media (min-width: 992px) {
  .site-footer {
    padding: 2.8rem 0 2.15rem;
  }

  .footer-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand links"
      "actions actions"
      "note note";
    gap: 1.45rem 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(6, auto);
    justify-items: end;
    gap: 0.7rem 1.25rem;
  }

  .footer-actions {
    grid-template-columns: auto auto;
    justify-content: space-between;
    text-align: left;
  }

  .footer-note {
    grid-area: note;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* BACK TO TOP - alap / mobil */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 980;
  width: 2.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 46, 61, 0.22);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.94);
  color: var(--color-wine);
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(35, 31, 32, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0.65rem, 0);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: no-preference) {
  .back-to-top {
    transition: opacity 180ms ease, transform 180ms ease, background-color 160ms ease, color 160ms ease;
  }
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--color-wine);
  color: #fff;
}

/* BACK TO TOP - kis képernyős mobil */
@media (max-width: 380px) {
  .back-to-top {
    right: 0.75rem;
    width: 2.55rem;
  }
}

/* BACK TO TOP - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .back-to-top {
    width: 2.5rem;
  }
}

/* BACK TO TOP - tablet */
@media (min-width: 768px) {
  .back-to-top {
    right: 1.5rem;
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}

/* BACK TO TOP - asztali */
@media (min-width: 992px) {
  .back-to-top {
    width: 3rem;
  }
}

/* COOKIE KEZELŐ - alap / mobil */
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

html.is-cookie-modal-open,
body.is-cookie-modal-open {
  overflow: hidden;
}

body.is-cookie-modal-open {
  touch-action: none;
  overscroll-behavior: contain;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1080;
  padding: 1rem;
  background: rgba(255, 250, 246, 0.98);
  border-top: 1px solid var(--color-line);
  box-shadow: 0 -18px 50px rgba(35, 31, 32, 0.12);
}

.cookie-banner__content {
  width: min(100%, 1160px);
  display: grid;
  gap: 1rem;
  margin-inline: auto;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-ink);
}

.cookie-banner p,
.cookie-modal p {
  margin: 0;
  color: var(--color-muted);
}

.cookie-banner a {
  color: var(--color-wine);
  font-weight: 750;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(35, 31, 32, 0.48);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  padding: 1.15rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  box-shadow: 0 28px 80px rgba(35, 31, 32, 0.24);
}

.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-modal__header .eyebrow {
  margin-bottom: 0.35rem;
}

.cookie-modal__header h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.5rem;
  line-height: 1.15;
}

.cookie-modal__close {
  width: 2.4rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: #fff;
  color: var(--color-ink);
  font-size: 1.3rem;
  line-height: 1;
}

.cookie-modal__lead {
  margin-bottom: 1rem;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--color-line);
}

.cookie-option strong {
  color: var(--color-ink);
}

.cookie-option input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--color-wine);
}

.cookie-modal__actions {
  margin-top: 1rem;
}

/* COOKIE KEZELŐ - kis képernyős mobil */
@media (max-width: 380px) {
  .cookie-banner {
    padding: 0.85rem;
  }

  .cookie-modal {
    padding: 0.75rem;
  }

  .cookie-modal__panel {
    padding: 1rem;
  }
}

/* COOKIE KEZELŐ - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .cookie-modal {
    align-items: start;
    padding-top: 0.75rem;
  }

  .cookie-modal__panel {
    max-height: calc(100dvh - 1.5rem);
  }
}

/* COOKIE KEZELŐ - tablet */
@media (min-width: 768px) {
  .cookie-banner {
    padding: 1.1rem 1.25rem;
  }

  .cookie-banner__content {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    justify-content: flex-end;
  }

  .cookie-modal__panel {
    padding: 1.5rem;
  }
}

/* COOKIE KEZELŐ - asztali */
@media (min-width: 992px) {
  .cookie-modal__header h2 {
    font-size: 1.7rem;
  }
}

/* JOGI OLDAL HERO - alap / mobil */
.legal-hero {
  position: relative;
  overflow: clip;
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(248, 243, 239, 0.96)),
    var(--color-soft);
  color: var(--color-ink);
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 46, 61, 0), rgba(122, 46, 61, 0.25), rgba(122, 46, 61, 0));
  pointer-events: none;
}

.legal-hero__layout {
  display: grid;
  gap: 1.65rem;
}

.legal-kicker {
  width: fit-content;
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(122, 46, 61, 0.35);
  color: var(--color-wine);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-hero__title {
  max-width: 11ch;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero__lead {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.legal-meta {
  margin: 1.05rem 0 0;
  color: var(--color-wine);
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-toc {
  display: grid;
  border-top: 1px solid var(--color-line);
}

.legal-toc a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus {
  color: var(--color-wine);
}

/* JOGI OLDAL HERO - kis képernyős mobil */
@media (max-width: 380px) {
  .legal-hero {
    padding: 4rem 0 2.55rem;
  }

  .legal-hero__title {
    font-size: 2.28rem;
  }
}

/* JOGI OLDAL HERO - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .legal-hero {
    padding: 3.25rem 0 2.4rem;
  }

  .legal-hero__title {
    max-width: 18ch;
    font-size: 2.35rem;
  }
}

/* JOGI OLDAL HERO - tablet */
@media (min-width: 768px) {
  .legal-hero {
    padding: 5.5rem 0 4rem;
  }

  .legal-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.38fr);
    align-items: end;
    gap: 3rem;
  }

  .legal-hero__title {
    max-width: 12ch;
    font-size: 4.05rem;
  }

  .legal-hero__lead {
    font-size: 1.08rem;
  }
}

/* JOGI OLDAL HERO - asztali */
@media (min-width: 992px) {
  .legal-hero {
    padding: 6.5rem 0 4.8rem;
  }

  .legal-hero__title {
    font-size: 4.75rem;
  }

  .legal-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.35fr);
  }
}

/* JOGI OLDAL TARTALOM - alap / mobil */
.legal-document {
  padding: 4rem 0;
}

.legal-document__layout {
  display: grid;
  gap: 2rem;
}

.legal-summary {
  display: grid;
  gap: 0.65rem;
  align-self: start;
  padding-top: 1rem;
  border-top: 1px solid rgba(122, 46, 61, 0.34);
}

.legal-summary p {
  margin: 0;
  color: var(--color-wine);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-summary strong {
  color: var(--color-ink);
  font-size: 1.15rem;
  line-height: 1.32;
}

.legal-summary span {
  color: var(--color-muted);
}

.legal-content {
  display: grid;
}

.legal-block {
  padding: 1.45rem 0;
  border-top: 1px solid var(--color-line);
}

.legal-block:last-child {
  border-bottom: 1px solid var(--color-line);
}

.legal-block h2 {
  margin: 0 0 0.75rem;
  color: var(--color-ink);
  font-size: 1.22rem;
  font-weight: 850;
  letter-spacing: 0;
}

.legal-block p {
  max-width: 62rem;
  margin: 0.65rem 0 0;
  color: var(--color-muted);
}

.legal-block a {
  color: var(--color-wine);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.legal-data-list {
  display: grid;
  margin: 1rem 0 0;
}

.legal-data-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(122, 46, 61, 0.12);
}

.legal-data-list dt {
  color: var(--color-wine);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-data-list dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 700;
}

.legal-warning {
  color: var(--color-wine-dark) !important;
}

.legal-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.legal-list li::marker {
  color: var(--color-wine);
}

/* JOGI OLDAL TARTALOM - kis képernyős mobil */
@media (max-width: 380px) {
  .legal-document {
    padding: 3.5rem 0;
  }

  .legal-block h2 {
    font-size: 1.12rem;
  }
}

/* JOGI OLDAL TARTALOM - fekvő mobil */
@media (orientation: landscape) and (max-height: 560px) {
  .legal-document {
    padding: 3.25rem 0;
  }
}

/* JOGI OLDAL TARTALOM - tablet */
@media (min-width: 768px) {
  .legal-document {
    padding: 5rem 0;
  }

  .legal-document__layout {
    grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .legal-summary {
    position: sticky;
    top: calc(var(--header-height, 76px) + 1.5rem);
  }

  .legal-block {
    padding: 1.8rem 0;
  }

  .legal-data-list div {
    grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr);
    gap: 1.25rem;
  }
}

/* JOGI OLDAL TARTALOM - asztali */
@media (min-width: 992px) {
  .legal-document {
    padding: 5.8rem 0;
  }

  .legal-document__layout {
    grid-template-columns: minmax(14rem, 0.28fr) minmax(0, 1fr);
    gap: 4rem;
  }

  .legal-block h2 {
    font-size: 1.32rem;
  }
}
