/* ==========================================================================
   Frufru Szalon - bemutato oldal
   Editorial, legies koncepcio: poros mauve + zsalya, porcelan alap, arany
   hajszalvonalak. Motivum: kapszula / pill kepkivagas (border-radius 1000px).
   Tipografia: Cormorant Garamond (display) + Inter (folyoszoveg).
   Sima CSS, build nelkul. Minden szoveg/hatter par WCAG AA (4.5:1+).
   ========================================================================== */

:root {
  /* Szin tokenek (minden szoveg/hatter par WCAG AA ellenorizve) */
  --porcelain: #FBF6F4;    /* oldal hattere                            */
  --plum-ink: #2E2530;     /* cimsorok, eros szoveg (12:1)             */
  --prose: #4A3F48;        /* folyoszoveg (9.3:1)                      */
  --ink-soft: #6B5E68;     /* masodlagos szoveg (5.7:1)                */
  --surface: #FFFFFF;      /* kartyak, kiemelt panelek                 */

  --mauve: #9A6A7E;        /* dekor toltes, hajszalvonal - sosem szoveg */
  --mauve-ink: #8C5670;    /* mauve szoveg, linkek (5.3:1)             */
  --mauve-strong: #7A4A5E; /* elsodleges gomb, feher szoveg (7:1)      */
  --mauve-hover: #683E50;  /* gomb hover                               */
  --mauve-soft: #E7D4DB;   /* halvany mauve toltes                     */

  --sage: #7C8B6A;         /* zsalya dekor - sosem szoveg              */
  --sage-ink: #5F6E4E;     /* zsalya szoveg (5.1:1)                    */
  --sage-soft: #DDE3D2;    /* halvany zsalya toltes                    */

  --gold: #C6A15B;         /* arany hajszalvonal, dekor                */
  --gold-ink: #A07E32;     /* nagy szamok vilagoson (3.5:1 nagy szoveg)*/

  --block: #F2E7EA;        /* placeholder kep alap (mauve arnyalat)    */
  --line: #EBDFE2;         /* hajszalvonal keret                       */
  --plum-deep: #241C26;    /* labic, sotet savok                       */

  /* Tipografia */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Ritmus */
  --space-section: clamp(4rem, 10vw, 7.5rem);
  --container: 68rem;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--plum-ink);
  background-color: var(--porcelain);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--mauve-ink); }
a:hover { color: var(--mauve-strong); }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--plum-ink);
  color: var(--porcelain);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-link:focus { top: 0; color: var(--porcelain); }

/* --------------------------------------------------------------------------
   Bemutato sav (minden oldal tetejen)
   -------------------------------------------------------------------------- */
.demo-bar {
  background: var(--plum-deep);
  color: #EFE1E8;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  padding: 0.45rem 1rem;
}
.demo-bar strong { color: #F6E9EF; font-weight: 600; }

/* --------------------------------------------------------------------------
   Tipografia
   -------------------------------------------------------------------------- */
h1, h2, h3 { line-height: 1.12; }

h1, .display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 8vw, 5rem);
  letter-spacing: 0.005em;
  color: var(--plum-ink);
}

h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3rem);
  letter-spacing: 0.005em;
  color: var(--plum-ink);
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--plum-ink);
}

p { max-width: 62ch; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mauve-ink);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1px;
  background: var(--gold);
  margin-right: 0.7em;
  vertical-align: middle;
}

.lede {
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  color: var(--prose);
  max-width: 38em;
}

.muted { color: var(--ink-soft); }

/* Finom jegyzetdoboz */
.soft-note {
  background: #FBF1F4;
  border: 1px solid var(--line);
  border-left: 3px solid var(--mauve-soft);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 46em;
}

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

.section { padding-block: var(--space-section); }
.section--tight { padding-block: calc(var(--space-section) * 0.6); }

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lede { margin-inline: auto; }
.section-head.center .eyebrow::after {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1px;
  background: var(--gold);
  margin-left: 0.7em;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Kapszula hajszalvonal-sav (dekor)
   -------------------------------------------------------------------------- */
.rule {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding-block: 0.5rem;
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  width: min(9rem, 22vw);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.rule span {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--mauve);
  flex: none;
}

/* --------------------------------------------------------------------------
   Gombok
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
}

/* Elsodleges: mauve toltes, porcelan szoveg (7:1) */
.btn--primary { background: var(--mauve-strong); color: var(--porcelain); }
.btn--primary:hover { background: var(--mauve-hover); color: var(--porcelain); }

/* Masodlagos: kontur (mauve szoveg 5.3:1) */
.btn--ghost {
  background: transparent;
  color: var(--mauve-ink);
  border-color: var(--mauve-ink);
}
.btn--ghost:hover { background: var(--mauve-strong); color: #FFF; border-color: var(--mauve-strong); }

/* Sotet savon: porcelan toltes, mauve szoveg */
.btn--light { background: var(--porcelain); color: var(--mauve-strong); }
.btn--light:hover { background: #FFF; color: var(--mauve-hover); }

@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  }
  .btn:active { transform: scale(0.98); }
  .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(122, 74, 94, 0.3);
  }
  .btn--ghost:hover, .btn--light:hover { transform: translateY(-1px); }
}

/* --------------------------------------------------------------------------
   Fejlec / navigacio
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 244, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(46, 37, 48, 0.07); }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--plum-ink);
  line-height: 1;
}
.brand-logo { width: 38px; height: 38px; flex: none; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-ink);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--plum-ink); border-radius: 2px; }

.nav-menu { display: none; list-style: none; }
.nav-menu.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem var(--gutter) 1.25rem;
  gap: 0.25rem;
}

/* Szin csak a nem-gomb linkekre, hogy a nav gombja teljes kontrasztu maradjon */
.nav-menu a:not(.btn) {
  display: block;
  padding: 0.65rem 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--plum-ink);
}
.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn)[aria-current="page"] { color: var(--mauve-ink); }
.nav-menu a:not(.btn)[aria-current="page"] { border-bottom: 1.5px solid var(--gold); }

.nav-book { flex: none; }
.nav-book .btn { padding: 0.6rem 1.3rem; font-size: 0.72rem; }

@media (max-width: 26em) {
  .nav-bar { gap: 0.5rem; }
  .nav-book .btn { padding: 0.6rem 0.9rem; }
}

@media (min-width: 56em) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex; gap: 1.75rem; align-items: center; }
  .nav-menu a:not(.btn) { padding: 0.25rem 0; }
}

/* --------------------------------------------------------------------------
   Placeholder kepkeretek - KAPSZULA a fo motivum (border-radius 1000px)
   -------------------------------------------------------------------------- */
.photo-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(120% 90% at 30% 18%, #FBF2F5 0%, var(--block) 58%, #ECDDE3 100%);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 1.4rem;
  overflow: hidden;
}
.photo-ph .ph-label { max-width: 15em; line-height: 1.5; }
.photo-ph .ph-tag {
  display: block;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve-ink);
  font-size: 0.64rem;
  margin-bottom: 0.4rem;
}

/* kapszula / pill keret */
.capsule {
  aspect-ratio: 3 / 4.3;
  border-radius: 1000px;
}
.capsule--wide { aspect-ratio: 4 / 3.6; border-radius: 1000px; }
.capsule--tall { aspect-ratio: 3 / 4.9; border-radius: 1000px; }

/* --------------------------------------------------------------------------
   Kozepre igazitott hero, lagy kep-savval (headline a savra ulve)
   -------------------------------------------------------------------------- */
.hero-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(60% 55% at 20% 12%, rgba(154, 106, 126, 0.24) 0%, transparent 60%),
    radial-gradient(58% 55% at 82% 18%, rgba(124, 139, 106, 0.22) 0%, transparent 60%),
    radial-gradient(70% 60% at 50% 108%, rgba(198, 161, 91, 0.14) 0%, transparent 60%),
    linear-gradient(170deg, #F7EEF0 0%, var(--porcelain) 46%, #F1F0E9 100%);
  border-bottom: 1px solid var(--line);
}

.hero-band__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.055'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-band__glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-band__glow .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-band__glow .glow--mauve {
  width: 26rem; height: 26rem; top: -8rem; left: -4rem;
  background: radial-gradient(circle, var(--mauve) 0%, transparent 70%);
}
.hero-band__glow .glow--sage {
  width: 22rem; height: 22rem; bottom: -8rem; right: -3rem;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
}

.hero-band .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 10vw, 6.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-band .eyebrow { color: var(--mauve-ink); }
.hero-band .eyebrow::after {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1px;
  background: var(--gold);
  margin-left: 0.7em;
  vertical-align: middle;
}
.hero-band h1 { max-width: 15ch; }
.hero-band .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  color: var(--mauve-ink);
  margin-top: 0.5rem;
}
.hero-band .lede { margin-top: 1.3rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
  justify-content: center;
}

/* hero kapszula-elonezet sor */
.hero-capsules {
  display: flex;
  gap: clamp(0.8rem, 2.5vw, 1.6rem);
  justify-content: center;
  align-items: flex-end;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  width: 100%;
}
.hero-capsules .capsule {
  flex: 1 1 0;
  max-width: 14rem;
  box-shadow:
    0 0 0 1px rgba(198, 161, 91, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.6),
    0 0 0 7px rgba(198, 161, 91, 0.4),
    0 22px 48px rgba(46, 37, 48, 0.14);
}
.hero-capsules .capsule:nth-child(2) { transform: translateY(-1.4rem); }
@media (max-width: 40em) {
  .hero-capsules .capsule:nth-child(3) { display: none; }
  .hero-capsules .capsule:nth-child(2) { transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-band__glow .glow--mauve { animation: glowA 24s ease-in-out infinite alternate; }
  .hero-band__glow .glow--sage { animation: glowB 28s ease-in-out infinite alternate; }
  @keyframes glowA { from { transform: translate(0,0) scale(1); } to { transform: translate(2.5rem, 1.5rem) scale(1.1); } }
  @keyframes glowB { from { transform: translate(0,0) scale(1); } to { transform: translate(-2.5rem, -1rem) scale(1.08); } }
  .hero-capsules .capsule { animation: capFloat 9s ease-in-out infinite alternate; }
  .hero-capsules .capsule:nth-child(2) { animation-delay: -3s; }
  .hero-capsules .capsule:nth-child(3) { animation-delay: -6s; }
  @keyframes capFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }
  .hero-capsules .capsule:nth-child(2) { animation-name: capFloat2; }
  @keyframes capFloat2 { from { transform: translateY(-1.4rem); } to { transform: translateY(calc(-1.4rem - 8px)); } }
}

/* --------------------------------------------------------------------------
   Bizalmi cimkek
   -------------------------------------------------------------------------- */
.fact-strip { display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem; margin-top: 2rem; justify-content: center; }
.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.fact-chip::before {
  content: "";
  width: 0.45em; height: 0.45em;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* --------------------------------------------------------------------------
   Szolgaltatas futosav
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: 0.9rem;
}
.marquee__track { display: flex; width: max-content; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__group span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--mauve-ink);
  white-space: nowrap;
}
.marquee__group i { font-style: normal; color: var(--gold); margin-inline: 1.4rem; }

@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marqueeScroll 34s linear infinite; }
  @keyframes marqueeScroll { to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { width: auto; flex-wrap: wrap; }
  .marquee__group + .marquee__group { display: none; }
}

/* --------------------------------------------------------------------------
   Lagy sav (tiszta CSS)
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  background:
    radial-gradient(55% 80% at 6% 0%, rgba(154, 106, 126, 0.12) 0%, transparent 55%),
    radial-gradient(50% 75% at 100% 100%, rgba(124, 139, 106, 0.12) 0%, transparent 55%),
    #FBF3F5;
  border-block: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Kartyak
   -------------------------------------------------------------------------- */
.card-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 40em) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60em) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 62em) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.card .swatch-dot {
  width: 2.4rem; height: 2.4rem;
  border-radius: 999px;
  flex: none;
  margin-bottom: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.card .swatch-dot svg { width: 1.3rem; height: 1.3rem; }
.card p { font-size: 0.94rem; color: var(--prose); }
.card .card-link {
  margin-top: auto;
  padding-top: 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mauve-ink);
}

@media (prefers-reduced-motion: no-preference) {
  .card { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(46, 37, 48, 0.09);
    border-color: var(--mauve-soft);
  }
}

/* --------------------------------------------------------------------------
   Szolgaltatas lista (szolgaltatasok oldal)
   -------------------------------------------------------------------------- */
.menu-category { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.menu-category > h2 { margin-bottom: 0.4rem; }
.menu-category > .category-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 42em;
  margin-bottom: 1.5rem;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.menu-item:first-of-type { border-top: 1px solid var(--line); }
.menu-item h3 { font-size: 1.02rem; }
.menu-item .desc {
  font-size: 0.92rem;
  color: var(--prose);
  max-width: 48em;
}

/* --------------------------------------------------------------------------
   A latogatas - szamozott lepesek
   -------------------------------------------------------------------------- */
.steps-grid { display: grid; gap: 1.5rem; }
@media (min-width: 48em) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; }
}
.step { border-top: 1.5px solid var(--gold); padding-top: 1.2rem; }
.step .step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-ink);
  margin-bottom: 0.5rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.94rem; color: var(--prose); }

@media (prefers-reduced-motion: no-preference) {
  .step { transition: transform 0.3s ease; }
  .step:hover { transform: translateY(-3px); }
}

/* --------------------------------------------------------------------------
   Bizalom / statisztika (csillagok)
   -------------------------------------------------------------------------- */
.trust-band {
  background:
    radial-gradient(60% 90% at 90% 0%, rgba(124, 139, 106, 0.1) 0%, transparent 55%),
    var(--surface);
  border-block: 1px solid var(--line);
}
.stat-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}
@media (min-width: 44em) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat { padding: 0.5rem; }
.stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 1;
  color: var(--plum-ink);
  display: block;
}
.stat .stat-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve-ink);
  margin-top: 0.6rem;
  display: block;
}
.stat + .stat { border-top: 1px solid var(--line); padding-top: 1.5rem; }
@media (min-width: 44em) {
  .stat + .stat { border-top: none; border-left: 1px solid var(--line); padding-top: 0.5rem; }
}

/* csillagok: ket reteg SVG, arany reteg szazalekra vagva */
.stars {
  display: inline-block;
  position: relative;
  width: 9rem;
  height: 1.6rem;
  vertical-align: middle;
}
.stars .stars-bg,
.stars .stars-fg {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.stars .stars-bg { width: 100%; color: #E2D3D9; }
.stars .stars-fg { color: var(--gold); }
.stars svg { width: 1.8rem; height: 1.6rem; display: inline-block; }

/* --------------------------------------------------------------------------
   Velemenyek modul
   -------------------------------------------------------------------------- */
.review-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.review-rating .score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--plum-ink);
  line-height: 1;
}
.review-rating .count { font-size: 0.9rem; color: var(--ink-soft); }

.review-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 52em) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.review-card .stars { width: 6.3rem; height: 1.1rem; }
.review-card .stars svg { width: 1.26rem; height: 1.1rem; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--prose);
}
.review-card .review-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve-ink);
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Galeria
   -------------------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--mauve);
  background: transparent;
  color: var(--mauve-ink);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--mauve-strong); color: var(--mauve-strong); }
.filter-btn[aria-pressed="true"] {
  background: var(--mauve-strong);
  border-color: var(--mauve-strong);
  color: #FFF;
}

.gallery-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48em) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.gallery-item { cursor: zoom-in; }
.gallery-item figcaption {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.6rem;
}
.gallery-item.is-hidden { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .gallery-item .capsule { transition: transform 0.35s ease; }
  .gallery-item:hover .capsule { transform: scale(1.03); }
  .gallery-item { transition: opacity 0.35s ease, transform 0.35s ease; }
  .gallery-item.is-filtering-out { opacity: 0; transform: scale(0.94); }
  .gallery-item.is-filtering-in { animation: filterIn 0.4s ease both; }
  @keyframes filterIn {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: none; }
  }
}

/* --------------------------------------------------------------------------
   CTA sav (mauve alap = AA vilagos szoveghez)
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 120% at 85% 10%, rgba(124, 139, 106, 0.28) 0%, transparent 55%),
    radial-gradient(60% 100% at 8% 100%, rgba(198, 161, 91, 0.2) 0%, transparent 55%),
    var(--mauve-strong);
  color: #FFF;
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-band h2 { color: #FFF; margin-bottom: 0.75rem; }
.cta-band p {
  color: #F4E7EC;
  max-width: 34em;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
.cta-band .eyebrow { color: #F0D9B4; }
.cta-band .eyebrow::before { background: #F0D9B4; }

/* --------------------------------------------------------------------------
   Aloldal fejlec
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(55% 120% at 88% 6%, rgba(154, 106, 126, 0.18) 0%, transparent 58%),
    radial-gradient(50% 90% at 4% 100%, rgba(124, 139, 106, 0.16) 0%, transparent 55%),
    #FBF3F5;
  border-bottom: 1px solid var(--line);
}
.page-head > .container { position: relative; padding-block: clamp(2.75rem, 7vw, 4.5rem); }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
.page-head .lede { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Ketoszlopos megoszto
   -------------------------------------------------------------------------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
.split > * { min-width: 0; }
@media (min-width: 56em) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-photo { max-width: 22rem; margin-inline: auto; width: 100%; }
.split-photo .capsule {
  box-shadow:
    0 0 0 1px rgba(198, 161, 91, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.6),
    0 0 0 7px rgba(198, 161, 91, 0.4),
    0 22px 48px rgba(46, 37, 48, 0.14);
}

.checklist { list-style: none; margin-top: 1.25rem; display: grid; gap: 0.75rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--prose); }
.checklist svg { width: 20px; height: 20px; flex: none; margin-top: 0.2rem; color: var(--sage-ink); }

/* --------------------------------------------------------------------------
   Ar jegyzet doboz
   -------------------------------------------------------------------------- */
.price-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--mauve-soft);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  margin-block: 1.5rem 2.5rem;
}
.price-box h2 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.price-box p { color: var(--prose); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Kapcsolat oldal
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 56em) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.contact-list { list-style: none; }
.contact-list li { padding-block: 1rem; border-bottom: 1px solid var(--line); }
.contact-list .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve-ink);
  margin-bottom: 0.25rem;
}
.contact-list a { color: var(--mauve-ink); }

/* nyitvatartas tabla */
.hours { list-style: none; margin-top: 0.4rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--prose);
}
.hours li:last-child { border-bottom: none; }
.hours .day { color: var(--ink-soft); }
.hours .time { font-variant-numeric: tabular-nums; }
.hours li.is-today .day, .hours li.is-today .time { color: var(--mauve-ink); font-weight: 600; }

.map-ph { border-radius: 20px; aspect-ratio: 4 / 3; margin-top: 1.5rem; }

/* demo urlap */
.form-grid { display: grid; gap: 1.1rem; margin-top: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--mauve);
  border-radius: 10px;
  background: var(--surface);
  color: var(--plum-ink);
  width: 100%;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--mauve-ink); outline-offset: 2px; }

@media (min-width: 40em) { .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; } }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid #A9C39B;
  background: #EEF4EA;
  color: #3C5A2E;
  font-size: 0.95rem;
}
.form-success.is-visible { display: block; }
.bookcard.is-sent .consult-form { display: none; }

/* --------------------------------------------------------------------------
   GYIK
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); margin-top: 2.5rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 1.1rem 2.25rem 1.1rem 0.25rem;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  position: relative;
  color: var(--plum-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--mauve-ink);
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-a {
  padding: 0 0.25rem 1.25rem;
  max-width: 48em;
  color: var(--prose);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Labic
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--plum-deep);
  color: #D8CDD3;
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  font-size: 0.92rem;
}
.site-footer a { color: var(--mauve-soft); }
.site-footer a:hover { color: #F1DEE6; }

.footer-grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 48em) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }

.footer-logo { width: 44px; height: 44px; margin-bottom: 0.75rem; opacity: 0.95; }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--porcelain); }
.footer-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-soft);
  margin-top: 0.25rem;
}
.footer-head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B9A7B0;
  margin-bottom: 0.8rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { text-decoration: none; }
.footer-note { font-size: 0.78rem; color: #9C8B95; max-width: 54em; margin-top: 1.1rem; }
.footer-bottom {
  border-top: 1px solid #3A2F3C;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9C8B95;
}

/* --------------------------------------------------------------------------
   Mobil also sav
   -------------------------------------------------------------------------- */
.mobile-book-bar { display: none; }
@media (max-width: 55.99em) {
  .mobile-book-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    display: flex;
    gap: 0.6rem;
    padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(251, 246, 244, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .mobile-book-bar .btn { flex: 1; padding: 0.8rem 1rem; }
  body:has(.mobile-book-bar) { padding-bottom: 4.4rem; }
}

/* --------------------------------------------------------------------------
   Vilagitodoboz (lightbox)
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(36, 28, 38, 0.86);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox figure { max-width: min(92vw, 30rem); width: 100%; text-align: center; }
.lightbox .photo-ph {
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
}
.lightbox figcaption { color: #E7DBE1; font-size: 0.9rem; margin-top: 1rem; }
.lightbox__close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(231, 219, 225, 0.4);
  background: rgba(36, 28, 38, 0.6);
  color: #F5EFF2;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(122, 74, 94, 0.85); }

/* --------------------------------------------------------------------------
   Gorgetesre megjeleno elemek (csak mozgasnal; JS nelkul vegig lathato)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(3px);
    transition: opacity 0.65s ease, transform 0.65s ease, filter 0.65s ease;
    transition-delay: calc(var(--reveal-i, 0) * 0.08s);
  }
  html.js .reveal.is-visible { opacity: 1; transform: none; filter: none; }
}

/* --------------------------------------------------------------------------
   Segedosztalyok
   -------------------------------------------------------------------------- */
.center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
.stack-sm > * + * { margin-top: 0.75rem; }
