/* ==========================================================================
   Robinson Kutyakozmetika - bemutato oldal
   Baratsagos, tiszta, meleg de friss arculat. Homok alap, melykek teal,
   lagy koral es mustar akcentekkel. Motivum: lagy, kerekded blob / talppar
   kivagas (kerekitett, aszimmetrikus radius). Baloo 2 + Mulish tipografia.
   Sima CSS, build nelkul. Minden szoveg/hatter par WCAG AA (4.5:1+).
   ========================================================================== */

:root {
  /* Szin tokenek (minden szoveg/hatter par WCAG AA ellenorizve) */
  --sand: #F3ECE0;        /* oldal hattere                              */
  --sand-soft: #FBF7F0;   /* vilagosabb kartya alap                     */
  --surface: #FFFFFF;     /* feher kartyak, panelek                     */
  --ink: #262B29;         /* cimsorok, eros szoveg (12:1)               */
  --ink-soft: #4C5A55;    /* masodlagos szoveg (6.1:1)                  */
  --prose: #333B38;       /* folyoszoveg                                */

  --teal: #23564F;        /* elsodleges szoveg, linkek, gomb (7.1:1)    */
  --teal-deep: #1B443E;   /* sotet sav, gomb hover                      */
  --teal-hover: #143430;  /* gomb aktiv                                 */

  --coral: #E0785C;       /* VILAGOS koral - csak toltes/dekor          */
  --coral-ink: #B8432E;   /* koral szoveg, eyebrow (4.6:1)              */
  --coral-hover: #9E3826; /* koral gomb hover                           */

  --mustard: #CF9B36;     /* mustar dekor, sosem kis szoveg             */
  --mustard-ink: #A87D22; /* lepesszam nagy szovegkent (3.2:1)          */

  --peach-light: #F1C7A8; /* eyebrow sotet (teal) savon (5.3:1)         */

  --line: #E4D9C8;        /* hajszalvonal keret                         */
  --line-soft: #EDE4D6;
  --blob-bg: #EBE0CF;     /* placeholder kep alap                       */

  /* Tipografia */
  --font-display: "Baloo 2", "Segoe UI", system-ui, sans-serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

  /* A fo motivum: kerekded, aszimmetrikus blob radius (talppar kivagas) */
  --blob-radius: 58% 42% 47% 53% / 63% 55% 45% 37%;
  --blob-radius-alt: 43% 57% 52% 48% / 47% 44% 56% 53%;
}

/* --------------------------------------------------------------------------
   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.65;
  color: var(--ink);
  background-color: var(--sand);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); }
a:hover { color: var(--coral-ink); }

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

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

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

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

h1, .display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  color: var(--ink);
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
}

p { max-width: 62ch; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-ink);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--coral);
  margin-right: 0.6em;
  vertical-align: 8%;
}

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

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

/* Finom jegyzetdoboz */
.soft-note {
  background: var(--sand-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--mustard);
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  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);
}

/* --------------------------------------------------------------------------
   Aloszto blob-sav (dekor) - kerekitett talppar formak
   -------------------------------------------------------------------------- */
.paw-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  padding-block: 0.75rem;
}

.paw-divider span {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 46% 54% 50% 50% / 60% 60% 40% 40%;
  flex: none;
}
.paw-divider .p1 { background: var(--coral); }
.paw-divider .p2 { background: var(--teal); }
.paw-divider .p3 { background: var(--mustard); transform: scale(1.35); }
.paw-divider .p4 { background: var(--teal); }
.paw-divider .p5 { background: var(--coral); }

/* --------------------------------------------------------------------------
   Gombok - kerekded, barasagos (Baloo)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn--primary { background: var(--teal); color: #FFF; }
.btn--primary:hover { background: var(--teal-deep); color: #FFF; }

.btn--ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--ghost:hover { background: var(--teal); color: #FFF; }

.btn--coral { background: var(--coral-ink); color: #FFF; }
.btn--coral:hover { background: var(--coral-hover); color: #FFF; }

.btn--light { background: #FFF; color: var(--teal); }
.btn--light:hover { background: var(--sand-soft); color: var(--teal-deep); }

@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(27, 68, 62, 0.28);
  }
  .btn--ghost:hover, .btn--light:hover, .btn--coral:hover { transform: translateY(-1px); }
}

/* --------------------------------------------------------------------------
   Fejlec / navigacio
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 236, 224, 0.94);
  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(38, 43, 41, 0.08); }

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.05;
}

.brand-logo { width: 40px; height: 40px; flex: none; }

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-ink);
}

.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: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--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(--sand);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem var(--gutter) 1.25rem;
  gap: 0.25rem;
}

.nav-menu a:not(.btn) {
  display: block;
  padding: 0.65rem 0.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
}

.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn)[aria-current="page"] { color: var(--coral-ink); }
.nav-menu a:not(.btn)[aria-current="page"] { border-bottom: 2px solid var(--coral); }

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

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

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

/* --------------------------------------------------------------------------
   Placeholder kepkeretek (kerekded blob = a fo motivum)
   -------------------------------------------------------------------------- */
.photo-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(120% 90% at 28% 22%, #F3E9DA 0%, var(--blob-bg) 62%, #E3D6C1 100%);
  border: 1px solid var(--line);
  color: #6E6154;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 1.25rem;
  overflow: hidden;
}

.photo-ph .ph-label { max-width: 18em; line-height: 1.5; }
.photo-ph .ph-tag {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-ink);
  font-size: 0.68rem;
  margin-bottom: 0.4rem;
}

/* kerekded blob keret - a talppar lagy formajat idezi */
.blob {
  aspect-ratio: 4 / 4.3;
  border-radius: var(--blob-radius);
}
.blob--alt { border-radius: var(--blob-radius-alt); }
.blob--wide { aspect-ratio: 4 / 3.3; }
.blob--square { aspect-ratio: 1; }

/* --------------------------------------------------------------------------
   Hero - barasagos, kep-jobbra (nem filmszeru sotet hero)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 88% 12%, rgba(224, 120, 92, 0.14) 0%, transparent 60%),
    radial-gradient(55% 65% at 96% 92%, rgba(207, 155, 54, 0.12) 0%, transparent 60%),
    var(--sand);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero-copy .tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  color: var(--coral-ink);
  margin-top: 0.5rem;
}

.hero-copy .lede { margin-top: 1.25rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
  align-items: center;
}

.hero-photo { position: relative; max-width: 24rem; margin-inline: auto; width: 100%; }

/* lagy szinfolt a hero blob mogott */
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -8% -10% -12% -8%;
  border-radius: var(--blob-radius-alt);
  background:
    radial-gradient(70% 70% at 30% 30%, rgba(224, 120, 92, 0.22) 0%, transparent 70%),
    radial-gradient(70% 70% at 80% 80%, rgba(35, 86, 79, 0.14) 0%, transparent 70%);
  z-index: 0;
}

.hero-photo .photo-ph {
  position: relative;
  z-index: 1;
  border: none;
  box-shadow:
    0 0 0 8px rgba(255, 253, 249, 0.75),
    0 0 0 10px rgba(224, 120, 92, 0.45),
    0 26px 60px rgba(38, 43, 41, 0.16);
}

@media (min-width: 56em) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .hero-photo { justify-self: end; max-width: 27rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-photo { animation: heroFloat 8s ease-in-out infinite alternate; }
  @keyframes heroFloat { from { transform: translateY(0); } to { transform: translateY(-9px); } }
}

/* --------------------------------------------------------------------------
   Bizalmi cimkek
   -------------------------------------------------------------------------- */
.fact-strip { display: flex; flex-wrap: wrap; gap: 0.6rem 0.8rem; margin-top: 2.1rem; }

.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.85);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.fact-chip::before {
  content: "";
  width: 0.5em; height: 0.5em;
  border-radius: 50%;
  background: var(--coral);
  flex: none;
}

/* --------------------------------------------------------------------------
   Szolgaltatas futosav
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--teal);
  padding-block: 0.85rem;
}

.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-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F2E9DC;
  white-space: nowrap;
}

.marquee__group i { font-style: normal; color: var(--peach-light); margin-inline: 1.4rem; }

@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marqueeScroll 30s 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
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  background:
    radial-gradient(60% 80% at 8% 0%, rgba(224, 120, 92, 0.1) 0%, transparent 55%),
    radial-gradient(50% 70% at 100% 100%, rgba(207, 155, 54, 0.1) 0%, transparent 55%),
    var(--sand-soft);
  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: 62em) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 52em) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card .swatch-dot {
  width: 2.4rem; height: 2.4rem;
  border-radius: 46% 54% 50% 50% / 60% 60% 40% 40%;
  flex: none;
  margin-bottom: 0.4rem;
}

.card p { font-size: 0.95rem; color: var(--prose); }

.card .card-link {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--teal);
}
.card .card-link:hover { color: var(--coral-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(38, 43, 41, 0.1);
    border-color: var(--coral);
  }
}

/* --------------------------------------------------------------------------
   Velemenyek modul (eltavolithato)
   -------------------------------------------------------------------------- */
.reviews-band {
  background:
    radial-gradient(60% 80% at 90% 10%, rgba(35, 86, 79, 0.08) 0%, transparent 55%),
    var(--sand-soft);
  border-block: 1px solid var(--line);
}

.reviews-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  margin-bottom: 2rem;
}
.reviews-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--teal);
  line-height: 1;
}
.reviews-stat .lbl {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  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: 18px;
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card p {
  font-size: 0.96rem;
  color: var(--prose);
  margin: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.review-avatar {
  width: 2.6rem; height: 2.6rem;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 46% 54% 50% 50% / 60% 60% 40% 40%;
  background: var(--teal);
  color: #FFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.review-card:nth-child(2) .review-avatar { background: var(--coral-ink); }
.review-card:nth-child(3) .review-avatar { background: var(--mustard-ink); }

.review-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.review-src { font-size: 0.78rem; color: var(--ink-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: 40em;
  margin-bottom: 1.5rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.5rem;
  align-items: baseline;
  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.05rem; }

.menu-item .price {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-ink);
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.menu-item .desc {
  grid-column: 1 / -1;
  font-size: 0.94rem;
  color: var(--prose);
  max-width: 46em;
}

/* --------------------------------------------------------------------------
   A folyamat - 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: 3px solid var(--coral); padding-top: 1.1rem; }

.step .step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--mustard-ink);
  margin-bottom: 0.55rem;
}

.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; color: var(--prose); }

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

/* --------------------------------------------------------------------------
   Galeria
   -------------------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--teal);
  background: transparent;
  color: var(--teal);
  cursor: pointer;
}

.filter-btn:hover { border-color: var(--coral-ink); color: var(--coral-ink); }

.filter-btn[aria-pressed="true"] {
  background: var(--teal);
  border-color: var(--teal);
  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.82rem;
  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 .blob { transition: transform 0.35s ease; }
  .gallery-item:hover .blob { 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 (melykek alap = AA vilagos szoveghez)
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 120% at 85% 10%, rgba(207, 155, 54, 0.2) 0%, transparent 55%),
    radial-gradient(60% 110% at 12% 100%, rgba(224, 120, 92, 0.18) 0%, transparent 55%),
    var(--teal-deep);
  color: #FFF;
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.cta-band h2 { color: #FFF; margin-bottom: 0.75rem; }
.cta-band p {
  color: #E9F0EC;
  max-width: 34em;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
.cta-band .eyebrow { color: var(--peach-light); }
.cta-band .eyebrow::before { background: var(--peach-light); }

/* --------------------------------------------------------------------------
   Aloldal fejlec
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 120% at 88% 10%, rgba(224, 120, 92, 0.16) 0%, transparent 58%),
    radial-gradient(50% 90% at 100% 100%, rgba(207, 155, 54, 0.12) 0%, transparent 55%),
    var(--sand-soft);
  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.2rem, 5.5vw, 3.4rem); }
.page-head .lede { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Bizalmi lista
   -------------------------------------------------------------------------- */
.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: 22px; height: 22px; flex: none; margin-top: 0.15rem; color: var(--teal); }

.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: 24rem; margin-inline: auto; width: 100%; }

/* --------------------------------------------------------------------------
   Ar jegyzet doboz
   -------------------------------------------------------------------------- */
.price-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  margin-block: 1.5rem 2.5rem;
}

.price-box h2 { font-size: 1.25rem; 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-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-ink);
  margin-bottom: 0.25rem;
}

.contact-list a { color: var(--teal); }
.contact-list a:hover { color: var(--coral-ink); }

.map-ph { border-radius: 18px; 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-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  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(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}

.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--teal); 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: 12px;
  border: 1px solid #8FBFA0;
  background: #EAF4EE;
  color: #235C3C;
  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-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
}
.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.5rem;
  color: var(--coral-ink);
}
.faq details[open] summary::after { content: "-"; }

.faq .faq-a {
  padding: 0 0.25rem 1.25rem;
  max-width: 46em;
  color: var(--prose);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Labic
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--teal-deep);
  color: #D2DDD8;
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  font-size: 0.92rem;
}

.site-footer a { color: var(--peach-light); }
.site-footer a:hover { color: #F8DCC7; }

.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: 46px; height: 46px; margin-bottom: 0.75rem; }

.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #FFF; }
.footer-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach-light);
  margin-top: 0.2rem;
}

.footer-head {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9FB3AC;
  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: #8AA097; max-width: 54em; margin-top: 1.1rem; }

.footer-bottom {
  border-top: 1px solid #2C544D;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #8AA097;
}

/* --------------------------------------------------------------------------
   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(243, 236, 224, 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(20, 52, 48, 0.86);
  backdrop-filter: blur(6px);
}

.lightbox.is-open { display: flex; }
.lightbox figure { max-width: min(92vw, 34rem); width: 100%; text-align: center; }

.lightbox .photo-ph {
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  font-size: 0.95rem;
}

.lightbox figcaption { color: #E7EFEB; 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, 239, 235, 0.4);
  background: rgba(20, 52, 48, 0.6);
  color: #F1F6F3;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(224, 120, 92, 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; }
